Skip to content

Commit

Permalink
Merge branch 'SteamDeckHomebrew:main' into MetaDeck
Browse files Browse the repository at this point in the history
  • Loading branch information
KP2048 authored Sep 18, 2024
2 parents 4a7335d + 223b81d commit 104e4b3
Show file tree
Hide file tree
Showing 32 changed files with 53 additions and 39 deletions.
2 changes: 0 additions & 2 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ If this is an update, please include a summary of what changes you made.

## Testing

<!-- Remove this box for SteamOS Stable/Beta testing if you use a custom or remote binary, for more info follow the URL in the comment above the testing section. -->
- [ ] Tested on SteamOS Stable/Beta Update Channel.

<!-- Remove this box for SteamOS Preview testing if you do not use a custom or remote binary, for more info follow the URL in the comment above the testing section. -->
- [ ] Tested on SteamOS Preview Update Channel.
8 changes: 4 additions & 4 deletions .github/workflows/build-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ name: Build Builder Docker image
on:
workflow_dispatch:
push:
branches:
- main
paths:
- "builder/**"
- ".github/workflows/build-builder.yml"
Expand All @@ -16,11 +14,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Login to GitHub Container Registry
if: ${{ (github.ref == 'refs/heads/main' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')) }}
run: |
echo $GITHUB_TOKEN | docker login ghcr.io -u SteamDeckHomebrew --password-stdin
env:
Expand All @@ -32,11 +31,12 @@ jobs:
docker build -t ghcr.io/steamdeckhomebrew/builder:latest .
- name: Wait for other runs to complete
uses: softprops/turnstyle@8db075d65b19bf94e6e8687b504db69938dc3c65
uses: softprops/turnstyle@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Push
if: ${{ (github.ref == 'refs/heads/main' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')) }}
run: |
docker push ghcr.io/steamdeckhomebrew/builder:latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ jobs:
- uses: pnpm/action-setup@v3
with:
version: 9.0.5
version: 9.4.0
- name: Force update pnpm lockfile and/or DFL
if: ${{ inputs.force_pnpm != 'none' }}
run: |
Expand Down Expand Up @@ -313,7 +313,7 @@ jobs:
SUBMIT_AUTH_KEY: ${{ secrets.SUBMIT_AUTH_KEY }}
STORE_URL: ${{ secrets.STORE_URL }}
upload: ${{ matrix.upload }}
if: ${{ matrix.upload == true && env.SUBMIT_AUTH_KEY != '' }}
if: ${{ matrix.upload == true && inputs.test_build != true && env.SUBMIT_AUTH_KEY != '' }}
run: |
shopt -s dotglob
Expand Down
24 changes: 18 additions & 6 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
url = https://github.com/SDH-Stewardship/deckfaqs
[submodule "plugins/PowerTools"]
path = plugins/PowerTools
url = https://git.ngni.us/NG-SD-Plugins/PowerTools
url = https://gitlab.com/NGnius/PowerTools
[submodule "plugins/SDH-CssLoader"]
path = plugins/SDH-CssLoader
url = https://github.com/DeckThemes/SDH-CssLoader
Expand All @@ -32,12 +32,9 @@
[submodule "plugins/Bluetooth"]
path = plugins/Bluetooth
url = https://github.com/Outpox/Bluetooth.git
[submodule "plugins/SDH-Notebook"]
path = plugins/SDH-Notebook
url = https://github.com/popsUlfr/SDH-Notebook.git
[submodule "plugins/Fantastic"]
path = plugins/Fantastic
url = https://git.ngni.us/NG-SD-Plugins/Fantastic
url = https://gitlab.com/NGnius/Fantastic
[submodule "plugins/memory-deck"]
path = plugins/memory-deck
url = https://github.com/CameronRedmore/memory-deck.git
Expand Down Expand Up @@ -86,7 +83,7 @@
url = https://github.com/WerWolv/SDH-FreeGames
[submodule "plugins/ControllerTools"]
path = plugins/ControllerTools
url = https://github.com/alphamercury/ControllerTools
url = https://github.com/jfernandez/ControllerTools
[submodule "plugins/tailscale-control"]
path = plugins/tailscale-control
url = https://github.com/saumya-banthia/tailscale-control
Expand Down Expand Up @@ -225,3 +222,18 @@
[submodule "plugins/SDH-PauseGames"]
path = plugins/SDH-PauseGames
url = https://github.com/wynn1212/SDH-PauseGames.git
[submodule "plugins/SDH-Notebook"]
path = plugins/SDH-Notebook
url = https://github.com/wynn1212/SDH-Notebook.git
[submodule "plugins/steamdeck-input-disabler"]
path = plugins/steamdeck-input-disabler
url = https://gitlab.burritospray.com/BurritoSpray/steamdeck-input-disabler.git
[submodule "plugins/Decky-Undervolt"]
path = plugins/Decky-Undervolt
url = https://github.com/totallynotbakadestroyer/Decky-Undervolt
[submodule "plugins/NonSteamLaunchers"]
path = plugins/NonSteamLaunchers
url = https://github.com/moraroy/NonSteamLaunchersDecky
[submodule "plugins/DeckyInhibitScreenSaver"]
path = plugins/DeckyInhibitScreenSaver
url = https://github.com/xfangfang/DeckyInhibitScreenSaver
4 changes: 2 additions & 2 deletions builder/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM node:18-alpine
FROM node:20-alpine

RUN apk add --no-cache rsync

RUN npm i --location=global pnpm@8.5.1
RUN npm i --location=global pnpm@9

COPY ./entrypoint.sh /entrypoint.sh

Expand Down
2 changes: 1 addition & 1 deletion plugins/Bluetooth
Submodule Bluetooth updated 5 files
+4 −0 main.py
+10 −10 package.json
+1,024 −935 pnpm-lock.yaml
+17 −7 src/index.tsx
+5 −0 src/server.ts
1 change: 1 addition & 0 deletions plugins/Decky-Undervolt
Submodule Decky-Undervolt added at df58aa
1 change: 1 addition & 0 deletions plugins/DeckyInhibitScreenSaver
2 changes: 1 addition & 1 deletion plugins/MusicControl
1 change: 1 addition & 0 deletions plugins/NonSteamLaunchers
Submodule NonSteamLaunchers added at 3bb4b4
2 changes: 1 addition & 1 deletion plugins/SDH-CssLoader
2 changes: 1 addition & 1 deletion plugins/SDH-GameThemeMusic
Submodule SDH-GameThemeMusic updated 50 files
+0 −0 .eslintrc.cjs
+19 −3 .vscode/tasks.json
+15 −6 README.md
+7 −11 package.json
+1 −0 plugin.json
+1,812 −1,109 pnpm-lock.yaml
+3 −37 rollup.config.js
+134 −96 src/actions/audio.ts
+2 −4 src/components/changeTheme/audioPlayer.tsx
+2 −6 src/components/changeTheme/changePage.tsx
+5 −9 src/components/changeTheme/gameSettings.tsx
+3 −5 src/components/changeTheme/index.tsx
+1 −1 src/components/changeTheme/noMusic.tsx
+12 −16 src/components/settings/index.tsx
+4 −8 src/components/themePlayer/index.tsx
+4 −5 src/hooks/useInvidiousInstances.ts
+1 −1 src/hooks/useParams.ts
+23 −18 src/hooks/useSettings.ts
+4 −8 src/hooks/useThemeMusic.ts
+9 −8 src/index.tsx
+1 −1 src/lib/patchContextMenu.tsx
+33 −45 src/lib/patchLibraryApp.tsx
+2 −2 src/localisation/bg.json
+2 −2 src/localisation/cs.json
+2 −2 src/localisation/da.json
+2 −2 src/localisation/de.json
+2 −2 src/localisation/el.json
+2 −2 src/localisation/en.json
+2 −2 src/localisation/es-419.json
+2 −2 src/localisation/es.json
+2 −2 src/localisation/fi.json
+2 −2 src/localisation/fr.json
+2 −2 src/localisation/hu.json
+2 −2 src/localisation/it.json
+26 −26 src/localisation/ja.json
+2 −2 src/localisation/ko.json
+2 −2 src/localisation/nl.json
+2 −2 src/localisation/no.json
+2 −2 src/localisation/pl.json
+26 −26 src/localisation/pt-br.json
+2 −2 src/localisation/pt.json
+2 −2 src/localisation/ro.json
+2 −2 src/localisation/ru.json
+2 −2 src/localisation/sv.json
+2 −2 src/localisation/th.json
+2 −2 src/localisation/tr.json
+2 −2 src/localisation/uk.json
+2 −2 src/localisation/vi.json
+2 −2 src/localisation/zh-cn.json
+2 −2 src/localisation/zh-tw.json
2 changes: 1 addition & 1 deletion plugins/SDH-Notebook
2 changes: 1 addition & 1 deletion plugins/decky-XRGaming
2 changes: 1 addition & 1 deletion plugins/decky-cloud-save
Submodule decky-cloud-save updated 52 files
+56 −51 .gitignore
+14 −0 .vscode/build.sh
+7 −2 .vscode/defsettings.json
+68 −0 .vscode/setup.sh
+92 −49 .vscode/tasks.json
+78 −24 README.md
+ assets/images/toastIcon.png
+53 −0 assets/languages/de.json
+53 −0 assets/languages/en.json
+53 −0 assets/languages/es.json
+53 −0 assets/languages/fr.json
+53 −0 assets/languages/pt.json
+53 −0 assets/languages/zh.json
+9 −5 backend/entrypoint.sh
+3 −0 backend/openLastLog.sh
+7 −0 backend/rcloneLauncher
+7 −0 deck.json
+3 −3 defaults/quickstart/google_drive.sh
+0 −7 defaults/rclone
+120 −262 main.py
+57 −57 package.json
+113 −111 pnpm-lock.yaml
+0 −0 py_modules/.keep
+174 −0 py_modules/decky_plugin.py
+60 −0 py_modules/logger_utils.py
+114 −0 py_modules/plugin_config.py
+48 −0 py_modules/process_utils.py
+201 −0 py_modules/rclone_setup_manager.py
+80 −0 py_modules/rclone_sync_manager.py
+2 −2 rollup.config.mjs
+0 −39 src/ButtonPlayground.tsx
+0 −88 src/apiClient.ts
+14 −13 src/components/AddNewPathButton.tsx
+8 −7 src/components/RenderExistingPathButton.tsx
+193 −0 src/helpers/apiClient.ts
+99 −0 src/helpers/backend.ts
+107 −0 src/helpers/logger.ts
+130 −105 src/helpers/state.ts
+108 −0 src/helpers/storage.ts
+26 −0 src/helpers/toast.ts
+89 −0 src/helpers/translator.ts
+33 −0 src/helpers/types.d.ts
+87 −121 src/index.tsx
+94 −92 src/pages/ConfigureBackendPage.tsx
+19 −18 src/pages/ConfigurePathsPage.tsx
+134 −0 src/pages/RenderDCSMenu.tsx
+17 −0 src/pages/RenderPluginLogPage.tsx
+64 −0 src/pages/RenderSyncLogPage.tsx
+2 −0 src/react-app-env.d.ts
+0 −20 src/types.d.ts
+0 −6 src/utils.ts
+23 −24 tsconfig.json
2 changes: 1 addition & 1 deletion plugins/decky-steamgriddb
Submodule decky-steamgriddb updated 60 files
+1 −1 .vscode/tasks.json
+5 −3 README.md
+2 −1 decky_plugin.pyi
+3 −3 dump-strings.js
+7 −7 main.py
+15 −14 package.json
+1 −1 plugin.json
+1,238 −765 pnpm-lock.yaml
+35 −15 rollup.config.mjs
+7 −2 src/components/Chips/Chip.tsx
+2 −1 src/components/Chips/index.tsx
+10 −3 src/components/DropdownMultiselect.tsx
+2 −1 src/components/Markdown.tsx
+176 −0 src/components/Motd.tsx
+17 −14 src/components/asset/Asset.tsx
+10 −9 src/components/asset/LazyImage.tsx
+23 −10 src/components/plugin-pages/AssetTab.tsx
+3 −3 src/components/plugin-pages/AssetTabs.tsx
+2 −2 src/components/plugin-pages/ManageTab.tsx
+2 −2 src/components/plugin-pages/SGDBPage.tsx
+1 −0 src/components/qam-contents/PanelSocialButton.tsx
+79 −16 src/components/qam-contents/QuickAccessSettings.tsx
+37 −49 src/components/qam-contents/Toolbar.tsx
+7 −0 src/constants.ts
+23 −16 src/hooks/useAssetSearch.tsx
+13 −12 src/hooks/useSGDB.tsx
+4 −3 src/hooks/useSettings.tsx
+82 −1 src/i18n/da.json
+19 −2 src/i18n/el.json
+3 −0 src/i18n/es-419.json
+8 −0 src/i18n/it.json
+9 −0 src/i18n/ja.json
+1 −0 src/i18n/ko.json
+11 −6 src/i18n/pl.json
+8 −0 src/i18n/strings.json
+8 −0 src/i18n/tr.json
+15 −0 src/i18n/uk.json
+21 −16 src/index.tsx
+5 −3 src/modals/DetailsModal.tsx
+3 −3 src/modals/FiltersModal.tsx
+3 −1 src/modals/GameSelectionModal.tsx
+131 −31 src/modals/LogoPositionerModal.tsx
+85 −38 src/modals/OfficialAssetsModal.tsx
+7 −10 src/patches/capsuleGlowPatch.tsx
+7 −2 src/patches/contextMenuPatch.tsx
+230 −0 src/patches/homePatch.tsx
+0 −98 src/patches/squareHomePatch.tsx
+10 −13 src/patches/squareLibraryPatch.tsx
+6 −4 src/static-classes.ts
+23 −2 src/styles/_mixins.scss
+4 −0 src/styles/modals/_details.scss
+58 −40 src/styles/modals/_logo_position.scss
+84 −29 src/styles/style.scss
+16 −7 src/utils/i18n.ts
+0 −1 src/utils/openFilePicker.tsx
+1 −1 src/utils/showRestartConfirm.tsx
+1 −1 src/utils/steam-api-language-map.ts
+36 −0 src/utils/styleInjector.ts
+ thumb.png
+0 −1 tsconfig.json
2 changes: 1 addition & 1 deletion plugins/decky-syncthing
Submodule decky-syncthing updated 97 files
+10 −6 README.md
+434 −151 backend/decky-syncthing-watchdog/Cargo.lock
+7 −5 backend/decky-syncthing-watchdog/Cargo.toml
+47 −9 backend/decky-syncthing-watchdog/src/api.rs
+265 −0 backend/decky-syncthing-watchdog/src/checks.rs
+32 −31 backend/decky-syncthing-watchdog/src/main.rs
+4 −1 backend/decky-syncthing-watchdog/src/panic_util.rs
+0 −361 backend/decky-syncthing-watchdog/src/process_watchdog.rs
+6 −6 backend/decky-syncthing-watchdog/src/proxy.rs
+288 −0 backend/decky-syncthing-watchdog/src/service.rs
+49 −14 backend/decky-syncthing-watchdog/src/settings.rs
+0 −36 backend/decky-syncthing-watchdog/src/state.rs
+145 −0 backend/decky-syncthing-watchdog/src/watch_gamescope.rs
+99 −35 main.py
+9 −9 package.json
+148 −146 pnpm-lock.yaml
+10 −3 src/Settings.tsx
+498 −6 src/api/SyncthingApi.ts
+260 −0 src/api/SyncthingReactHooks.tsx
+62 −2 src/api/WatchdogApi.ts
+25 −0 src/components/DeviceStatusIcon.tsx
+18 −37 src/components/DevicesPanel.tsx
+12 −0 src/components/DialogContent.tsx
+12 −76 src/components/FolderPanel.tsx
+50 −0 src/components/FolderStatusIcon.tsx
+5 −3 src/components/Loader.tsx
+20 −1 src/components/QuickAccess.tsx
+2 −0 src/components/Setting.tsx
+61 −0 src/components/SettingDropdown.tsx
+3 −4 src/components/SyncthingEntity.tsx
+8 −2 src/components/SyncthingIcon.tsx
+50 −0 src/components/WelcomePanel.tsx
+68 −0 src/components/detail/DetailModal.tsx
+65 −0 src/components/detail/DeviceDetailsModal.tsx
+67 −0 src/components/detail/FolderDetailsModal.tsx
+23 −0 src/components/detail/FolderFileStats.tsx
+60 −0 src/components/detail/ThisDeviceDetailsModal.tsx
+20 −0 src/components/detail/device/DeviceAutoAcceptRow.tsx
+34 −0 src/components/detail/device/DeviceDownloadRateRow.tsx
+35 −0 src/components/detail/device/DeviceFoldersRow.tsx
+16 −0 src/components/detail/device/DeviceIdentificationRow.tsx
+21 −0 src/components/detail/device/DeviceIntroducedByRow.tsx
+20 −0 src/components/detail/device/DeviceIntroducerRow.tsx
+30 −0 src/components/detail/device/DeviceLastSeenRow.tsx
+21 −0 src/components/detail/device/DeviceOutOfSyncItemsRow.tsx
+48 −0 src/components/detail/device/DeviceStatusRow.tsx
+32 −0 src/components/detail/device/DeviceSyncStatusRow.tsx
+20 −0 src/components/detail/device/DeviceUntrustedRow.tsx
+34 −0 src/components/detail/device/DeviceUploadRateRow.tsx
+21 −0 src/components/detail/device/DeviceVersionRow.tsx
+22 −0 src/components/detail/folder/FolderErrorRow.tsx
+21 −0 src/components/detail/folder/FolderFailedItemsRow.tsx
+41 −0 src/components/detail/folder/FolderFilePullOrderRow.tsx
+21 −0 src/components/detail/folder/FolderGlobalStateRow.tsx
+21 −0 src/components/detail/folder/FolderIdRow.tsx
+22 −0 src/components/detail/folder/FolderIgnorePermissionsRow.tsx
+31 −0 src/components/detail/folder/FolderLastScanRow.tsx
+35 −0 src/components/detail/folder/FolderLatestChangeRow.tsx
+44 −0 src/components/detail/folder/FolderLocalStateRow.tsx
+27 −0 src/components/detail/folder/FolderLocallyChangedItemsRow.tsx
+22 −0 src/components/detail/folder/FolderOutOfSyncItemsRow.tsx
+18 −0 src/components/detail/folder/FolderPathRow.tsx
+26 −0 src/components/detail/folder/FolderRescansPeriodicRow.tsx
+31 −0 src/components/detail/folder/FolderRescansWatcherRow.tsx
+37 −0 src/components/detail/folder/FolderSharedWithRow.tsx
+77 −0 src/components/detail/folder/FolderStatusRow.tsx
+36 −0 src/components/detail/folder/FolderTypeRow.tsx
+85 −0 src/components/detail/folder/FolderVersioningRow.tsx
+34 −0 src/components/detail/this_device/SelfDownloadRateRow.tsx
+24 −0 src/components/detail/this_device/SelfListenersRow.tsx
+24 −0 src/components/detail/this_device/SelfLocalStateRow.tsx
+34 −0 src/components/detail/this_device/SelfUploadRateRow.tsx
+16 −0 src/components/detail/this_device/SelfUptimeRow.tsx
+55 −0 src/components/detail/this_device/SelfVersionRow.tsx
+15 −5 src/components/settings/SettingsRouter.tsx
+41 −0 src/components/settings/pages/DebugPage.tsx
+0 −105 src/components/settings/pages/LogsPage.tsx
+47 −13 src/components/settings/pages/SettingsPage.tsx
+30 −0 src/components/settings/pages/SetupPage.tsx
+81 −0 src/components/setup/SetupRouter.tsx
+105 −0 src/components/setup/pages/ApikeyPage.tsx
+89 −0 src/components/setup/pages/AutostartPage.tsx
+120 −0 src/components/setup/pages/BasicAuthPage.tsx
+52 −0 src/components/setup/pages/FinishPage.tsx
+106 −0 src/components/setup/pages/PortPage.tsx
+158 −0 src/components/setup/pages/SetupPage.tsx
+103 −0 src/components/setup/pages/StartingPage.tsx
+112 −0 src/components/setup/pages/WelcomePage.tsx
+28 −0 src/components/setup/util/GenericWizardError.tsx
+18 −0 src/components/setup/util/loadSettingsForWizardPage.ts
+138 −0 src/components/wizard/Wizard.tsx
+31 −0 src/components/wizard/WizardSidebarItem.tsx
+5 −1 src/consts.ts
+8 −0 src/formatDate.ts
+8 −0 src/index.tsx
+169 −0 src/style.css
+46 −0 src/util.ts
2 changes: 1 addition & 1 deletion plugins/hltb-for-deck
2 changes: 1 addition & 1 deletion plugins/moondeck
Submodule moondeck updated 87 files
+16 −3 .vscode/tasks.json
+1 −1 README.md
+2 −2 defaults/python/lib/buddyclient.py
+1 −1 defaults/python/lib/constants.py
+3 −2 defaults/python/lib/hostinfo.py
+30 −1 defaults/python/lib/settings.py
+32 −4 defaults/python/lib/utils.py
+7 −1 defaults/python/runner.py
+18 −21 package.json
+2 −1 plugin.json
+1,712 −771 pnpm-lock.yaml
+4 −36 rollup.config.js
+11 −1 src/components/buttonstyleview/buttonstyleview.tsx
+28 −1 src/components/changelogview/changelogview.tsx
+1 −1 src/components/gamesessionview/gamesessionview.tsx
+1 −1 src/components/hostselectionview/addhostbutton.tsx
+1 −1 src/components/hostselectionview/buddypairbutton.tsx
+1 −1 src/components/hostselectionview/hostforgetbutton.tsx
+1 −1 src/components/hostselectionview/hostscanbutton.tsx
+1 −1 src/components/hostselectionview/hostselectionview.tsx
+1 −1 src/components/hostselectionview/manualhostmodal.tsx
+1 −1 src/components/hostselectionview/pairingmodal.tsx
+1 −1 src/components/hostsettingsview/hostsettingsview.tsx
+1 −1 src/components/hostsettingsview/modifyhostappmodal.tsx
+1 −0 src/components/moondecklaunchbutton/containerstyle.tsx
+41 −28 src/components/moondecklaunchbutton/moondecklaunchbutton.tsx
+1 −1 src/components/moonlightsettingsview/linkeddisplaylist.tsx
+1 −1 src/components/moonlightsettingsview/linkeddisplaymodal.tsx
+2 −4 src/components/moonlightsettingsview/modifyresolutionmodal.tsx
+4 −4 src/components/moonlightsettingsview/moonlightexecutableselection.tsx
+4 −7 src/components/moonlightsettingsview/moonlightsettingsview.tsx
+1 −1 src/components/quicksettingsview/gamesessionpanel.tsx
+10 −5 src/components/quicksettingsview/hostapppanel.tsx
+1 −1 src/components/quicksettingsview/hostcommandpanel.tsx
+1 −1 src/components/quicksettingsview/hoststatuspanel.tsx
+5 −3 src/components/quicksettingsview/quicksettingsview.tsx
+13 −4 src/components/quicksettingsview/resolutionpanel.tsx
+34 −0 src/components/quicksettingsview/sunshineappspanel.tsx
+35 −2 src/components/runnersettingsview/runnersettingsview.tsx
+1 −1 src/components/setupguideview/setupguideview.tsx
+1 −0 src/components/shared/index.ts
+1 −1 src/components/shared/indexedlist/modifylistentrybutton.tsx
+1 −1 src/components/shared/indexedlist/removelistentrybutton.tsx
+1 −1 src/components/shared/listdropdown.tsx
+1 −1 src/components/shared/settingsloadingfield.tsx
+1 −1 src/components/shared/statusfield.tsx
+176 −0 src/components/shared/sunshineappssyncbutton.tsx
+1 −1 src/components/shared/textinput.tsx
+1 −1 src/components/shared/togglefield.tsx
+1 −1 src/components/shortcutsview/purgebutton.tsx
+18 −5 src/components/shortcutsview/shortcutsview.tsx
+1 −1 src/components/statusindicatorsview/statusindicatorsview.tsx
+9 −5 src/components/sunshineappsview/batchresoverridebutton.tsx
+1 −1 src/components/sunshineappsview/batchresoverridemodal.tsx
+1 −1 src/components/sunshineappsview/purgebutton.tsx
+20 −9 src/components/sunshineappsview/sunshineappsview.tsx
+0 −119 src/components/sunshineappsview/syncbutton.tsx
+1 −5 src/components/titleview/titleview.tsx
+12 −14 src/index.tsx
+0 −266 src/lib/appheadergrid.tsx
+15 −12 src/lib/appoverviewpatcher.ts
+1 −1 src/lib/asyncloop.ts
+10 −22 src/lib/buddyproxy.ts
+15 −25 src/lib/commandproxy.ts
+4 −7 src/lib/connectivitymanager.ts
+4 −11 src/lib/logger.ts
+18 −30 src/lib/moondeckapp.ts
+31 −32 src/lib/moondeckapplauncher.ts
+32 −50 src/lib/serverproxy.ts
+29 −36 src/lib/settingsmanager.ts
+1 −1 src/lib/steamutils.ts
+78 −79 src/routes/libaryapp.tsx
+7 −7 src/routes/moondeck.tsx
+1 −5 src/routes/routemanager.ts
+4 −1 src/steam-utils/collectionStoreInvalidation.ts
+1 −1 src/steam-utils/getAppDetails.ts
+1 −1 src/steam-utils/getCollectionStore.ts
+1 −1 src/steam-utils/getCurrentDisplayMode.ts
+1 −2 src/steam-utils/launchApp.ts
+3 −3 src/steam-utils/registerForSuspendNotifications.ts
+1 −1 src/steam-utils/restartSteamClient.ts
+2 −2 src/steam-utils/shared.ts
+1 −2 src/steam-utils/terminateApp.ts
+1 −1 src/steam-utils/waitForAppDetails.ts
+1 −1 src/steam-utils/waitForAppLifetimeNotification.ts
+3 −2 src/steam-utils/waitForNetworkConnection.ts
+1 −3 tsconfig.json
2 changes: 1 addition & 1 deletion plugins/sharedeck-y
1 change: 1 addition & 0 deletions plugins/steamdeck-input-disabler
Submodule steamdeck-input-disabler added at 2bcd8e

0 comments on commit 104e4b3

Please sign in to comment.