Compare commits

..

2 Commits

Author SHA1 Message Date
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
3 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,10 @@
## [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.3",
"description": "A library for building decky plugins",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@@ -5,7 +5,7 @@ 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('PreloadThrobber'))
return m[prop];
}
}) as FC<SVGAttributes<SVGElement>>;