Skip to content

Commit

Permalink
Release v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dannye committed Dec 14, 2023
1 parent b3efefe commit 88c1ca0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Changelog
=========

### Crystal Tracker v0.4.0 (2023-12-14)

* Add rectangle select.
* Improve tempo to bpm approximation for playback.
* Improve playback of noise samples that never fade out. (See: Pinball's seelstage.asm)
* More intuitive keyboard controls for the Note Properties panel.
* Escape now aborts note property changes.
* Enter now also deselects the textbox.
* Fix playback of drum samples for songs that also use inline waves.
* Warn for songs that use too many inline waves.
* Using too many drums is now a warning and not an error.
* Allow setting drumkit from Note Properties panel.

### Crystal Tracker v0.3.0 (2023-05-28)

* Improve accuracy of volume fade during playback.
Expand Down
6 changes: 3 additions & 3 deletions src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@

#define CURRENT_YEAR "2023"

#define PROGRAM_VERSION 0,3,0
#define PROGRAM_VERSION 0,4,0
#ifdef _DEBUG
#define PROGRAM_VERSION_STRING "0.3.0 [DEBUG]"
#define PROGRAM_VERSION_STRING "0.4.0 [DEBUG]"
#else
#define PROGRAM_VERSION_STRING "0.3.0"
#define PROGRAM_VERSION_STRING "0.4.0"
#endif

#define PROGRAM_EXE_NAME "crystaltracker"
Expand Down

0 comments on commit 88c1ca0

Please sign in to comment.