Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding QA test config #37

Open
wants to merge 12 commits into
base: staging
Choose a base branch
from
64 changes: 60 additions & 4 deletions config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,23 @@ const config: Configuration = {
branch: 'master',
},
},
{
name: 'fms-v2',
key: 'fms-v2',
url: 'https://flybywirecdn.com/addons/a32nx/fms-v2',
alternativeUrls: [],
description: 'fms-v2 QA upload',
isExperimental: true,
warningContent: 'The experimental version contains custom systems that more closely matches ' +
'real-life behaviour of an A320neo. Those are in development and bugs are to be expected.\n\n' +
'To understand what you are getting into and the potential issues you might experience, ' +
'please read [this guide](https://docs.flybywiresim.com/fbw-a32nx/support/exp/).\n\n' +
'**Please be aware that no support will be offered via Discord support channels.**',
releaseModel: {
type: 'githubBranch',
branch: 'fms-v2',
},
},
alepouna marked this conversation as resolved.
Show resolved Hide resolved
],
dependencies: [
{
Expand Down Expand Up @@ -250,12 +267,51 @@ const config: Configuration = {
aircraftName: 'A380-842',
titleImageUrl: 'https://flybywiresim.b-cdn.net/installer/media-assets/addon-titles/fbw-a380x/dark.svg',
titleImageUrlSelected: 'https://flybywiresim.b-cdn.net/installer/media-assets/addon-titles/fbw-a380x/light.svg',
enabled: false,
backgroundImageUrls: ['https://nyc3.digitaloceanspaces.com/fselite/2020/11/123263426_126778999193686_7966913238295950901_o.png'],
enabled: true,
backgroundImageUrls: ['https://flybywiresim.b-cdn.net/installer/media-assets/addon-headers/fbw-a380x/a380x.png'],
shortDescription: 'Airbus A380-800',
description: '',
targetDirectory: 'A380',
tracks: [],
techSpecs: [
{
name: 'Engines',
value: 'RR Trent 972B-84',
},
{
name: 'APU',
value: 'PW980',
},
],
targetDirectory: 'flybywire-aircraft-a380-842',
alternativeNames: [
'A380X',
'a380x',
],
tracks: [
{
name: 'A380X QA Partial Build',
key: 'a380x-exp',
url: 'https://flybywirecdn.com/addons/a380x/a380x-experimental',
alternativeUrls: [],
isExperimental: true,
description: 'This download only contains the public part of the A380X and is not ' +
'sufficient to get the full A380X QA build. You need to also install the ' +
'private second package with the model/texture and sounds.',
warningContent: 'This download only contains the public part of the A380X and is not ' +
'sufficient to get the full A380X QA build. You need to also install the ' +
'private second package with the model/texture and sounds.',
releaseModel: {
type: 'githubBranch',
branch: 'a380x-experimental',
}
},
],
dependencies: [
{
addon: '@flybywiresim/A32NX',
optional: true,
modalText: 'SimBridge allows the A32NX to expose remote tools like the Web MCDU, as well as use the external terrain database.',
},
],
disallowedRunningExternalApps: ['@/msfs'],
},
{
Expand Down
Loading