From 678cf0b8b1d3b54a47a2574b03687c6b21f7fb2d Mon Sep 17 00:00:00 2001 From: John Cyrill Corsanes <4709030+jcchikikomori@users.noreply.github.com> Date: Sat, 20 Sep 2025 21:30:11 +0800 Subject: [PATCH 1/5] [refactor] removed Yuzu due to unavailability --- src/data/emulation.js | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/src/data/emulation.js b/src/data/emulation.js index 484e76b..3ebaa0e 100644 --- a/src/data/emulation.js +++ b/src/data/emulation.js @@ -111,24 +111,4 @@ export const EMULATION_RESOURCES = [ }, ] }, - { - "title": "Yuzu", - "link": "https://github.com/yuzu-emu/yuzu", - "type": "repo", - "description": "Nintendo Switch Emulator", - "badges": [ - { - "alt": "GitHub Watchers", - "src": "https://img.shields.io/github/watchers/yuzu-emu/yuzu?style=social" - }, - { - "alt": "GitHub Forks", - "src": "https://img.shields.io/github/forks/yuzu-emu/yuzu?style=social" - }, - { - "alt": "GitHub Stars", - "src": "https://img.shields.io/github/stars/yuzu-emu/yuzu?style=social" - }, - ] - }, ] From 4f4b53802169f3bdd1f3ce8fc696ebc009a7b9d8 Mon Sep 17 00:00:00 2001 From: John Cyrill Corsanes <4709030+jcchikikomori@users.noreply.github.com> Date: Sat, 20 Sep 2025 21:35:14 +0800 Subject: [PATCH 2/5] [refactor] initial set of emulators i've used --- src/data/emulation.js | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/src/data/emulation.js b/src/data/emulation.js index 3ebaa0e..89aad2e 100644 --- a/src/data/emulation.js +++ b/src/data/emulation.js @@ -111,4 +111,31 @@ export const EMULATION_RESOURCES = [ }, ] }, + { + "title": "Lindbergh Loader", + "link": "https://github.com/lindbergh-loader/lindbergh-loader", + "type": "repo", + "description": "Lindbergh Loader is a tool to launch Sega Lindbergh arcade games on PC hardware.", + "badges": [ + { + "alt": "GitHub Watchers", + "src": "https://img.shields.io/github/watchers/lindbergh-loader/lindbergh-loader?style=social" + }, + { + "alt": "GitHub Forks", + "src": "https://img.shields.io/github/forks/lindbergh-loader/lindbergh-loader?style=social" + }, + { + "alt": "GitHub Stars", + "src": "https://img.shields.io/github/stars/lindbergh-loader/lindbergh-loader?style=social" + }, + ] + }, + { + "title": "Eden", + "link": "https://git.eden-emu.dev/eden-emu/eden", + "type": "repo", + "description": "Eden is an open-source Nintendo Switch emulator, forked from the Yuzu emulator — started by former Citron developer Camille LaVey and the Eden team. It is written in C++ with portability in mind, and we actively maintain builds for Windows, Linux and Android.", + "badges": [] + } ] From 2bb1d32745f10d827cbeb0591d1cb1d668f1b98e Mon Sep 17 00:00:00 2001 From: John Cyrill Corsanes <4709030+jcchikikomori@users.noreply.github.com> Date: Sat, 20 Sep 2025 22:51:28 +0800 Subject: [PATCH 3/5] [refactor] Added flatpak and running Android (guide) --- src/data/emulation.js | 20 ++++++++++++++++++++ src/data/script.js | 20 ++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/src/data/emulation.js b/src/data/emulation.js index 89aad2e..5a305ba 100644 --- a/src/data/emulation.js +++ b/src/data/emulation.js @@ -137,5 +137,25 @@ export const EMULATION_RESOURCES = [ "type": "repo", "description": "Eden is an open-source Nintendo Switch emulator, forked from the Yuzu emulator — started by former Citron developer Camille LaVey and the Eden team. It is written in C++ with portability in mind, and we actively maintain builds for Windows, Linux and Android.", "badges": [] + }, + { + "title": "Flycast", + "link": "https://github.com/flyinghead/flycast", + "type": "repo", + "description": "Flycast is a multi-platform Sega Dreamcast, Naomi, and Atomiswave emulator based on the popular Reicast project. It supports a wide variety of platforms including Windows, Linux, macOS, Android, and iOS.", + "badges": [ + { + "alt": "GitHub Watchers", + "src": "https://img.shields.io/github/watchers/flyinghead/flycast?style=social" + }, + { + "alt": "GitHub Forks", + "src": "https://img.shields.io/github/forks/flyinghead/flycast?style=social" + }, + { + "alt": "GitHub Stars", + "src": "https://img.shields.io/github/stars/flyinghead/flycast?style=social" + }, + ] } ] diff --git a/src/data/script.js b/src/data/script.js index 553d31a..3813cf2 100644 --- a/src/data/script.js +++ b/src/data/script.js @@ -28,4 +28,24 @@ export const SCRIPT_RESOURCES = [ // Shields.io doesn't seem to support gists yet. ], }, + { + "title": "Installing Android Apps on Steam Deck using Waydroid", + "link": "https://github.com/ryanrudolfoba/SteamOS-Waydroid-Installer", + "type": "repo", + "description": "A script to install Waydroid on Steam Deck running SteamOS 3.0.", + "badges": [ + { + "alt": "GitHub Watchers", + "src": "https://img.shields.io/github/watchers/ryanrudolfoba/SteamOS-Waydroid-Installer?style=social" + }, + { + "alt": "GitHub Forks", + "src": "https://img.shields.io/github/forks/ryanrudolfoba/SteamOS-Waydroid-Installer?style=social" + }, + { + "alt": "GitHub Stars", + "src": "https://img.shields.io/github/stars/ryanrudolfoba/SteamOS-Waydroid-Installer?style=social" + }, + ], + } ] \ No newline at end of file From dc833e71d6c1723e88ea868299f7b0d1d551f745 Mon Sep 17 00:00:00 2001 From: John Cyrill Corsanes <4709030+jcchikikomori@users.noreply.github.com> Date: Sat, 20 Sep 2025 22:54:31 +0800 Subject: [PATCH 4/5] [refactor] rename waydroid label --- src/data/script.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/script.js b/src/data/script.js index 3813cf2..99b5166 100644 --- a/src/data/script.js +++ b/src/data/script.js @@ -29,10 +29,10 @@ export const SCRIPT_RESOURCES = [ ], }, { - "title": "Installing Android Apps on Steam Deck using Waydroid", + "title": "SteamOS Android Waydroid Installer", "link": "https://github.com/ryanrudolfoba/SteamOS-Waydroid-Installer", "type": "repo", - "description": "A script to install Waydroid on Steam Deck running SteamOS 3.0.", + "description": "A collection of tools that is packaged into an easy to use script that is streamlined and tested to work with the Steam Deck running on SteamOS.", "badges": [ { "alt": "GitHub Watchers", From 32e9323380692d08625a09c01acf3001756f2528 Mon Sep 17 00:00:00 2001 From: John Cyrill Corsanes <4709030+jcchikikomori@users.noreply.github.com> Date: Sat, 20 Sep 2025 23:00:13 +0800 Subject: [PATCH 5/5] [refactor] added r/roms megathread --- src/data/rom.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/data/rom.js b/src/data/rom.js index fcef372..e13ec60 100644 --- a/src/data/rom.js +++ b/src/data/rom.js @@ -18,5 +18,13 @@ export const ROM_RESOURCES = [ "src": "https://img.shields.io/github/stars/SteamGridDB/steam-rom-manager?style=social" }, ] + }, + { + "title": "r/ROMs Megathread", + "link": "https://r-roms.github.io/", + "type": "link", + "description": "A community-driven database of ROMs, ISOs, and disk images for retro gaming enthusiasts. Modern games (Switch, PS4, Xbox One, etc.) are not available.", + "badges": [ + ] } ] \ No newline at end of file