head 1.2; access; symbols pkgsrc-2017Q4:1.1.0.12 pkgsrc-2017Q4-base:1.1 pkgsrc-2017Q3:1.1.0.10 pkgsrc-2017Q3-base:1.1 pkgsrc-2017Q2:1.1.0.6 pkgsrc-2017Q2-base:1.1 pkgsrc-2017Q1:1.1.0.4 pkgsrc-2017Q1-base:1.1 pkgsrc-2016Q4:1.1.0.2 pkgsrc-2016Q4-base:1.1; locks; strict; comment @// @; 1.2 date 2018.01.21.04.10.44; author markd; state dead; branches; next 1.1; commitid RNeEDo3vg6o0bHnA; 1.1 date 2016.12.19.09.20.10; author wiz; state Exp; branches; next ; commitid WPjDc5sP5ypUHzyz; desc @@ 1.2 log @kid3: update to 3.5.1 * Release 3.5.1 * Improved: + Compatibility of imported and exported CSV files with cells containing new line characters. + Do not show unknown frames for ID3v2.3 TDAT, TIME, TYER, TRDA frames. + Enable high-DPI scaling for Qt >= 5.6. + Change AppStream directory from appdata to metainfo. * Fixed: + Crash with DSF files having sample rates other than 2822400 or 5644800. * Release 3.5.0 * New: + Tags which violate the ID3v2 standard are marked. + Filter for marked files. + Configurable keyboard shortcuts for user actions. + Set and get frame fields from scripts and CLI. + Select a subset of frames for copy, paste, remove from scripts and CLI. + Set and get multiple frames of the same kind from scripts and CLI. + Support field names in export and filter expressions. + Support xid and ownr atoms in M4A files. + Danish translation. * Improved: + Better performance when files are added to selection. + The script actions in the file list context menu only operate on selected files. + Only jump to tagged files with previous/next in GUI. + Show passed/total after "filtered" in title bar. + kid3-cli can run from a console without GUI/X11. * Fixed: + Adding and deleting tag 3 frames from CLI. + Deletion of multiple METADATA_BLOCK_PICTURE picture frames. + Wrong depth 32 instead of 24 stored in METADATA_BLOCK_PICTURE. + Use Ogg/Vorbis Comment field name setting also for Opus files. * Release 3.4.5 * New: + Settings to include and exclude folders in the file list. * Improved: + Use HTTPS for imports where possible. + Much faster expanding of the file list by avoiding GUI updates during the operation. + Faster filtering by avoiding GUI updates during the operation. + Reduced memory usage when filtering. + Updated Czech and Dutch translations. * Fixed: + Import from MusicBrainz. + Rate limit for import from Discogs. + Do not display multiple frames of same type as different. + Application not responsive when using a new filter after filtering a huge number of files. + Application not responsive when loading the tags after selecting a lot of files, is now abortable. + Terminate kid3-cli if EOF is received. * Release 3.4.4 * New: + If the first command line argument is "--portable", the configuration is stored in a file kid3.ini in the program folder. + Image data can be copied to clipboard. + MPRIS2 D-Bus interface for the audio player. * Improved: + "Import CSV" can import to different files if no matching file paths found. * Fixed: + Importing of durations from text formats (file/clipboard). + Building with Chromaprint 1.4. @ text @$NetBSD: patch-src_plugins_acoustidimport_fingerprintcalculator.cpp,v 1.1 2016/12/19 09:20:10 wiz Exp $ Fix build with chromaprint-1.4.x. --- src/plugins/acoustidimport/fingerprintcalculator.cpp.orig 2015-09-30 06:40:08.000000000 +0000 +++ src/plugins/acoustidimport/fingerprintcalculator.cpp @@@@ -26,7 +26,6 @@@@ #define __STDC_CONSTANT_MACROS #include "fingerprintcalculator.h" -#include #include "config.h" #include "abstractfingerprintdecoder.h" @@@@ -94,7 +93,7 @@@@ void FingerprintCalculator::startChromap */ void FingerprintCalculator::feedChromaprint(QByteArray data) { - if (!::chromaprint_feed(m_chromaprintCtx, data.data(), data.size() / 2)) { + if (!::chromaprint_feed(m_chromaprintCtx, (int16_t*)data.data(), data.size() / 2)) { m_decoder->stop(); emit finished(QString(), 0, FingerprintCalculationFailed); } @ 1.1 log @Fix build with chromaprint-1.4.x. @ text @d1 1 a1 1 $NetBSD$ @