Skip to content

Commit eedbd6a

Browse files
authored
Develop beta 29 (#576)
2 parents bceb367 + 101d2b5 commit eedbd6a

File tree

5 files changed

+17
-15
lines changed

5 files changed

+17
-15
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ body:
1010
value: |
1111
### 📋 Checklist
1212
Thank you for taking your time to report this bug!
13-
Before reporting, please make ensure that:
13+
Before reporting, please ensure that:
1414
- You are using the **latest** available version of Connector and its dependencies
1515
- You've installed a **minimal set of mods** required to reproduce the issue.
1616
Issues with modpacks and excessive amount of mods will *not* be accepted, as they take a long time to diagnose.

.github/ISSUE_TEMPLATE/mod_incompatibility.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ body:
1010
value: |
1111
### 📋 Checklist
1212
Thank you for taking your time to report this bug!
13-
Before reporting, please make ensure that:
13+
Before reporting, please ensure that:
1414
- You are using the **latest** available version of Connector and its dependencies
1515
- You've installed a **minimal set of mods** required to reproduce the issue.
1616
Issues with modpacks and excessive amount of mods will *not* be accepted, as they take a long time to diagnose.

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ org.gradle.jvmargs=-Xmx3G
44
org.gradle.daemon=true
55

66
# Versions
7-
versionConnector=1.0.0-beta.28
7+
versionConnector=1.0.0-beta.29
88
versionAdapter=1.8.16-1.20.1-20231120.221506
99
versionAdapterDefinition=1.8.21
1010

@@ -16,7 +16,7 @@ versionFabricLoaderUpstream=0.15.0
1616
versionAccessWidener=2.1.0
1717
versionFabricApi=0.90.7+1.9.33+1.20.1
1818
versionMixin=0.12.5+mixin.0.8.5
19-
versionMixinTransmog=0.4.2+1.20.1
19+
versionMixinTransmog=0.4.3+1.20.1
2020

2121
# Publishing
2222
curseForgeId=890127

src/main/java/dev/su5ed/sinytra/connector/service/LenientRuntimeEnumExtender.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,12 @@ public int processClassWithFlags(Phase phase, ClassNode classNode, Type classTyp
2222
FieldNode node = values.get(0);
2323
if ((node.access & Opcodes.ACC_FINAL) == 0) {
2424
// It is likely a mixin already made the field mutable
25-
// Make it final before it is processed and de-finalized again by super
25+
// Make it final before it is processed
2626
node.access |= Opcodes.ACC_FINAL;
27-
return super.processClassWithFlags(phase, classNode, classType, reason);
27+
int result = super.processClassWithFlags(phase, classNode, classType, reason);
28+
// Return to original state
29+
node.access &= ~Opcodes.ACC_FINAL;
30+
return result;
2831
}
2932
}
3033
// Let super deal with this

src/main/java/dev/su5ed/sinytra/connector/transformer/patch/EnvironmentStripperTransformer.java

+8-9
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
import org.objectweb.asm.Type;
1212
import org.objectweb.asm.tree.AnnotationNode;
1313
import org.objectweb.asm.tree.ClassNode;
14+
import org.objectweb.asm.tree.FieldNode;
1415
import org.objectweb.asm.tree.MethodNode;
1516

1617
import java.util.Iterator;
@@ -30,15 +31,13 @@ public Patch.Result apply(ClassNode classNode, @Nullable AnnotationValueHandle<?
3031
applied = true;
3132
}
3233
}
33-
// Field stripping is currently broken in fabric-loader, therefore we skip it until the issue is fixed upstream
34-
// https://github.com/FabricMC/fabric-loader/issues/833
35-
// for (Iterator<FieldNode> it = classNode.fields.iterator(); it.hasNext(); ) {
36-
// FieldNode field = it.next();
37-
// if (remove(field.invisibleAnnotations)) {
38-
// it.remove();
39-
// applied = true;
40-
// }
41-
// }
34+
for (Iterator<FieldNode> it = classNode.fields.iterator(); it.hasNext(); ) {
35+
FieldNode field = it.next();
36+
if (remove(field.invisibleAnnotations)) {
37+
it.remove();
38+
applied = true;
39+
}
40+
}
4241
return applied ? Patch.Result.APPLY : Patch.Result.PASS;
4342
}
4443

0 commit comments

Comments
 (0)