mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-07-10 23:11:56 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3a927084b0 | |||
| 5e07c8f028 | |||
| 91d1bc8a78 |
@@ -98,7 +98,7 @@ Please consult [the wiki page regarding development](https://deckbrew.xyz/en/loa
|
|||||||
1. Use the VS Code tasks or `deck.sh` script to deploy your changes to your Steam Deck to test them.
|
1. Use the VS Code tasks or `deck.sh` script to deploy your changes to your Steam Deck to test them.
|
||||||
1. You will be testing your changes with the Python script version. You will need to build, deploy, and reload each time.
|
1. You will be testing your changes with the Python script version. You will need to build, deploy, and reload each time.
|
||||||
|
|
||||||
⚠️ If you are recieving build errors due to an out of date library, you should run this command inside of your repository.
|
⚠️ If you are receiving build errors due to an out of date library, you should run this command inside of your repository.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pnpm update decky-frontend-lib --latest
|
pnpm update decky-frontend-lib --latest
|
||||||
|
|||||||
@@ -60,6 +60,9 @@ class PluginBrowser:
|
|||||||
if "remote_binary" in packageJson and len(packageJson["remote_binary"]) > 0:
|
if "remote_binary" in packageJson and len(packageJson["remote_binary"]) > 0:
|
||||||
# create bin directory if needed.
|
# create bin directory if needed.
|
||||||
rc=call(["chmod", "-R", "777", pluginBasePath])
|
rc=call(["chmod", "-R", "777", pluginBasePath])
|
||||||
|
if rc != 0:
|
||||||
|
logger.error(f"chown of plugin w/ remote binary exited with a non-zero exit code, chmod: {rc})")
|
||||||
|
|
||||||
if access(pluginBasePath, W_OK):
|
if access(pluginBasePath, W_OK):
|
||||||
|
|
||||||
if not path.exists(pluginBinPath):
|
if not path.exists(pluginBinPath):
|
||||||
@@ -67,6 +70,8 @@ class PluginBrowser:
|
|||||||
|
|
||||||
if not access(pluginBinPath, W_OK):
|
if not access(pluginBinPath, W_OK):
|
||||||
rc=call(["chmod", "-R", "777", pluginBinPath])
|
rc=call(["chmod", "-R", "777", pluginBinPath])
|
||||||
|
if rc != 0:
|
||||||
|
logger.error(f"chown of plugin w/ remote binary exited with a non-zero exit code, chmod: {rc})")
|
||||||
|
|
||||||
rv = True
|
rv = True
|
||||||
for remoteBinary in packageJson["remote_binary"]:
|
for remoteBinary in packageJson["remote_binary"]:
|
||||||
@@ -80,6 +85,8 @@ class PluginBrowser:
|
|||||||
|
|
||||||
code_chown = call(["chown", "-R", get_user()+":"+get_user_group(), self.plugin_path])
|
code_chown = call(["chown", "-R", get_user()+":"+get_user_group(), self.plugin_path])
|
||||||
rc=call(["chmod", "-R", "555", pluginBasePath])
|
rc=call(["chmod", "-R", "555", pluginBasePath])
|
||||||
|
if code_chown or rc != 0:
|
||||||
|
logger.error(f"chown/chmod exited with a non-zero exit code (chown: {code_chown}, chmod: {rc})")
|
||||||
else:
|
else:
|
||||||
rv = True
|
rv = True
|
||||||
logger.debug(f"No Remote Binaries to Download")
|
logger.debug(f"No Remote Binaries to Download")
|
||||||
|
|||||||
+13
-1
@@ -7,7 +7,7 @@ if hasattr(sys, '_MEIPASS'):
|
|||||||
from asyncio import new_event_loop, set_event_loop, sleep
|
from asyncio import new_event_loop, set_event_loop, sleep
|
||||||
from json import dumps, loads
|
from json import dumps, loads
|
||||||
from logging import DEBUG, INFO, basicConfig, getLogger
|
from logging import DEBUG, INFO, basicConfig, getLogger
|
||||||
from os import getenv, chmod, path
|
from os import getenv, chmod, listdir, path
|
||||||
from traceback import format_exc
|
from traceback import format_exc
|
||||||
|
|
||||||
import aiohttp_cors
|
import aiohttp_cors
|
||||||
@@ -91,6 +91,7 @@ class PluginManager:
|
|||||||
chown_plugin_dir()
|
chown_plugin_dir()
|
||||||
self.loop.create_task(self.loader_reinjector())
|
self.loop.create_task(self.loader_reinjector())
|
||||||
self.loop.create_task(self.load_plugins())
|
self.loop.create_task(self.load_plugins())
|
||||||
|
self.loop.create_task(self.reload_plugin_backends())
|
||||||
|
|
||||||
self.web_app.on_startup.append(startup)
|
self.web_app.on_startup.append(startup)
|
||||||
|
|
||||||
@@ -116,6 +117,17 @@ class PluginManager:
|
|||||||
self.plugin_loader.import_plugins()
|
self.plugin_loader.import_plugins()
|
||||||
# await inject_to_tab("SP", "window.syncDeckyPlugins();")
|
# await inject_to_tab("SP", "window.syncDeckyPlugins();")
|
||||||
|
|
||||||
|
async def reload_plugin_backends(self, name):
|
||||||
|
await self.wait_for_server()
|
||||||
|
if name in self.plugin_loader.plugins:
|
||||||
|
self.plugin_loader.plugins[name].stop()
|
||||||
|
self.plugin_loader.plugins.pop(name, None)
|
||||||
|
else:
|
||||||
|
logger.error("Couldn't find plugin %s to reload.", str(name))
|
||||||
|
directories = [i for i in listdir(self.plugin_loader.plugin_path) if path.isdir(path.join(self.plugin_loader.plugin_path, i)) and path.isfile(path.join(self.plugin_loader.plugin_path, i, "plugin.json"))]
|
||||||
|
if name in directories:
|
||||||
|
Loader.import_plugin(path.join(self.plugin_loader.plugin_path, directories[name], "main.py"), directories[name], False, False)
|
||||||
|
|
||||||
async def loader_reinjector(self):
|
async def loader_reinjector(self):
|
||||||
while True:
|
while True:
|
||||||
tab = None
|
tab = None
|
||||||
|
|||||||
Reference in New Issue
Block a user