diff --git a/Changes.txt b/Changes.txt index 0a08e446b..7f14c7906 100644 --- a/Changes.txt +++ b/Changes.txt @@ -18,14 +18,18 @@ * 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. - Autodetection of serial ports no longer messes up devices plugged into other serial ports. + * Added CPU load stats to debugger + * Fixed bug with aspect correction and fullscreen mode; snapshots from such a mode are now pixel-exact. + * Fixed Atari mouse autodetection. + * Fixed crash with missing or incorrectly sized SaveKey data file, and with certain functions not working (erase pages, erase entire EEPROM). diff --git a/src/gui/WhatsNewDialog.cxx b/src/gui/WhatsNewDialog.cxx index e40d8e622..baaf88d5a 100644 --- a/src/gui/WhatsNewDialog.cxx +++ b/src/gui/WhatsNewDialog.cxx @@ -46,10 +46,11 @@ WhatsNewDialog::WhatsNewDialog(OSystem& osystem, DialogContainer& parent, const add(ypos, "fixed crash with SaveKey ROMs (EEPROM file issues)"); add(ypos, "fixed bug with launcher not remembering last selected ROM"); #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, "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 Atari mouse autodetection"); add(ypos, "fixed crash with SaveKey ROMs (EEPROM file issues)"); add(ypos, "fixed bug with launcher not remembering last selected ROM"); add(ypos, ELLIPSIS + " (for a complete list see 'docs/Changes.txt')");