Skip to content

Commit

Permalink
Release v3.8.1+fabric
Browse files Browse the repository at this point in the history
Fixed #105
  • Loading branch information
TheCSDev committed Feb 13, 2024
1 parent 0287570 commit 895314b
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions betterstats-3-fabric-1.20.1/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ org.gradle.jvmargs=-Xmx1G
mod_name = Better Statistics Screen
mod_description = Improves the statistics screen and makes it more useful.
mod_author = TheCSDev
mod_version = 3.8+fabric-1.20.1
mod_version = 3.8.1+fabric-1.20.1

mod_contact_homepage = https://github.com/TheCSMods
mod_contact_sources = https://github.com/TheCSMods/mc-better-stats
Expand All @@ -38,7 +38,7 @@ org.gradle.jvmargs=-Xmx1G
mod_depends_minecraft = >=1.20
mod_depends_java = >=17

mod_jar_tcdcommons = META-INF/jarjar/tcdcommons-3.8+fabric-1.20.1.jar
mod_jar_tcdcommons = META-INF/jarjar/tcdcommons-3.8.1+fabric-1.20.1.jar

pack_mcmeta_format = 15

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public BetterStatsConfigScreen(@Nullable Screen parent)
translatable("betterstats.api.client.gui.screen.betterstatsconfigscreen.enable_sas"),
config.enableServerSAS,
checkbox -> config.enableServerSAS = checkbox.getChecked())
.build(() -> config.trySaveToFile(true));
.build(() -> { try { config.saveToFile(true); } catch (Exception e) { throw new RuntimeException(e); } });

final var btn_actionCancel = new TButtonWidget(
5, 5, (panelW / 2) - 7, 20,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public final class BSConfigTab extends StatsTab
translatable("betterstats.api.client.gui.screen.betterstatsconfigscreen.enable_sas"),
config.enableServerSAS,
checkbox -> config.enableServerSAS = checkbox.getChecked())
.build(() -> config.trySaveToFile(true));
.build(() -> { try { config.saveToFile(true); } catch (Exception e) { throw new RuntimeException(e); } });
}
// --------------------------------------------------
public final @Override void initFilters(FiltersInitContext initContext)
Expand Down
Binary file not shown.
4 changes: 2 additions & 2 deletions betterstats-3-fabric-1.20.2/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ org.gradle.jvmargs=-Xmx1G
mod_name = Better Statistics Screen
mod_description = Improves the statistics screen and makes it more useful.
mod_author = TheCSDev
mod_version = 3.8+fabric-1.20.2
mod_version = 3.8.1+fabric-1.20.2

mod_contact_homepage = https://github.com/TheCSMods
mod_contact_sources = https://github.com/TheCSMods/mc-better-stats
Expand All @@ -38,7 +38,7 @@ org.gradle.jvmargs=-Xmx1G
mod_depends_minecraft = >=1.20.2
mod_depends_java = >=17

mod_jar_tcdcommons = META-INF/jarjar/tcdcommons-3.8+fabric-1.20.2.jar
mod_jar_tcdcommons = META-INF/jarjar/tcdcommons-3.8.1+fabric-1.20.2.jar

pack_mcmeta_format = 18

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public BetterStatsConfigScreen(@Nullable Screen parent)
translatable("betterstats.api.client.gui.screen.betterstatsconfigscreen.enable_sas"),
config.enableServerSAS,
checkbox -> config.enableServerSAS = checkbox.getChecked())
.build(() -> config.trySaveToFile(true));
.build(() -> { try { config.saveToFile(true); } catch (Exception e) { throw new RuntimeException(e); } });

final var btn_actionCancel = new TButtonWidget(
5, 5, (panelW / 2) - 7, 20,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public final class BSConfigTab extends StatsTab
translatable("betterstats.api.client.gui.screen.betterstatsconfigscreen.enable_sas"),
config.enableServerSAS,
checkbox -> config.enableServerSAS = checkbox.getChecked())
.build(() -> config.trySaveToFile(true));
.build(() -> { try { config.saveToFile(true); } catch (Exception e) { throw new RuntimeException(e); } });
}
// --------------------------------------------------
public final @Override void initFilters(FiltersInitContext initContext)
Expand Down
Binary file not shown.
6 changes: 3 additions & 3 deletions betterstats-3-fabric-1.20.4/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ org.gradle.jvmargs=-Xmx1G
mod_name = Better Statistics Screen
mod_description = Improves the statistics screen and makes it more useful.
mod_author = TheCSDev
mod_version = 3.8+fabric-1.20.4
mod_version = 3.8.1+fabric-1.20.4

mod_contact_homepage = https://github.com/TheCSMods
mod_contact_sources = https://github.com/TheCSMods/mc-better-stats
Expand All @@ -35,10 +35,10 @@ org.gradle.jvmargs=-Xmx1G
mod_entrypoint_server = io.github.thecsdev.betterstats.BetterStatsFabric
mod_entrypoint_modmenu = io.github.thecsdev.betterstats.api.client.modmenu.ModMenuApiImpl

mod_depends_minecraft = >=1.20.4
mod_depends_minecraft = >=1.20.3
mod_depends_java = >=17

mod_jar_tcdcommons = META-INF/jarjar/tcdcommons-3.8+fabric-1.20.4.jar
mod_jar_tcdcommons = META-INF/jarjar/tcdcommons-3.8.1+fabric-1.20.4.jar

pack_mcmeta_format = 22

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public BetterStatsConfigScreen(@Nullable Screen parent)
translatable("betterstats.api.client.gui.screen.betterstatsconfigscreen.enable_sas"),
config.enableServerSAS,
checkbox -> config.enableServerSAS = checkbox.getChecked())
.build(() -> config.trySaveToFile(true));
.build(() -> { try { config.saveToFile(true); } catch (Exception e) { throw new RuntimeException(e); } });

final var btn_actionCancel = new TButtonWidget(
5, 5, (panelW / 2) - 7, 20,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public final class BSConfigTab extends StatsTab
translatable("betterstats.api.client.gui.screen.betterstatsconfigscreen.enable_sas"),
config.enableServerSAS,
checkbox -> config.enableServerSAS = checkbox.getChecked())
.build(() -> config.trySaveToFile(true));
.build(() -> { try { config.saveToFile(true); } catch (Exception e) { throw new RuntimeException(e); } });
}
// --------------------------------------------------
public final @Override void initFilters(FiltersInitContext initContext)
Expand Down
Binary file not shown.

0 comments on commit 895314b

Please sign in to comment.