Skip to content

Commit

Permalink
Bump to 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bostick committed Sep 12, 2024
1 parent 08a5fe9 commit ac624db
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ cmake --build .
Print out tablature from a .tbt TabIt file:
```
% ./tbt-printer --input-file black.tbt
tbt printer v1.2.0
tbt printer v1.3.0
Copyright (C) 2024 by Brenton Bostick
input file: black.tbt
output file: out.txt
Expand All @@ -43,7 +43,7 @@ finished!
Generate a MIDI file from a .tbt TabIt file:
```
% ./tbt-converter --input-file black.tbt
tbt converter v1.2.0
tbt converter v1.3.0
Copyright (C) 2024 by Brenton Bostick
input file: black.tbt
output file: out.mid
Expand All @@ -58,7 +58,7 @@ finished!
Generate a MIDI file from a .tbt TabIt file, and do not emit any ControlChange events, ProgramChange events, or PitchBend events:
```
% ./tbt-converter --input-file black.tbt --emit-controlchange-events 0 --emit-programchange-events 0 --emit-pitchbend-events 0
tbt converter v1.2.0
tbt converter v1.3.0
Copyright (C) 2024 by Brenton Bostick
input file: black.tbt
output file: out.mid
Expand All @@ -73,7 +73,7 @@ finished!
Print out information about a MIDI file:
```
% ./midi-info --input-file black.mid
midi info v1.2.0
midi info v1.3.0
Copyright (C) 2024 by Brenton Bostick
input file: black.mid
parsing...
Expand Down Expand Up @@ -101,7 +101,7 @@ finished!
Print out information about a .tbt TabIt file:
```
% ./tbt-info --input-file black.tbt
tbt info v1.2.0
tbt info v1.3.0
Copyright (C) 2024 by Brenton Bostick
input file: black.tbt
tbt file version: 2.0 (0x72)
Expand Down
2 changes: 1 addition & 1 deletion exe/midi-info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ void printUsage();

int main(int argc, const char *argv[]) {

LOGI("midi info v1.2.0");
LOGI("midi info v1.3.0");
LOGI("Copyright (C) 2024 by Brenton Bostick");

if (argc == 1) {
Expand Down
2 changes: 1 addition & 1 deletion exe/tbt-converter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ void printUsage();

int main(int argc, const char *argv[]) {

LOGI("tbt converter v1.2.0");
LOGI("tbt converter v1.3.0");
LOGI("Copyright (C) 2024 by Brenton Bostick");

if (argc == 1) {
Expand Down
2 changes: 1 addition & 1 deletion exe/tbt-info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ void printUsage();

int main(int argc, const char *argv[]) {

LOGI("tbt info v1.2.0");
LOGI("tbt info v1.3.0");
LOGI("Copyright (C) 2024 by Brenton Bostick");

if (argc == 1) {
Expand Down
2 changes: 1 addition & 1 deletion exe/tbt-printer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ void printUsage();

int main(int argc, const char *argv[]) {

LOGI("tbt printer v1.2.0");
LOGI("tbt printer v1.3.0");
LOGI("Copyright (C) 2024 by Brenton Bostick");

if (argc == 1) {
Expand Down

0 comments on commit ac624db

Please sign in to comment.