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

chore: update simbridge resources path in config #40

Merged
merged 15 commits into from
Oct 20, 2024
8 changes: 4 additions & 4 deletions config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ const config: Configuration = {
backgroundImageUrls: ['https://flybywirecdn.com/installer/media-assets/addon-headers/fbw-simbridge/0.png'],
backgroundImageShadow: false,
shortDescription: 'Airbus A380-800',
description: 'SimBridge is an external application which allows FBW aircraft to communicate with components located outside the simulator. SimBridge will be used for a number of features requiring external data (such as TAWS terrain display), as well as for functionality providing remote access to aircraft systems or data.',
description: `<b><span style="color: rgb(255, 106, 0);">&#9888; Note: Starting with version 0.6.0 custom resources like PDF Charts and Company Routes need to be located inside the Documents folder. Please refer to the documentation and use the provided links in the "About" section to backup your files.</span></b> \n\n SimBridge is an external app that enables FlyByWire Simulations aircraft to communicate outside your simulator. From remote displays to external terrain display rendering, it is used for a variety of optional features.`,
targetDirectory: 'flybywire-externaltools-simbridge',
tracks: [
{
Expand All @@ -322,7 +322,7 @@ const config: Configuration = {
'https://cdn.flybywiresim.com/addons/simbridge/release/',
],
isExperimental: false,
description: 'SimBridge is an external app that enables FlyByWire Simulations aircraft to communicate outside your simulator. From remote displays to external terrain display rendering, it is used for a variety of optional features.',
description: `<b><span style="color: rgb(255, 106, 0);">&#9888; Note: Starting with version 0.6.0 custom resources like PDF Charts and Company Routes need to be located inside the Documents folder. Please refer to the documentation and use the provided links in the "About" section to backup your files before updating.</span></b> \n\n SimBridge is an external app that enables FlyByWire Simulations aircraft to communicate outside your simulator. From remote displays to external terrain display rendering, it is used for a variety of optional features.`,
},
],
disallowedRunningExternalApps: ['@/simbridge-app'],
Expand All @@ -341,8 +341,8 @@ const config: Configuration = {
directories: [
{
location: {
in: 'package',
path: 'resources',
in: 'documents',
path: 'FlyByWireSim/Simbridge/resources',
},
title: 'Resources',
},
Expand Down
2 changes: 1 addition & 1 deletion lib.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export interface ExternalLink {

export interface DirectoryDefinition {
location: {
in: 'community' | 'packageCache' | 'package',
in: 'community' | 'packageCache' | 'package' | 'documents',
path: string,
},
}
Expand Down
Loading