Skip to content

Commit b0ed75d

Browse files
committed
0.7.0
1 parent 92c20d8 commit b0ed75d

File tree

3 files changed

+55
-3
lines changed

3 files changed

+55
-3
lines changed

CHANGELOG

Lines changed: 53 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,63 @@ Release date:
55

66
New features:
77

8+
Bug fixes:
9+
10+
Other:
11+
12+
0.7.0
13+
=====
14+
15+
Release date:
16+
17+
Sat, 24 May 2025 22:17:33 +0300
18+
19+
New features:
20+
21+
* Add an example project file
22+
23+
* Immediately update recent files on save as and save as template
24+
25+
* Set status bar message when automations added
26+
27+
* Implement basic Pitch Bend automations with linear interpolation
28+
- Select lines => Right click => Add Pitch Bend automation
29+
- Edit via Right click => Edit Pitch Bend automations
30+
31+
* Make it possible to force window size with --window-size
32+
33+
* Implement filtering for MIDI CC automations
34+
- Context Menu => Pattern/Track/Column => Edit MIDI CC automations
35+
36+
* Implement deletion of MIDI CC automations
37+
38+
* Implement enabling/disabling of MIDI CC automations
39+
40+
* Optimize the performance of MIDI CC automation edits
41+
42+
* Implement basic MIDI CC automations with linear interpolation
43+
- Select lines => Right click => Add Midi CC automation
44+
- Edit via Right click => Edit MIDI CC automations
45+
46+
* Clear selection on left-click
47+
48+
* Improve tool tips on velocity scales
49+
850
* Implement on-the-fly transposition via instrument settings
951

1052
Bug fixes:
1153

12-
Other:
54+
* Fix saving of deleted muted/soloed tracks/columns
55+
56+
* Fix inversion of muted/soloed tracks/columns
57+
58+
* Fix editor crashing when creating a pattern with a non-continuous index
59+
60+
* Fix wrong start line on InterpolationDialog
61+
62+
* Fix editing of Pitch Bend automations
63+
64+
* Fix editing of MIDI CC automations
1365

1466
0.6.0
1567
=====

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 6)
7+
set(VERSION_MINOR 7)
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.6.0/ HEAD > noteahead-0.6.0.tar.gz
1+
git archive --format=tar.gz --prefix=noteahead-0.7.0/ HEAD > noteahead-0.7.0.tar.gz

0 commit comments

Comments
 (0)