forked from SteamDeckHomebrew/decky-plugin-database
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'SteamDeckHomebrew:main' into main
- Loading branch information
Showing
30 changed files
with
52 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
url = https://git.ngni.us/NG-SD-Plugins/PowerTools | ||
[submodule "plugins/SDH-CssLoader"] | ||
path = plugins/SDH-CssLoader | ||
url = https://github.com/suchmememanyskill/SDH-CssLoader | ||
url = https://github.com/DeckThemes/SDH-CssLoader | ||
[submodule "plugins/vibrantDeck"] | ||
path = plugins/vibrantDeck | ||
url = https://github.com/libvibrant/vibrantDeck.git | ||
|
@@ -40,7 +40,7 @@ | |
url = https://github.com/popsUlfr/SDH-Notebook.git | ||
[submodule "plugins/Fantastic"] | ||
path = plugins/Fantastic | ||
url = https://github.com/NGnius/Fantastic | ||
url = https://git.ngni.us/NG-SD-Plugins/Fantastic | ||
[submodule "plugins/memory-deck"] | ||
path = plugins/memory-deck | ||
url = https://github.com/CameronRedmore/memory-deck.git | ||
|
@@ -183,3 +183,25 @@ | |
[submodule "plugins/decky-xrealAir"] | ||
path = plugins/decky-xrealAir | ||
url = https://github.com/wheaney/decky-xrealAir.git | ||
branch = xrealAir | ||
[submodule "plugins/DeckScreenshotManager"] | ||
path = plugins/DeckScreenshotManager | ||
url = https://github.com/codehz/DeckScreenshotManager | ||
[submodule "plugins/MicroSDeck"] | ||
path = plugins/MicroSDeck | ||
url = https://github.com/CEbbinghaus/MicroSDeck | ||
[submodule "plugins/decky-save-manager"] | ||
path = plugins/decky-save-manager | ||
url = https://github.com/metehankutlu/decky-save-manager | ||
[submodule "plugins/CheatDeck"] | ||
path = plugins/CheatDeck | ||
url = https://github.com/SheffeyG/CheatDeck | ||
[submodule "plugins/reshadeck"] | ||
path = plugins/reshadeck | ||
url = https://github.com/safijari/reshadeck | ||
[submodule "plugins/kdeconnect"] | ||
path = plugins/kdeconnect | ||
url = https://github.com/safijari/Decky-KDE-Connect.git | ||
[submodule "plugins/decky-XRGaming"] | ||
path = plugins/decky-XRGaming | ||
url = [email protected]:wheaney/decky-XRGaming.git |
Submodule DeckScreenshotManager
added at
b4c3f4
Submodule DeckWebBrowser
updated
25 files
+4 −5 | README.md | |
+2 −2 | package.json | |
+6 −6 | pnpm-lock.yaml | |
+2 −1 | rollup.config.js | |
+55 −0 | src/GamepadUIAudio.ts | |
+11 −1 | src/classes/BrowserTabHandler.tsx | |
+19 −6 | src/classes/SettingsManager.ts | |
+4 −1 | src/classes/TabManager.ts | |
+9 −1 | src/components/BrowserContextMenu.tsx | |
+32 −0 | src/components/CustomSearchUrlModal.tsx | |
+38 −0 | src/components/FallbackSearchModal.tsx | |
+66 −15 | src/components/QAMContent.tsx | |
+32 −19 | src/components/SearchBarInput.tsx | |
+19 −2 | src/components/TabbedBrowser.tsx | |
+109 −0 | src/components/generic/CustomButton.tsx | |
+130 −0 | src/components/generic/CustomDropdown.tsx | |
+267 −0 | src/components/generic/EnhancedSelector.tsx | |
+1 −1 | src/index.tsx | |
+2 −5 | src/init.ts | |
+54 −14 | src/menuPatch.tsx | |
+13 −7 | src/native-components/PluginIcon.tsx | |
+4 −0 | src/pluginState.ts | |
+9 −2 | src/searchBarPatch.tsx | |
+36 −41 | src/styling.tsx | |
+17 −0 | src/utils.ts |
Submodule Fantastic
updated
from 78921c to e46420
Submodule FriendsFix
deleted from
a4c5f7
Submodule MangoPeel
updated
28 files
+29 −9 | main.py | |
+4 −2 | package.json | |
+58 −0 | pnpm-lock.yaml | |
+37 −0 | src/components/ColorPickModal.tsx | |
+204 −0 | src/components/ColorPickSlider.tsx | |
+60 −19 | src/components/MangoIndex.tsx | |
+201 −0 | src/components/ParamGroupTabs.tsx | |
+120 −40 | src/components/ParamItem.tsx | |
+2 −2 | src/components/ResortableList.tsx | |
+1 −0 | src/components/index.ts | |
+96 −3 | src/i18n/en.json | |
+89 −1 | src/i18n/ja.json | |
+90 −2 | src/i18n/ko.json | |
+88 −1 | src/i18n/localizeMap.ts | |
+96 −3 | src/i18n/zh-cn.json | |
+96 −3 | src/i18n/zh-tw.json | |
+45 −30 | src/index.tsx | |
+0 −989 | src/util/config.ts | |
+45 −0 | src/util/config/config.ts | |
+1,624 −0 | src/util/config/config_main.ts | |
+1,624 −0 | src/util/config/config_rel.ts | |
+1 −0 | src/util/config/index.ts | |
+68 −15 | src/util/enum.ts | |
+2 −1 | src/util/index.ts | |
+116 −14 | src/util/interface.ts | |
+197 −0 | src/util/perfStore.ts | |
+8 −3 | src/util/pluginMain.ts | |
+423 −152 | src/util/settings.ts |
Submodule MicroSDeck
added at
25ece0
Submodule SDH-CssLoader
updated
76 files
Submodule SDH-GameThemeMusic
updated
13 files
+14 −7 | README.md | |
+11 −11 | package.json | |
+436 −194 | pnpm-lock.yaml | |
+9 −0 | src/hooks/useAudioPlayer.ts | |
+35 −13 | src/index.tsx | |
+73 −53 | src/lib/patchContextMenu.tsx | |
+15 −4 | src/lib/patchLibraryApp.tsx | |
+8 −8 | src/localisation/cs.json | |
+24 −24 | src/localisation/fi.json | |
+24 −24 | src/localisation/tr.json | |
+24 −24 | src/localisation/uk.json | |
+24 −24 | src/localisation/zh-cn.json | |
+155 −0 | src/state/AudioLoaderCompatState.tsx |
Submodule Steamback
updated
31 files
+16 −0 | .github/dependabot.yml | |
+3 −0 | .gitignore | |
+10 −0 | .vscode/build.sh | |
+10 −0 | .vscode/launch.json | |
+48 −0 | .vscode/setup.sh | |
+15 −6 | README.md | |
+1 −0 | bin/regen-docs.sh | |
+2 −0 | bin/run.sh | |
+10 −0 | bin/test-release.sh | |
+10 −0 | bin/upload-release.sh | |
+1 −0 | defaults/py_modules/.gitignore | |
+277 −134 | defaults/py_modules/steamback/__init__.py | |
+44 −6 | defaults/py_modules/steamback/__main__.py | |
+ − | defaults/py_modules/steamback/data/icons8-refresh-96.png | |
+312 −39 | defaults/py_modules/steamback/gui.py | |
+8 −13 | defaults/py_modules/steamback/test.py | |
+67 −20 | defaults/py_modules/steamback/util.py | |
+6 −0 | doc/TODO.md | |
+ − | doc/desktop-screenshot.png | |
+41 −0 | doc/desktop.md | |
+44 −0 | doc/development.md | |
+1,053 −0 | doc/steamback/gui.html | |
+1,708 −0 | doc/steamback/index.html | |
+244 −0 | doc/steamback/test.html | |
+375 −0 | doc/steamback/util.html | |
+3 −2 | main.py | |
+3 −3 | package.json | |
+206 −187 | pnpm-lock.yaml | |
+26 −7 | pyproject.toml | |
+2 −1 | rollup.config.js | |
+34 −0 | tests/fonttest.py |
Submodule decky-XRGaming
added at
a1e2e2
Submodule decky-autosuspend
updated
23 files
+4 −4 | package.json | |
+84 −84 | pnpm-lock.yaml | |
+0 −0 | src/Browser/About.tsx | |
+0 −0 | src/Browser/DefaultSettings.tsx | |
+0 −14 | src/InputControls/NotificationToggles.css.ts | |
+0 −39 | src/InputControls/NotificationToggles.tsx | |
+0 −74 | src/InputControls/Spinner.tsx | |
+50 −12 | src/Utils/Alarms.ts | |
+64 −18 | src/Utils/Context.tsx | |
+23 −1 | src/Utils/Events.ts | |
+75 −2 | src/Utils/Interfaces.ts | |
+2 −1 | src/Utils/Settings.ts | |
+8 −0 | src/Utils/SteamUtils.ts | |
+68 −0 | src/Views/About.tsx | |
+7 −7 | src/Views/AlarmList/AlarmItem.tsx | |
+68 −72 | src/Views/AlarmList/AlarmSettings.tsx | |
+11 −24 | src/Views/AlarmList/index.tsx | |
+86 −0 | src/Views/GlobalSettings/index.tsx | |
+372 −0 | src/Views/Info.tsx | |
+46 −0 | src/Views/PageRouter.tsx | |
+0 −0 | src/Views/QAM/QAMPanel.old.tsx | |
+7 −6 | src/Views/QAM/index.tsx | |
+4 −4 | src/index.tsx |
Submodule decky-recorder
updated
from 128404 to 8bb81d
Submodule decky-save-manager
added at
51ea03
Submodule decky-steamgriddb
updated
28 files
+20 −19 | package.json | |
+784 −743 | pnpm-lock.yaml | |
+1 −0 | src/components/asset/Asset.tsx | |
+28 −8 | src/components/asset/LazyImage.tsx | |
+2 −5 | src/components/plugin-pages/AssetTab.tsx | |
+43 −10 | src/components/qam-contents/QuickAccessSettings.tsx | |
+21 −5 | src/hooks/useAssetSearch.tsx | |
+3 −1 | src/hooks/useSGDB.tsx | |
+4 −1 | src/i18n/de.json | |
+5 −1 | src/i18n/es-419.json | |
+4 −0 | src/i18n/es.json | |
+1 −1 | src/i18n/fr.json | |
+1 −0 | src/i18n/id.json | |
+1 −1 | src/i18n/ja.json | |
+13 −0 | src/i18n/ko.json | |
+1 −1 | src/i18n/nl.json | |
+1 −1 | src/i18n/pt-br.json | |
+3 −1 | src/i18n/pt.json | |
+4 −0 | src/i18n/ru.json | |
+4 −1 | src/i18n/strings.json | |
+1 −1 | src/i18n/tr.json | |
+10 −9 | src/index.tsx | |
+19 −0 | src/patches/capsuleGlowPatch.tsx | |
+34 −36 | src/patches/contextMenuPatch.tsx | |
+1 −0 | src/patches/squareLibraryPatch.tsx | |
+2 −1 | src/static-classes.ts | |
+42 −0 | src/styles/_mixins.scss | |
+5 −0 | src/utils/i18n.ts |
Submodule decky-terminal
updated
3 files
+1 −1 | package.json | |
+32 −2 | src/pages/Terminal.tsx | |
+24 −4 | src/pages/settings/SettingsPage.tsx |
Submodule decky-wine-cellar
updated
6 files
+1 −1 | backend/Cargo.lock | |
+1 −1 | backend/Cargo.toml | |
+19 −12 | backend/src/steam_util.rs | |
+3 −3 | backend/src/wine_cask/install.rs | |
+4 −4 | package.json | |
+15 −15 | pnpm-lock.yaml |
Submodule decky-xrealAir
updated
from 0c350a to 8cbe27
Submodule free-loader
updated
22 files
Submodule hltb-for-deck
updated
49 files
Submodule kdeconnect
added at
c5dbb9
Submodule moondeck
updated
67 files
Submodule sharedeck-y
updated
4 files
+1 −1 | LICENSE | |
+4 −2 | README.md | |
+2 −2 | package.json | |
+7 −7 | pnpm-lock.yaml |
Submodule tailscale-control
updated
8 files
+6 −0 | .gitignore | |
+8 −1 | README.md | |
+174 −0 | decky_plugin.pyi | |
+113 −14 | main.py | |
+2 −2 | package.json | |
+7 −7 | pnpm-lock.yaml | |
+0 −25 | src/backend.ts | |
+230 −16 | src/index.tsx |
Submodule ts3-qs4sd
updated
40 files
Submodule vibrantDeck
updated
8 files
+9 −9 | flake.lock | |
+1 −0 | flake.nix | |
+17 −58 | main.py | |
+6 −6 | package.json | |
+24 −24 | pnpm-lock.yaml | |
+19 −168 | src/index.tsx | |
+9 −38 | src/settings.ts | |
+6 −57 | src/util.ts |