diff options
| author | TrainDoctor <traindoctor@protonmail.com> | 2022-10-30 16:37:19 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-30 16:37:19 -0700 |
| commit | 5e3de747d37b4b7042485a6733b2cd8a883b16ef (patch) | |
| tree | 2aec58e119ab2e34f2a4a88b4a3076db08f0e8bd /frontend | |
| parent | d389b403b521c48920d872c6ddd133b63ada2528 (diff) | |
| download | decky-loader-5e3de747d37b4b7042485a6733b2cd8a883b16ef.tar.gz decky-loader-5e3de747d37b4b7042485a6733b2cd8a883b16ef.zip | |
Systemd service updating (#240)v2.3.1-pre2
* Add services and updated installer files
* Loader updates service file during update!
* Testing update branch doesn't exist lol
* Update to dfl 3.7.12
* Fix services and add working service updater
* Revert services but replace their aliases
* Fix install scripts as well
* Move leftover service files to .systemd dir
* No wonder it's not trimming the file...
* fix whitespace
* Remove unused imports
* Remove another un-used import
Co-authored-by: AAGaming <aa@mail.catvibers.me>
Diffstat (limited to 'frontend')
| -rw-r--r-- | frontend/package.json | 2 | ||||
| -rw-r--r-- | frontend/pnpm-lock.yaml | 8 | ||||
| -rw-r--r-- | frontend/src/components/settings/pages/general/BranchSelect.tsx | 2 | ||||
| -rw-r--r-- | frontend/src/store.tsx | 1 | ||||
| -rw-r--r-- | frontend/src/tabs-hook.tsx | 4 | ||||
| -rw-r--r-- | frontend/src/updater.ts | 2 |
6 files changed, 8 insertions, 11 deletions
diff --git a/frontend/package.json b/frontend/package.json index ec09b0c2..782144ab 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -41,7 +41,7 @@ } }, "dependencies": { - "decky-frontend-lib": "^3.7.11", + "decky-frontend-lib": "^3.7.12", "react-file-icon": "^1.2.0", "react-icons": "^4.4.0", "react-markdown": "^8.0.3", diff --git a/frontend/pnpm-lock.yaml b/frontend/pnpm-lock.yaml index ab6e2391..33d0a624 100644 --- a/frontend/pnpm-lock.yaml +++ b/frontend/pnpm-lock.yaml @@ -10,7 +10,7 @@ specifiers: '@types/react-file-icon': ^1.0.1 '@types/react-router': 5.1.18 '@types/webpack': ^5.28.0 - decky-frontend-lib: ^3.7.11 + decky-frontend-lib: ^3.7.12 husky: ^8.0.1 import-sort-style-module: ^6.0.0 inquirer: ^8.2.4 @@ -30,7 +30,7 @@ specifiers: typescript: ^4.7.4 dependencies: - decky-frontend-lib: 3.7.11 + decky-frontend-lib: 3.7.12 react-file-icon: 1.2.0_wcqkhtmu7mswc6yz4uyexck3ty react-icons: 4.4.0_react@16.14.0 react-markdown: 8.0.3_vshvapmxg47tngu7tvrsqpq55u @@ -944,8 +944,8 @@ packages: dependencies: ms: 2.1.2 - /decky-frontend-lib/3.7.11: - resolution: {integrity: sha512-c5/kXqCLYhCl0zC+kPJ2gTUjTp6N0zUFKzTQKVKTuQ3U+01fHAU6sUsDqudbdTNdjXiofGujMmeJqKaU2vQoXQ==} + /decky-frontend-lib/3.7.12: + resolution: {integrity: sha512-whDV9zHuEBFj17zKoT51aRcUxLvSzBNu2lc242/EO9aFFP064FVCrJu+r7CxWe0hlQ7sA4FKX1qgCwsZ6H+PZg==} dev: false /decode-named-character-reference/1.0.2: diff --git a/frontend/src/components/settings/pages/general/BranchSelect.tsx b/frontend/src/components/settings/pages/general/BranchSelect.tsx index 5e43a13d..27db6229 100644 --- a/frontend/src/components/settings/pages/general/BranchSelect.tsx +++ b/frontend/src/components/settings/pages/general/BranchSelect.tsx @@ -10,7 +10,7 @@ const logger = new Logger('BranchSelect'); enum UpdateBranch { Stable, Prerelease, - Testing, + // Testing, } const BranchSelect: FunctionComponent<{}> = () => { diff --git a/frontend/src/store.tsx b/frontend/src/store.tsx index 3ef3e361..bc9f281c 100644 --- a/frontend/src/store.tsx +++ b/frontend/src/store.tsx @@ -1,5 +1,4 @@ import { Plugin } from './plugin'; -import { getSetting, setSetting } from './utils/settings'; export enum Store { Default, diff --git a/frontend/src/tabs-hook.tsx b/frontend/src/tabs-hook.tsx index c7790f7e..a518c4c9 100644 --- a/frontend/src/tabs-hook.tsx +++ b/frontend/src/tabs-hook.tsx @@ -1,10 +1,8 @@ // TabsHook for versions after the Desktop merge -import { Patch, QuickAccessTab, afterPatch, findInReactTree, findModule, sleep } from 'decky-frontend-lib'; -import { memo } from 'react'; +import { Patch, QuickAccessTab, afterPatch, findInReactTree, sleep } from 'decky-frontend-lib'; import { QuickAccessVisibleStateProvider } from './components/QuickAccessVisibleState'; import Logger from './logger'; -import { findSP } from './utils/windows'; declare global { interface Window { diff --git a/frontend/src/updater.ts b/frontend/src/updater.ts index 16955104..339b2b72 100644 --- a/frontend/src/updater.ts +++ b/frontend/src/updater.ts @@ -1,7 +1,7 @@ export enum Branches { Release, Prerelease, - Testing, + // Testing, } export interface DeckyUpdater { |
