diff --git a/Changes.txt b/Changes.txt index cfcf6cefc..06731a818 100644 --- a/Changes.txt +++ b/Changes.txt @@ -12,10 +12,12 @@ Release History =========================================================================== -6.5 to 6.5.1 (January X, 2021) +6.5 to 6.5.1 (January 24, 2021) * Fixed paddle button bug for jittering controllers. + * Improve switching between joysticks and paddles on Retron77 port. + * Improve memory usage on Retron77 port. -Have fun! diff --git a/src/common/Version.hxx b/src/common/Version.hxx index 9e55edee0..b36265e6f 100644 --- a/src/common/Version.hxx +++ b/src/common/Version.hxx @@ -19,6 +19,6 @@ #define VERSION_HXX #define STELLA_VERSION "6.5.1" -#define STELLA_BUILD "6673" +#define STELLA_BUILD "6699" #endif diff --git a/src/gui/WhatsNewDialog.cxx b/src/gui/WhatsNewDialog.cxx index a40be1242..c67dc0dc5 100644 --- a/src/gui/WhatsNewDialog.cxx +++ b/src/gui/WhatsNewDialog.cxx @@ -50,6 +50,7 @@ WhatsNewDialog::WhatsNewDialog(OSystem& osystem, DialogContainer& parent, add(ypos, "fixed navigation bug in Video & Audio settings dialog"); add(ypos, "fixed autofire bug for trackball controllers"); add(ypos, "fixed paddle button bug for jittering controllers"); + add(ypos, "improved switching between joysticks and paddles"); add(ypos, "improved memory usage in UI mode"); #else const string& version = instance().settings().getString("stella.version");