summaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
authorTrainDoctor <traindoctor@protonmail.com>2022-10-23 13:41:12 -0700
committerGitHub <noreply@github.com>2022-10-23 13:41:12 -0700
commit6749c78ed71764fd26a15d00bf5be1b74133b6e8 (patch)
tree8e6a71809ac81375cc25ddc5e865b8fec5dd96e0 /frontend
parent4ad15568cd2802f9499bd3961c5fe24391745502 (diff)
downloaddecky-loader-6749c78ed71764fd26a15d00bf5be1b74133b6e8.tar.gz
decky-loader-6749c78ed71764fd26a15d00bf5be1b74133b6e8.zip
During update, download updates first before removing old plugin files (#223)v2.3.0-pre3
* Remove old nightly support and unused logging * Removed legacy code + added logic to account for offline update attempts * Update backend/browser.py Co-authored-by: AAGaming <aa@mail.catvibers.me> * Update backend/browser.py Co-authored-by: AAGaming <aa@mail.catvibers.me> * Update frontend/src/toaster.tsx Co-authored-by: AAGaming <aa@mail.catvibers.me> * Use str instead of String (I was tired okay...) * Remove false logic * look for plugins not having remote_binary in pkg Co-authored-by: AAGaming <aa@mail.catvibers.me>
Diffstat (limited to 'frontend')
-rw-r--r--frontend/src/components/settings/pages/general/index.tsx10
1 files changed, 0 insertions, 10 deletions
diff --git a/frontend/src/components/settings/pages/general/index.tsx b/frontend/src/components/settings/pages/general/index.tsx
index 768cfafb..6ce9f682 100644
--- a/frontend/src/components/settings/pages/general/index.tsx
+++ b/frontend/src/components/settings/pages/general/index.tsx
@@ -15,18 +15,8 @@ export default function GeneralSettings({
setIsDeveloper: (val: boolean) => void;
}) {
const [pluginURL, setPluginURL] = useState('');
- // const [checked, setChecked] = useState(false); // store these in some kind of State instead
return (
<div>
- {/* <Field
- label="A Toggle with an icon"
- icon={<FaShapes style={{ display: 'block' }} />}
- >
- <Toggle
- value={checked}
- onChange={(e) => setChecked(e)}
- />
- </Field> */}
<UpdaterSettings />
<BranchSelect />
<RemoteDebuggingSettings />