Skip to content

Commit 985c9ac

Browse files
authored
Merge pull request #32 from studyhog/origin/react
Retroarch core updater added
2 parents 92c6e2e + 83f6fb8 commit 985c9ac

File tree

8 files changed

+32
-8
lines changed

8 files changed

+32
-8
lines changed

docs/asset-manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"files": {
33
"main.css": "/static/css/main.69dee250.css",
4-
"main.js": "/static/js/main.e0ab582f.js",
4+
"main.js": "/static/js/main.348b6868.js",
55
"static/js/787.3e3aeeea.chunk.js": "/static/js/787.3e3aeeea.chunk.js",
66
"index.html": "/index.html",
77
"main.69dee250.css.map": "/static/css/main.69dee250.css.map",
8-
"main.e0ab582f.js.map": "/static/js/main.e0ab582f.js.map",
8+
"main.348b6868.js.map": "/static/js/main.348b6868.js.map",
99
"787.3e3aeeea.chunk.js.map": "/static/js/787.3e3aeeea.chunk.js.map"
1010
},
1111
"entrypoints": [
1212
"static/css/main.69dee250.css",
13-
"static/js/main.e0ab582f.js"
13+
"static/js/main.348b6868.js"
1414
]
1515
}

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/Steam_Deck_favicon.svg"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"/><title>Steam Deck Resources</title><script defer="defer" src="/static/js/main.e0ab582f.js"></script><link href="/static/css/main.69dee250.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
1+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/Steam_Deck_favicon.svg"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"/><title>Steam Deck Resources</title><script defer="defer" src="/static/js/main.348b6868.js"></script><link href="/static/css/main.69dee250.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>

docs/static/js/main.e0ab582f.js renamed to docs/static/js/main.348b6868.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/static/js/main.348b6868.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/static/js/main.e0ab582f.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/App.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import {PLUGIN_RESOURCES} from "./data/plugin";
99
import {ROM_RESOURCES} from "./data/rom";
1010
import {VALVE_RESOURCES} from "./data/valve";
1111
import {OTHER_RESOURCES} from "./data/other";
12+
import {SCRIPT_RESOURCES} from "./data/script";
1213
import {GAME_REVIEW_RESOURCES} from "./data/game_review";
1314
import {NON_STEAM_LAUNCHER_RESOURCES} from "./data/non_steam_launcher";
1415
import {resourceTitleComparator} from "./utils";
@@ -27,6 +28,7 @@ const ALL_RESOURCES = {
2728
"Valve": VALVE_RESOURCES,
2829
"Launchers": NON_STEAM_LAUNCHER_RESOURCES,
2930
"Game Performance/Reviews": GAME_REVIEW_RESOURCES,
31+
"Scripts": SCRIPT_RESOURCES,
3032
"Other": OTHER_RESOURCES,
3133
}
3234

src/data/script.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
export const SCRIPT_RESOURCES = [
2+
{
3+
"title": "Steam-Deck-RA-Core-Updater",
4+
"link": "https://github.com/lajoshanostra/Steam-Deck-RA-Core-Updater",
5+
"type": "repo",
6+
"description": "Script designed to assist in downloading all RetroArch cores and info files from Libretro instead of relying on Steam DLC.",
7+
"badges": [
8+
{
9+
"alt": "GitHub Watchers",
10+
"src": "https://img.shields.io/github/watchers/lajoshanostra/Steam-Deck-RA-Core-Updater?style=social"
11+
},
12+
{
13+
"alt": "GitHub Forks",
14+
"src": "https://img.shields.io/github/forks/lajoshanostra/Steam-Deck-RA-Core-Updater?style=social"
15+
},
16+
{
17+
"alt": "GitHub Stars",
18+
"src": "https://img.shields.io/github/stars/lajoshanostra/Steam-Deck-RA-Core-Updater?style=social"
19+
},
20+
],
21+
},
22+
]

0 commit comments

Comments
 (0)