File tree Expand file tree Collapse file tree 3 files changed +16
-4
lines changed
Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.10)
22
33set (chromaprint_VERSION_MAJOR 1)
4- set (chromaprint_VERSION_MINOR 5 )
5- set (chromaprint_VERSION_PATCH 1 )
4+ set (chromaprint_VERSION_MINOR 6 )
5+ set (chromaprint_VERSION_PATCH 0 )
66set (chromaprint_VERSION "${chromaprint_VERSION_MAJOR} .${chromaprint_VERSION_MINOR} .${chromaprint_VERSION_PATCH} " )
77
88project (chromaprint LANGUAGES C CXX VERSION "${chromaprint_VERSION} " )
Original file line number Diff line number Diff line change 1+ Version 1.6.0 -- August 28, 2025
2+ =================================
3+
4+ - Added support for FFmpeg 8.0
5+ - Added chromaprint_decode_fingerprint_header function
6+ - Added missing chromaprint_get_algorithm function implementation
7+ - Optimized simhash calculation and fingerprint decoding
8+ - Improved fingerprint compression performance by pre-allocating vector storage
9+ - CMake improvements: updated minimum version to 3.10, use GNUInstallDirs, install config targets
10+ - Build Linux ARM64 binaries
11+ - Allow build to exclude internal avresample
12+
113Version 1.5.1 -- December 23, 2021
214==================================
315
Original file line number Diff line number Diff line change @@ -83,8 +83,8 @@ struct ChromaprintMatcherContextPrivate;
8383typedef struct ChromaprintMatcherContextPrivate ChromaprintMatcherContext ;
8484
8585#define CHROMAPRINT_VERSION_MAJOR 1
86- #define CHROMAPRINT_VERSION_MINOR 5
87- #define CHROMAPRINT_VERSION_PATCH 1
86+ #define CHROMAPRINT_VERSION_MINOR 6
87+ #define CHROMAPRINT_VERSION_PATCH 0
8888
8989enum ChromaprintAlgorithm {
9090 CHROMAPRINT_ALGORITHM_TEST1 = 0 ,
You can’t perform that action at this time.
0 commit comments