Skip to content

Commit da46248

Browse files
committed
Updated CHANGELOG
1 parent 07ccb99 commit da46248

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Retro-Go 1.46 (2025-11-07)
2+
- Launcher: Added virtual keyboard to manage wifi networks
3+
- Launcher: Diacritics are now correctly shown in filenames
4+
- All: Overclock works better (original esp32 only)
5+
- All: German translations has been added
6+
- All: On-screen low battery indicator
7+
8+
19
# Retro-Go 1.45 (2025-07-27)
210
- SMS/GG: Fixe broken inputs in many games since 1.40 (#198)
311
- SNES: Increased max supported ROM size on some devices

rg_tool.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
DEFAULT_TARGET = os.getenv("RG_TOOL_TARGET", "odroid-go")
1515
DEFAULT_BAUD = os.getenv("RG_TOOL_BAUD", "1152000")
1616
DEFAULT_PORT = os.getenv("RG_TOOL_PORT", "COM3")
17-
DEFAULT_APPS = os.getenv("RG_TOOL_APPS", "launcher retro-core prboom-go snes9x gwenesis fmsx")
17+
DEFAULT_APPS = os.getenv("RG_TOOL_APPS", "launcher retro-core prboom-go gwenesis fmsx")
1818
PROJECT_NAME = os.getenv("PROJECT_NAME", "Retro-Go")
1919
PROJECT_ICON = os.getenv("PROJECT_ICON", "assets/icon.raw")
2020
PROJECT_APPS = {
2121
# Project name Type, SubType, Size
22-
'launcher': [0, 16, 983040],
23-
'retro-core': [0, 16, 983040],
22+
'launcher': [0, 16, 1048576],
23+
'retro-core': [0, 16, 1048576],
2424
'prboom-go': [0, 16, 786432],
25-
'gwenesis': [0, 16, 983040],
25+
'gwenesis': [0, 16, 1048576],
2626
'fmsx': [0, 16, 589824],
2727
}
2828
# PROJECT_APPS = {}

0 commit comments

Comments
 (0)