Git commit 31ed12ab56b333906c8b78ab2be70a8922667a82 by Urs Fleisch. Committed on 21/04/2020 at 19:13. Pushed by ufleisch into branch 'master'.
Prepare for next release M +3 -3 CMakeLists.txt M +25 -0 ChangeLog M +1 -1 Doxyfile M +6 -0 deb/changelog M +2 -2 doc/en/index.docbook M +1 -1 kid3.spec M +1 -0 src/app/kid3.appdata.xml M +1 -1 translations/extract-merge.sh https://invent.kde.org/kde/kid3/commit/31ed12ab56b333906c8b78ab2be70a8922667a82 diff --git a/CMakeLists.txt b/CMakeLists.txt index eacdd4b6..9960260b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -101,10 +101,10 @@ endif() # Version information set(CPACK_PACKAGE_VERSION_MAJOR 3) set(CPACK_PACKAGE_VERSION_MINOR 8) -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 "git20191214") +#set(CPACK_PACKAGE_VERSION "git20200420") set(RELEASE_YEAR 2020) # Platform specific default installation paths @@ -133,7 +133,7 @@ elseif(ANDROID) set(WITH_LIBDIR_DEFAULT ".") set(WITH_PLUGINSDIR_DEFAULT ".") set(QT_ANDROID_APP_VERSION ${KID3_VERSION}) - set(QT_ANDROID_APP_VERSION_CODE 18) + set(QT_ANDROID_APP_VERSION_CODE 19) else() set(WITH_DATAROOTDIR_DEFAULT "share") set(WITH_DOCDIR_DEFAULT "share/doc/kid3-qt") diff --git a/ChangeLog b/ChangeLog index 4d8bd5eb..e1c083e4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,28 @@ +Tue Apr 21 20:47:03 CEST 2020 Urs Fleisch <[email protected]> + + * Release 3.8.3 + + * New: + + Keyboard shortcuts to navigate between the file and tag sections. + + Script to apply English title capitalization to tags. + + Script to transliterate ID3v1 tags to ASCII. + + * Improved: + + Better compatibility with dark mode and custom themes. + + Support dragging multiple header rows in import table. + + User interface strings follow KDE HIG vocabulary. + + Support renaming read-only files. + + * Fixed: + + File filter reset when file is opened. + + Crash when dragging row in import table. + + Blocking when jumping to vanished previous or next file. + + Support languages with code or modifier. + + Hide text fragments visible in header of frame table columns. + + English plural forms. + + Add missing license files. + + Support large files on Windows (64-bit). + Thu Jan 23 12:18:05 CET 2020 Urs Fleisch <[email protected]> * Release 3.8.2 diff --git a/Doxyfile b/Doxyfile index bcc2a7e9..c97780d1 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.8.2 +PROJECT_NUMBER = 3.8.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 5bd12247..5441887e 100644 --- a/deb/changelog +++ b/deb/changelog @@ -1,3 +1,9 @@ +kid3 (3.8.3-0) unstable; urgency=low + + * New upstream release. + + -- Urs Fleisch <[email protected]> Sun, 10 May 2020 20:47:03 +0200 + kid3 (3.8.2-2) unstable; urgency=medium * Add dependency on libqt5multimedia5-plugins for the kid3-qt package. diff --git a/doc/en/index.docbook b/doc/en/index.docbook index 09782e34..50560df2 100644 --- a/doc/en/index.docbook +++ b/doc/en/index.docbook @@ -29,8 +29,8 @@ </copyright> <legalnotice id="fdl-notice">&FDLNotice;</legalnotice> -<date>2020-01-23</date> -<releaseinfo>3.8.2</releaseinfo> +<date>2020-05-10</date> +<releaseinfo>3.8.3</releaseinfo> <abstract> <para> diff --git a/kid3.spec b/kid3.spec index e840218c..041a26e3 100644 --- a/kid3.spec +++ b/kid3.spec @@ -6,7 +6,7 @@ Name: kid3 License: GPL Group: Applications/Multimedia Summary: Efficient ID3 tag editor -Version: 3.8.2 +Version: 3.8.3 Release: 1%{?dist} URL: https://kid3.kde.org/ Source0: https://invent.kde.org/kde/kid3/-/archive/v%{version}/kid3-v%{version}.tar.gz diff --git a/src/app/kid3.appdata.xml b/src/app/kid3.appdata.xml index 0c2baedc..06024e46 100644 --- a/src/app/kid3.appdata.xml +++ b/src/app/kid3.appdata.xml @@ -165,6 +165,7 @@ <update_contact>ufleisch_at_users.sourceforge.net</update_contact> <translation type="gettext">kid3</translation> <releases> + <release version="3.8.3" date="2020-05-10"/> <release version="3.8.2" date="2020-01-23"/> <release version="3.8.1" date="2019-12-23"/> </releases> diff --git a/translations/extract-merge.sh b/translations/extract-merge.sh index 24c0ad45..630c31e4 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.8.2" # project version +PROJECTVERSION="3.8.3" # project version BUGADDR="https://bugs.kde.org" # MSGID-Bugs WDIR=`pwd` # working dir
