preparations for 1.3.0

This commit is contained in:
Martin Wagner 2021-07-24 14:21:14 +02:00
parent e905abb794
commit f0789d7170
6 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@ README for mpdevil
================== ==================
Mpdevil is a simple music browser for the Music Player Daemon (MPD) which is focused on playing local music without the need of managing playlists. Instead of maintaining a client side database of your music library mpdevil loads all tags and covers on demand. So you'll never see any outdated information in the browser. Mpdevil strongly relies on tags. Mpdevil is a simple music browser for the Music Player Daemon (MPD) which is focused on playing local music without the need of managing playlists. Instead of maintaining a client side database of your music library mpdevil loads all tags and covers on demand. So you'll never see any outdated information in the browser. Mpdevil strongly relies on tags.
![ScreenShot](screenshots/mainwindow_1.1.0.png) ![ScreenShot](screenshots/mainwindow_1.3.0.png)
Features Features
-------- --------

View File

@ -41,7 +41,7 @@ if os.path.isfile("/.flatpak-info"): # test for flatpak environment
else: else:
bindtextdomain("mpdevil", localedir=None) # replace "None" by a static path if needed (e.g when installing on a non-FHS distro) bindtextdomain("mpdevil", localedir=None) # replace "None" by a static path if needed (e.g when installing on a non-FHS distro)
VERSION="1.2.1" # sync with setup.py VERSION="1.3.0" # sync with setup.py
COVER_REGEX=r"^\.?(album|cover|folder|front).*\.(gif|jpeg|jpg|png)$" COVER_REGEX=r"^\.?(album|cover|folder|front).*\.(gif|jpeg|jpg|png)$"
FALLBACK_COVER=Gtk.IconTheme.get_default().lookup_icon("media-optical", 128, Gtk.IconLookupFlags.FORCE_SVG).get_filename() FALLBACK_COVER=Gtk.IconTheme.get_default().lookup_icon("media-optical", 128, Gtk.IconLookupFlags.FORCE_SVG).get_filename()

View File

@ -23,12 +23,12 @@
</ul> </ul>
</description> </description>
<releases> <releases>
<release version="1.2.1" date="2021-05-04"/> <release version="1.3.0" date="2021-07-24"/>
</releases> </releases>
<launchable type="desktop-id">org.mpdevil.mpdevil.desktop</launchable> <launchable type="desktop-id">org.mpdevil.mpdevil.desktop</launchable>
<screenshots> <screenshots>
<screenshot type="default"> <screenshot type="default">
<image type="source" width="1008" height="1039">https://raw.githubusercontent.com/SoongNoonien/mpdevil/v1.1.0/screenshots/mainwindow_1.1.0.png</image> <image type="source" width="1058" height="1089">https://raw.githubusercontent.com/SoongNoonien/mpdevil/v1.3.0/screenshots/mainwindow_1.3.0.png</image>
</screenshot> </screenshot>
</screenshots> </screenshots>
<url type="homepage">https://github.com/SoongNoonien/mpdevil</url> <url type="homepage">https://github.com/SoongNoonien/mpdevil</url>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

@ -4,7 +4,7 @@ import DistUtilsExtra.auto
DistUtilsExtra.auto.setup( DistUtilsExtra.auto.setup(
name='mpdevil', name='mpdevil',
version='1.2.1', # sync with bin/mpdevil version='1.3.0', # sync with bin/mpdevil
author="Martin Wagner", author="Martin Wagner",
author_email="martin.wagner.dev@gmail.com", author_email="martin.wagner.dev@gmail.com",
description=('A simple music browser for MPD'), description=('A simple music browser for MPD'),