Skip to content

Commit efcf397

Browse files
committed
Various changes
- Fixed OPK desktop settings - Cleaned up menu keybind related code to better support the bittboy/pocketgo versions - Changed version label to r572u4 - Updated manual and readme
1 parent 034ecc6 commit efcf397

File tree

13 files changed

+54
-53
lines changed

13 files changed

+54
-53
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gameboy emulator for handheld devices, using a modified Gambatte core (based on r572).
22

33
Working on the following systems:
4-
- GCW Zero / RG-350 / GKD350H
4+
- GCW Zero / RG-350 / PocketGo2 / PlayGo / MiyooMax / GKD350H
55
- RS-97 / RS-97 Plus / RS-97 Pro / RetroGame Plus / RetroGame Pro / LDK Vertical / LDK Landscape/ RG-300 and other RetroFW devices
66
- New Bittboy / PocketGo / MiYoo

build_multi_opk.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ echo "cd gambatte_sdl && scons"
2626
(cd gambatte_sdl && scons -Q target=opendingux)
2727
mv gambatte_sdl/gambatte_sdl gambatte_sdl/gambatte.opendingux
2828

29-
rm -f gambatte-multi-r572u3-$BDAT.opk
29+
rm -f gambatte-multi-r572u4-$BDAT.opk
3030

31-
mksquashfs ./dist/gcw0/default.gcw0.desktop ./dist/retrofw/default.retrofw.desktop ./dist/retrofw/gb.retrofw.desktop ./dist/retrofw/gbc.retrofw.desktop ./gambatte_sdl/gambatte.opendingux ./gambatte_sdl/gambatte.retrofw ./dist/gcw0/gambatte.png ./dist/gcw0/manual.txt ./dist/retrofw/gambatte.man.txt gambatte-multi-r572u3-$BDAT.opk -all-root -no-xattrs -noappend -no-exports
31+
mksquashfs ./dist/gcw0/default.gcw0.desktop ./dist/retrofw/default.retrofw.desktop ./dist/retrofw/gb.retrofw.desktop ./dist/retrofw/gbc.retrofw.desktop ./gambatte_sdl/gambatte.opendingux ./gambatte_sdl/gambatte.retrofw ./dist/gcw0/gambatte.png ./dist/gcw0/manual.txt ./dist/retrofw/gambatte.man.txt gambatte-multi-r572u4-$BDAT.opk -all-root -no-xattrs -noappend -no-exports
3232

3333
echo "cd gambatte_sdl && scons -c"
3434
(cd gambatte_sdl && scons -c)

build_opendingux.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ echo "cd gambatte_sdl && scons"
99
(cd gambatte_sdl && scons -Q target=opendingux)
1010
mv gambatte_sdl/gambatte_sdl gambatte_sdl/gambatte.opendingux
1111

12-
rm -f gambatte-opendingux-r572u3-$BDAT.opk
12+
rm -f gambatte-opendingux-r572u4-$BDAT.opk
1313

14-
mksquashfs ./dist/gcw0/default.gcw0.desktop ./gambatte_sdl/gambatte.opendingux ./dist/gcw0/gambatte.png ./dist/gcw0/manual.txt gambatte-opendingux-r572u3-$BDAT.opk -all-root -no-xattrs -noappend -no-exports
14+
mksquashfs ./dist/gcw0/default.gcw0.desktop ./gambatte_sdl/gambatte.opendingux ./dist/gcw0/gambatte.png ./dist/gcw0/manual.txt gambatte-opendingux-r572u4-$BDAT.opk -all-root -no-xattrs -noappend -no-exports
1515

1616
echo "cd gambatte_sdl && scons -c"
1717
(cd gambatte_sdl && scons -c)

build_retrofw.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ sed "s/^Version:.*/Version: `date +%Y%m%d`/" dist/retrofw/control > /tmp/.gambat
1717
tar --owner=0 --group=0 -czvf /tmp/.gambatte-ipk/control.tar.gz -C /tmp/.gambatte-ipk/ control
1818
tar --owner=0 --group=0 -czvf /tmp/.gambatte-ipk/data.tar.gz -C /tmp/.gambatte-ipk/root/ .
1919
echo 2.0 > /tmp/.gambatte-ipk/debian-binary
20-
ar r gambatte-retrofw-r572u3-$BDAT.ipk /tmp/.gambatte-ipk/control.tar.gz /tmp/.gambatte-ipk/data.tar.gz /tmp/.gambatte-ipk/debian-binary
20+
ar r gambatte-retrofw-r572u4-$BDAT.ipk /tmp/.gambatte-ipk/control.tar.gz /tmp/.gambatte-ipk/data.tar.gz /tmp/.gambatte-ipk/debian-binary
2121

2222
echo "cd gambatte_sdl && scons -c"
2323
(cd gambatte_sdl && scons -c)

dist/gcw0/manual.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ File Paths
139139
------------------------------------------------
140140

141141
- Emulator Settings are saved in:
142-
$HOME/.gambatte/config.cfg
142+
$HOME/.gambatte/settings/
143143

144144
- Savestates and game saves are stored in:
145145
$HOME/.gambatte/saves/
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
[Desktop Entry]
22
Name=Gambatte
33
Comment=GB/GBC emulator
4-
Exec=gambatte.retrofw %f
4+
Exec=gambatte.retrofw
55
Terminal=false
66
Type=Application
77
StartupNotify=true
88
Icon=gambatte
99
Categories=emulators;
1010
X-OD-Manual=gambatte.man.txt
11+
X-OD-Selector=/home/retrofw/roms/gb
1112
X-OD-Filter=.zip,.gb,.gbc

dist/retrofw/gambatte.man.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ File Paths
139139
------------------------------------------------
140140

141141
- Emulator Settings are saved in:
142-
$HOME/.gambatte/config.cfg
142+
$HOME/.gambatte/settings/
143143

144144
- Savestates and game saves are stored in:
145145
$HOME/.gambatte/saves/

dist/retrofw/gb.retrofw.desktop

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
[Desktop Entry]
22
Name=GB
33
Comment=Gambatte emulator
4-
Exec=gambatte.retrofw %f
4+
Exec=gambatte.retrofw
55
Terminal=false
66
Type=Application
77
StartupNotify=true
88
Icon=gambatte
99
Categories=emulators.systems;
1010
X-OD-Manual=gambatte.man.txt
11+
X-OD-Selector=/home/retrofw/roms/gb
1112
X-OD-Filter=.zip,.gb

dist/retrofw/gbc.retrofw.desktop

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
[Desktop Entry]
22
Name=GBC
33
Comment=Gambatte emulator
4-
Exec=gambatte.retrofw %f
4+
Exec=gambatte.retrofw
55
Terminal=false
66
Type=Application
77
StartupNotify=true
88
Icon=gambatte
99
Categories=emulators.systems;
1010
X-OD-Manual=gambatte.man.txt
11+
X-OD-Selector=/home/retrofw/roms/gbc
1112
X-OD-Filter=.zip,.gbc

gambatte_sdl/SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ conf = env.Configure()
7373
conf.CheckLib('z')
7474
conf.Finish()
7575

76-
version_str_def = [ 'GAMBATTE_SDL_VERSION_STR', r'\"r572u3\"' ]
76+
version_str_def = [ 'GAMBATTE_SDL_VERSION_STR', r'\"r572u4\"' ]
7777

7878
env.Program('gambatte_sdl',
7979
[env.Object('src/gambatte_sdl.cpp',

0 commit comments

Comments
 (0)