mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-12-04 23:40:00 +00:00
Prepare for 1.102.0
This is a stupid tradition.
This commit is contained in:
parent
86c4c7483d
commit
e241575329
@ -30,6 +30,7 @@ repositories {
|
||||
content {
|
||||
includeGroup("cc.tweaked")
|
||||
includeModule("org.squiddev", "Cobalt")
|
||||
includeModule("fuzs.forgeconfigapiport", "forgeconfigapiport-fabric")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -46,7 +46,7 @@ repositories {
|
||||
includeGroup("me.shedaniel.cloth")
|
||||
includeGroup("mezz.jei")
|
||||
includeModule("com.terraformersmc", "modmenu")
|
||||
includeModule("net.minecraftforge", "forgeconfigapiport-fabric")
|
||||
includeModule("fuzs.forgeconfigapiport", "forgeconfigapiport-fabric")
|
||||
// Until https://github.com/SpongePowered/Mixin/pull/593 is merged
|
||||
includeModule("org.spongepowered", "mixin")
|
||||
}
|
||||
|
@ -6,7 +6,7 @@ kotlin.jvm.target.validation.mode=error
|
||||
|
||||
# Mod properties
|
||||
isUnstable=true
|
||||
modVersion=1.102.0-SNAPSHOT
|
||||
modVersion=1.102.0
|
||||
|
||||
# Minecraft properties: We want to configure this here so we can read it in settings.gradle
|
||||
mcVersion=1.19.3
|
||||
|
@ -26,7 +26,7 @@ nightConfig = "3.6.5"
|
||||
slf4j = "1.7.36"
|
||||
|
||||
# Minecraft mods
|
||||
forgeConfig = "4.2.10-alpha.0+12b01da6-squiddev" # No official build for 1.19.3, so we ship our own.
|
||||
forgeConfig = "5.0.3"
|
||||
iris = "1.19.3-v1.4.6"
|
||||
jei = "11.3.0.262"
|
||||
modmenu = "5.0.1"
|
||||
@ -83,7 +83,7 @@ slf4j = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" }
|
||||
# Minecraft mods
|
||||
fabric-api = { module = "net.fabricmc.fabric-api:fabric-api", version.ref = "fabric-api" }
|
||||
fabric-loader = { module = "net.fabricmc:fabric-loader", version.ref = "fabric-loader" }
|
||||
forgeConfig = { module = "net.minecraftforge:forgeconfigapiport-fabric", version.ref = "forgeConfig" }
|
||||
forgeConfig = { module = "fuzs.forgeconfigapiport:forgeconfigapiport-fabric", version.ref = "forgeConfig" }
|
||||
iris = { module = "maven.modrinth:iris", version.ref = "iris" }
|
||||
jei-api = { module = "mezz.jei:jei-1.19.2-common-api", version.ref = "jei" }
|
||||
jei-fabric = { module = "mezz.jei:jei-1.19.2-fabric", version.ref = "jei" }
|
||||
|
@ -1,3 +1,16 @@
|
||||
# New features in CC: Tweaked 1.102.0
|
||||
|
||||
* `fs.isReadOnly` now reads filesystem attributes (Lemmmy).
|
||||
* `IComputerAccess.executeMainThreadTask` no longer roundtrips values through Lua.
|
||||
* The turtle label now animates when the turtle moves.
|
||||
|
||||
Several bug fixes:
|
||||
* Trim spaces from filesystem paths.
|
||||
* Correctly format 12AM/PM with `%I`.
|
||||
* Fix `import.lua` failing to upload a file.
|
||||
* Fix duplicated swing animations on high-ping servers (emmachase).
|
||||
* Fix several issues with sparse Lua tables (Shiranuit).
|
||||
|
||||
# New features in CC: Tweaked 1.102.0-SNAPSHOT
|
||||
|
||||
No user-facing changes.
|
||||
|
@ -1,5 +1,14 @@
|
||||
New features in CC: Tweaked 1.102.0-SNAPSHOT
|
||||
New features in CC: Tweaked 1.102.0
|
||||
|
||||
No user-facing changes.
|
||||
* `fs.isReadOnly` now reads filesystem attributes (Lemmmy).
|
||||
* `IComputerAccess.executeMainThreadTask` no longer roundtrips values through Lua.
|
||||
* The turtle label now animates when the turtle moves.
|
||||
|
||||
Several bug fixes:
|
||||
* Trim spaces from filesystem paths.
|
||||
* Correctly format 12AM/PM with `%I`.
|
||||
* Fix `import.lua` failing to upload a file.
|
||||
* Fix duplicated swing animations on high-ping servers (emmachase).
|
||||
* Fix several issues with sparse Lua tables (Shiranuit).
|
||||
|
||||
Type "help changelog" to see the full version history.
|
||||
|
Loading…
Reference in New Issue
Block a user