From e99cae9ce54868603a9d629d6d19aec5736718bf Mon Sep 17 00:00:00 2001 From: Dmitry Makarenko Date: Mon, 26 Jan 2026 20:40:46 +0300 Subject: [PATCH 1/2] Bump supported project version to 3.7 --- src/AudacityDatabase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AudacityDatabase.cpp b/src/AudacityDatabase.cpp index fc0f68e..4316c00 100644 --- a/src/AudacityDatabase.cpp +++ b/src/AudacityDatabase.cpp @@ -25,7 +25,7 @@ namespace constexpr int64_t AudacityProjectID = 1096107097; constexpr int64_t MaxSupportedVersion = - (3 << 24) + (4 << 16) + (0 << 8) + 0; // 3.4.0.0 + (3 << 24) + (7 << 16) + (0 << 8) + 0; // 3.7.0.0 template size_t readInt(const std::string& string, size_t offset, T& output) { From 516c53fcf2d0c85541174051694e1d5a0562ea9f Mon Sep 17 00:00:00 2001 From: Dmitry Makarenko Date: Mon, 26 Jan 2026 20:40:46 +0300 Subject: [PATCH 2/2] Bump tool version to 1.0.5 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8bd6088..c7a8725 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -76,7 +76,7 @@ set(CPACK_PACKAGE_NAME "audacity-project-tools") set(CPACK_PACKAGE_VENDOR "Audacity") set(CPACK_PACKAGE_VERSION_MAJOR 1) set(CPACK_PACKAGE_VERSION_MINOR 0) -set(CPACK_PACKAGE_VERSION_PATCH 4) +set(CPACK_PACKAGE_VERSION_PATCH 5) set(CPACK_GENERATOR ZIP) SET(CPACK_OUTPUT_FILE_PREFIX packages)