Skip to content

Commit

Permalink
Fix refmap generation for MixinExtras annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
tox1cozZ committed Aug 15, 2022
1 parent 7811589 commit 4c3ed1b
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ apply plugin: 'forge'
apply plugin: 'maven-publish'
apply plugin: 'com.github.johnrengelman.shadow'

version = '1.1.0'
version = '1.1.1'
group = 'io.github.tox1cozz.mixinbooterlegacy'

sourceCompatibility = targetCompatibility = '1.8'
Expand Down
Binary file modified dependencies/mixin-0.8.2-processor-repack.jar
Binary file not shown.
Binary file modified dependencies/mixin-0.8.2-repack.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/configurations/v1.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ repositories {
}

dependencies {
implementation 'com.github.tox1cozZ:mixin-booter-legacy:1.1.0'
annotationProcessor 'com.github.tox1cozZ:mixin-booter-legacy:1.1.0:processor'
implementation 'com.github.tox1cozZ:mixin-booter-legacy:1.1.1'
annotationProcessor 'com.github.tox1cozZ:mixin-booter-legacy:1.1.1:processor'
}

tasks.register('mixin', MixinTask)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public Container() {
ModMetadata meta = getMetadata();
meta.modId = "mixinbooterlegacy";
meta.name = "MixinBooterLegacy";
meta.version = "1.1.0";
meta.version = "1.1.1";
meta.description = "A Mixin library and loader.";
meta.logoFile = "/icon.png";
meta.authorList.addAll(Lists.newArrayList("Rongmario", "tox1cozZ"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@
import javax.lang.model.element.TypeElement;
import java.util.Set;

/*
TODO: Refmap not working for new annotations
Use srg names or create dummy @Inject
*/
@SupportedAnnotationTypes({})
public class MixinExtrasAnnotationProcessor extends AbstractProcessor {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
io.github.tox1cozz.mixinextras.MixinExtrasAnnotationProcessor
org.spongepowered.tools.obfuscation.MixinObfuscationProcessorInjection
org.spongepowered.tools.obfuscation.MixinObfuscationProcessorTargets
io.github.tox1cozz.mixinextras.MixinExtrasAnnotationProcessor
org.spongepowered.tools.obfuscation.MixinObfuscationProcessorTargets

0 comments on commit 4c3ed1b

Please sign in to comment.