Skip to content

Commit 87a8143

Browse files
committed
chore: bump version
Signed-off-by: Octol1ttle <[email protected]>
1 parent 2f0180e commit 87a8143

File tree

5 files changed

+23
-21
lines changed

5 files changed

+23
-21
lines changed

CHANGELOG.md

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
1-
This is Alpha 11 of a major update to FlightAssistant. Please note that there may be critical issues and features may
1+
This is Alpha 12 of a major update to FlightAssistant. Please note that there may be critical issues and features may
22
not work as intended. Please use [Discord](https://discord.gg/5kcBCvnbTp)
33
or [GitHub](https://github.com/Octol1ttle/FlightAssistant) to discuss this alpha or report any bugs.
44

55
## New features
6-
- Redesigned the Auto Flight screen
7-
- Redesigned the Flight Setup screen
6+
7+
- **Added missing ability to turn off status message display from the config screen**
88

99
## Changes
10-
- Reduced the volume of alert "__AUTO FLT__ AP OFF"
11-
- The Flight Setup screen now has a button to open mod configuration
12-
- Significantly improved the logic of autothrust when using Do a Barrel Roll thrust in `SPEED` mode
10+
11+
- The attitude display will no longer be shown when the camera is in mirrored third-person mode
12+
- The `THR` status message will no longer appear if thrust is set to 0% and there's no thrust source available
13+
- A separate Flight Mode message will be shown when thrust is in reverse
14+
- Improved detection of modded elytras
15+
- Improved ECAM Actions text for the `F/CTL PROT LOST` alert
1316

1417
## Fixed issues
15-
- **1.21.7: Fixed crashing when opening the Flight Setup screen**
16-
- Fixed an issue that caused safety settings to save incorrectly if safety was disabled in global options
17-
- Pitch limit arrows now appear in the correct position
18-
- Pitch limiter text no longer blinks rapidly
19-
- Vertical speed bar can now draw itself outside the scale borders
20-
- Disabled computers no longer can submit control inputs
18+
19+
- **Fixed crashing on Forge**
20+
- **Fixed mod not being present on NeoForge**
21+
- Fixed elytra automatically opening/closing even when `Enable safety features` is set to OFF
22+
- Fixed automatic thrust reduction occurring even when `Enable safety features` is set to OFF
23+
- Fixed `FRWK EXPLOSIVE` alert appearing even when `Enable safety features` is set to OFF
24+
- Fixed missing fault alert for the HUD Display Data Computer
25+
- Fixed missing translations for Status Display in the Display Management Screen

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ publishMods {
202202
val buildAndCollect = tasks.register<Copy>("buildAndCollect") {
203203
group = "build"
204204
from(modstitch.finalJarTask.get().archiveFile)
205-
into(rootProject.layout.buildDirectory.file("libs/${mod.version}"))
205+
into(rootProject.layout.buildDirectory.file("libs/${project.property("mod.version")}"))
206206
dependsOn("build")
207207
}
208208

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ org.gradle.configuration-cache=true
88
mod.id=flightassistant
99
mod.name=FlightAssistant
1010
mod.group=ru.octol1ttle
11-
mod.version=3.0.0-alpha.11
11+
mod.version=3.0.0-alpha.12
1212

1313
# Global Dependencies
1414
deps.mixin_extras=0.4.1

settings.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
pluginManagement {
22
repositories {
3+
mavenLocal()
34
maven("https://jitpack.io")
45

56
gradlePluginPortal()
@@ -27,7 +28,7 @@ pluginManagement {
2728
}
2829

2930
plugins {
30-
id("dev.kikugie.stonecutter") version "0.7.6"
31+
id("dev.kikugie.stonecutter") version "0.7.8"
3132
}
3233

3334
stonecutter {
@@ -36,7 +37,7 @@ stonecutter {
3637

3738
create(rootProject) {
3839
fun mc(version: String, vararg loaders: String) {
39-
for (it in loaders) vers("$version-$it", version)
40+
for (it in loaders) version("$version-$it", version)
4041
}
4142
mc("1.20.1", "fabric", "forge")
4243
mc("1.21.1", "fabric", "neoforge")

src/main/kotlin/ru/octol1ttle/flightassistant/screen/system/SystemManagementList.kt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,7 @@ class SystemManagementList(width: Int, height: Int, y0: Int, y1: Int, baseKey: S
2020
init {
2121
var y: Int = y0 + Y_OFFSET
2222
for (module: ResourceLocation in controller.identifiers()) {
23-
this.addEntry(
24-
Entry(
25-
x0, y, width, module, Component.translatable("$baseKey.$module"), controller
26-
)
27-
)
23+
this.addEntry(Entry(0, y, width, module, Component.translatable("$baseKey.$module"), controller))
2824
y += ITEM_HEIGHT
2925
}
3026
}

0 commit comments

Comments
 (0)