From 1089104c37856b0f66b556b1d5fdca409a2f2aa6 Mon Sep 17 00:00:00 2001 From: sshlien Date: Tue, 17 Jun 2025 09:04:37 -0400 Subject: [PATCH] 2025.06.17 --- VERSION | 2 +- doc/readme.txt | 4 ++-- midistats.c | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/VERSION b/VERSION index 1569e7f..06d3fd4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -February 16 2025 +June 17 2025 diff --git a/doc/readme.txt b/doc/readme.txt index 98d0123..a4fc1d0 100644 --- a/doc/readme.txt +++ b/doc/readme.txt @@ -1,12 +1,12 @@ abcMIDI : abc <-> MIDI conversion utilities -midi2abc version 3.63 February 13 2025 +midi2abc version 3.64 June 14 2025 abc2midi version 5.02 February 16 2025 abc2abc version 2.22 April 30 2024 yaps version 1.94 April 30 2024 abcmatch version 1.83 February 19 2024 midicopy version 1.40 August 11 2024 -midistats version 0.98 January 30 2025 +midistats version 0.99 June 17 2025 24th January 2002 Copyright James Allwright diff --git a/midistats.c b/midistats.c index e0a909f..6472c78 100644 --- a/midistats.c +++ b/midistats.c @@ -17,7 +17,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ -#define VERSION "0.98 January 30 2025 midistats" +#define VERSION "0.99 June 17 2025 midistats" /* midistrats.c is a descendent of midi2abc.c which was becoming to large. The object of the program is to extract statistical characterisitic @@ -1106,7 +1106,7 @@ long ltempo; trkdata.tempo[0]++; if (noOutput == 1) return; if (trkdata.tempo[0] == 1) printf("tempo %6.2f bpm\n",60000000.0/tempo); - else if (trkdata.tempo[0] < 10) printf("ctempo %6.2f %6.2f\n",60000000.0/tempo,beatnumber); + else if (trkdata.tempo[0] < 100) printf("ctempo %6.2f %6.2f\n",60000000.0/tempo,beatnumber); }