From bbfddd40a1af2bd4a98cd1ef8b0026a7e5d3a851 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Thu, 19 Apr 2018 10:43:11 +0100 Subject: [PATCH] Update to v0.9.18a --- Makefile | 2 +- RELEASE_NOTES | 7 +++++++ inc/util.h | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 253b2905..b748ea17 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PROJ = FlashFloppy -VER = v0.9.17a +VER = v0.9.18a SUBDIRS += src bootloader reloader diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 3c4d57f3..44565df3 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -3,6 +3,13 @@ ** Keir Fraser ************************************ +** v0.9.18a - 19 April 2018 + - Fix HxC compatibility mode ("LBA change test failed") + - SDU: Improve geometry detection + - More bug fixes to read-data ring-buffer handling + - LED 888 Display: Show firmware version when right/up button pressed + - LCD/OLED: When browsing through images, reset scroll to start of each file + ** v0.9.17a - 17 April 2018 - New image types supported: - Acorn DFS SSD/DSD diff --git a/inc/util.h b/inc/util.h index 35243fb9..2fc5f41e 100644 --- a/inc/util.h +++ b/inc/util.h @@ -9,7 +9,7 @@ * See the file COPYING for more details, or visit . */ -#define FW_VER "0.9.17a" +#define FW_VER "0.9.18a" #ifndef NDEBUG #define ASSERT(p) do { if (!(p)) illegal(); } while (0)