From c2f5b65e0ddacbdca2af55b8ed9e330ddc2acbc5 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Fri, 16 Mar 2018 16:24:27 +0000 Subject: [PATCH] Update for v0.9.16a --- Makefile | 2 +- RELEASE_NOTES | 6 ++++++ inc/util.h | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d25ea022..cab56d3f 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PROJ = FlashFloppy -VER = v0.9.15a +VER = v0.9.16a SUBDIRS += src bootloader reloader diff --git a/RELEASE_NOTES b/RELEASE_NOTES index dc1d7e9a..88ffc1d6 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -3,6 +3,12 @@ ** Keir Fraser ************************************ +** v0.9.16a - 16 March 2018 + - Support ADFS D/E/F images (suffix *.ADF, FF.CFG: host=acorn) + - Direct Access: Fix sector data CRCs + - Reliability improvements for Acorn systems (index-suppression=no) + - Rearrange floppy read/write buffering to avoid corruptions + ** v0.9.15a - 9 March 2018 - UI: Fix subfolder navigation when returning to parent folder (#66) - OLED: Auto-detect OLED displays at I2C address 0x3d diff --git a/inc/util.h b/inc/util.h index 6626d03a..0968c810 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.15a" +#define FW_VER "0.9.16a" #ifndef NDEBUG #define ASSERT(p) do { if (!(p)) illegal(); } while (0)