-
Notifications
You must be signed in to change notification settings - Fork 115
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
24 changed files
with
46 additions
and
18 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 | ||
|
@@ -177,9 +177,31 @@ | |
[submodule "plugins/decky-wine-cellar"] | ||
path = plugins/decky-wine-cellar | ||
url = https://github.com/FlashyReese/decky-wine-cellar.git | ||
[submodule "plugins/EmuDecky"] | ||
path = plugins/EmuDecky | ||
url = https://github.com/EmuDeck/EmuDecky.git | ||
[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
18 files
+2 −2 | package.json | |
+6 −6 | pnpm-lock.yaml | |
+2 −1 | rollup.config.js | |
+11 −1 | src/classes/BrowserTabHandler.tsx | |
+6 −1 | src/classes/SettingsManager.ts | |
+3 −0 | src/classes/TabManager.ts | |
+7 −0 | src/components/BrowserContextMenu.tsx | |
+32 −0 | src/components/CustomSearchUrlModal.tsx | |
+38 −0 | src/components/FallbackSearchModal.tsx | |
+36 −4 | src/components/QAMContent.tsx | |
+32 −19 | src/components/SearchBarInput.tsx | |
+17 −1 | src/components/TabbedBrowser.tsx | |
+2 −2 | src/init.ts | |
+2 −1 | src/menuPatch.tsx | |
+2 −17 | src/pluginState.ts | |
+8 −1 | 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 SDH-CssLoader
updated
32 files
Submodule decky-XRGaming
added at
a1e2e2
Submodule decky-recorder
updated
from 128404 to 8bb81d
Submodule decky-save-manager
added at
51ea03
Submodule decky-steamgriddb
updated
27 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 | |
+1 −1 | src/i18n/es-419.json | |
+1 −1 | src/i18n/es.json | |
+1 −1 | src/i18n/fr.json | |
+1 −0 | src/i18n/id.json | |
+1 −1 | src/i18n/ja.json | |
+4 −1 | 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 | |
+32 −37 | src/patches/contextMenuPatch.tsx | |
+1 −0 | src/patches/squareLibraryPatch.tsx | |
+2 −1 | src/static-classes.ts | |
+42 −0 | src/styles/_mixins.scss |
Submodule decky-wine-cellar
updated
5 files
+1 −1 | backend/Cargo.lock | |
+1 −1 | backend/Cargo.toml | |
+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 hltb-for-deck
updated
49 files
Submodule kdeconnect
added at
c5dbb9
Submodule moondeck
updated
63 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 |