Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Nate Graham
Kid3
Commits
db386a95
Commit
db386a95
authored
Dec 15, 2019
by
Urs Fleisch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prepare for next release.
parent
e98d1570
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
42 additions
and
12 deletions
+42
-12
CMakeLists.txt
CMakeLists.txt
+3
-3
ChangeLog
ChangeLog
+24
-0
Doxyfile
Doxyfile
+1
-1
deb/changelog
deb/changelog
+6
-0
doc/de/index.docbook
doc/de/index.docbook
+2
-2
doc/en/index.docbook
doc/en/index.docbook
+2
-2
kid3.lsm
kid3.lsm
+3
-3
kid3.spec
kid3.spec
+1
-1
No files found.
CMakeLists.txt
View file @
db386a95
...
...
@@ -101,10 +101,10 @@ endif()
# Version information
set
(
CPACK_PACKAGE_VERSION_MAJOR 3
)
set
(
CPACK_PACKAGE_VERSION_MINOR 8
)
set
(
CPACK_PACKAGE_VERSION_PATCH
0
)
set
(
CPACK_PACKAGE_VERSION_PATCH
1
)
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 "git2019
0310
")
#set(CPACK_PACKAGE_VERSION "git2019
1214
")
set
(
RELEASE_YEAR 2019
)
# 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 1
6
)
set
(
QT_ANDROID_APP_VERSION_CODE 1
7
)
else
()
set
(
WITH_DATAROOTDIR_DEFAULT
"share"
)
set
(
WITH_DOCDIR_DEFAULT
"share/doc/kid3-qt"
)
...
...
ChangeLog
View file @
db386a95
Mon Dec 23 17:38:53 CET 2019 Urs Fleisch <ufleisch@users.sourceforge.net>
* Release 3.8.1
* New:
+ Show number of files in status bar.
+ Support regular expressions in string replacements.
* Improved:
+ Support format codes in "Filename for cover" in "Extract Album Art"
script.
+ The order of string replacements is respected.
+ Show RVA2 identifier in frame table.
+ Show UFID owner in frame table.
+ Support setting file name with "Import from Tags".
* Fixed:
+ Android: Accept changes when focus is lost and Enter not pressed.
+ Self-contained Linux package: Correctly change RPATH in plugins.
+ Self-contained Linux package: Support composed accented characters.
+ QML scripts: Skip "--" argument, which is used when passing
parameters from qml tool.
+ Show UFID values in frame table.
Sat Aug 24 15:57:41 CEST 2019 Urs Fleisch <ufleisch@users.sourceforge.net>
* Release 3.8.0
...
...
Doxyfile
View file @
db386a95
...
...
@@ -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.
0
PROJECT_NUMBER = 3.8.
1
# 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
...
...
deb/changelog
View file @
db386a95
kid3 (3.8.1-0) unstable; urgency=low
* New upstream release.
-- Urs Fleisch <ufleisch@users.sourceforge.net> Mon, 23 Dec 2019 17:38:53 +0100
kid3 (3.8.0-0) unstable; urgency=low
* New upstream release.
...
...
doc/de/index.docbook
View file @
db386a95
...
...
@@ -27,8 +27,8 @@
</copyright>
<legalnotice
id=
"fdl-notice"
>
&FDLNotice;
</legalnotice>
<date>
2019-
08
-2
4
</date>
<releaseinfo>
3.8.
0
</releaseinfo>
<date>
2019-
12
-2
3
</date>
<releaseinfo>
3.8.
1
</releaseinfo>
<abstract>
<para>
...
...
doc/en/index.docbook
View file @
db386a95
...
...
@@ -27,8 +27,8 @@
</copyright>
<legalnotice
id=
"fdl-notice"
>
&FDLNotice;
</legalnotice>
<date>
2019-
08
-2
4
</date>
<releaseinfo>
3.8.
0
</releaseinfo>
<date>
2019-
12
-2
3
</date>
<releaseinfo>
3.8.
1
</releaseinfo>
<abstract>
<para>
...
...
kid3.lsm
View file @
db386a95
Begin4
Title: Kid3 -- Efficient Audio Tagger
Version: 3.8.
0
Entered-date: 2019-
08
-2
4
Version: 3.8.
1
Entered-date: 2019-
12
-2
3
Description: Audio tagger to edit ID3v1.1, ID3v2.3, ID3v2.4, Ogg/Vorbis, Opus, DSF
FLAC, MPC, APE, MP4/AAC, MP2, Speex, TrueAudio, WavPack, WMA, WAV
and AIFF tags, multiple files, generate tags from file names
...
...
@@ -12,7 +12,7 @@ Maintained-by: Urs Fleisch <ufleisch@users.sourceforge.net>
Home-page: http://kid3.sourceforge.net
Alternate-site: http://www.kde-apps.org/content/show.php?content=10415
Primary-site: http://www.sourceforge.net/projects/kid3
http://prdownloads.sourceforge.net/kid3/kid3-3.8.
0
.tar.gz?download
http://prdownloads.sourceforge.net/kid3/kid3-3.8.
1
.tar.gz?download
Platform: Linux, Windows.
Copying-policy: GPL
End
kid3.spec
View file @
db386a95
...
...
@@ -6,7 +6,7 @@ Name: kid3
License: GPL
Group: Applications/Multimedia
Summary: Efficient ID3 tag editor
Version: 3.8.
0
Version: 3.8.
1
Release: 1%{?dist}
URL: http://kid3.sourceforge.net/
Source0: http://downloads.sourceforge.net/kid3/%{name}-%{version}.tar.gz
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment