Skip to content

Commit bd1e307

Browse files
committed
More user-friendly default value and supplementary explanation for another content
- Modified the opacity of the message box background - Added some migration information about `ExtendedAircraftMissions`
1 parent 2dc078e commit bd1e307

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/User-Interface.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ In `RA2MD.INI`:
408408
[Phobos]
409409
MessageApplyHoverState=false ; boolean
410410
MessageDisplayInCenter=false ; boolean
411-
MessageDisplayInCenter.BoardOpacity=30 ; integer
411+
MessageDisplayInCenter.BoardOpacity=40 ; integer
412412
MessageDisplayInCenter.LabelsCount=6 ; integer
413413
MessageDisplayInCenter.RecordsCount=12 ; integer
414414
```

docs/Whats-New.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ New:
452452
- Randomized anims for several behaviors (by Ollerus)
453453
- Shield respawn animation and weapon (by Ollerus)
454454
- [Customize the chained damage of the wall](Fixed-or-Improved-Logics.md#customize-the-chained-damage-of-the-wall) (by TaranDahl)
455-
- Allow the aircraft to enter area guard mission and not crash immediately without any airport (by CrimRecya)
455+
- Allow the aircraft to enter area guard mission and not crash immediately without any airport. And now when `ExtendedAircraftMissions` is enabled, aircraft that can land at the airport will check at any time to see if they have a dock. Therefore, if there are aircraft in your mission that require dock and you have not provided enough or not disabled the feature, they will crash immediately (by CrimRecya)
456456
- [Unlimbo Detonate warhead](New-or-Enhanced-Logics.md#unlimbo-detonate-warhead) (by FlyStar)
457457
- [Attack](New-or-Enhanced-Logics.md#attack-technos-underground) and [damage](New-or-Enhanced-Logics.md#damage-technos-underground) technos underground (by TaranDahl)
458458
- Fast access structure (by FlyStar)

docs/locale/zh_CN/LC_MESSAGES/User-Interface.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1307,14 +1307,14 @@ msgid ""
13071307
"[Phobos]\n"
13081308
"MessageApplyHoverState=false ; boolean\n"
13091309
"MessageDisplayInCenter=false ; boolean\n"
1310-
"MessageDisplayInCenter.BoardOpacity=30 ; integer\n"
1310+
"MessageDisplayInCenter.BoardOpacity=40 ; integer\n"
13111311
"MessageDisplayInCenter.LabelsCount=6 ; integer\n"
13121312
"MessageDisplayInCenter.RecordsCount=12 ; integer\n"
13131313
msgstr ""
13141314
"[Phobos]\n"
13151315
"MessageApplyHoverState=false ; boolean\n"
13161316
"MessageDisplayInCenter=false ; boolean\n"
1317-
"MessageDisplayInCenter.BoardOpacity=30 ; integer\n"
1317+
"MessageDisplayInCenter.BoardOpacity=40 ; integer\n"
13181318
"MessageDisplayInCenter.LabelsCount=6 ; integer\n"
13191319
"MessageDisplayInCenter.RecordsCount=12 ; integer\n"
13201320

src/Phobos.INI.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ bool Phobos::Config::EnableSelectBox = false;
5555
bool Phobos::Config::DigitalDisplay_Enable = false;
5656
bool Phobos::Config::MessageApplyHoverState = false;
5757
bool Phobos::Config::MessageDisplayInCenter = false;
58-
int Phobos::Config::MessageDisplayInCenter_BoardOpacity = 30;
58+
int Phobos::Config::MessageDisplayInCenter_BoardOpacity = 40;
5959
int Phobos::Config::MessageDisplayInCenter_LabelsCount = 6;
6060
int Phobos::Config::MessageDisplayInCenter_RecordsCount = 12;
6161
bool Phobos::Config::RealTimeTimers = false;
@@ -91,7 +91,7 @@ DEFINE_HOOK(0x5FACDF, OptionsClass_LoadSettings_LoadPhobosSettings, 0x5)
9191
Phobos::Config::ShowPlacementPreview = CCINIClass::INI_RA2MD.ReadBool(phobosSection, "ShowPlacementPreview", true);
9292
Phobos::Config::MessageApplyHoverState = CCINIClass::INI_RA2MD.ReadBool(phobosSection, "MessageApplyHoverState", false);
9393
Phobos::Config::MessageDisplayInCenter = CCINIClass::INI_RA2MD.ReadBool(phobosSection, "MessageDisplayInCenter", false);
94-
Phobos::Config::MessageDisplayInCenter_BoardOpacity = CCINIClass::INI_RA2MD.ReadInteger(phobosSection, "MessageDisplayInCenter.BoardOpacity", 30);
94+
Phobos::Config::MessageDisplayInCenter_BoardOpacity = CCINIClass::INI_RA2MD.ReadInteger(phobosSection, "MessageDisplayInCenter.BoardOpacity", 40);
9595
Phobos::Config::MessageDisplayInCenter_LabelsCount = CCINIClass::INI_RA2MD.ReadInteger(phobosSection, "MessageDisplayInCenter.LabelsCount", 6);
9696
Phobos::Config::MessageDisplayInCenter_RecordsCount = CCINIClass::INI_RA2MD.ReadInteger(phobosSection, "MessageDisplayInCenter.RecordsCount", 12);
9797
Phobos::Config::RealTimeTimers = CCINIClass::INI_RA2MD.ReadBool(phobosSection, "RealTimeTimers", false);

0 commit comments

Comments
 (0)