Skip to content

Commit 2eb8459

Browse files
committed
i'm gonna reach alpha 20 at this rate
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
1 parent d5fc119 commit 2eb8459

File tree

3 files changed

+19
-7
lines changed

3 files changed

+19
-7
lines changed

CHANGELOG.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
1-
This is Alpha 10 of a major update to FlightAssistant. Please note that there may be critical issues and features may
1+
This is Alpha 11 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

5-
## Fixed issues
5+
## New features
6+
- Redesigned the Auto Flight screen
7+
- Redesigned the Flight Setup screen
8+
9+
## 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
613

7-
- Disabled the `Flight Plan` button in the Flight Setup screen as flight plans aren't ready yet
8-
- Fixed random game crashes occurring on heavily modded instances
14+
## 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

gradle.properties

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

1313
# Global Dependencies
1414
deps.mixin_extras=0.4.1

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ class FlightAssistantSetupScreen : FABaseScreen(Component.translatable("menu.fli
3939
}.pos(this.centerX - 160, this.centerY + 20).width(100).build())
4040
this.addRenderableWidget(Button.builder(Component.translatable("menu.flightassistant.fms.enroute")) {
4141
//this.minecraft!!.setScreen(FlightPlanScreen())
42-
}.pos(this.centerX - 50, this.centerY + 20).width(100).build())
42+
}.pos(this.centerX - 50, this.centerY + 20).width(100).build()).active = false
4343
this.addRenderableWidget(Button.builder(Component.translatable("menu.flightassistant.fms.arrival")) {
4444
//this.minecraft!!.setScreen(FlightPlanScreen())
45-
}.pos(this.centerX + 60, this.centerY + 20).width(100).build())
45+
}.pos(this.centerX + 60, this.centerY + 20).width(100).build()).active = false
4646

4747
this.addRenderableWidget(Button.builder(Component.translatable("menu.flightassistant.config")) {
4848
this.minecraft!!.setScreen(FAConfigScreen.generate(null))

0 commit comments

Comments
 (0)