From 1b9bcbbf8444a24ec5904007ada6d150ebc2640e Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Wed, 6 Jun 2018 20:28:31 +0100 Subject: [PATCH] Update for v0.9.20a --- Makefile | 2 +- RELEASE_NOTES | 9 +++++++++ inc/util.h | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a04043ef..0f86727a 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PROJ = FlashFloppy -VER = v0.9.19a +VER = v0.9.20a PYTHON = python2 SUBDIRS += src bootloader reloader diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 99a7279d..1ecddb48 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -3,6 +3,15 @@ ** Keir Fraser ************************************ +** v0.9.20a - 6 June 2018 + - New image types supported: + - IMG: UKNC/DVK (Soviet PDP-11 clones) (host=uknc) + - IMG/FDI: NEC PC-98 (host=pc98) + - IMG: Common retro IBM/PC formats work out of the box + - IMG: Detect disk layout from PC DOS BPB (host=pc-dos) + - Auto-extend truncated images (SSD, DSD, TRD images only) + - "image-extend=no" disables this feature + ** v0.9.19a - 1 May 2018 - Amiga: Support high-density disk images - ADF: 1760kB images diff --git a/inc/util.h b/inc/util.h index 84c42b77..b795a2d5 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.19a" +#define FW_VER "0.9.20a" #ifndef NDEBUG #define ASSERT(p) do { if (!(p)) illegal(); } while (0)