diff options
| author | EMERALD <hudson.samuels@gmail.com> | 2023-02-01 19:16:42 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-01 17:16:42 -0800 |
| commit | 43b2269ea710c02278f784f28521a99dc9d3915b (patch) | |
| tree | 34dde12638d07f63864c84fabc8654253532b6ae /frontend/src/components/settings/pages/general/Updater.tsx | |
| parent | 0c4e27cd343a81d386c11bc17f93296a2e598a5c (diff) | |
| download | decky-loader-43b2269ea710c02278f784f28521a99dc9d3915b.tar.gz decky-loader-43b2269ea710c02278f784f28521a99dc9d3915b.zip | |
Fix UI inconsistencies, various improvements (#357)
* Make version gray in plugin list
* Settings/store icons together & plugin list fix
* Navigation name/icon improvements
* Decky settings overhaul and other fixes
- Revert the tab icon to a plug
- Rename DeckyFlat function to DeckyIcon
- Add DialogBody to settings pages to improve scrolling
- Add remote debugging settings to the developer settings
- Fix React devtools interactions to work more easily
- Add spacing to React devtools description
- Specify Decky vs. plugin store
- Compact version information by update button
- Add current version to bottom of settings
- Remove unnecessary settings icons
- Change CEF debugger icon to Chrome (bug icon too generic, is Chromium)
- Make buttons/dropdowns in settings have fixed width
- Make download icon act/appear similar to Valve's for Deck
* Final UI adjustments
* Switch plugin settings icon to plug
Diffstat (limited to 'frontend/src/components/settings/pages/general/Updater.tsx')
| -rw-r--r-- | frontend/src/components/settings/pages/general/Updater.tsx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/frontend/src/components/settings/pages/general/Updater.tsx b/frontend/src/components/settings/pages/general/Updater.tsx index f617e0ff..b38b6d01 100644 --- a/frontend/src/components/settings/pages/general/Updater.tsx +++ b/frontend/src/components/settings/pages/general/Updater.tsx @@ -11,7 +11,7 @@ import { import { useCallback } from 'react'; import { Suspense, lazy } from 'react'; import { useEffect, useState } from 'react'; -import { FaArrowDown } from 'react-icons/fa'; +import { FaExclamation } from 'react-icons/fa'; import { VerInfo, callUpdaterMethod, finishUpdate } from '../../../../updater'; import { findSP } from '../../../../utils/windows'; @@ -95,21 +95,21 @@ export default function UpdaterSettings() { <Field onOptionsActionDescription={versionInfo?.all ? 'Patch Notes' : undefined} onOptionsButton={versionInfo?.all ? showPatchNotes : undefined} - label="Updates" + label="Decky Updates" description={ - versionInfo && ( - <span style={{ whiteSpace: 'pre-line' }}>{`Current version: ${versionInfo.current}\n${ - versionInfo.updatable ? `Latest version: ${versionInfo.remote?.tag_name}` : '' - }`}</span> + checkingForUpdates || versionInfo?.remote?.tag_name != versionInfo?.current || !versionInfo?.remote ? ( + '' + ) : ( + <span>Up to date: running {versionInfo?.current}</span> ) } icon={ - !versionInfo ? ( - <Spinner style={{ width: '1em', height: 20, display: 'block' }} /> - ) : ( - <FaArrowDown style={{ display: 'block' }} /> + versionInfo?.remote && + versionInfo?.remote?.tag_name != versionInfo?.current && ( + <FaExclamation color="var(--gpColor-Yellow)" style={{ display: 'block' }} /> ) } + childrenContainerWidth={'fixed'} > {updateProgress == -1 && !isLoaderUpdating ? ( <DialogButton @@ -144,7 +144,7 @@ export default function UpdaterSettings() { /> )} </Field> - {versionInfo?.remote && ( + {versionInfo?.remote && versionInfo?.remote?.tag_name != versionInfo?.current && ( <InlinePatchNotes title={versionInfo?.remote.name} date={new Intl.RelativeTimeFormat('en-US', { |
