From dad08c8fce34aeecb29f12a1b7d83240d5854b89 Mon Sep 17 00:00:00 2001 From: Frank Kopp Date: Fri, 15 Nov 2024 15:10:01 +0100 Subject: [PATCH 01/17] Added Dev versions to A380X --- config/config.ts | 39 +++++++++++++++++++++++++++++++++++---- 1 file changed, 35 insertions(+), 4 deletions(-) diff --git a/config/config.ts b/config/config.ts index 26d163a..50dd59f 100644 --- a/config/config.ts +++ b/config/config.ts @@ -117,7 +117,7 @@ const config: Configuration = { 'https://github.com/flybywiresim/a32nx/releases/download/assets/experimental/', ], description: 'Development will have the latest features that will end up in the next stable. ' + - 'Bugs are to be expected. It updates whenever something is added to the \'master\' ' + + 'Although every change is QA-tested bugs are a little more likely. It updates whenever something is added to the \'master\' ' + 'branch on Github. Please visit our discord for support.', isExperimental: false, releaseModel: { @@ -271,7 +271,7 @@ const config: Configuration = { tracks: [ { name: 'Stable (4K)', - key: 'a32nx-stable-4k', + key: 'a380x-stable-4k', url: 'https://flybywirecdn.com/addons/a380x/stable-4k', alternativeUrls: [], description: 'Includes our 4K downscaled cabin, cockpit and exterior textures. Choose this option for reduced stutters, better performance, with HIGH or lower texture resolution. Additionally, if you intend to use the following:\n\n' + @@ -286,7 +286,7 @@ const config: Configuration = { }, { name: 'Stable (8K)', - key: 'a32nx-stable-8k', + key: 'a380x-stable-8k', url: 'https://flybywirecdn.com/addons/a380x/stable-8k', alternativeUrls: [], description: 'Includes our 8K full resolution cabin, cockpit and exterior textures. This is the full fidelity experience and our recommendation if your system is powerful enough to support it. Realistic and in high detail.\n\n' + @@ -297,6 +297,36 @@ const config: Configuration = { type: 'fragmenter', }, }, + { + name: 'Development (8k)', + key: 'a380x-dev-8k', + url: 'https://flybywirecdn.com/addons/a380x/master-8k', + alternativeUrls: [ ], + description: 'Development will have the latest features that will end up in the next stable. ' + + 'Although every change is QA-tested bugs are a little more likely. It updates whenever something is added to the \'master\' ' + + 'branch on Github. Please visit our discord for support.' + + '* DX11 recommended \n\n' + + '* HIGH or lower texture resolution setting recommended \n\n', + isExperimental: false, + releaseModel: { + type: 'fragmenter', + }, + }, + { + name: 'Development (4k)', + key: 'a380x-dev-8k', + url: 'https://flybywirecdn.com/addons/a380x/master-4k', + alternativeUrls: [ ], + description: 'Development will have the latest features that will end up in the next stable. ' + + 'Although every change is QA-tested bugs are a little more likely. It updates whenever something is added to the \'master\' ' + + 'branch on Github. Please visit our discord for support.' + + '* DX11 recommended \n\n' + + '* HIGH or lower texture resolution setting recommended \n\n', + isExperimental: false, + releaseModel: { + type: 'fragmenter', + }, + }, ], incompatibleAddons: [ // title: the exact title as it appears in the manifest.json @@ -305,7 +335,8 @@ const config: Configuration = { // description: a short description of why the addon is incompatible { title: 'Mets747 FBW A380 Lights Mod', - description: "It is required to remove this add-on before installing and using the A32NX. This add-on overrides A32NX components and may render the A32NX unusable." + description: "It is required to remove this add-on before installing and using the A32NX. This add-on overrides " + + "A32NX components and may render the A32NX unusable." }, ], disallowedRunningExternalApps: ['@/msfs'], From 11142238e486ce26e7b023437401e2a7cea29dfb Mon Sep 17 00:00:00 2001 From: Frank Kopp Date: Fri, 15 Nov 2024 15:14:01 +0100 Subject: [PATCH 02/17] fix key --- config/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.ts b/config/config.ts index 50dd59f..8302a69 100644 --- a/config/config.ts +++ b/config/config.ts @@ -314,7 +314,7 @@ const config: Configuration = { }, { name: 'Development (4k)', - key: 'a380x-dev-8k', + key: 'a380x-dev-4k', url: 'https://flybywirecdn.com/addons/a380x/master-4k', alternativeUrls: [ ], description: 'Development will have the latest features that will end up in the next stable. ' + From 33705740e7a810539ace057966b64072c2092eef Mon Sep 17 00:00:00 2001 From: Frank Kopp Date: Fri, 15 Nov 2024 15:17:25 +0100 Subject: [PATCH 03/17] changed order --- config/config.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config/config.ts b/config/config.ts index 8302a69..a05fedc 100644 --- a/config/config.ts +++ b/config/config.ts @@ -298,9 +298,9 @@ const config: Configuration = { }, }, { - name: 'Development (8k)', - key: 'a380x-dev-8k', - url: 'https://flybywirecdn.com/addons/a380x/master-8k', + name: 'Development (4k)', + key: 'a380x-dev-4k', + url: 'https://flybywirecdn.com/addons/a380x/master-4k', alternativeUrls: [ ], description: 'Development will have the latest features that will end up in the next stable. ' + 'Although every change is QA-tested bugs are a little more likely. It updates whenever something is added to the \'master\' ' + @@ -313,9 +313,9 @@ const config: Configuration = { }, }, { - name: 'Development (4k)', - key: 'a380x-dev-4k', - url: 'https://flybywirecdn.com/addons/a380x/master-4k', + name: 'Development (8k)', + key: 'a380x-dev-8k', + url: 'https://flybywirecdn.com/addons/a380x/master-8k', alternativeUrls: [ ], description: 'Development will have the latest features that will end up in the next stable. ' + 'Although every change is QA-tested bugs are a little more likely. It updates whenever something is added to the \'master\' ' + From 25ef2958fea215d1d683e6fc90608d4ad30b3856 Mon Sep 17 00:00:00 2001 From: Frank Kopp Date: Fri, 15 Nov 2024 15:22:54 +0100 Subject: [PATCH 04/17] updated description --- config/config.ts | 36 +++++++++++++++++++++++------------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/config/config.ts b/config/config.ts index a05fedc..44500f5 100644 --- a/config/config.ts +++ b/config/config.ts @@ -274,11 +274,14 @@ const config: Configuration = { key: 'a380x-stable-4k', url: 'https://flybywirecdn.com/addons/a380x/stable-4k', alternativeUrls: [], - description: 'Includes our 4K downscaled cabin, cockpit and exterior textures. Choose this option for reduced stutters, better performance, with HIGH or lower texture resolution. Additionally, if you intend to use the following:\n\n' + - '* Use frame generation \n\n' + - '* Virtual Reality (VR) \n\n' + - '* DX12 beta \n\n' + - '* or are otherwise limited by your graphics card VRAM amount. [System Requirements](https://docs.flybywiresim.com/aircraft/install/installation/#estimated-system-requirements-for-a380x)', + description: 'Includes our 4K downscaled cabin, cockpit and exterior textures. Choose this option for reduced ' + + 'stutters, better performance, with HIGH or lower texture resolution. Additionally, if you intend to use the ' + + 'following:\n\n' + + '* Use frame generation \n\n' + + '* Virtual Reality (VR) \n\n' + + '* DX12 beta \n\n' + + '* or are otherwise limited by your graphics card VRAM amount. ' + + '[System Requirements](https://docs.flybywiresim.com/aircraft/install/installation/#estimated-system-requirements-for-a380x)', isExperimental: false, releaseModel: { type: 'fragmenter', @@ -289,9 +292,11 @@ const config: Configuration = { key: 'a380x-stable-8k', url: 'https://flybywirecdn.com/addons/a380x/stable-8k', alternativeUrls: [], - description: 'Includes our 8K full resolution cabin, cockpit and exterior textures. This is the full fidelity experience and our recommendation if your system is powerful enough to support it. Realistic and in high detail.\n\n' + - '* DX11 recommended \n\n' + - '* HIGH or lower texture resolution setting recommended \n\n', + description: 'Includes our 8K full resolution cabin, cockpit and exterior textures. This is the full fidelity ' + + 'experience and our recommendation if your system is powerful enough to support it. Realistic and in high ' + + 'detail.\n\n' + + '* DX11 recommended \n\n' + + '* HIGH or lower texture resolution setting recommended \n\n', isExperimental: false, releaseModel: { type: 'fragmenter', @@ -303,10 +308,15 @@ const config: Configuration = { url: 'https://flybywirecdn.com/addons/a380x/master-4k', alternativeUrls: [ ], description: 'Development will have the latest features that will end up in the next stable. ' + - 'Although every change is QA-tested bugs are a little more likely. It updates whenever something is added to the \'master\' ' + - 'branch on Github. Please visit our discord for support.' + - '* DX11 recommended \n\n' + - '* HIGH or lower texture resolution setting recommended \n\n', + 'Although every change is QA-tested bugs are a little more likely. It updates whenever something is added to ' + + 'the \'master\' branch on Github. Please visit our discord for support. \n\n' + + 'Includes our 4K downscaled cabin, cockpit and exterior textures. Choose this option for reduced ' + + 'stutters, better performance, with HIGH or lower texture resolution. Additionally, if you intend to use the ' + + 'following:\n\n' + + '* Use frame generation \n\n' + + '* Virtual Reality (VR) \n\n' + + '* DX12 beta \n\n' + + '* or are otherwise limited by your graphics card VRAM amount. ', isExperimental: false, releaseModel: { type: 'fragmenter', @@ -319,7 +329,7 @@ const config: Configuration = { alternativeUrls: [ ], description: 'Development will have the latest features that will end up in the next stable. ' + 'Although every change is QA-tested bugs are a little more likely. It updates whenever something is added to the \'master\' ' + - 'branch on Github. Please visit our discord for support.' + + 'branch on Github. Please visit our discord for support. \n\n' + '* DX11 recommended \n\n' + '* HIGH or lower texture resolution setting recommended \n\n', isExperimental: false, From 17f4ab678558d56741383e5db114ddbdbd272b82 Mon Sep 17 00:00:00 2001 From: Frank Kopp Date: Fri, 15 Nov 2024 15:39:02 +0100 Subject: [PATCH 05/17] updated description --- config/config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/config.ts b/config/config.ts index 44500f5..309042f 100644 --- a/config/config.ts +++ b/config/config.ts @@ -328,8 +328,8 @@ const config: Configuration = { url: 'https://flybywirecdn.com/addons/a380x/master-8k', alternativeUrls: [ ], description: 'Development will have the latest features that will end up in the next stable. ' + - 'Although every change is QA-tested bugs are a little more likely. It updates whenever something is added to the \'master\' ' + - 'branch on Github. Please visit our discord for support. \n\n' + + 'Although every change is QA-tested bugs are a little more likely. It updates whenever something is added to ' + + 'the \'master\' branch on Github. Please visit our discord for support. \n\n' + '* DX11 recommended \n\n' + '* HIGH or lower texture resolution setting recommended \n\n', isExperimental: false, From 4420d62ec6c9795822509d93f86b2e5bf9b3f497 Mon Sep 17 00:00:00 2001 From: Frank Kopp Date: Fri, 15 Nov 2024 16:14:09 +0100 Subject: [PATCH 06/17] updated incomp module text --- config/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.ts b/config/config.ts index 309042f..298cff1 100644 --- a/config/config.ts +++ b/config/config.ts @@ -345,7 +345,7 @@ const config: Configuration = { // description: a short description of why the addon is incompatible { title: 'Mets747 FBW A380 Lights Mod', - description: "It is required to remove this add-on before installing and using the A32NX. This add-on overrides " + + description: "It is required to remove this add-on before installing and using the A380X. This add-on overrides " + "A32NX components and may render the A32NX unusable." }, ], From 0e605c686571782c65e1b1584c2f8e820d20fd65 Mon Sep 17 00:00:00 2001 From: Frank Kopp Date: Fri, 15 Nov 2024 17:16:52 +0100 Subject: [PATCH 07/17] updated description --- config/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.ts b/config/config.ts index 298cff1..3441c4d 100644 --- a/config/config.ts +++ b/config/config.ts @@ -275,7 +275,7 @@ const config: Configuration = { url: 'https://flybywirecdn.com/addons/a380x/stable-4k', alternativeUrls: [], description: 'Includes our 4K downscaled cabin, cockpit and exterior textures. Choose this option for reduced ' + - 'stutters, better performance, with HIGH or lower texture resolution. Additionally, if you intend to use the ' + + 'stutters, better performance, with HIGH or lower texture resolution. Especially, if you intend to use the ' + 'following:\n\n' + '* Use frame generation \n\n' + '* Virtual Reality (VR) \n\n' + From 6e120a7a342b01739c4d34dd2f01c52b10191237 Mon Sep 17 00:00:00 2001 From: Frank Kopp Date: Fri, 15 Nov 2024 17:20:51 +0100 Subject: [PATCH 08/17] updated description --- config/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.ts b/config/config.ts index 3441c4d..b16ec3b 100644 --- a/config/config.ts +++ b/config/config.ts @@ -311,7 +311,7 @@ const config: Configuration = { 'Although every change is QA-tested bugs are a little more likely. It updates whenever something is added to ' + 'the \'master\' branch on Github. Please visit our discord for support. \n\n' + 'Includes our 4K downscaled cabin, cockpit and exterior textures. Choose this option for reduced ' + - 'stutters, better performance, with HIGH or lower texture resolution. Additionally, if you intend to use the ' + + 'stutters, better performance, with HIGH or lower texture resolution. Especially, if you intend to use the ' + 'following:\n\n' + '* Use frame generation \n\n' + '* Virtual Reality (VR) \n\n' + From 5827f027f04c8295dd832d8ad9337dacf8b7aebb Mon Sep 17 00:00:00 2001 From: Frank Kopp Date: Fri, 15 Nov 2024 22:42:55 +0100 Subject: [PATCH 09/17] Capitalize 4K and 8K --- config/config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/config.ts b/config/config.ts index b16ec3b..4948e5b 100644 --- a/config/config.ts +++ b/config/config.ts @@ -303,7 +303,7 @@ const config: Configuration = { }, }, { - name: 'Development (4k)', + name: 'Development (4K)', key: 'a380x-dev-4k', url: 'https://flybywirecdn.com/addons/a380x/master-4k', alternativeUrls: [ ], @@ -323,7 +323,7 @@ const config: Configuration = { }, }, { - name: 'Development (8k)', + name: 'Development (8K)', key: 'a380x-dev-8k', url: 'https://flybywirecdn.com/addons/a380x/master-8k', alternativeUrls: [ ], From 012dfa816cc71f9d359dbab3c64a356d9199af67 Mon Sep 17 00:00:00 2001 From: Frank Kopp Date: Sat, 16 Nov 2024 09:47:32 +0100 Subject: [PATCH 10/17] Update config.ts Co-authored-by: Michael Corcoran --- config/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.ts b/config/config.ts index 4948e5b..2c04c56 100644 --- a/config/config.ts +++ b/config/config.ts @@ -346,7 +346,7 @@ const config: Configuration = { { title: 'Mets747 FBW A380 Lights Mod', description: "It is required to remove this add-on before installing and using the A380X. This add-on overrides " + - "A32NX components and may render the A32NX unusable." + "A380X components and may render the A380X unusable." }, ], disallowedRunningExternalApps: ['@/msfs'], From 3859924289204a5ca77472bad96075137d308a85 Mon Sep 17 00:00:00 2001 From: Frank Kopp Date: Sat, 16 Nov 2024 10:45:00 +0100 Subject: [PATCH 11/17] Added incompatible mods which overwrite either systems.cfg or panels.cfg --- config/config.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/config/config.ts b/config/config.ts index 2c04c56..764ac63 100644 --- a/config/config.ts +++ b/config/config.ts @@ -345,9 +345,26 @@ const config: Configuration = { // description: a short description of why the addon is incompatible { title: 'Mets747 FBW A380 Lights Mod', + description: "It is recommended to remove this add-on before installing and using the A380X. This add-on overrides " + + "A380X components and may render the A380X unusable." + }, + { + title: 'fbw a380 light mod', + description: "It is required to remove this add-on before installing and using the A380X. This add-on overrides " + + "A380X components and may render the A380X unusable." + }, + { + title: 'Super6uo FBW A380X Realistic Light Enhancement', description: "It is required to remove this add-on before installing and using the A380X. This add-on overrides " + "A380X components and may render the A380X unusable." }, + { + title: 'FlyByWire Airbus A380X OIT Functionality', + description: "It is required to remove this add-on before installing and using the A380X. This add-on overrides " + + "A380X components and may render the A380X unusable." + }, + + ], disallowedRunningExternalApps: ['@/msfs'], }, From 5b173bd21f888c4f429bf058b3bacccaefddcd7c Mon Sep 17 00:00:00 2001 From: Frank Kopp Date: Sat, 16 Nov 2024 10:56:20 +0100 Subject: [PATCH 12/17] Added incompatible mods which overwrite either systems.cfg or panels.cfg --- config/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.ts b/config/config.ts index 764ac63..4d096cd 100644 --- a/config/config.ts +++ b/config/config.ts @@ -349,7 +349,7 @@ const config: Configuration = { "A380X components and may render the A380X unusable." }, { - title: 'fbw a380 light mod', + title: 'a380_light_mod', description: "It is required to remove this add-on before installing and using the A380X. This add-on overrides " + "A380X components and may render the A380X unusable." }, From 228d31baeda6395ea7f18dfbb1b1b3919cf30057 Mon Sep 17 00:00:00 2001 From: Frank Kopp Date: Sat, 16 Nov 2024 13:54:29 +0100 Subject: [PATCH 13/17] Update config/config.ts Co-authored-by: Florian Scheuner --- config/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.ts b/config/config.ts index 4d096cd..e1f6fb0 100644 --- a/config/config.ts +++ b/config/config.ts @@ -117,7 +117,7 @@ const config: Configuration = { 'https://github.com/flybywiresim/a32nx/releases/download/assets/experimental/', ], description: 'Development will have the latest features that will end up in the next stable. ' + - 'Although every change is QA-tested bugs are a little more likely. It updates whenever something is added to the \'master\' ' + + 'Although every change is QA-tested, bugs are a little more likely. It updates whenever something is added to the \'master\' ' + 'branch on Github. Please visit our discord for support.', isExperimental: false, releaseModel: { From 77551bf0bc318bdfe151d568a77cb57ee08678d2 Mon Sep 17 00:00:00 2001 From: Frank Kopp Date: Sat, 16 Nov 2024 13:54:40 +0100 Subject: [PATCH 14/17] Update config/config.ts Co-authored-by: Florian Scheuner --- config/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.ts b/config/config.ts index e1f6fb0..421afe9 100644 --- a/config/config.ts +++ b/config/config.ts @@ -306,7 +306,7 @@ const config: Configuration = { name: 'Development (4K)', key: 'a380x-dev-4k', url: 'https://flybywirecdn.com/addons/a380x/master-4k', - alternativeUrls: [ ], + alternativeUrls: [], description: 'Development will have the latest features that will end up in the next stable. ' + 'Although every change is QA-tested bugs are a little more likely. It updates whenever something is added to ' + 'the \'master\' branch on Github. Please visit our discord for support. \n\n' + From 0f059d419bd15b3840e04a97188213c752e61d04 Mon Sep 17 00:00:00 2001 From: Frank Kopp Date: Sat, 16 Nov 2024 13:54:53 +0100 Subject: [PATCH 15/17] Update config/config.ts Co-authored-by: Florian Scheuner --- config/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.ts b/config/config.ts index 421afe9..ba8c986 100644 --- a/config/config.ts +++ b/config/config.ts @@ -326,7 +326,7 @@ const config: Configuration = { name: 'Development (8K)', key: 'a380x-dev-8k', url: 'https://flybywirecdn.com/addons/a380x/master-8k', - alternativeUrls: [ ], + alternativeUrls: [], description: 'Development will have the latest features that will end up in the next stable. ' + 'Although every change is QA-tested bugs are a little more likely. It updates whenever something is added to ' + 'the \'master\' branch on Github. Please visit our discord for support. \n\n' + From b85daebbacacaecba11132d10d868477f66fa59a Mon Sep 17 00:00:00 2001 From: Frank Kopp Date: Sat, 16 Nov 2024 13:55:01 +0100 Subject: [PATCH 16/17] Update config/config.ts Co-authored-by: Florian Scheuner --- config/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.ts b/config/config.ts index ba8c986..f62f8e8 100644 --- a/config/config.ts +++ b/config/config.ts @@ -328,7 +328,7 @@ const config: Configuration = { url: 'https://flybywirecdn.com/addons/a380x/master-8k', alternativeUrls: [], description: 'Development will have the latest features that will end up in the next stable. ' + - 'Although every change is QA-tested bugs are a little more likely. It updates whenever something is added to ' + + 'Although every change is QA-tested, bugs are a little more likely. It updates whenever something is added to ' + 'the \'master\' branch on Github. Please visit our discord for support. \n\n' + '* DX11 recommended \n\n' + '* HIGH or lower texture resolution setting recommended \n\n', From c5575981844c1287ff7ab288e557d7de80ad8a87 Mon Sep 17 00:00:00 2001 From: Frank Kopp Date: Sat, 16 Nov 2024 14:00:59 +0100 Subject: [PATCH 17/17] Update config/config.ts Co-authored-by: Florian Scheuner --- config/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.ts b/config/config.ts index f62f8e8..547cb3c 100644 --- a/config/config.ts +++ b/config/config.ts @@ -308,7 +308,7 @@ const config: Configuration = { url: 'https://flybywirecdn.com/addons/a380x/master-4k', alternativeUrls: [], description: 'Development will have the latest features that will end up in the next stable. ' + - 'Although every change is QA-tested bugs are a little more likely. It updates whenever something is added to ' + + 'Although every change is QA-tested, bugs are a little more likely. It updates whenever something is added to ' + 'the \'master\' branch on Github. Please visit our discord for support. \n\n' + 'Includes our 4K downscaled cabin, cockpit and exterior textures. Choose this option for reduced ' + 'stutters, better performance, with HIGH or lower texture resolution. Especially, if you intend to use the ' +