Skip to content

Commit 5df63c8

Browse files
committed
0.6.0
1 parent b3e17e4 commit 5df63c8

File tree

3 files changed

+48
-2
lines changed

3 files changed

+48
-2
lines changed

CHANGELOG

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,52 @@ Bug fixes:
99

1010
Other:
1111

12+
0.6.0
13+
=====
14+
15+
Release date:
16+
17+
Thu, 10 Apr 2025 21:05:49 +0300
18+
19+
New features:
20+
21+
* Jump to the start of the current pattern on Home key pressed
22+
23+
* Scroll by linesPerBeat on Page Up / Page Down pressed
24+
25+
* Implement note delay
26+
- Context menu => Line => Set delay
27+
28+
* Improve video generation functionality
29+
- Zoom animation for the background image
30+
- Fade out for the logo
31+
- Show note names
32+
- Flash effect
33+
34+
Bug fixes:
35+
36+
* Fix MIDI CC settings
37+
38+
* Fix pattern copy when pattern has a deleted track
39+
40+
* Fix excessive changed positions when operating on a shortened pattern
41+
42+
* Fix pattern creation when a track has been deleted
43+
44+
* Fix track wrapping when moving cursor left
45+
46+
* Fix line wrapping when scrolling to a negative line
47+
48+
* Fix C++ <-> QML interface on Qt 6.4
49+
- The main problem is that some standard types like size_t not
50+
fully supported before Qt 6.5 and this breaks the UI
51+
52+
Other:
53+
54+
* Separately send initial MIDI CC settings
55+
56+
* CPack: Add qml6-module-qtquick-window as a dependency
57+
1258
0.5.0
1359
=====
1460

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ project(Noteahead LANGUAGES CXX)
44

55
# Global version
66
set(VERSION_MAJOR 0)
7-
set(VERSION_MINOR 5)
7+
set(VERSION_MINOR 6)
88
set(VERSION_PATCH 0)
99
set(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
1010

scripts/build-archive

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
git archive --format=tar.gz --prefix=noteahead-0.5.0/ HEAD > noteahead-0.5.0.tar.gz
1+
git archive --format=tar.gz --prefix=noteahead-0.6.0/ HEAD > noteahead-0.6.0.tar.gz

0 commit comments

Comments
 (0)