From cc9af4a5c54d078074cf1a77754f2ae3afd34053 Mon Sep 17 00:00:00 2001 From: Lior Halphon Date: Fri, 1 Jul 2016 18:39:40 +0300 Subject: [PATCH] Updated change log and incremented version to 0.5 --- CHANGES.md | 29 +++++++++++++++++++++++++++++ Makefile | 2 +- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index c0d944de..f4ae4e22 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,34 @@ # Change Log +## Version 0.5 +This version is not compatible with save states of older versions. + +### New/Improved Features + * Updated save state format, should now be much more future compatible + * Save state compatibility between 32 and 64 bit versions of SameBoy + * Cocoa version is now using OpenGL 3 + * HQ2x filter added (Cocoa only) + * A new, redesigned OmniScale filter; old filter is renamed to OmniScale Legacy (Cocoa only) + * Cocoa port now "remembers" the last window size + * Added boolean operators to the debugger + * Added conditional breakpoints + +### Accuracy Improvements/Fixes + * Better emulation of certain behaviors of the SCX register + * Fixed emulation of the STOP instruction + * Minor fix to the accuracy of the JOYPAD register + * Minor improvements to HDMA accuracy + + +### Bug Fixes + * Improved concurrency in the Cocoa port + * Fixed a bug where an emulator window in the Cocoa port will freeze until resized + * Fixed incorrect disassembler outputs + * Fixed a potential crash when deleting a breakpoint + +### Misc Internal Changes + * Large code refactoring, getting ready to stabilize API + ## Version 0.4 This version is not compatible with save states of older versions. diff --git a/Makefile b/Makefile index 208706cd..945df7fa 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ else default: sdl endif -VERSION := 0.4 +VERSION := 0.5 BIN := build/bin OBJ := build/obj