Skip to content

Commit

Permalink
Merge pull request #49 from NicolasConstant/develop
Browse files Browse the repository at this point in the history
1.2.1 PR
  • Loading branch information
NicolasConstant authored Nov 25, 2021
2 parents 5f25903 + 2d4c02a commit 599b552
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "msfs-community-downloader",
"version": "1.2.0",
"version": "1.2.1",
"description": "MSFS addin downloader client",
"homepage": "https://github.com/nicolasconstant/msfs-community-downloader",
"author": {
Expand Down
30 changes: 15 additions & 15 deletions src/app/core/services/packages.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@ export class PackagesService {
wtcj4.summary = "OPEN BETA<br/>Performance and avionics improvements for the Citation CJ4";
wtcj4.webpageUrl = "https://www.workingtitle.aero/packages/cj4/";

const wtg1000 = new Package();
wtg1000.id = "wt-g1000";
wtg1000.name = "WT G1000";
wtg1000.description = "Working Title G1000";
wtg1000.githubOwner = "Working-Title-MSFS-Mods";
wtg1000.githubRepo = "fspackages";
wtg1000.illustration = "assets/illustrations/g1000.jpg";
wtg1000.folderName = "workingtitle-g1000";
wtg1000.assetName = "workingtitle-g1000-v";
wtg1000.versionPatternToRemove = "g1000-";
wtg1000.state = InstallStatusEnum.unknown;
wtg1000.summary = "Fixes and enhancements for the stock G1000 avionics package";
wtg1000.webpageUrl = "https://www.workingtitle.aero/packages/g1000/";
// const wtg1000 = new Package();
// wtg1000.id = "wt-g1000";
// wtg1000.name = "WT G1000";
// wtg1000.description = "Working Title G1000";
// wtg1000.githubOwner = "Working-Title-MSFS-Mods";
// wtg1000.githubRepo = "fspackages";
// wtg1000.illustration = "assets/illustrations/g1000.jpg";
// wtg1000.folderName = "workingtitle-g1000";
// wtg1000.assetName = "workingtitle-g1000-v";
// wtg1000.versionPatternToRemove = "g1000-";
// wtg1000.state = InstallStatusEnum.unknown;
// wtg1000.summary = "Fixes and enhancements for the stock G1000 avionics package";
// wtg1000.webpageUrl = "https://www.workingtitle.aero/packages/g1000/";

const wtg3000 = new Package();
wtg3000.id = "wt-g3000";
Expand Down Expand Up @@ -65,7 +65,7 @@ export class PackagesService {
wtg3x.state = InstallStatusEnum.unknown;
wtg3x.summary = "This is an early release of what is intended to eventually be the reworking of several of the smaller Garmin units in the game.<br/><br/>At the moment the only thing that has been updated is the G3X Touch, but future modifications to the non-touch G3X, and to the touch-based Aera which uses much of the same code, are possible.";
wtg3x.webpageUrl = "https://www.workingtitle.aero/packages/g3x/";
wtg3x.isPrerelease = true;
// wtg3x.isPrerelease = true;

const a32nx = new Package();
a32nx.id = "a32nx";
Expand Down Expand Up @@ -153,7 +153,7 @@ export class PackagesService {
pms50gns530.state = InstallStatusEnum.unknown;
pms50gns530.summary = "This package is an enhancement of the built-in GNS530 GPS. The goal is to offer an instrument that comes as close as possible to the original.";

const packages = [wtcj4, wtg1000, wtg3000, wtg3x, a32nx, b787xe, salty747, aa, tfg36p, jplc152, pms50gns530];
const packages = [wtcj4, wtg3000, wtg3x, a32nx, b787xe, salty747, aa, tfg36p, jplc152, pms50gns530];

const customPackages = this.settingsService.getSettings().customPackages;
for (const p of customPackages) {
Expand Down

0 comments on commit 599b552

Please sign in to comment.