Skip to content

Commit

Permalink
removes v prefix from version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Revyn112 committed Nov 17, 2023
1 parent ad668f9 commit 90a18ae
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 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: 1.4.5
changes:
- title: Removes 'v' prefix from Version Numbers
categories: [ Core ]
- name: 1.4.4
changes:
- title: Add an Option to set a MSFS Base Directory for better dependency checks with Horizon Simulation Addons
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "headwind-installer",
"productName": "Headwind Installer",
"version": "1.4.4",
"version": "1.4.5",
"description": "Desktop application to install and customize Headwind addons",
"configUrls": {
"production": "https://cdn.headwindsim.net/installer/config/production.json",
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/utils/AddonData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class AddonData {
.then(res => res.blob())
.then(blob => blob.text())
.then(stream => ({
name: 'v' + (yaml.load(stream) as {releases: Array<{name: string, date: Date}>}).releases[0].name,
name: (yaml.load(stream) as {releases: Array<{name: string, date: Date}>}).releases[0].name,
releaseDate: (yaml.load(stream) as {releases: Array<{name: string, date: Date}>}).releases[0].date.getTime(),
}));
}
Expand Down

0 comments on commit 90a18ae

Please sign in to comment.