Skip to content

Commit 15d4f57

Browse files
committed
update copyright
1 parent d5dedec commit 15d4f57

31 files changed

Lines changed: 39 additions & 39 deletions

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2025 by Brenton Bostick
1+
# Copyright (C) 2026 by Brenton Bostick
22
#
33
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
44
# associated documentation files (the "Software"), to deal in the Software without restriction,

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2025 Brenton Bostick
3+
Copyright (c) 2026 Brenton Bostick
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Print out tablature from a .tbt TabIt file:
3838
```
3939
% ./tbt-printer --input-file black.tbt
4040
tbt printer v1.4.0
41-
Copyright (C) 2025 by Brenton Bostick
41+
Copyright (C) 2026 by Brenton Bostick
4242
input file: black.tbt
4343
output file: out.txt
4444
parsing...
@@ -51,7 +51,7 @@ Generate a MIDI file from a .tbt TabIt file:
5151
```
5252
% ./tbt-converter --input-file black.tbt
5353
tbt converter v1.4.0
54-
Copyright (C) 2025 by Brenton Bostick
54+
Copyright (C) 2026 by Brenton Bostick
5555
input file: black.tbt
5656
output file: out.mid
5757
emit control change events: 1
@@ -66,7 +66,7 @@ Generate a MIDI file from a .tbt TabIt file, and do not emit any ControlChange e
6666
```
6767
% ./tbt-converter --input-file black.tbt --emit-controlchange-events 0 --emit-programchange-events 0 --emit-pitchbend-events 0
6868
tbt converter v1.4.0
69-
Copyright (C) 2025 by Brenton Bostick
69+
Copyright (C) 2026 by Brenton Bostick
7070
input file: black.tbt
7171
output file: out.mid
7272
emit control change events: 0
@@ -81,7 +81,7 @@ Print out information about a MIDI file:
8181
```
8282
% ./midi-info --input-file black.mid
8383
midi info v1.4.0
84-
Copyright (C) 2025 by Brenton Bostick
84+
Copyright (C) 2026 by Brenton Bostick
8585
input file: black.mid
8686
parsing...
8787
tracks:
@@ -109,7 +109,7 @@ Print out information about a .tbt TabIt file:
109109
```
110110
% ./tbt-info --input-file black.tbt
111111
tbt info v1.4.0
112-
Copyright (C) 2025 by Brenton Bostick
112+
Copyright (C) 2026 by Brenton Bostick
113113
input file: black.tbt
114114
tbt file version: 2.0 (0x72)
115115
title: Back In Black

exe/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2025 by Brenton Bostick
1+
# Copyright (C) 2026 by Brenton Bostick
22
#
33
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
44
# associated documentation files (the "Software"), to deal in the Software without restriction,

exe/midi-info.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2025 by Brenton Bostick
1+
// Copyright (C) 2026 by Brenton Bostick
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
44
// associated documentation files (the "Software"), to deal in the Software without restriction,
@@ -41,7 +41,7 @@ void printUsage();
4141
int main(int argc, const char *argv[]) {
4242

4343
LOGI("midi info v1.4.0");
44-
LOGI("Copyright (C) 2025 by Brenton Bostick");
44+
LOGI("Copyright (C) 2026 by Brenton Bostick");
4545

4646
if (argc == 1) {
4747
printUsage();

exe/tbt-converter.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2025 by Brenton Bostick
1+
// Copyright (C) 2026 by Brenton Bostick
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
44
// associated documentation files (the "Software"), to deal in the Software without restriction,
@@ -40,7 +40,7 @@ void printUsage();
4040
int main(int argc, const char *argv[]) {
4141

4242
LOGI("tbt converter v1.4.0");
43-
LOGI("Copyright (C) 2025 by Brenton Bostick");
43+
LOGI("Copyright (C) 2026 by Brenton Bostick");
4444

4545
if (argc == 1) {
4646
printUsage();

exe/tbt-info.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2025 by Brenton Bostick
1+
// Copyright (C) 2026 by Brenton Bostick
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
44
// associated documentation files (the "Software"), to deal in the Software without restriction,
@@ -40,7 +40,7 @@ void printUsage();
4040
int main(int argc, const char *argv[]) {
4141

4242
LOGI("tbt info v1.4.0");
43-
LOGI("Copyright (C) 2025 by Brenton Bostick");
43+
LOGI("Copyright (C) 2026 by Brenton Bostick");
4444

4545
if (argc == 1) {
4646
printUsage();

exe/tbt-printer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2025 by Brenton Bostick
1+
// Copyright (C) 2026 by Brenton Bostick
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
44
// associated documentation files (the "Software"), to deal in the Software without restriction,
@@ -41,7 +41,7 @@ void printUsage();
4141
int main(int argc, const char *argv[]) {
4242

4343
LOGI("tbt printer v1.4.0");
44-
LOGI("Copyright (C) 2025 by Brenton Bostick");
44+
LOGI("Copyright (C) 2026 by Brenton Bostick");
4545

4646
if (argc == 1) {
4747
printUsage();

include/tbt-parser.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2025 by Brenton Bostick
1+
// Copyright (C) 2026 by Brenton Bostick
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
44
// associated documentation files (the "Software"), to deal in the Software without restriction,

include/tbt-parser/tbt-parser-util.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2025 by Brenton Bostick
1+
// Copyright (C) 2026 by Brenton Bostick
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
44
// associated documentation files (the "Software"), to deal in the Software without restriction,

0 commit comments

Comments
 (0)