From cd6d25a84c20c93c5e81400bc218afb30b44c8c0 Mon Sep 17 00:00:00 2001 From: dga711 Date: Sat, 27 Nov 2021 20:26:15 +0100 Subject: [PATCH 01/11] fix ap callout on spawn --- .../SimObjects/Airplanes/Asobo_CJ4/sound/sound.xml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/sound/sound.xml b/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/sound/sound.xml index 6ae86775f6..898f33b2f6 100644 --- a/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/sound/sound.xml +++ b/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/sound/sound.xml @@ -312,9 +312,14 @@ + + + + + + - From cf6d510150168c1a6ab2d310bad9ebc432e466f7 Mon Sep 17 00:00:00 2001 From: dga711 Date: Sun, 28 Nov 2021 11:41:26 +0100 Subject: [PATCH 02/11] fixing more sounds to circuit conditions. but they still play when you turn avionics on --- .../SimObjects/Airplanes/Asobo_CJ4/sound/sound.xml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/sound/sound.xml b/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/sound/sound.xml index 898f33b2f6..4f00e832e2 100644 --- a/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/sound/sound.xml +++ b/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/sound/sound.xml @@ -304,17 +304,20 @@ + + + + + + - + - - - @@ -379,6 +382,9 @@ + + + From 8bf9b7a4eb3dd6edf259a3b882e9c8878f3c6f0c Mon Sep 17 00:00:00 2001 From: dga711 Date: Sun, 28 Nov 2021 12:40:10 +0100 Subject: [PATCH 03/11] fix excessive SAI emissive --- .../SimObjects/Airplanes/Asobo_CJ4/model/CJ4_Cockpit.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/model/CJ4_Cockpit.xml b/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/model/CJ4_Cockpit.xml index 8df11671f3..7110ca7b56 100644 --- a/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/model/CJ4_Cockpit.xml +++ b/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/model/CJ4_Cockpit.xml @@ -212,6 +212,7 @@ CJ4_BackupDisplay BackupDisplay 49 + 0.4 3 From a3a07af3fcc4a5824288125b2d35452c49159961 Mon Sep 17 00:00:00 2001 From: dga711 Date: Sun, 28 Nov 2021 14:52:32 +0100 Subject: [PATCH 04/11] put the SAI on auto brightness --- .../SimObjects/Airplanes/Asobo_CJ4/model/CJ4_Cockpit.xml | 2 +- .../Pages/VCockpit/Instruments/Airliners/CJ4/FMC/CJ4_FMC.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/model/CJ4_Cockpit.xml b/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/model/CJ4_Cockpit.xml index 7110ca7b56..148efa917a 100644 --- a/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/model/CJ4_Cockpit.xml +++ b/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/model/CJ4_Cockpit.xml @@ -208,11 +208,11 @@ + 0.4 (A:GLASSCOCKPIT AUTOMATIC BRIGHTNESS, Number) min AttitudeBackup_Screen CJ4_BackupDisplay BackupDisplay 49 - 0.4 3 diff --git a/src/workingtitle-vcockpits-instruments-cj4/html_ui/Pages/VCockpit/Instruments/Airliners/CJ4/FMC/CJ4_FMC.js b/src/workingtitle-vcockpits-instruments-cj4/html_ui/Pages/VCockpit/Instruments/Airliners/CJ4/FMC/CJ4_FMC.js index f1c199e248..8b584285be 100644 --- a/src/workingtitle-vcockpits-instruments-cj4/html_ui/Pages/VCockpit/Instruments/Airliners/CJ4/FMC/CJ4_FMC.js +++ b/src/workingtitle-vcockpits-instruments-cj4/html_ui/Pages/VCockpit/Instruments/Airliners/CJ4/FMC/CJ4_FMC.js @@ -77,7 +77,7 @@ class CJ4_FMC extends FMCMainDisplay { SimVar.SetSimVarValue("L:WT_CJ4_INHIBIT_SEQUENCE", "number", 0); SimVar.SetSimVarValue("L:WT_CJ4_TFC_ALT_ABOVE_ENABLED", "number", 1); SimVar.SetSimVarValue("L:WT_CJ4_TFC_ALT_BELOW_ENABLED", "number", 1); - SimVar.SetSimVarValue("L:AS3000_Brightness", "number", 3.0); + SimVar.SetSimVarValue("L:AS3000_Brightness", "number", 2.0); this._nearest = undefined; /** @type {CJ4_FMC_NavigationService} */ this._navigationService = new CJ4_FMC_NavigationService(this); From 46f2e56ca948484063bb2f36c0d23605ccaaafdd Mon Sep 17 00:00:00 2001 From: dga711 Date: Mon, 29 Nov 2021 12:01:12 +0100 Subject: [PATCH 05/11] get rid of the all the sound events when turning avionics on --- .../SimObjects/Airplanes/Asobo_CJ4/sound/sound.xml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/sound/sound.xml b/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/sound/sound.xml index 4f00e832e2..4fc3aa8f92 100644 --- a/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/sound/sound.xml +++ b/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/sound/sound.xml @@ -303,24 +303,30 @@ - + + + - + + + - + + + From 66c42a078c2acb2e477241fdbb9e5af8f49e5457 Mon Sep 17 00:00:00 2001 From: dga711 Date: Mon, 29 Nov 2021 12:05:52 +0100 Subject: [PATCH 06/11] adjust sai auto brightness again --- .../SimObjects/Airplanes/Asobo_CJ4/model/CJ4_Cockpit.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/model/CJ4_Cockpit.xml b/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/model/CJ4_Cockpit.xml index 148efa917a..acba613b9f 100644 --- a/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/model/CJ4_Cockpit.xml +++ b/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/model/CJ4_Cockpit.xml @@ -208,7 +208,7 @@ - 0.4 (A:GLASSCOCKPIT AUTOMATIC BRIGHTNESS, Number) min + 0.7 (A:GLASSCOCKPIT AUTOMATIC BRIGHTNESS, Number) min AttitudeBackup_Screen CJ4_BackupDisplay BackupDisplay From 0dfb70cdfdc0645d08e91cdc1258df358492417d Mon Sep 17 00:00:00 2001 From: dga711 Date: Mon, 29 Nov 2021 12:10:58 +0100 Subject: [PATCH 07/11] update versions --- PackageDefinitions/workingtitle-aircraft-cj4-metapackage.xml | 2 +- PackageDefinitions/workingtitle-aircraft-cj4.xml | 2 +- .../Instruments/Airliners/CJ4/FMC/CJ4_FMC_InitRefIndexPage.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/PackageDefinitions/workingtitle-aircraft-cj4-metapackage.xml b/PackageDefinitions/workingtitle-aircraft-cj4-metapackage.xml index 9671d18b16..2511ecf3bb 100644 --- a/PackageDefinitions/workingtitle-aircraft-cj4-metapackage.xml +++ b/PackageDefinitions/workingtitle-aircraft-cj4-metapackage.xml @@ -1,4 +1,4 @@ - + CUSTOM CJ4 diff --git a/PackageDefinitions/workingtitle-aircraft-cj4.xml b/PackageDefinitions/workingtitle-aircraft-cj4.xml index 694da54882..6601abd31e 100644 --- a/PackageDefinitions/workingtitle-aircraft-cj4.xml +++ b/PackageDefinitions/workingtitle-aircraft-cj4.xml @@ -1,4 +1,4 @@ - + CUSTOM CJ4 diff --git a/src/workingtitle-vcockpits-instruments-cj4/html_ui/Pages/VCockpit/Instruments/Airliners/CJ4/FMC/CJ4_FMC_InitRefIndexPage.js b/src/workingtitle-vcockpits-instruments-cj4/html_ui/Pages/VCockpit/Instruments/Airliners/CJ4/FMC/CJ4_FMC_InitRefIndexPage.js index 363289bfda..4e962f1c4f 100644 --- a/src/workingtitle-vcockpits-instruments-cj4/html_ui/Pages/VCockpit/Instruments/Airliners/CJ4/FMC/CJ4_FMC_InitRefIndexPage.js +++ b/src/workingtitle-vcockpits-instruments-cj4/html_ui/Pages/VCockpit/Instruments/Airliners/CJ4/FMC/CJ4_FMC_InitRefIndexPage.js @@ -1269,7 +1269,7 @@ class CJ4_FMC_InitRefIndexPage { ["Working-Title-MSFS-Mods[white s-text]"], [""], [" VERSION[blue]"], - ["0.12.10[s-text white]"], + ["0.12.11[s-text white]"], [""], [""], [""], From 7f81dad27af2343005f8a50e702f2a8e8386d804 Mon Sep 17 00:00:00 2001 From: dga711 Date: Mon, 29 Nov 2021 12:19:46 +0100 Subject: [PATCH 08/11] 12.11 docs --- docs/workingtitle-cj4/CHANGES.md | 7 ++-- .../Working Title CJ4 v0.12.10 Changes.md | 37 +++++++++++++++++++ .../Airplanes/Asobo_CJ4/model/CJ4_Cockpit.xml | 2 +- 3 files changed, 42 insertions(+), 4 deletions(-) create mode 100644 docs/workingtitle-cj4/Working Title CJ4 v0.12.10 Changes.md diff --git a/docs/workingtitle-cj4/CHANGES.md b/docs/workingtitle-cj4/CHANGES.md index dfaae94cf7..2284b37cb4 100644 --- a/docs/workingtitle-cj4/CHANGES.md +++ b/docs/workingtitle-cj4/CHANGES.md @@ -1,5 +1,5 @@ # Working Title CJ4 v0.12.10 -Welcome to the Working Title CJ4 v0.12.10. This version contains a few important fixes for bugs found since the SU7 release. +Welcome to the Working Title CJ4 v0.12.11. This version contains a few Quality of Life fixes. Thanks to everyone, as always, for your contributions! We really love working with you all. @@ -21,8 +21,9 @@ Installation is easy, simply copy the `workingtitle-aircraft-cj4` folder inside **Important: We recommend that you fully delete the previous `workingtitle-aircraft-cj4` folder before copying this release.** ## Fixes -- Fixed an issue where ILS would not auto-tune, auto-switch, or track for some ILS frequencies -- LNAV should no longer fail to provide guidance while a flight plan change is pending execution +- Fixes aural warnings and chimes when spawning Cold & Dark +- Adjust excessive Standby Attitude Indicator brightness +- SAI brightness now automatically adjusts to daylight conditions ## ⚠️ Known Issues * Wing Light Button does not light up. diff --git a/docs/workingtitle-cj4/Working Title CJ4 v0.12.10 Changes.md b/docs/workingtitle-cj4/Working Title CJ4 v0.12.10 Changes.md new file mode 100644 index 0000000000..dfaae94cf7 --- /dev/null +++ b/docs/workingtitle-cj4/Working Title CJ4 v0.12.10 Changes.md @@ -0,0 +1,37 @@ +# Working Title CJ4 v0.12.10 +Welcome to the Working Title CJ4 v0.12.10. This version contains a few important fixes for bugs found since the SU7 release. + +Thanks to everyone, as always, for your contributions! We really love working with you all. + +## Note about Liveries +To accommodate for future work on the CJ4 there have been model changes made to the plane in SU7. This means that all liveries that still fully override panel.cfg with their own version (which they really shouldn't) won't work anymore. +You will notice a bad livery or other mods interferring by having all white screens in the cockpit. + +Liveries should use the method as described in our [Repainter's Guide](https://www.workingtitle.aero/packages/cj4/guides/repainter). +Many liveries already use that method and should work alright after the update. + +## READ THE GUIDE +Please, please, please read the operators guide for instructions on using features. A lot of hard work went into writing the guide and the Discord channels are clogged with questions that are readily answered in the guide. + +GUIDES: https://www.workingtitle.aero/packages/cj4/guides/ + +## Installation +Installation is easy, simply copy the `workingtitle-aircraft-cj4` folder inside the zip file to your MSFS Community folder. + +**Important: We recommend that you fully delete the previous `workingtitle-aircraft-cj4` folder before copying this release.** + +## Fixes +- Fixed an issue where ILS would not auto-tune, auto-switch, or track for some ILS frequencies +- LNAV should no longer fail to provide guidance while a flight plan change is pending execution + +## ⚠️ Known Issues +* Wing Light Button does not light up. +* The Lower CCP LONG Press does not work for reselecting charts - we will look further at this. +* B/C button throws an error in the FMC - do not use B/C for now. +* Some "lettered" or non-runway-specific approaches now appear as something like RNAV A - 00 and do not allow the selection of a landing runway, preventing using the Approach Refs page - this is something we will be working to address in the future. +* Some external applications that use the GPS/Flight plan SimVars may not function correctly or as expected when FP Sync is off. +* Loading and saving flights can have bad results. +* Custom liveries can render FADEC inoperative if they ship with a panel.cfg. Painters should reference our new [Repainter's Guide](https://www.workingtitle.aero/packages/cj4/guides/repainter) for solutions. +* Autopilot modes cannot be triggered via key bindings or controllers and must currently be triggered in the cockpit with the mouse. External binding applications are adding support for LVars and HEvents. Used SimVars are documented in our [Guide on SimVars](https://www.workingtitle.aero/packages/cj4/guides/simvars). +* Sometimes a heading to altitude instruction on takeoff will display further than the first RNAV fix on an RNAV departure procedure; in these cases the workaround is to cross-check the DP chart and remove the erroneous waypoint either by deleting the heading to altitude fix or dropping the first RNAV fix onto the magenta line in the LEGS page. +* Due to sim autopilot bank rate limitations, the aircraft may overshoot on certain RNP approaches with tight turns. If you encounter this, we recommend hand flying the approach with the given lateral and vertical guidance. diff --git a/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/model/CJ4_Cockpit.xml b/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/model/CJ4_Cockpit.xml index acba613b9f..404cc72eb8 100644 --- a/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/model/CJ4_Cockpit.xml +++ b/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/model/CJ4_Cockpit.xml @@ -299,7 +299,7 @@ CCP_Push_casPage_2 CCP_Knob_Inner_2 CCP_Knob_Outer_2 - CCP_Knob_Outer_Push_2 + CCP_Knob_Inner_Push_2 CCP_Push_eng_2 CCP_Push_uprMenu_2 CCP_Joystick_2 From e3aba926c4e4410ead2e906efebbdb40b6b34ef6 Mon Sep 17 00:00:00 2001 From: dga711 Date: Tue, 30 Nov 2021 11:52:15 +0100 Subject: [PATCH 09/11] fix gear sounds playing when they shouldn't --- docs/workingtitle-cj4/CHANGES.md | 3 ++- .../SimObjects/Airplanes/Asobo_CJ4/sound/sound.xml | 8 ++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/workingtitle-cj4/CHANGES.md b/docs/workingtitle-cj4/CHANGES.md index 2284b37cb4..1032b9a32e 100644 --- a/docs/workingtitle-cj4/CHANGES.md +++ b/docs/workingtitle-cj4/CHANGES.md @@ -21,7 +21,8 @@ Installation is easy, simply copy the `workingtitle-aircraft-cj4` folder inside **Important: We recommend that you fully delete the previous `workingtitle-aircraft-cj4` folder before copying this release.** ## Fixes -- Fixes aural warnings and chimes when spawning Cold & Dark +- Fix aural warnings and chimes playing when spawning Cold & Dark +- Fix gear up/down sounds playing at unappropriate times - Adjust excessive Standby Attitude Indicator brightness - SAI brightness now automatically adjusts to daylight conditions diff --git a/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/sound/sound.xml b/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/sound/sound.xml index 4fc3aa8f92..128d70e1ad 100644 --- a/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/sound/sound.xml +++ b/src/workingtitle-aircraft-cj4/SimObjects/Airplanes/Asobo_CJ4/sound/sound.xml @@ -361,17 +361,21 @@ - + + + - + + + From 429a8e54ac7832f78345f93dda6d51d57a4643ce Mon Sep 17 00:00:00 2001 From: dga711 Date: Tue, 30 Nov 2021 12:04:43 +0100 Subject: [PATCH 10/11] fix typo in changelog --- docs/workingtitle-cj4/CHANGES.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/workingtitle-cj4/CHANGES.md b/docs/workingtitle-cj4/CHANGES.md index 1032b9a32e..48cb36dc03 100644 --- a/docs/workingtitle-cj4/CHANGES.md +++ b/docs/workingtitle-cj4/CHANGES.md @@ -21,8 +21,8 @@ Installation is easy, simply copy the `workingtitle-aircraft-cj4` folder inside **Important: We recommend that you fully delete the previous `workingtitle-aircraft-cj4` folder before copying this release.** ## Fixes -- Fix aural warnings and chimes playing when spawning Cold & Dark -- Fix gear up/down sounds playing at unappropriate times +- Fix aural warnings and chimes playing after plane spawns +- Fix gear up/down sounds playing at inappropriate times - Adjust excessive Standby Attitude Indicator brightness - SAI brightness now automatically adjusts to daylight conditions From 90650b8454f94440ea3db322015e71bcb94c0b27 Mon Sep 17 00:00:00 2001 From: DG Date: Tue, 7 Dec 2021 10:10:21 +0100 Subject: [PATCH 11/11] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b69a19f26a..c00c502f27 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,6 @@ You can keep track of Updates and Progress on Discord [https://discord.com/invit Project | Description | Current Version | Documentation --------|-------------|-----------------|-------------- -CJ4 | Performance and avionics improvements for the Citation CJ4 | [v0.12.9](https://github.com/Working-Title-MSFS-Mods/fspackages/releases/tag/cj4-v0.12.9) | [docs](https://github.com/Working-Title-MSFS-Mods/fspackages/tree/main/docs/workingtitle-cj4) +CJ4 | Performance and avionics improvements for the Citation CJ4 | [v0.12.11](https://github.com/Working-Title-MSFS-Mods/fspackages/releases/tag/cj4-v0.12.11) | [docs](https://github.com/Working-Title-MSFS-Mods/fspackages/tree/main/docs/workingtitle-cj4) G3000 | Fixes and enhancements for the stock G3000 avionics package | [v0.7.6](https://github.com/Working-Title-MSFS-Mods/fspackages/releases/tag/g3000-v0.7.6) | [docs](https://github.com/Working-Title-MSFS-Mods/fspackages/tree/main/docs/workingtitle-g3000) GX | Fixes and enhancements for the stock G3X Touch avionics package | [v0.1.0](https://github.com/Working-Title-MSFS-Mods/fspackages/releases/tag/gx-v0.1.0) | [docs](https://github.com/Working-Title-MSFS-Mods/fspackages/tree/main/docs/workingtitle-gx)