Skip to content

Commit

Permalink
fixed Fairplay not loading and invalid zip errors at startup
Browse files Browse the repository at this point in the history
  • Loading branch information
mysticdrew committed Mar 14, 2024
1 parent 39cc225 commit 03fcbc5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ tasks.jar {
dependsOn(processDocs)
archiveVersion = "${version}-${unlimited}".lowercase()
exclude("journeymap/client/feature/impl/NoRadar.class")
exclude("**/module-info.class")
filesMatching("mcmod.info") {
expand("jm_edition" to unlimited)
}
Expand All @@ -108,6 +109,7 @@ val fairPlayJar by tasks.registering(Jar::class) {
from(tasks.reobfJar.map { zipTree(it.archiveFile.get().asFile) }) {
exclude("META-INF/MANIFEST.MF")
exclude("mcmod.info")
exclude("**/module-info.class")
}
manifest.from(tasks.jar.get().manifest)
exclude("journeymap/client/feature/impl/Unlimited.class")
Expand Down
3 changes: 2 additions & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ dependencies {
shadowImplementation("javax.servlet:javax.servlet-api:4.0.1")
shadowImplementation("info.journeymap:webmap-client:0.8-SNAPSHOT")
shadowImplementation("io.javalin:javalin:4.6.8")

// implementation devOnlyNonPublishable(rfg.deobf("curse.maven:bop-220318:2280933"))
// implementation devOnlyNonPublishable(rfg.deobf("curse.maven:waila-73488:2230518"))
implementation group: 'org.slf4j', name: 'slf4j-simple', version: '1.8.0-beta4'
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.8.0-beta4'
}
1 change: 1 addition & 0 deletions doc/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ <h1>JourneyMap ${version} for Minecraft ${mcversion}</h1>
<p>New in ${version}</p>
<ul>
<li>Fixed: bop plants showing up as wrong color.</li>
<li>Fixed: Fairplay not loading and invalid zip errors at startup</li>
</ul>
4 changes: 4 additions & 0 deletions repositories.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,8 @@ repositories {
name = "jitpack"
url = "https://jitpack.io"
}
maven {
url "https://www.cursemaven.com"
}

}

0 comments on commit 03fcbc5

Please sign in to comment.