diff --git a/Makefile b/Makefile index 07fbf668..ee06f22a 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PROJ = FlashFloppy -VER = v0.9.11a +VER = v0.9.12a SUBDIRS += src bootloader reloader diff --git a/RELEASE_NOTES b/RELEASE_NOTES index e1810bc7..4d62f50e 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -3,6 +3,14 @@ ** Keir Fraser ************************************ +** v0.9.12a - 27 February 2018 + - LCD/OLED: Long filenames scroll during navigation + - LCD/OLED: Make filename scrolling more configurable + - FF.CFG: {nav,display}-scroll-{rate,pause} + - Direct navigation: ".." returns to subfolder position within parent + - Fix head-seek settle time emulation + - ADF: Generate longer tracks, like a real Amiga would + ** v0.9.11a - 23 February 2018 - Fix Direct-Acesss mode (as used by HxC Autoboot, broken in v0.9.10a) diff --git a/examples/FF.CFG b/examples/FF.CFG index 7bf0d1e9..ac1c9d78 100644 --- a/examples/FF.CFG +++ b/examples/FF.CFG @@ -130,7 +130,7 @@ display-scroll-pause = 2000 # Values: 0 <= N <= 65535 nav-scroll-rate = 80 -# LCD/OLED long filename pause before scroll, during navigation +# LCD/OLED long filename pause before scroll, during navigation (milliseconds) # Values: 0 <= N <= 65535 nav-scroll-pause = 300 diff --git a/inc/util.h b/inc/util.h index fa354874..0dbe45d9 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.11a" +#define FW_VER "0.9.12a" #ifndef NDEBUG #define ASSERT(p) do { if (!(p)) illegal(); } while (0)