File tree Expand file tree Collapse file tree 3 files changed +19
-7
lines changed
src/main/kotlin/ru/octol1ttle/flightassistant/screen Expand file tree Collapse file tree 3 files changed +19
-7
lines changed Original file line number Diff line number Diff line change 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
22not work as intended. Please use [ Discord] ( https://discord.gg/5kcBCvnbTp )
33or [ 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
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ org.gradle.caching=true
88mod.id =flightassistant
99mod.name =FlightAssistant
1010mod.group =ru.octol1ttle
11- mod.version =3.0.0-alpha.10
11+ mod.version =3.0.0-alpha.11
1212
1313# Global Dependencies
1414deps.mixin_extras =0.4.1
Original file line number Diff line number Diff 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 ))
You can’t perform that action at this time.
0 commit comments