From eb439574becb9a82c283d513a98440d7c8efbafe Mon Sep 17 00:00:00 2001 From: TrainDoctor Date: Thu, 1 Sep 2022 13:46:49 -0700 Subject: Addition of proper branch slection (#168) * This is a bit better, but branch selection still isn't working -_- * I'm the king of oversight * Selecting different branch checks for updates * Stable doesn't detect old versions, which indicates it doesn't work * Start adding deckyState for plugin updating * Few tweaks * Disable nightly selection * Update decky-frontend-lib and move useSetting set setting to async --- frontend/src/plugin-loader.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'frontend/src/plugin-loader.tsx') diff --git a/frontend/src/plugin-loader.tsx b/frontend/src/plugin-loader.tsx index 85b03704..4d3415c8 100644 --- a/frontend/src/plugin-loader.tsx +++ b/frontend/src/plugin-loader.tsx @@ -52,10 +52,8 @@ class PluginLoader extends Logger { ), icon: ( - <> - - - + + ), }); @@ -105,6 +103,7 @@ class PluginLoader extends Logger { public async notifyUpdates() { const versionInfo = (await callUpdaterMethod('get_version')).result as VerInfo; + this.deckyState.setVersionInfo(versionInfo); if (versionInfo?.remote && versionInfo?.remote?.tag_name != versionInfo?.current) { this.toaster.toast({ title: 'Decky', -- cgit v1.2.3