-
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.
- Loading branch information
Showing
16 changed files
with
27 additions
and
12 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
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 FriendsFix
deleted from
a4c5f7
Submodule MangoPeel
updated
20 files
+1 −1 | package.json | |
+204 −0 | src/components/ColorPickSlider.tsx | |
+59 −18 | src/components/MangoIndex.tsx | |
+201 −0 | src/components/ParamGroupTabs.tsx | |
+26 −5 | src/components/ParamItem.tsx | |
+1 −0 | src/components/index.ts | |
+15 −4 | src/i18n/en.json | |
+12 −1 | src/i18n/localizeMap.ts | |
+15 −4 | src/i18n/zh-cn.json | |
+15 −4 | src/i18n/zh-tw.json | |
+43 −28 | src/index.tsx | |
+0 −2 | src/util/backend.ts | |
+478 −428 | src/util/config/config_main.ts | |
+597 −292 | src/util/config/config_rel.ts | |
+10 −4 | src/util/enum.ts | |
+2 −1 | src/util/index.ts | |
+96 −0 | src/util/interface.ts | |
+197 −0 | src/util/perfStore.ts | |
+4 −1 | src/util/pluginMain.ts | |
+179 −14 | src/util/settings.ts |
Submodule SDH-CssLoader
updated
32 files
Submodule decky-recorder
updated
from 128404 to 8bb81d
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 f624f7 to 04d400
Submodule hltb-for-deck
updated
49 files
Submodule kdeconnect
added at
c5dbb9
Submodule moondeck
updated
50 files
Submodule ts3-qs4sd
updated
22 files
+2 −0 | .gitignore | |
+2 −2 | backend/Makefile | |
+1 −1 | backend/src/api.h | |
+4 −2 | backend/src/api/browser.c | |
+2 −1 | backend/src/api/clients.c | |
+9 −2 | backend/src/api/cursor.c | |
+16 −0 | backend/src/api/openapi.yaml | |
+1 −1 | backend/src/plugindef.c | |
+4 −1 | backend/src/server.c | |
+8 −2 | backend/src/ts3remote.c | |
+4 −1 | backend/src/ts3remote.h | |
+6 −4 | decky/PluginLauncher | |
+21 −2 | main.py | |
+5 −2 | package.json | |
+79 −0 | plugin.publish.js | |
+23 −0 | plugin.reload.js | |
+12 −94 | pnpm-lock.yaml | |
+64 −2 | src/client.js | |
+131 −16 | src/components.js | |
+10 −0 | src/icons.js | |
+34 −3 | src/index.js | |
+44 −0 | src/styles.js |