Skip to content

Commit

Permalink
chore: change installer configuration and update URL to Cloudflare (#489
Browse files Browse the repository at this point in the history
)
  • Loading branch information
FoxtrotSierra6829 authored Oct 31, 2024
1 parent ffdd364 commit 680d4de
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions .github/CHANGELOG.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@


releases:
- name: 3.4.3
changes:
- title: Change installer configuration to Cloudflare
categories: [Core]
- name: 3.4.2
changes:
- title: Fix printer selection not working in some cases
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "fbw-installer",
"productName": "FlyByWire Installer",
"version": "3.4.2-dev.1",
"version": "3.4.3-dev.1",
"description": "Desktop application to install and customize FlyByWire addons",
"configUrls": {
"production": "https://cdn.flybywiresim.com/installer/config/production.json",
"confidentialBaseUrl": "https://flybywiresim.b-cdn.net/installer/config/confidential"
"production": "https://flybywirecdn.com/installer/config/production.json",
"confidentialBaseUrl": "https://flybywirecdn.com/installer/config/confidential"
},
"main": "out/main/index.js",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions src/main/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,17 +159,17 @@ function initializeApp() {
if (packageInfo.version.includes('dev')) {
updateOptions = {
provider: 'generic' as const,
url: 'https://cdn.flybywiresim.com/installer/dev',
url: 'https://flybywirecdn.com/installer/dev',
};
} else if (packageInfo.version.includes('rc')) {
updateOptions = {
provider: 'generic' as const,
url: 'https://cdn.flybywiresim.com/installer/rc',
url: 'https://flybywirecdn.com/installer/rc',
};
} else {
updateOptions = {
provider: 'generic' as const,
url: 'https://cdn.flybywiresim.com/installer/release',
url: 'https://flybywirecdn.com/installer/release',
};
}

Expand Down
4 changes: 2 additions & 2 deletions src/renderer/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ export const defaultConfiguration: Configuration = {
{
name: 'Release',
key: 'kfbw-release',
url: 'https://cdn.flybywiresim.com/addons/kfbw/release/',
url: 'https://flybywirecdn.com/addons/kfbw/release/',
isExperimental: false,
releaseModel: {
type: 'CDN',
Expand Down Expand Up @@ -341,7 +341,7 @@ export const defaultConfiguration: Configuration = {
releaseModel: {
type: 'githubRelease',
},
url: 'https://cdn.flybywiresim.com/addons/simbridge/release/',
url: 'https://flybywirecdn.com/addons/simbridge/release/',
isExperimental: false,
description: `<b><span class="text-utility-amber">&#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.</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.`,
},
Expand Down

0 comments on commit 680d4de

Please sign in to comment.