Skip to content

Commit c7609e3

Browse files
committed
1.21.10
Signed-off-by: Octol1ttle <[email protected]>
1 parent 0891518 commit c7609e3

File tree

7 files changed

+9
-10
lines changed

7 files changed

+9
-10
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ publishMods {
177177
modstitch.onEnable {
178178
file = modstitch.finalJarTask.flatMap { it.archiveFile }
179179
}
180-
//additionalFiles.from(tasks.named<SourceTask>("sourcesJar").flatMap { it.archiveFile })
180+
additionalFiles.from(tasks.named<Jar>("sourcesJar").flatMap { it.archiveFile })
181181

182182
displayName = "${mod.name} ${mod.version} for ${loader.replaceFirstChar { it.uppercase() }} ${property("mod.mc_title")}"
183183
version = "${mod.version}+mc$minecraft-$loader"

src/main/kotlin/ru/octol1ttle/flightassistant/screen/FABaseScreen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ abstract class FABaseScreen(val parent: Screen?, title: Component) : Screen(titl
3838
override fun isPauseScreen(): Boolean = false
3939

4040
//? if >=1.21.9 {
41-
/*override fun keyPressed(event: KeyEvent): Boolean {
41+
/*override fun keyPressed(event: net.minecraft.client.input.KeyEvent): Boolean {
4242
if (super.keyPressed(event)) {
4343
return true
4444
} else if (FAKeyMappings.openFlightAssistantSetup.matches(event)) {

src/main/kotlin/ru/octol1ttle/flightassistant/screen/components/CycleTextOnlyButton.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import net.minecraft.ChatFormatting
66
import net.minecraft.client.gui.GuiGraphics
77
import net.minecraft.client.gui.components.AbstractButton
88
import net.minecraft.client.gui.narration.NarrationElementOutput
9-
import net.minecraft.client.gui.screens.Screen
109
import net.minecraft.network.chat.Component
1110
import net.minecraft.network.chat.MutableComponent
1211
import net.minecraft.network.chat.Style
@@ -33,7 +32,7 @@ class CycleTextOnlyButton<E : NameableEnum>(x: Int, y: Int, private val entries:
3332
}
3433

3534
//? if >=1.21.9 {
36-
/*override fun onPress(input: InputWithModifiers) {
35+
/*override fun onPress(input: net.minecraft.client.input.InputWithModifiers) {
3736
if (input.hasShiftDown()) {
3837
this.cycleValue(-1)
3938
} else {

versions/1.21.1-fabric/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ deps.dabr=3.7.2+1.21-fabric
1212

1313
# Mod
1414
mod.mc_version_range=>=1.21 <1.21.2
15-
mod.mc_title=1.21
15+
mod.mc_title=1.21.1
1616
mod.mc_targets=1.21 1.21.1

versions/1.21.1-neoforge/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ deps.dabr=3.7.3+1.21-neoforge
1212

1313
# Mod
1414
mod.mc_version_range=[1.21, 1.21.2)
15-
mod.mc_title=1.21
15+
mod.mc_title=1.21.1
1616
mod.mc_targets=1.21 1.21.1

versions/1.21.6-fabric/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ deps.dabr=3.8.2+1.21.6-fabric
1212

1313
# Mod
1414
mod.mc_version_range=>=1.21.6 <1.21.9
15-
mod.mc_title=1.21.7
15+
mod.mc_title=1.21.8
1616
mod.mc_targets=1.21.6 1.21.7 1.21.8

versions/1.21.9-fabric/gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ deps.modmenu=16.0.0-rc.1
1111
deps.dabr=3.8.3+1.21.9-fabric
1212

1313
# Mod
14-
mod.mc_version_range=>=1.21.9 <1.21.10
15-
mod.mc_title=1.21.9
16-
mod.mc_targets=1.21.9
14+
mod.mc_version_range=>=1.21.9 <1.21.11
15+
mod.mc_title=1.21.10
16+
mod.mc_targets=1.21.9 1.21.10

0 commit comments

Comments
 (0)