From 0722ac4928afc492994e869cbd3ef81bb90f6ff0 Mon Sep 17 00:00:00 2001 From: dannye <33dannye@gmail.com> Date: Sat, 31 Aug 2024 23:25:39 -0500 Subject: [PATCH] Release v0.8.0 --- CHANGELOG.md | 16 ++++++++++++++++ src/version.h | 6 +++--- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 23f939a..e058ab0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,22 @@ Changelog ========= +### Crystal Tracker v0.8.0 (2024-08-31) + + * Add Format Painter: Copy note properties from one note to another. + * Add full support for stereo panning command. + * Add BPM display to status bar. + * Add Duplicate Note to Edit menu. + * Add Ctrl+F3 for dumping .it file. + * Add Ctrl+\ for centering the playhead in the middle of the screen. + * Add confirmation dialog for clearing recent songs. + * Pencil icon now matches selected channel color. + * Slightly emphasize beat lines when ruler is active. + * Increase max grid width to 48. + * Selecting notes with Enter key: Select the note to the left of the playhead if Alt is also pressed. + * Keep Skip Backward/Forward enabled while the song is playing, which now act like rewind and fast-forward. + * Minor bug fixes. + ### Crystal Tracker v0.7.0 (2024-06-08) * Better Pencil: Click and drag to pick note length. diff --git a/src/version.h b/src/version.h index 21c4892..a115ce1 100644 --- a/src/version.h +++ b/src/version.h @@ -7,11 +7,11 @@ #define CURRENT_YEAR "2024" -#define PROGRAM_VERSION 0,7,0 +#define PROGRAM_VERSION 0,8,0 #ifdef _DEBUG -#define PROGRAM_VERSION_STRING "0.7.0 [DEBUG]" +#define PROGRAM_VERSION_STRING "0.8.0 [DEBUG]" #else -#define PROGRAM_VERSION_STRING "0.7.0" +#define PROGRAM_VERSION_STRING "0.8.0" #endif #define PROGRAM_EXE_NAME "crystaltracker"