diff --git a/.github/CHANGELOG.yaml b/.github/CHANGELOG.yaml index 3422b47..22b921c 100644 --- a/.github/CHANGELOG.yaml +++ b/.github/CHANGELOG.yaml @@ -9,6 +9,11 @@ releases: + - name: 1.4.2 + changes: + - title: Update API Client + categories: [ Core ] + authors: [ Revyn112 ] - name: 1.4.0 changes: - title: Change Discord Support Url diff --git a/package-lock.json b/package-lock.json index 93bb3da..3745553 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,18 +1,18 @@ { "name": "headwind-installer", - "version": "1.4.0", + "version": "1.4.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "headwind-installer", - "version": "1.4.0", + "version": "1.4.2", "license": "GPL-3.0", "dependencies": { "@ant-design/icons": "^4.4.0", "@flybywiresim/fragmenter": "^0.7.4", "@flybywiresim/react-components": "^0.2.5", - "@headwindsimulations/api-client": "^1.0.0", + "@headwindsimulations/api-client": "^1.1.0", "@reduxjs/toolkit": "^1.7.1", "@sentry/cli": "^2.5.0", "@sentry/electron": "^3.0.7", @@ -1954,9 +1954,9 @@ } }, "node_modules/@headwindsimulations/api-client": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@headwindsimulations/api-client/-/api-client-1.0.0.tgz", - "integrity": "sha512-PUpkADEtKDvt0JxH0Wy6f2Zn3sLVIcnTITJ08xMpXu87r/ajSe4t2pjwA5SUNXiCOtivy+kb/Knxw9RoktUw5Q==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@headwindsimulations/api-client/-/api-client-1.1.0.tgz", + "integrity": "sha512-/pNf4+FI0FQ0vBoV9HPV867IKBMEdU2UrhzdI2IeUmF83bE6XLbUiVWNs2xsMI4xsvYx2E4FZhaZqLyi3ID+lA==", "dependencies": { "axios": "^0.21.4" } diff --git a/package.json b/package.json index 40f9a3c..d97b173 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "headwind-installer", "productName": "Headwind Installer", - "version": "1.4.1", + "version": "1.4.2", "description": "Desktop application to install and customize Headwind addons", "configUrls": { "production": "https://cdn.headwindsim.net/installer/config/production.json", @@ -110,7 +110,7 @@ "@ant-design/icons": "^4.4.0", "@flybywiresim/fragmenter": "^0.7.4", "@flybywiresim/react-components": "^0.2.5", - "@headwindsimulations/api-client": "^1.0.0", + "@headwindsimulations/api-client": "^1.1.0", "@reduxjs/toolkit": "^1.7.1", "@sentry/cli": "^2.5.0", "@sentry/electron": "^3.0.7", diff --git a/src/renderer/components/AddonSection/ReleaseNotes/index.tsx b/src/renderer/components/AddonSection/ReleaseNotes/index.tsx index 71b41f1..6270803 100644 --- a/src/renderer/components/AddonSection/ReleaseNotes/index.tsx +++ b/src/renderer/components/AddonSection/ReleaseNotes/index.tsx @@ -6,7 +6,7 @@ import "./index.css"; import { Addon } from "renderer/utils/InstallerConfiguration"; import { useInView } from "react-intersection-observer"; import { ReleaseData } from "renderer/redux/types"; -import { GitVersions } from "@flybywiresim/api-client"; +import { GitVersions } from "@headwindsimulations/api-client"; import { addReleases } from "renderer/redux/features/releaseNotes"; import { useSetting } from 'common/settings'; import dateFormat from 'dateformat'; diff --git a/src/renderer/components/App/index.tsx b/src/renderer/components/App/index.tsx index 174e09c..a94950b 100644 --- a/src/renderer/components/App/index.tsx +++ b/src/renderer/components/App/index.tsx @@ -4,7 +4,7 @@ import SimpleBar from 'simplebar-react'; import { Logo } from "renderer/components/Logo"; import { SettingsSection } from 'renderer/components/SettingsSection'; import { DebugSection } from 'renderer/components/DebugSection'; -import { GitVersions } from "@flybywiresim/api-client"; +import { GitVersions } from "@headwindsimulations/api-client"; import { DataCache } from '../../utils/DataCache'; import InstallerUpdate from "renderer/components/InstallerUpdate"; import { WindowButtons } from "renderer/components/WindowActionButtons"; diff --git a/src/renderer/index.tsx b/src/renderer/index.tsx index 19365f6..e8383be 100644 --- a/src/renderer/index.tsx +++ b/src/renderer/index.tsx @@ -38,7 +38,7 @@ import channels from "common/channels"; import { MemoryRouter } from 'react-router-dom'; import { store } from "renderer/redux/store"; import { setConfiguration } from './redux/features/configuration'; -import { GitVersions } from "@flybywiresim/api-client"; +import { GitVersions } from "@headwindsimulations/api-client"; import { addReleases } from "renderer/redux/features/releaseNotes"; import { ModalProvider } from "renderer/components/Modal"; import { setSentrySessionID } from "renderer/redux/features/sentrySessionID";