Skip to content

Commit a789ecc

Browse files
authored
Merge pull request #21 from studyhog/origin/react
#7 - Non-steam launcher section, RPCS3 compatibility list, and battle…
2 parents a7a47c2 + 6c5af1e commit a789ecc

File tree

9 files changed

+41
-19
lines changed

9 files changed

+41
-19
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.c4bb3569.js",
4+
"main.js": "/static/js/main.dfb071fa.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.c4bb3569.js.map": "/static/js/main.c4bb3569.js.map",
8+
"main.dfb071fa.js.map": "/static/js/main.dfb071fa.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.c4bb3569.js"
13+
"static/js/main.dfb071fa.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.c4bb3569.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.dfb071fa.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.c4bb3569.js.map

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

docs/static/js/main.c4bb3569.js renamed to docs/static/js/main.dfb071fa.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.dfb071fa.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.

src/App.js

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
import "./App.css";
2-
import { ThemeProvider, createTheme } from "@mui/material/styles";
2+
import {createTheme, ThemeProvider} from "@mui/material/styles";
33
import Typography from "@mui/material/Typography";
4-
import { Page } from "./components/Page";
5-
import { Header } from "./components/Header";
6-
import { EMULATION_RESOURCES } from "./data/emulation";
7-
import { GUIDE_RESOURCES } from "./data/guide";
8-
import { PLUGIN_RESOURCES } from "./data/plugin";
9-
import { ROM_RESOURCES } from "./data/rom";
10-
import { VALVE_RESOURCES } from "./data/valve";
11-
import { OTHER_RESOURCES } from "./data/other";
12-
import { GAME_REVIEW_RESOURCES } from "./data/game_review";
13-
import { resourceTitleComparator } from "./utils";
4+
import {Page} from "./components/Page";
5+
import {Header} from "./components/Header";
6+
import {EMULATION_RESOURCES} from "./data/emulation";
7+
import {GUIDE_RESOURCES} from "./data/guide";
8+
import {PLUGIN_RESOURCES} from "./data/plugin";
9+
import {ROM_RESOURCES} from "./data/rom";
10+
import {VALVE_RESOURCES} from "./data/valve";
11+
import {OTHER_RESOURCES} from "./data/other";
12+
import {GAME_REVIEW_RESOURCES} from "./data/game_review";
13+
import {NON_STEAM_LAUNCHER_RESOURCES} from "./data/non_steam_launcher";
14+
import {resourceTitleComparator} from "./utils";
1415

1516
const darkTheme = createTheme({
1617
palette: {
@@ -24,6 +25,7 @@ const ALL_RESOURCES = {
2425
"Plugins": PLUGIN_RESOURCES,
2526
"ROM": ROM_RESOURCES,
2627
"Valve": VALVE_RESOURCES,
28+
"Launchers": NON_STEAM_LAUNCHER_RESOURCES,
2729
"Game Performance/Reviews": GAME_REVIEW_RESOURCES,
2830
"Other": OTHER_RESOURCES,
2931
}

src/data/game_review.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,15 @@ export const GAME_REVIEW_RESOURCES = [
3333
"description": "Enter your Steam ID to check the Steam Deck compatibility of your library.",
3434
"badges": [
3535

36+
],
37+
},
38+
{
39+
"title": "RPCS3 on Deck Compatibility list (Google sheet)",
40+
"link": "https://docs.google.com/spreadsheets/d/1EzTcNoKiBaMS4orZrGEOKwMpFOZEFKVSOZjLRJqzEkA/",
41+
"type": "link",
42+
"description": "Crowdsourced Google sheet of RPCS3 games compatible with the Steam Deck",
43+
"badges": [
44+
3645
],
3746
}
3847
]

src/data/non_steam_launcher.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export const NON_STEAM_LAUNCHER_RESOURCES = [
2+
{
3+
"title": "Battle.net notes (reddit)",
4+
"link": "https://www.reddit.com/r/SteamDeck/comments/vhdzkm/psa_dont_install_battlenet_through_steam_use/",
5+
"type": "link",
6+
"description": "TLDR: Install battle.net through Lutris, not Steam.",
7+
"badges": [
8+
9+
]
10+
},
11+
]

0 commit comments

Comments
 (0)