Skip to content

Commit

Permalink
1.3.11
Browse files Browse the repository at this point in the history
Check only the update URL instead of whole update json for ignored mods
  • Loading branch information
Wyvest committed Sep 11, 2024
1 parent dd9f3b6 commit 2502cde
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ mod_name=SkyClient Updater
# Sets the id of your mod that mod loaders use to recognize it.
mod_id=skyblockclientupdater
# Sets the version of your mod. Make sure to update this when you make changes according to semver.
mod_version=1.3.10
mod_version=1.3.11
# Sets the name of the jar file that you put in your 'mods' folder.
mod_archives_name=SkyClient-Updater

Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pluginManagement {
maven("https://repo.polyfrost.org/releases") // Adds the Polyfrost maven repository to get Polyfrost Gradle Toolkit
}
plugins {
val pgtVersion = "0.6.5" // Sets the default versions for Polyfrost Gradle Toolkit
val pgtVersion = "0.6.7" // Sets the default versions for Polyfrost Gradle Toolkit
id("org.polyfrost.multi-version.root") version pgtVersion
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ class UpdateChecker {
ignoredJson.inputStream().use { inputStream ->
ignored.addAll(json.decodeFromStream<List<UpdateMod>>(inputStream))
ignored.forEach { removed ->
needsUpdate.removeIf { removed == it }
needsUpdate.removeIf { removed.updateURL == it.updateURL }
}
}
}
Expand Down

0 comments on commit 2502cde

Please sign in to comment.