Git commit c181d48ca6f3713140aa8be88fe0e8353e4343f3 by Urs Fleisch. Committed on 01/01/2023 at 11:49. Pushed by ufleisch into branch 'master'.
Prepare for next release M +2 -2 CMakeLists.txt M +20 -0 ChangeLog M +1 -1 Doxyfile M +22 -4 deb/changelog M +3 -3 doc/en/index.docbook M +1 -1 packaging/craft/extragear/kid3/kid3.py M +1 -1 packaging/flatpak/org.kde.kid3-stable.json [INFRASTRUCTURE] M +1 -0 src/app/org.kde.kid3.appdata.xml M +1 -1 translations/extract-merge.sh https://invent.kde.org/multimedia/kid3/commit/c181d48ca6f3713140aa8be88fe0e8353e4343f3 diff --git a/CMakeLists.txt b/CMakeLists.txt index 1925876b..d8ed21ca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -106,11 +106,11 @@ endif() # Version information set(CPACK_PACKAGE_VERSION_MAJOR 3) set(CPACK_PACKAGE_VERSION_MINOR 9) -set(CPACK_PACKAGE_VERSION_PATCH 2) +set(CPACK_PACKAGE_VERSION_PATCH 3) set(KID3_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}") set(CPACK_PACKAGE_VERSION ${KID3_VERSION}) #set(CPACK_PACKAGE_VERSION "git20210123") -set(RELEASE_YEAR 2022) +set(RELEASE_YEAR 2023) # Platform specific default installation paths if(APPLE) diff --git a/ChangeLog b/ChangeLog index d2f09754..ec2d8149 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,23 @@ +Thu Jan 12 12:15:43 CET 2023 Urs Fleisch <[email protected]> + + * Release 3.9.3 + + * New: + + User action script to fix ID3v2 standard violations. + + * Improved: + + Accept letters in track numbers when setting tags from filename. + + Embed lyrics: Use letras.com instead of lyrics.wikia.com. + + * Fixed: + + Crash upon termination when qml and qmlview actions have been used. + + Abort when invalid keys are used for FLAC Vorbis comments. + + Use of non-BMP Unicode characters with TagLib. + + Error description when saving files fails. + + Discogs import. + + Building with Musl libc. + + Windows: Handling of common path in multiple command line arguments. + Sat Aug 6 07:14:23 CEST 2022 Urs Fleisch <[email protected]> * Release 3.9.2 diff --git a/Doxyfile b/Doxyfile index 8b0f4926..46382653 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = kid3 # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 3.9.2 +PROJECT_NUMBER = 3.9.3 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/deb/changelog b/deb/changelog index 32e5ee01..62f6abba 100644 --- a/deb/changelog +++ b/deb/changelog @@ -1,14 +1,32 @@ -kid3 (3.9.2-0) unstable; urgency=low +kid3 (3.9.3-0) unstable; urgency=low * New upstream release. - -- Urs Fleisch <[email protected]> Sat, 06 Aug 2022 07:14:23 +0200 + -- Urs Fleisch <[email protected]> Thu, 12 Jan 2023 12:15:43 +0100 -kid3 (3.9.1-0) unstable; urgency=low +kid3 (3.9.2-1) unstable; urgency=medium * New upstream release. + - Remove merged patch ffmpeg-5.0. + * Bump Standards-Version to 4.6.1. + * Adjust lintian overrides. + + -- Patrick Matthäi <[email protected]> Mon, 08 Aug 2022 10:23:48 +0200 + +kid3 (3.9.1-2) unstable; urgency=medium + + * Acknowledge NMU from Sebastian Ramacher: Apply upstream patch to fix + build with ffmpeg 5.0. + Closes: #1004772 + + -- Patrick Matthäi <[email protected]> Thu, 03 Mar 2022 16:01:37 +0100 + +kid3 (3.9.1-1) unstable; urgency=medium + + * New upstream release. + * Adjust lintian overrides. - -- Urs Fleisch <[email protected]> Sat, 15 Jan 2022 09:01:43 +0100 + -- Patrick Matthäi <[email protected]> Tue, 25 Jan 2022 11:29:43 +0100 kid3 (3.9.0-1) unstable; urgency=medium diff --git a/doc/en/index.docbook b/doc/en/index.docbook index 4e3b22dd..31c3e5af 100644 --- a/doc/en/index.docbook +++ b/doc/en/index.docbook @@ -24,13 +24,13 @@ </authorgroup> <copyright> -<year>2022</year> +<year>2023</year> <holder>Urs Fleisch</holder> </copyright> <legalnotice id="fdl-notice">&FDLNotice;</legalnotice> -<date>2022-08-06</date> -<releaseinfo>3.9.2</releaseinfo> +<date>2023-01-12</date> +<releaseinfo>3.9.3</releaseinfo> <abstract> <para> diff --git a/packaging/craft/extragear/kid3/kid3.py b/packaging/craft/extragear/kid3/kid3.py index e1cefd29..ab3fa695 100755 --- a/packaging/craft/extragear/kid3/kid3.py +++ b/packaging/craft/extragear/kid3/kid3.py @@ -7,7 +7,7 @@ class subinfo(info.infoclass): def setTargets(self): self.svnTargets['master'] = 'https://invent.kde.org/multimedia/kid3.git' - for ver in ['3.8.4', '3.8.5', '3.8.6', '3.8.7', '3.9.0', '3.9.1', '3.9.2']: + for ver in ['3.8.4', '3.8.5', '3.8.6', '3.8.7', '3.9.0', '3.9.1', '3.9.2', '3.9.3']: self.targets[ver] = f'https://download.kde.org/stable/kid3/{ver}/kid3-{ver}.tar.xz' self.targetInstSrc[ver] = 'kid3-' + ver self.targetDigestUrls[ver] = f'https://download.kde.org/stable/kid3/{ver}/kid3-{ver}.tar.xz.sha256' diff --git a/packaging/flatpak/org.kde.kid3-stable.json b/packaging/flatpak/org.kde.kid3-stable.json index a1eababe..ab7e8b13 100644 --- a/packaging/flatpak/org.kde.kid3-stable.json +++ b/packaging/flatpak/org.kde.kid3-stable.json @@ -117,7 +117,7 @@ "sources": [ { "type": "archive", - "url": "https://download.kde.org/stable/kid3/3.9.2/kid3-3.9.2.tar.xz" + "url": "https://download.kde.org/stable/kid3/3.9.3/kid3-3.9.3.tar.xz" } ] } diff --git a/src/app/org.kde.kid3.appdata.xml b/src/app/org.kde.kid3.appdata.xml index d7c7ed4d..c822a5a4 100644 --- a/src/app/org.kde.kid3.appdata.xml +++ b/src/app/org.kde.kid3.appdata.xml @@ -286,6 +286,7 @@ <update_contact>ufleisch_at_users.sourceforge.net</update_contact> <translation type="gettext">kid3</translation> <releases> + <release version="3.9.3" date="2023-01-12"/> <release version="3.9.2" date="2022-08-06"/> <release version="3.9.1" date="2022-01-15"/> <release version="3.9.0" date="2021-12-18"/> diff --git a/translations/extract-merge.sh b/translations/extract-merge.sh index 79dec977..da5a5c48 100755 --- a/translations/extract-merge.sh +++ b/translations/extract-merge.sh @@ -5,7 +5,7 @@ BASEDIR="../src" # root of translatable sources PROJECT="kid3" # project name -PROJECTVERSION="3.9.2" # project version +PROJECTVERSION="3.9.3" # project version BUGADDR="https://bugs.kde.org" # MSGID-Bugs WDIR=`pwd` # working dir
