Skip to content

Commit bceb367

Browse files
authored
Develop beta 28 (#550)
2 parents fd56cff + ca2e4ed commit bceb367

17 files changed

+409
-99
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+14-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,22 @@
11
name: Bug Report
22
description: Report an issue you've encountered
3-
labels: [bug]
3+
labels: [ bug ]
44
body:
55
- type: markdown
66
attributes:
7-
value: "## Welcome!"
7+
value: "## 👋 Welcome!"
88
- type: markdown
99
attributes:
1010
value: |
11-
Thank you for taking your time to report this bug!
12-
Make sure you are running the latest version before reporting.
11+
### 📋 Checklist
12+
Thank you for taking your time to report this bug!
13+
Before reporting, please make ensure that:
14+
- You are using the **latest** available version of Connector and its dependencies
15+
- You've installed a **minimal set of mods** required to reproduce the issue.
16+
Issues with modpacks and excessive amount of mods will *not* be accepted, as they take a long time to diagnose.
17+
Knowing which mods are causing problems allows us to focus on fixing the issue as soon as possible.
18+
If you're unsure which mods might be at fault, try using [binary search](https://www.reddit.com/r/feedthebeast/comments/evpy6r/tips_for_modpack_authors_how_to_find_misbehaving/) - removing half of installed mods
19+
repeatedly until the faulty mod is found.
1320
- type: input
1421
id: description
1522
attributes:
@@ -36,10 +43,10 @@ body:
3643
attributes:
3744
label: Logs
3845
description: |
39-
If applicable (crash, error output in console), please provide your crash report or latest.log
40-
To upload logs, use an external site to post the crash report, such as [Ubuntu Pastebin](https://paste.ubuntu.com/), [Pastebin](http://pastebin.com/), or [Github Gist](https://gist.github.com/)
46+
If applicable (crash, error output in console), please provide your debug.log **and** crash report
47+
To upload logs, use an external paste site, such as [Github Gist](https://gist.github.com/) (recommended), [Ubuntu Pastebin](https://paste.ubuntu.com/) or [Pastebin](http://pastebin.com)
4148
- type: textarea
4249
id: context
4350
attributes:
4451
label: Additional context
45-
description: "Add any other context about the problem here, such as the modpack you're playing or other mods that might be causing this bug."
52+
description: "Add any other context about the problem here, such as your current environment or other mods that might be causing this bug."

.github/ISSUE_TEMPLATE/mod_incompatibility.yml

+13-6
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,19 @@ labels: [compat]
44
body:
55
- type: markdown
66
attributes:
7-
value: "## Welcome!"
7+
value: "## 👋 Welcome!"
88
- type: markdown
99
attributes:
1010
value: |
11-
Thank you for taking your time to report this incompatibility!
12-
Make sure you are running the latest version of Connector and its dependencies before reporting.
11+
### 📋 Checklist
12+
Thank you for taking your time to report this bug!
13+
Before reporting, please make ensure that:
14+
- You are using the **latest** available version of Connector and its dependencies
15+
- You've installed a **minimal set of mods** required to reproduce the issue.
16+
Issues with modpacks and excessive amount of mods will *not* be accepted, as they take a long time to diagnose.
17+
Knowing which mods are causing problems allows us to focus on fixing the issue as soon as possible.
18+
If you're unsure which mods might be at fault, try using [binary search](https://www.reddit.com/r/feedthebeast/comments/evpy6r/tips_for_modpack_authors_how_to_find_misbehaving/) - removing half of installed mods
19+
repeatedly until the faulty mod is found.
1320
- type: input
1421
id: mod
1522
attributes:
@@ -51,13 +58,13 @@ body:
5158
attributes:
5259
label: Logs
5360
description: |
54-
If applicable (crash, error output in console), please provide your crash report.
61+
If applicable (crash, error output in console), please provide your debug.log **and** crash report.
5562
Otherwise, we recommend uploading the debug.log found in your `.minecraft/logs` directory.
56-
To upload logs, use an external site to post the crash report, such as [Ubuntu Pastebin](https://paste.ubuntu.com/), [Pastebin](http://pastebin.com/), or [Github Gist](https://gist.github.com/)
63+
To upload logs, use an external paste site, such as [Github Gist](https://gist.github.com/) (recommended), [Ubuntu Pastebin](https://paste.ubuntu.com/) or [Pastebin](http://pastebin.com/)
5764
validations:
5865
required: true
5966
- type: textarea
6067
id: context
6168
attributes:
6269
label: Additional context
63-
description: "Add any other context about the problem here, such as the modpack you're playing or other mods that might be causing this bug."
70+
description: "Add any other context about the problem here, such as your current environment or other mods that might be causing this bug."

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on [MinecraftForge](https://minecraftforge.net). Its goal is to bring the two pl
2424
developers time and effort maintaining their mods for multiple platforms at once, as well as allowing players to play
2525
all their favourite mods in one modpack.
2626

27-
### Recommendations
27+
### 🔗 Related Projects
2828

2929
- Visit the [Mod Compatibility Thread](https://github.com/Sinytra/Connector/discussions/12) to can find information about known working / incompatible mods
3030
- To learn more about how Connector works, read our [Introductory blog post](https://github.com/Sinytra/Connector/discussions/11)

build.gradle.kts

+28-27
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
22
import me.modmuss50.mpp.ReleaseType
33
import net.minecraftforge.gradle.common.util.MavenArtifactDownloader
44
import net.minecraftforge.gradle.common.util.RunConfig
5+
import net.minecraftforge.gradle.userdev.tasks.JarJar
56
import net.minecraftforge.gradle.userdev.util.MavenPomUtils
67
import net.minecraftforge.jarjar.metadata.*
78
import org.apache.maven.artifact.versioning.DefaultArtifactVersion
89
import org.apache.maven.artifact.versioning.VersionRange
10+
import java.nio.file.FileSystems
911
import java.nio.file.Files
1012
import java.nio.file.StandardOpenOption
1113
import java.time.LocalDateTime
14+
import kotlin.io.path.inputStream
1215

1316
plugins {
1417
java
@@ -28,6 +31,7 @@ val versionMc: String by project
2831
val versionForge: String by project
2932
val versionForgeAutoRenamingTool: String by project
3033
val versionFabricLoader: String by project
34+
val versionFabricLoaderUpstream: String by project
3135
val versionAccessWidener: String by project
3236
val versionFabricApi: String by project
3337
val versionMixin: String by project
@@ -91,33 +95,26 @@ val dummyFabricLoaderLangJar: Jar by tasks.creating(Jar::class) {
9195
)
9296
archiveClassifier.set("fabricloader")
9397
}
94-
// Generate JarJar metadata manually so that we control both the version and the file path
95-
val createJarJarMetadata: Task by tasks.creating {
96-
val jarPath = "META-INF/jarjar/" + dummyFabricLoaderLangJar.archiveFile.get().asFile.name
97-
val output = project.layout.buildDirectory.dir("createJarJarMetadata").get().file("metadata.json")
98-
inputs.property("jarPath", jarPath)
99-
outputs.file(output)
100-
extra["output"] = output
101-
doFirst {
102-
val metadata = Metadata(
103-
listOf(
104-
ContainedJarMetadata(
105-
ContainedJarIdentifier("dev.su5ed.sinytra", "fabric-loader"),
106-
ContainedVersion(VersionRange.createFromVersion("[$dummyFabricLoaderVersion,)"), DefaultArtifactVersion(dummyFabricLoaderVersion)),
107-
jarPath,
108-
false
109-
)
110-
)
111-
)
112-
Files.deleteIfExists(output.asFile.toPath())
113-
Files.write(output.asFile.toPath(), MetadataIOHandler.toLines(metadata), StandardOpenOption.CREATE_NEW, StandardOpenOption.WRITE)
114-
}
115-
}
116-
val modJar: Jar by tasks.creating(Jar::class) {
98+
val modJar: JarJar by tasks.creating(JarJar::class) {
99+
dependsOn(dummyFabricLoaderLangJar)
117100
from(mod.output)
118-
into("META-INF/jarjar/") {
119-
from(createJarJarMetadata)
120-
from(dummyFabricLoaderLangJar)
101+
inputs.file(dummyFabricLoaderLangJar.archiveFile)
102+
configurations = listOf(project.configurations.jarJar.get())
103+
(includedDependencies as ConfigurableFileCollection).from(dummyFabricLoaderLangJar)
104+
doLast {
105+
FileSystems.newFileSystem(archiveFile.get().asFile.toPath()).use { fs ->
106+
val jarPath = "META-INF/jarjar/" + dummyFabricLoaderLangJar.archiveFile.get().asFile.name
107+
val metadataPath = fs.getPath("META-INF/jarjar/metadata.json")
108+
val metadata = metadataPath.inputStream().use { ins -> MetadataIOHandler.fromStream(ins).orElseThrow() }
109+
metadata.jars() += ContainedJarMetadata(
110+
ContainedJarIdentifier("dev.su5ed.sinytra", "fabric-loader"),
111+
ContainedVersion(VersionRange.createFromVersion("[$dummyFabricLoaderVersion,)"), DefaultArtifactVersion(dummyFabricLoaderVersion)),
112+
jarPath,
113+
false
114+
)
115+
Files.deleteIfExists(metadataPath)
116+
Files.write(metadataPath, MetadataIOHandler.toLines(metadata), StandardOpenOption.CREATE_NEW, StandardOpenOption.WRITE)
117+
}
121118
}
122119
manifest.attributes(
123120
"Implementation-Version" to project.version,
@@ -153,6 +150,7 @@ val fullJar: Jar by tasks.creating(Jar::class) {
153150
manifest {
154151
from(tasks.jar.get().manifest)
155152
attributes("Embedded-Dependencies-Mod" to "META-INF/jarjar/" + modJar.archiveFile.get().asFile.name)
153+
attributes("Fabric-Loader-Version" to versionFabricLoaderUpstream)
156154
}
157155
}
158156

@@ -274,8 +272,11 @@ dependencies {
274272
shade(group = "io.github.steelwoolmc", name = "mixin-transmogrifier", version = versionMixinTransmog)
275273
adapterData(group = "dev.su5ed.sinytra.adapter", name = "adapter", version = versionAdapter)
276274

277-
compileOnly(group = "net.fabricmc", name = "sponge-mixin", version = versionMixin)
278275
annotationProcessor(group = "net.fabricmc", name = "sponge-mixin", version = versionMixin)
276+
compileOnly(group = "net.fabricmc", name = "sponge-mixin", version = versionMixin)
277+
implementation(jarJar("io.github.llamalad7:mixinextras-forge:0.3.1")!!) {
278+
jarJar.ranged(this, "[0.3.1,)")
279+
}
279280
compileOnly(group = "dev.su5ed.sinytra.fabric-api", name = "fabric-api", version = versionFabricApi)
280281
runtimeOnly(fg.deobf("dev.su5ed.sinytra.fabric-api:fabric-api:$versionFabricApi"))
281282

gradle.properties

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

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

1111
versionMc=1.20.1
1212
versionForge=47.1.3
1313
versionForgeAutoRenamingTool=1.0.9
14-
versionFabricLoader=2.5.2+0.14.21+1.20.1
14+
versionFabricLoader=2.6.0+0.15.0+1.20.1
15+
versionFabricLoaderUpstream=0.15.0
1516
versionAccessWidener=2.1.0
1617
versionFabricApi=0.90.7+1.9.33+1.20.1
1718
versionMixin=0.12.5+mixin.0.8.5
18-
versionMixinTransmog=0.4.1+1.20.1
19+
versionMixinTransmog=0.4.2+1.20.1
1920

2021
# Publishing
2122
curseForgeId=890127

src/main/java/dev/su5ed/sinytra/connector/loader/ConnectorEarlyLoader.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
import com.mojang.logging.LogUtils;
44
import dev.su5ed.sinytra.connector.ConnectorUtil;
55
import dev.su5ed.sinytra.connector.locator.ConnectorConfig;
6+
import net.fabricmc.loader.api.FabricLoader;
67
import net.fabricmc.loader.api.entrypoint.PreLaunchEntrypoint;
78
import net.fabricmc.loader.impl.FabricLoaderImpl;
8-
import net.fabricmc.loader.impl.entrypoint.EntrypointUtils;
99
import net.minecraftforge.fml.loading.EarlyLoadingException;
1010
import net.minecraftforge.fml.loading.LoadingModList;
1111
import net.minecraftforge.fml.loading.moddiscovery.ModInfo;
@@ -128,7 +128,7 @@ public static void preLaunch() {
128128
ProgressMeter progress = StartupNotificationManager.addProgressBar("[Connector] PreLaunch", 0);
129129
try {
130130
// Invoke prelaunch entrypoint
131-
EntrypointUtils.invoke("preLaunch", PreLaunchEntrypoint.class, PreLaunchEntrypoint::onPreLaunch);
131+
FabricLoader.getInstance().invokeEntrypoints("preLaunch", PreLaunchEntrypoint.class, PreLaunchEntrypoint::onPreLaunch);
132132
} catch (Throwable t) {
133133
LOGGER.error("Encountered an error in prelaunch entrypoint", t);
134134
addGenericLoadingException(t, "Encountered an error in prelaunch entrypoint");

src/main/java/dev/su5ed/sinytra/connector/locator/DependencyResolver.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ private static ModCandidate createJavaMod() {
102102
}
103103

104104
private static ModCandidate createFabricLoaderMod() {
105-
ModMetadata metadata = new BuiltinModMetadata.Builder("fabricloader", Objects.requireNonNullElse(FabricLoader.class.getPackage().getImplementationVersion(), "0.0NONE"))
105+
String version = EmbeddedDependencies.getFabricLoaderVersion();
106+
ModMetadata metadata = new BuiltinModMetadata.Builder("fabricloader", Objects.requireNonNullElse(version, "0.0NONE"))
106107
.setName("Fabric Loader")
107108
.build();
108109
GameProvider.BuiltinMod builtinMod = new GameProvider.BuiltinMod(Collections.singletonList(Path.of(uncheck(() -> FabricLoader.class.getProtectionDomain().getCodeSource().getLocation().toURI()))), metadata);

src/main/java/dev/su5ed/sinytra/connector/locator/EmbeddedDependencies.java

+6
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ public final class EmbeddedDependencies {
3434
private static final Logger LOGGER = LogUtils.getLogger();
3535
// Manifest attribute name prefix for embedded dependencies
3636
private static final String JIJ_ATTRIBUTE_PREFIX = "Embedded-Dependencies-";
37+
// Fabric Loader upstream version included by Connector
38+
private static final String FABRIC_LOADER_VERSION = "Fabric-Loader-Version";
3739
// Embedded mod jar name
3840
private static final String MOD_JIJ_DEP = "Mod";
3941

@@ -72,6 +74,10 @@ public static String getJarCacheVersion() {
7274
return JAR_CACHE_VERSION.get();
7375
}
7476

77+
public static String getFabricLoaderVersion() {
78+
return ATTRIBUTES.getValue(FABRIC_LOADER_VERSION);
79+
}
80+
7581
/**
7682
* Get the root path inside an embedded jar.
7783
*

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

+9-4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
public class ConnectorLoaderService implements ITransformationService {
2222
private static final String NAME = "connector_loader";
23+
private static final String AUTHLIB_MODULE = "authlib";
2324

2425
@Override
2526
public String name() {
@@ -55,10 +56,11 @@ public void onLoad(IEnvironment env, Set<String> otherServices) {
5556
Map<String, ILaunchPluginService> plugins = (Map<String, ILaunchPluginService>) pluginsField.get(launchPluginHandler);
5657
// Sort launch plugins
5758
LinkedHashMap<String, ILaunchPluginService> sortedPlugins = new LinkedHashMap<>();
58-
// Runtime Enum extender will fail if a mixin makes $VALUES mutable first, so it must come before us as well
59-
sortedPlugins.put("runtime_enum_extender", plugins.remove("runtime_enum_extender"));
60-
// Mixin must come after
59+
// Mixin must come first
6160
sortedPlugins.put("mixin", plugins.remove("mixin"));
61+
// Handle cases where a mixin has already made the enum mutable
62+
plugins.remove("runtime_enum_extender");
63+
sortedPlugins.put("runtime_enum_extender", new LenientRuntimeEnumExtender());
6264
// Our plugins come after mixin
6365
injectPlugins.forEach(plugin -> sortedPlugins.put(plugin.name(), plugin));
6466
// The rest goes to the end
@@ -72,7 +74,10 @@ public void onLoad(IEnvironment env, Set<String> otherServices) {
7274
@Override
7375
public List<Resource> completeScan(IModuleLayerManager layerManager) {
7476
LoadingModList.get().getErrors().addAll(ConnectorEarlyLoader.getLoadingExceptions());
75-
return List.of(new Resource(IModuleLayerManager.Layer.GAME, List.of(new FabricASMFixer.FabricASMGeneratedClassesSecureJar())));
77+
return List.of(new Resource(IModuleLayerManager.Layer.GAME, List.of(
78+
new FabricASMFixer.FabricASMGeneratedClassesSecureJar(),
79+
ModuleLayerMigrator.moveModule(AUTHLIB_MODULE)
80+
)));
7681
}
7782

7883
@Override
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
package dev.su5ed.sinytra.connector.service;
2+
3+
import net.minecraftforge.fml.common.asm.RuntimeEnumExtender;
4+
import org.objectweb.asm.Opcodes;
5+
import org.objectweb.asm.Type;
6+
import org.objectweb.asm.tree.ClassNode;
7+
import org.objectweb.asm.tree.FieldNode;
8+
9+
import java.util.List;
10+
11+
public class LenientRuntimeEnumExtender extends RuntimeEnumExtender {
12+
@Override
13+
public int processClassWithFlags(Phase phase, ClassNode classNode, Type classType, String reason) {
14+
if ((classNode.access & Opcodes.ACC_ENUM) == 0)
15+
return ComputeFlags.NO_REWRITE;
16+
// Modified query flags that do not include ACC_FINAL
17+
int flags = Opcodes.ACC_PRIVATE | Opcodes.ACC_STATIC | Opcodes.ACC_SYNTHETIC;
18+
Type array = Type.getType("[" + classType.getDescriptor());
19+
List<FieldNode> values = classNode.fields.stream().filter(f -> f.desc.contentEquals(array.getDescriptor()) && (f.access & flags) == flags)
20+
.toList();
21+
if (values.size() == 1) {
22+
FieldNode node = values.get(0);
23+
if ((node.access & Opcodes.ACC_FINAL) == 0) {
24+
// It is likely a mixin already made the field mutable
25+
// Make it final before it is processed and de-finalized again by super
26+
node.access |= Opcodes.ACC_FINAL;
27+
return super.processClassWithFlags(phase, classNode, classType, reason);
28+
}
29+
}
30+
// Let super deal with this
31+
return super.processClassWithFlags(phase, classNode, classType, reason);
32+
}
33+
}

0 commit comments

Comments
 (0)