Skip to content

Commit

Permalink
Update for v0.9.12a
Browse files Browse the repository at this point in the history
  • Loading branch information
keirf committed Feb 27, 2018
1 parent 11c90a2 commit 83bc98f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

PROJ = FlashFloppy
VER = v0.9.11a
VER = v0.9.12a

SUBDIRS += src bootloader reloader

Expand Down
8 changes: 8 additions & 0 deletions RELEASE_NOTES
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
** Keir Fraser <[email protected]>
************************************

** 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)

Expand Down
2 changes: 1 addition & 1 deletion examples/FF.CFG
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion inc/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* See the file COPYING for more details, or visit <http://unlicense.org>.
*/

#define FW_VER "0.9.11a"
#define FW_VER "0.9.12a"

#ifndef NDEBUG
#define ASSERT(p) do { if (!(p)) illegal(); } while (0)
Expand Down

0 comments on commit 83bc98f

Please sign in to comment.