Updated CHANGELOG

This commit is contained in:
Alex Duchesne 2025-11-07 18:24:14 -05:00
parent 07ccb99196
commit da4624834e
2 changed files with 12 additions and 4 deletions

View File

@ -1,3 +1,11 @@
# Retro-Go 1.46 (2025-11-07)
- Launcher: Added virtual keyboard to manage wifi networks
- Launcher: Diacritics are now correctly shown in filenames
- All: Overclock works better (original esp32 only)
- All: German translations has been added
- All: On-screen low battery indicator
# Retro-Go 1.45 (2025-07-27)
- SMS/GG: Fixe broken inputs in many games since 1.40 (#198)
- SNES: Increased max supported ROM size on some devices

View File

@ -14,15 +14,15 @@ import zlib
DEFAULT_TARGET = os.getenv("RG_TOOL_TARGET", "odroid-go")
DEFAULT_BAUD = os.getenv("RG_TOOL_BAUD", "1152000")
DEFAULT_PORT = os.getenv("RG_TOOL_PORT", "COM3")
DEFAULT_APPS = os.getenv("RG_TOOL_APPS", "launcher retro-core prboom-go snes9x gwenesis fmsx")
DEFAULT_APPS = os.getenv("RG_TOOL_APPS", "launcher retro-core prboom-go gwenesis fmsx")
PROJECT_NAME = os.getenv("PROJECT_NAME", "Retro-Go")
PROJECT_ICON = os.getenv("PROJECT_ICON", "assets/icon.raw")
PROJECT_APPS = {
# Project name Type, SubType, Size
'launcher': [0, 16, 983040],
'retro-core': [0, 16, 983040],
'launcher': [0, 16, 1048576],
'retro-core': [0, 16, 1048576],
'prboom-go': [0, 16, 786432],
'gwenesis': [0, 16, 983040],
'gwenesis': [0, 16, 1048576],
'fmsx': [0, 16, 589824],
}
# PROJECT_APPS = {}