Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add DeckSCP #454

Closed
wants to merge 22 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ jobs:
- name: Download Decky CLI
run: |
mkdir /tmp/decky-cli
curl -L -o /tmp/decky-cli/decky "https://github.com/SteamDeckHomebrew/cli/releases/download/0.0.1-alpha.11/decky"
curl -L -o /tmp/decky-cli/decky "https://github.com/SteamDeckHomebrew/cli/releases/download/0.0.1-alpha.14/decky"
chmod +x /tmp/decky-cli/decky

echo "/tmp/decky-cli" >> $GITHUB_PATH
Expand Down
14 changes: 13 additions & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -180,3 +180,15 @@
[submodule "plugins/decky-xrealAir"]
path = plugins/decky-xrealAir
url = https://github.com/wheaney/decky-xrealAir.git
[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/DeckSCP"]
path = plugins/DeckSCP
url = https://github.com/ArnonGuttel/decky-filetransfer-plugin
1 change: 1 addition & 0 deletions plugins/DeckSCP
Submodule DeckSCP added at aed3f9
1 change: 1 addition & 0 deletions plugins/DeckScreenshotManager
Submodule DeckScreenshotManager added at b4c3f4
1 change: 1 addition & 0 deletions plugins/MicroSDeck
Submodule MicroSDeck added at 25ece0
2 changes: 1 addition & 1 deletion plugins/SDH-CssLoader
1 change: 1 addition & 0 deletions plugins/decky-save-manager
Submodule decky-save-manager added at 51ea03
2 changes: 1 addition & 1 deletion plugins/decky-xrealAir
2 changes: 1 addition & 1 deletion plugins/moondeck
Submodule moondeck updated 39 files
+1 −1 defaults/python/lib/constants.py
+13 −1 defaults/python/lib/settings.py
+66 −24 defaults/python/runner.py
+2 −2 package.json
+11 −7 pnpm-lock.yaml
+26 −0 src/components/changelogview/changelogview.tsx
+8 −2 src/components/hostselectionview/hostselectiondropdown.tsx
+1 −1 src/components/hostselectionview/hostselectionview.tsx
+12 −3 src/components/hostselectionview/manualhostmodal.tsx
+4 −4 src/components/hostsettingsview/hostsettingsview.tsx
+1 −2 src/components/icons/host.tsx
+1 −0 src/components/icons/index.ts
+3 −0 src/components/icons/trash.tsx
+101 −0 src/components/moonlightsettingsview/linkeddisplaylist.tsx
+73 −0 src/components/moonlightsettingsview/linkeddisplaymodal.tsx
+1 −1 src/components/moonlightsettingsview/modifyresolutionmodal.tsx
+2 −0 src/components/moonlightsettingsview/moonlightsettingsview.tsx
+15 −5 src/components/quicksettingsview/hoststatuspanel.tsx
+3 −2 src/components/quicksettingsview/quicksettingsview.tsx
+53 −22 src/components/quicksettingsview/resolutionpanel.tsx
+12 −1 src/components/runnersettingsview/runnersettingsview.tsx
+0 −1 src/components/shared/index.ts
+3 −1 src/components/shared/indexedlist/indexedlistdropdown.tsx
+0 −28 src/components/shared/ipaddresstextinput.tsx
+3 −2 src/components/shared/listdropdown.tsx
+3 −1 src/components/shared/resolutionselectiondropdown.tsx
+1 −0 src/hooks/index.ts
+19 −0 src/hooks/usecurrentdisplayidentifier.tsx
+2 −1 src/hooks/usecurrenthostsettings.tsx
+3 −2 src/hooks/usecurrentsettings.tsx
+27 −9 src/lib/moondeckapplauncher.ts
+6 −4 src/lib/serverproxy.ts
+4 −0 src/lib/settingsmanager.ts
+10 −1 src/lib/steamutils.ts
+49 −0 src/steam-utils/getDisplayIdentifiers.ts
+3 −0 src/steam-utils/getSystemDisplayManagerStore.ts
+2 −0 src/steam-utils/index.ts
+15 −0 src/steam-utils/registerForDisplayStateChanges.ts
+5 −0 src/steam-utils/shared.ts
2 changes: 1 addition & 1 deletion plugins/sharedeck-y
Submodule sharedeck-y updated 4 files
+1 −1 LICENSE
+4 −2 README.md
+2 −2 package.json
+7 −7 pnpm-lock.yaml
Loading