Skip to content

Commit 3bb3900

Browse files
authored
Merge pull request #17 from cobaltgit/dipole-dev
Dipole
2 parents c756975 + 2a76ac8 commit 3bb3900

File tree

194 files changed

+97176
-36
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

194 files changed

+97176
-36
lines changed

Apps/BootLogo/launch.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,18 @@ BOOTLOGO="bootlogo.bmp"
99
LOG_FILE="/mnt/SDCARD/System/log/bootlogo.log"
1010

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

17+
log_message "BootLogo: Updating boot logo..." "$LOG_FILE"
1718
display -t "Updating bootlogo..."
1819
dd if=$BOOTLOGO of=/dev/by-name/bootlogo bs=65536 >> "$LOG_FILE" 2>&1
1920
if [ $? -eq 0 ]; then
21+
log_message "BootLogo: update success" "$LOG_FILE"
2022
display -d 2000 -t "Boot logo update success."
2123
else
24+
log_message "BootLogo: update failed" "$LOG_FILE"
2225
display -d 2000 -t "Boot logo update failed. Check the log for more details."
2326
fi

Apps/BoxartScraper/config.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"label": "Boxart Scraper",
3+
"icon": "icon.png",
4+
"launch": "launch.sh",
5+
"description": "Scrape boxarts for your games"
6+
}

Apps/BoxartScraper/db/AMIGA_games.txt

+2,958
Large diffs are not rendered by default.

Apps/BoxartScraper/db/ARCADE_games.txt

+31,163
Large diffs are not rendered by default.

Apps/BoxartScraper/db/ARDUBOY_games.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)