Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
f369262
Reskin Dingux Commander
cobaltgit Apr 13, 2025
046f938
Compile display and MP3 binaries with -Os
cobaltgit Apr 13, 2025
64997bd
No longer depending on GPL icons for Dingux
cobaltgit Apr 13, 2025
55cdb02
Fix Virtual Boy performance regression
cobaltgit Apr 14, 2025
4bc1229
Set CPU mode to smart on boot. Overrides preload.sh's CPU governor se…
cobaltgit Apr 15, 2025
fdbf609
Improve logging
cobaltgit Apr 15, 2025
6d32329
Add boxart scraper!
cobaltgit Apr 16, 2025
c2b1683
Bump version
cobaltgit Apr 16, 2025
76924a8
Figure out the arcade quotemark problem
cobaltgit Apr 16, 2025
b6eb297
Fix NDS ra alias
cobaltgit Apr 16, 2025
9f8009c
Only copy system json on fresh installs (prep for OTA)
cobaltgit Apr 17, 2025
a568a11
update_setting: create ini section and key if they don't exist
cobaltgit Apr 17, 2025
0ae44b5
Picodrive: use 6 button pad
cobaltgit Apr 17, 2025
0f61787
Remove non-existent function calls
cobaltgit Apr 17, 2025
4a5b418
Restart MainUI on theme change
cobaltgit Apr 18, 2025
73c9198
Check ping before changing network service app description to "Not co…
cobaltgit Apr 18, 2025
17b7019
Invert while expression, curly braces are not needed
cobaltgit Apr 18, 2025
9650fea
Quote theme path var in loop
cobaltgit Apr 18, 2025
24ae2d3
Fix uneven indent
cobaltgit Apr 18, 2025
3e526f3
oxipng icons
cobaltgit Apr 18, 2025
51e714a
oxipng overlays and more icons
cobaltgit Apr 18, 2025
712ffa7
Remove whatever that was
cobaltgit Apr 18, 2025
e163499
Reboot on theme change
cobaltgit Apr 19, 2025
dbce1b4
Support for core switching, alternative cores
cobaltgit Apr 19, 2025
bdf099e
Copy GBA config to mGBA
cobaltgit Apr 19, 2025
57f93e7
Whoops, source opt
cobaltgit Apr 19, 2025
02f4afd
Correct beef
cobaltgit Apr 19, 2025
0789e84
Remove sega cd chd check
cobaltgit Apr 19, 2025
9280d8e
Add better performing mgba and snes9x2005+ cores
cobaltgit Apr 19, 2025
425f8e9
Update retroarch cores
cobaltgit Apr 19, 2025
d42eb6f
Update default theme
cobaltgit Apr 19, 2025
18e0833
Add updater app
cobaltgit Apr 19, 2025
d4c2c3d
Back up post first install flag
cobaltgit Apr 19, 2025
ddb4f19
Change emuclean icon
cobaltgit Apr 19, 2025
2b12742
Colour scraper icon
cobaltgit Apr 19, 2025
f1c6b48
Rename Quark Updater
cobaltgit Apr 19, 2025
5d7a253
Move wifi check to after changing descriptions if not connected
cobaltgit Apr 20, 2025
3702bab
Manually parse system json for wifi
cobaltgit Apr 20, 2025
6c68296
Wait for wifi rather than exiting
cobaltgit Apr 20, 2025
0d6f1f1
Fix unclosed if
cobaltgit Apr 20, 2025
2f252f9
One last thing...
cobaltgit Apr 20, 2025
2a76ac8
Final cleanup now...
cobaltgit Apr 20, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Apps/BootLogo/launch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,18 @@ BOOTLOGO="bootlogo.bmp"
LOG_FILE="/mnt/SDCARD/System/log/bootlogo.log"

if [ $(wc -c <$BOOTLOGO) -gt $BOOTLOGO_MAX_BYTES ]; then
echo "BootLogo: must be 512KiB or smaller" >> "$LOG_FILE"
log_message "BootLogo: must be 512KiB or smaller" "$LOG_FILE"
display -d 2000 -t "Boot logo must be 512KiB or smaller. Exiting..."
exit 1
fi

log_message "BootLogo: Updating boot logo..." "$LOG_FILE"
display -t "Updating bootlogo..."
dd if=$BOOTLOGO of=/dev/by-name/bootlogo bs=65536 >> "$LOG_FILE" 2>&1
if [ $? -eq 0 ]; then
log_message "BootLogo: update success" "$LOG_FILE"
display -d 2000 -t "Boot logo update success."
else
log_message "BootLogo: update failed" "$LOG_FILE"
display -d 2000 -t "Boot logo update failed. Check the log for more details."
fi
6 changes: 6 additions & 0 deletions Apps/BoxartScraper/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"label": "Boxart Scraper",
"icon": "icon.png",
"launch": "launch.sh",
"description": "Scrape boxarts for your games"
}
2,958 changes: 2,958 additions & 0 deletions Apps/BoxartScraper/db/AMIGA_games.txt

Large diffs are not rendered by default.

31,163 changes: 31,163 additions & 0 deletions Apps/BoxartScraper/db/ARCADE_games.txt

Large diffs are not rendered by default.

Empty file.
Loading