diff --git a/docs/Debugger_Changelog.txt b/docs/Debugger_Changelog.txt index 163e1164..a66e5195 100644 --- a/docs/Debugger_Changelog.txt +++ b/docs/Debugger_Changelog.txt @@ -1,4 +1,7 @@ /* +2.9.1.19 Added: QoL to DISK INFO. + Colorized numbers and status to improve readability. + Also shows the .WOZ current shift register. 2.9.1.18 Fixed: NTSC LOAD was failing to import BMPs exported from GIMP. To export a 64x256 bitmap from GIMP: 1. File, Export As... diff --git a/source/Debugger/Debug.cpp b/source/Debugger/Debug.cpp index 835581e9..121e145f 100644 --- a/source/Debugger/Debug.cpp +++ b/source/Debugger/Debug.cpp @@ -53,7 +53,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #define MAKE_VERSION(a,b,c,d) ((a<<24) | (b<<16) | (c<<8) | (d)) // See /docs/Debugger_Changelog.txt for full details - const int DEBUGGER_VERSION = MAKE_VERSION(2,9,1,18); + const int DEBUGGER_VERSION = MAKE_VERSION(2,9,1,19); // Public _________________________________________________________________________________________