Skip to content

Commit 9113fbf

Browse files
committed
0.1.0
1 parent 340ba02 commit 9113fbf

File tree

3 files changed

+38
-3
lines changed

3 files changed

+38
-3
lines changed

CHANGELOG

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,44 @@
11
x.y.z
22
=====
33

4+
Release date:
5+
46
New features:
57

68
Bug fixes:
79

810
Other:
911

12+
0.1.0
13+
=====
14+
15+
Release date:
16+
17+
Wed, 26 Feb 2025 08:15:31 +0200
18+
19+
New features:
20+
21+
* Accurate internal timing
22+
23+
* Fully scalable UI
24+
25+
* Cool volume meters like in NoiseTracker
26+
27+
* Easy-to-use track editing
28+
29+
* Poor Man's MIDI Hot-Plug with automatic setup
30+
- Noteahead notices when a device goes online/offline
31+
- Noteahead automatically sets channel, bank, and patch
32+
33+
* Send MIDI clock on desired ports
34+
35+
* Tracks with multiple note columns
36+
37+
* Track settings with port, channel, bank, patch, volume, pan, cutoff
38+
- Can be easily changed on-the-fly via line events
39+
40+
* Track and column-specific velocity scales
41+
- Effective velocity is the product of track scale, column scale, and note velocity
42+
43+
* Saves to a custom (but open!) XML-based **.nahd** format
44+

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ project(Noteahead LANGUAGES CXX)
44

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

1111
message("\n${CMAKE_PROJECT_NAME} ${VERSION}\n")

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.0.1/ HEAD > noteahead-0.0.1.tar.gz
1+
git archive --format=tar.gz --prefix=noteahead-0.1.0/ HEAD > noteahead-0.1.0.tar.gz

0 commit comments

Comments
 (0)