Compare commits

..

15 Commits

Author SHA1 Message Date
semantic-release-bot
99353467ad chore(release): 3.20.7 [CI SKIP] 2023-05-10 20:47:47 +00:00
Party Wumpus
b093ce93ba Merge pull request #83 from RodoMa92/main
fix(decky): fix decky on latest beta
2023-05-10 21:46:57 +01:00
Marco Rodolfi
74a7cbaf94 fix(decky): fix decky on latest beta
Thanks to AAGaming and McDjuady for fixing this stuff.
2023-05-10 20:38:14 +02:00
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
semantic-release-bot
f43157fde5 chore(release): 3.20.2 [CI SKIP] 2023-04-04 02:50:17 +00:00
AAGaming
19819b7a5b fix(SteamSpinner): dont error on latest desktop beta 2023-04-03 22:49:31 -04:00
7 changed files with 54 additions and 8 deletions

View File

@@ -1,3 +1,45 @@
## [3.20.7](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v3.20.6...v3.20.7) (2023-05-10)
### Bug Fixes
* **decky:** fix decky on latest beta ([74a7cba](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/74a7cbaf94538c68a01f5fa707935c4d21570c5f))
## [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)
### Bug Fixes
* **SteamSpinner:** dont error on latest desktop beta ([19819b7](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/19819b7a5bc9434fa802f4e8dca4f4cb6921df07))
## [3.20.1](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v3.20.0...v3.20.1) (2023-04-03)

View File

@@ -1,6 +1,6 @@
{
"name": "decky-frontend-lib",
"version": "3.20.1",
"version": "3.20.7",
"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

@@ -41,8 +41,8 @@ export const MenuGroup: FC<MenuGroupProps> = findModuleChild((m) => {
for (let prop in m) {
if (
(m[prop]?.toString()?.includes('bInGamepadUI:') &&
fakeRenderComponent(() => m[prop]())?.type?.prototype?.RenderSubMenu) ||
(m[prop]?.toString()?.includes?.('bInGamepadUI:') &&
fakeRenderComponent(() => m[prop]({overview: {appid: 7}}))?.type?.prototype?.RenderSubMenu) ||
(m[prop]?.prototype?.RenderSubMenu && m[prop]?.prototype?.ShowSubMenu)
) {
return m[prop];

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>>;

View File

@@ -459,7 +459,7 @@ export const gamepadDialogClasses: GamepadDialogClasses = findModule(
(mod) => typeof mod === 'object' && mod?.GamepadDialogContent?.includes('gamepaddialog'),
);
export const quickAccessControlsClasses: QuickAccessControlsClasses = findModule(
(mod) => typeof mod === 'object' && mod?.PanelSection?.includes('quickaccesscontrols'),
(mod) => typeof mod === 'object' && typeof mod?.PanelSection === 'string' && mod?.PanelSection?.includes('quickaccesscontrols'),
);
export const updaterFieldClasses: UpdaterFieldClasses = findModule(
(mod) => typeof mod === 'object' && mod?.OOBEUpdateStatusContainer?.includes('updaterfield'),