updated changes/WhatsNewDialog

This commit is contained in:
thrust26 2020-10-31 22:53:19 +01:00
parent ec52ea8049
commit 18232a58b1
2 changed files with 8 additions and 3 deletions

View File

@ -18,14 +18,18 @@
* Added color parameters to 'Custom' palette * Added color parameters to 'Custom' palette
* Some improvements to AVox-USB adaptor functionality: * Some improvements to AtariVox-USB adaptor functionality:
- Made serial port used for an AtariVox-USB adaptor editable. - Made serial port used for an AtariVox-USB adaptor editable.
- Autodetection of serial ports no longer messes up devices plugged - Autodetection of serial ports no longer messes up devices plugged
into other serial ports. into other serial ports.
* Added CPU load stats to debugger
* Fixed bug with aspect correction and fullscreen mode; snapshots from * Fixed bug with aspect correction and fullscreen mode; snapshots from
such a mode are now pixel-exact. such a mode are now pixel-exact.
* Fixed Atari mouse autodetection.
* Fixed crash with missing or incorrectly sized SaveKey data file, and * Fixed crash with missing or incorrectly sized SaveKey data file, and
with certain functions not working (erase pages, erase entire EEPROM). with certain functions not working (erase pages, erase entire EEPROM).

View File

@ -46,10 +46,11 @@ WhatsNewDialog::WhatsNewDialog(OSystem& osystem, DialogContainer& parent, const
add(ypos, "fixed crash with SaveKey ROMs (EEPROM file issues)"); add(ypos, "fixed crash with SaveKey ROMs (EEPROM file issues)");
add(ypos, "fixed bug with launcher not remembering last selected ROM"); add(ypos, "fixed bug with launcher not remembering last selected ROM");
#else #else
add(ypos, "added basic text cut/copy/paste to UI"); add(ypos, "added basic text cut/copy/paste from/to UI");
add(ypos, "added color parameters to 'Custom' palette"); add(ypos, "added color parameters to 'Custom' palette");
add(ypos, "improved AVox-USB adaptor autodetection"); add(ypos, "improved AtariVox-USB adaptor autodetection");
add(ypos, "fixed fullscreen mode, aspect correction and pixel-exact snapshots"); add(ypos, "fixed fullscreen mode, aspect correction and pixel-exact snapshots");
add(ypos, "fixed Atari mouse autodetection");
add(ypos, "fixed crash with SaveKey ROMs (EEPROM file issues)"); add(ypos, "fixed crash with SaveKey ROMs (EEPROM file issues)");
add(ypos, "fixed bug with launcher not remembering last selected ROM"); add(ypos, "fixed bug with launcher not remembering last selected ROM");
add(ypos, ELLIPSIS + " (for a complete list see 'docs/Changes.txt')"); add(ypos, ELLIPSIS + " (for a complete list see 'docs/Changes.txt')");