Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
dima-dencep committed Feb 22, 2024
1 parent 0ee0004 commit ec9e544
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:

changelog: ${{steps.build_changelog.outputs.changelog}}

version-type: beta
version-type: release

loaders: |
neoforge
Expand All @@ -74,7 +74,7 @@ jobs:
${{ steps.read_property.outputs.minecraft_version }}
dependencies: |
recs(optional){modrinth:VbyJLvvb}{curseforge:962031}
recs(optional){modrinth:VbyJLvvb}{curseforge:457570}
java: |
17
Expand All @@ -95,7 +95,7 @@ jobs:

changelog: ${{steps.build_changelog.outputs.changelog}}

version-type: beta
version-type: release

loaders: |
fabric
Expand Down
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,14 @@ allprojects {
includeGroup "maven.modrinth"
}
}
maven {
name "CurseForge"
url "https://cursemaven.com"

content {
includeGroup "curse.maven"
}
}
maven { url "https://maven.shedaniel.me" }
maven { url "https://maven.neoforged.net/releases" }
maven { url "https://maven.terraformersmc.com/releases" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public class ConfigExpectPlatformImpl implements ConfigData {

@ConfigEntry.Category("other")
@ConfigEntry.Gui.Tooltip(count = 2)
public boolean earlyPackStatusSend = true;
public boolean earlyPackStatusSend = false;

@ConfigEntry.Category("other")
@ConfigEntry.Gui.EnumHandler(option = ConfigEntry.Gui.EnumHandler.EnumDisplayOption.BUTTON)
Expand Down
3 changes: 1 addition & 2 deletions forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ configurations {
dependencies {
neoForge "net.neoforged:neoforge:${rootProject.forge_version}"

modLocalRuntime "maven.modrinth:recs:ERtqRcuX" // AKA cloth config bridge
modLocalRuntime "me.shedaniel.cloth:cloth-config-neoforge:${rootProject.cloth_config_version}"
modLocalRuntime "curse.maven:configured-457570:5105024"

common(project(path: ":common", configuration: "namedElements")) { transitive false }
shadowCommon(project(path: ":common", configuration: "transformProductionNeoForge")) { transitive = false }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public ConfigExpectPlatformImpl(ModConfigSpec.Builder builder) {
.translation("text.autoconfig.rrls.option.earlyPackStatusSend")
.comment("text.autoconfig.rrls.option.earlyPackStatusSend.@Tooltip[0]")
.comment("text.autoconfig.rrls.option.earlyPackStatusSend.@Tooltip[1]")
.define("earlyPackStatusSend", true);
.define("earlyPackStatusSend", false);

doubleLoad = builder
.translation("text.autoconfig.rrls.option.doubleLoad")
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ fabric.loom.multiProjectOptimisation=true
# Properties
minecraft_version = 1.20.4
yarn_mappings = 1.20.4+build.3
loader_version = 0.15.6
forge_version = 20.4.131-beta
loader_version = 0.15.7
forge_version = 20.4.169

# Mod Properties
mod_version = 4.0.1
mod_version = 4.0.2
maven_group = com.github.dima_dencep.mods
archives_base_name = rrls

# Dependencies
modmenu_version = 9.0.0
fabric_api_version = 0.95.1+1.20.4
fabric_api_version = 0.96.3+1.20.4
cloth_config_version = 13.0.121
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit ec9e544

Please sign in to comment.