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

Added checklist fix mod #21

Open
wants to merge 5 commits into
base: staging
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ const config: Configuration = {
key: 'scenery',
title: 'Scenery',
},
{
kind: 'addonCategory',
key: 'other',
title: 'Other',
},
{
kind: 'addonCategory',
key: 'simbridge',
Expand Down Expand Up @@ -152,6 +157,11 @@ const config: Configuration = {
optional: true,
modalText: 'SimBridge allows the A32NX to expose remote tools like the Web MCDU, as well as use the external terrain database.',
},
{
addon: '@flybywiresim/checklistfix',
optional: true,
modalText: 'Checklist Fix',
},
],
incompatibleAddons: [
// title: the exact title as it appears in the manifest.json
Expand Down Expand Up @@ -336,6 +346,38 @@ const config: Configuration = {
],
},
},
{
name: 'FBW Ingamepanels Checklist Fix',
key: 'checklistfix',
category: '@other',
repoOwner: 'flybywiresim',
repoName: 'a32nx',
aircraftName: 'MSFS Checklist Fix',
titleImageUrl: 'https://flybywiresim.b-cdn.net/installer/media-assets/addon-titles/checklist-fix/dark.svg',
titleImageUrlSelected: 'https://flybywiresim.b-cdn.net/installer/media-assets/addon-titles/checklist-fix/light.svg',
enabled: true,
backgroundImageUrls: ['https://flybywiresim.b-cdn.net/installer/media-assets/addon-headers/checklist-fix/checklist-fix-14.png'],
backgroundImageShadow: false,
shortDescription: 'Checklist Fix',
description: 'This mod fixes a bug in the MSFS toolbar panel for checklists. As this mod will impact ' +
'all aircraft in the sim it is provided as an optional separate mod so it can be uninstalled when issues arise.',
targetDirectory: 'flybywire-ingamepanels-checklist-fix',
tracks: [
{
name: 'Release',
key: 'checklistfix',
releaseModel: {
type: 'githubBranch',
branch: 'master',
},
url: 'http://flybywirecdn.com/addons/ingamepanels-checklist-fix/master/',
isExperimental: false,
description: 'This mod fixes a bug in the MSFS toolbar panel for checklists. As this mod will impact ' +
'all aircraft in the sim it is provided as an optional separate mod so it can be uninstalled when issues arise.',
},
],
disallowedRunningExternalApps: ['@/msfs'],
},
],
buttons: [
{
Expand Down