[multimedia/kid3] /: Prepare for next release
Urs Fleisch
null at kde.org
Wed Jan 24 17:58:26 GMT 2024
Git commit 33c26c8c6e28792c811bdf96c755f3b701a82514 by Urs Fleisch.
Committed on 24/01/2024 at 18:57.
Pushed by ufleisch into branch 'master'.
Prepare for next release
M +2 -2 CMakeLists.txt
M +19 -0 ChangeLog
M +1 -1 Doxyfile
M +6 -0 deb/changelog
M +3 -3 doc/en/index.docbook
M +1 -1 packaging/flatpak/org.kde.kid3-stable.json [INFRASTRUCTURE]
M +22 -0 src/app/org.kde.kid3.appdata.xml
M +1 -1 translations/extract-merge.sh
https://invent.kde.org/multimedia/kid3/-/commit/33c26c8c6e28792c811bdf96c755f3b701a82514
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 94b1a6be6..279d383d0 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -107,11 +107,11 @@ endif()
# Version information
set(CPACK_PACKAGE_VERSION_MAJOR 3)
set(CPACK_PACKAGE_VERSION_MINOR 9)
-set(CPACK_PACKAGE_VERSION_PATCH 4)
+set(CPACK_PACKAGE_VERSION_PATCH 5)
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 2023)
+set(RELEASE_YEAR 2024)
# Platform specific default installation paths
if(APPLE)
diff --git a/ChangeLog b/ChangeLog
index 34bf66440..39538a494 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,22 @@
+Sat Feb 24 18:15:31 CET 2024 Urs Fleisch <ufleisch at users.sourceforge.net>
+
+ * Release 3.9.5
+
+ * New:
+ + Keyboard shortcuts for play toolbar.
+ + Option "Audio output" in "User Actions" settings tab.
+ + Support WebP format for pictures.
+
+ * Improved:
+ + Clicking again on 1 star makes star rating disappear.
+ + Support '\|' to escape string list separators.
+
+ * Fixed:
+ + Support multiple values in APE text items.
+ + Building with TagLib 2.0.
+ + Building from macOS with arm64.
+ + Building snap packages.
+
Sun Jul 9 10:32:10 CEST 2023 Urs Fleisch <ufleisch at users.sourceforge.net>
* Release 3.9.4
diff --git a/Doxyfile b/Doxyfile
index 41ace375a..729bc65b7 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.4
+PROJECT_NUMBER = 3.9.5
# 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 4ac3d1834..4503d8e24 100644
--- a/deb/changelog
+++ b/deb/changelog
@@ -1,3 +1,9 @@
+kid3 (3.9.5-0) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Urs Fleisch <ufleisch at users.sourceforge.net> Sat, 24 Feb 2024 18:15:31 +0100
+
kid3 (3.9.4-0) unstable; urgency=low
* New upstream release.
diff --git a/doc/en/index.docbook b/doc/en/index.docbook
index b30899ccc..136e202c8 100644
--- a/doc/en/index.docbook
+++ b/doc/en/index.docbook
@@ -24,13 +24,13 @@
</authorgroup>
<copyright>
-<year>2023</year>
+<year>2024</year>
<holder>Urs Fleisch</holder>
</copyright>
<legalnotice id="fdl-notice">&FDLNotice;</legalnotice>
-<date>2023-07-09</date>
-<releaseinfo>3.9.4</releaseinfo>
+<date>2024-02-24</date>
+<releaseinfo>3.9.5</releaseinfo>
<abstract>
<para>
diff --git a/packaging/flatpak/org.kde.kid3-stable.json b/packaging/flatpak/org.kde.kid3-stable.json
index a4a200a92..8327ef13f 100644
--- a/packaging/flatpak/org.kde.kid3-stable.json
+++ b/packaging/flatpak/org.kde.kid3-stable.json
@@ -125,7 +125,7 @@
"sources": [
{
"type": "archive",
- "url": "https://download.kde.org/stable/kid3/3.9.4/kid3-3.9.4.tar.xz"
+ "url": "https://download.kde.org/stable/kid3/3.9.5/kid3-3.9.5.tar.xz"
}
]
}
diff --git a/src/app/org.kde.kid3.appdata.xml b/src/app/org.kde.kid3.appdata.xml
index 577f69001..2ada683d5 100644
--- a/src/app/org.kde.kid3.appdata.xml
+++ b/src/app/org.kde.kid3.appdata.xml
@@ -298,6 +298,28 @@
<update_contact>ufleisch_at_users.sourceforge.net</update_contact>
<translation type="gettext">kid3</translation>
<releases>
+ <release version="3.9.5" date="2024-02-24">
+ <description>
+ <p>New</p>
+ <ul>
+ <li>Keyboard shortcuts for play toolbar.</li>
+ <li>Option "Audio output" in "User Actions" settings tab.</li>
+ <li>Support WebP format for pictures.</li>
+ </ul>
+ <p>Improved</p>
+ <ul>
+ <li>Clicking again on 1 star makes star rating disappear.</li>
+ <li>Support '\|' to escape string list separators.</li>
+ </ul>
+ <p>Fixed</p>
+ <ul>
+ <li>Support multiple values in APE text items.</li>
+ <li>Building with TagLib 2.0.</li>
+ <li>Building from macOS with arm64.</li>
+ <li>Building snap packages.</li>
+ </ul>
+ </description>
+ </release>
<release version="3.9.4" date="2023-07-09">
<description>
<p>New</p>
diff --git a/translations/extract-merge.sh b/translations/extract-merge.sh
index 59b6e9c3b..a162d74fb 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.4" # project version
+PROJECTVERSION="3.9.5" # project version
BUGADDR="https://bugs.kde.org" # MSGID-Bugs
WDIR=`pwd` # working dir
More information about the kde-doc-english
mailing list