Compare commits

...

10 Commits

Author SHA1 Message Date
semantic-release-bot
8fb35e3c09 chore(release): 3.20.6 [CI SKIP] 2023-04-29 02:26:37 +00:00
AAGaming
5d5cb31638 fix(QuickAccessTab): set decky tab ID to 999 2023-04-28 22:25:56 -04:00
semantic-release-bot
21f1e5f0af chore(release): 3.20.5 [CI SKIP] 2023-04-04 21:27:14 +00:00
TrainDoctor
0fa43701a9 Merge pull request #82 from Tormak9970/main
fix: reorderable list no longer toggles on backout
2023-04-04 14:26:37 -07:00
Tormak
4d52eaea12 Merge branch 'main' of https://github.com/Tormak9970/decky-frontend-lib 2023-04-04 17:04:22 -05:00
Tormak
7e1182a83f fix: reorderable list no longer toggles on backout 2023-04-04 17:04:18 -05:00
semantic-release-bot
167ded103a chore(release): 3.20.4 [CI SKIP] 2023-04-04 03:16:30 +00:00
AAGaming
b8ddf3d927 fix(SteamSpinner): oh apparently the class was moved outside the component for some reason?????? 2023-04-03 23:15:51 -04:00
semantic-release-bot
62f4b354a8 chore(release): 3.20.3 [CI SKIP] 2023-04-04 02:53:53 +00:00
AAGaming
79d229be50 fix(SteamSpinner): fix the fix 2023-04-03 22:53:10 -04:00
5 changed files with 37 additions and 5 deletions

View File

@@ -1,3 +1,31 @@
## [3.20.6](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v3.20.5...v3.20.6) (2023-04-29)
### Bug Fixes
* **QuickAccessTab:** set decky tab ID to 999 ([5d5cb31](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/5d5cb31638070deae9970a93c587b447d5e56559))
## [3.20.5](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v3.20.4...v3.20.5) (2023-04-04)
### Bug Fixes
* reorderable list no longer toggles on backout ([7e1182a](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/7e1182a83f7fafbec6fe115a72f8b64b71c119a4))
## [3.20.4](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v3.20.3...v3.20.4) (2023-04-04)
### Bug Fixes
* **SteamSpinner:** oh apparently the class was moved outside the component for some reason?????? ([b8ddf3d](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/b8ddf3d927401d04c0fde8ebc8960639369b8ad3))
## [3.20.3](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v3.20.2...v3.20.3) (2023-04-04)
### Bug Fixes
* **SteamSpinner:** fix the fix ([79d229b](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/79d229be50d26e2510af0ea16cdf6644371a5967))
## [3.20.2](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v3.20.1...v3.20.2) (2023-04-04)

View File

@@ -1,6 +1,6 @@
{
"name": "decky-frontend-lib",
"version": "3.20.2",
"version": "3.20.6",
"description": "A library for building decky plugins",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@@ -54,8 +54,9 @@ export function ReorderableList<T>(props: ReorderableListProps<T>) {
function saveOnBackout(e: Event) {
const event = e as CustomEvent;
if (event.detail.button == GamepadButton.CANCEL) {
toggleReorderEnabled();
if (event.detail.button == GamepadButton.CANCEL && reorderEnabled) {
setReorderEnabled(!reorderEnabled);
props.onSave(entryList);
}
}

View File

@@ -15,7 +15,8 @@ export enum QuickAccessTab {
Settings,
Perf,
Help,
Decky,
Music,
Decky = 999,
}
export enum DisplayStatus {

View File

@@ -5,7 +5,9 @@ import { findModuleChild } from '../webpack';
export const SteamSpinner = findModuleChild((m) => {
if (typeof m !== 'object') return undefined;
for (let prop in m) {
if (m[prop]?.toString()?.includes('Steam Spinner') && m[prop]?.toString().includes('PreloadThrobber'))
if (
m[prop]?.toString?.()?.includes('Steam Spinner') && m[prop]?.toString?.()?.includes('src')
)
return m[prop];
}
}) as FC<SVGAttributes<SVGElement>>;