35 Commits

Author SHA1 Message Date
Martin Wagner
36c25b54c4 added missing tags to appdata 2020-12-27 22:51:16 +01:00
Martin Wagner
d2bb684253 fixed description in README.md and appdata file 2020-12-27 20:10:18 +01:00
Martin Wagner
8d01ba7501 fixed typo 2020-12-27 20:06:50 +01:00
Martin Wagner
780469e2c9 preparations for 0.9.8 2020-12-27 20:01:33 +01:00
Martin Wagner
656767e249 fixed translation in flatpak environment 2020-12-27 18:01:45 +01:00
Martin Wagner
60113344e0 set default icon name 2020-12-27 12:09:25 +01:00
Martin Wagner
170c7e6db8 fixed gschema id and path 2020-12-27 11:52:10 +01:00
Martin Wagner
8ad3ffe826 fixed .desktop icon name 2020-12-27 11:48:11 +01:00
Martin Wagner
ae0ade98a5 unified app-id and added an appdata file 2020-12-27 11:42:32 +01:00
Martin Wagner
0269fa87f0 use toggle_play in MPRISInterface.PlayPause 2020-12-24 15:22:54 +01:00
Martin Wagner
170165e0fd small fix in SearchWindow 2020-12-24 13:55:04 +01:00
Martin Wagner
612493ba90 fixed _get_loop_status 2020-12-24 13:47:28 +01:00
Martin Wagner
b6be0f0430 migrated MPRISInterface to Gio 2020-12-24 13:21:08 +01:00
Martin Wagner
7ae0f1e216 improved mpd permissons handling 2020-12-22 12:33:21 +01:00
Martin Wagner
5953d73389 fixed error in PlaybackControl._refresh_tooltips() 2020-12-19 00:14:55 +01:00
Martin Wagner
604b17ea3a added tooltips to prev/next buttons indicating number of tracks before/after current track 2020-12-18 22:12:50 +01:00
Martin Wagner
70ca48b7cc preparations for 0.9.7 2020-12-13 19:28:53 +01:00
Martin Wagner
b407f0466d added missing return 2020-12-13 13:44:25 +01:00
Martin Wagner
e6c292f658 removed unneeded stop_flag check in AlbumWindow._refresh() 2020-12-13 11:53:16 +01:00
Martin Wagner
ebe73cc4ea updated readme 2020-12-12 13:30:12 +01:00
Martin Wagner
9e4068f399 unified logic of button and key press handling 2020-12-12 13:04:47 +01:00
Martin Wagner
fd822aad94 changed FocusFrame design 2020-12-10 22:39:46 +01:00
Martin Wagner
4257369486 fixed css priority 2020-12-09 19:12:12 +01:00
Martin Wagner
d2fc1aff18 increased max height of SongPopover 2020-12-08 20:03:40 +01:00
Martin Wagner
79e7ea5973 fixed height allocation of AlbumPopover 2020-12-08 18:27:49 +01:00
Martin Wagner
33e57b9e7f fixed max size of SongPopover and AlbumPopover 2020-12-06 22:37:48 +01:00
Martin Wagner
58a7385186 added missing comment 2020-12-06 15:41:54 +01:00
Martin Wagner
d60d600df2 small fixes in SongPopover and AlbumPopover 2020-12-06 15:36:49 +01:00
Martin Wagner
090c7c814c made album loading faster (~40% less time) 2020-12-06 14:11:40 +01:00
Martin Wagner
b76631e98a improved key and mouse button bindings in AlbumWindow and SongsView 2020-12-06 12:03:49 +01:00
Martin Wagner
2633c841cd replaced AlbumDialog with AlbumPopover 2020-12-06 00:45:25 +01:00
Martin Wagner
e8d19066fb removed unneeded event emit 2020-12-05 14:02:14 +01:00
Martin Wagner
7e7d6c673f fixed cover loading error when no music dir is specified 2020-11-20 21:39:16 +01:00
Martin Wagner
2cd18d931f enabled search in playlist 2020-11-16 18:22:23 +01:00
Martin Wagner
52de223b0f do not hang on GLib error see: #14 2020-11-13 19:06:01 +01:00
16 changed files with 654 additions and 514 deletions

View File

@@ -1,21 +1,23 @@
README for mpdevil README for mpdevil
================== ==================
mpdevil is focused on playing your local music directly instead of managing playlists or playing network streams. So it neither supports saving playlists nor restoring them. Therefore mpdevil is mainly a music browser which aims to be easy to use. mpdevil dosen't store any client side database of your music library. Instead all tags and covers get presented to you in real time. So you'll never see any outdated information in your 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_0.9.5.png) ![ScreenShot](screenshots/mainwindow_0.9.5.png)
Features Features
-------- --------
- play songs without doubleclicking - display large covers
- search songs in your music library - play songs without doubleclick
- manage multiple mpd servers - lyrics from 'www.letras.mus.br'
- filter by genre
- control with media keys
- displays covers
- sends notifications on title change
- fetches lyrics from 'www.letras.mus.br'
- MPRIS interface (based on mpDris2) - MPRIS interface (based on mpDris2)
- notifications on title change
- basic queue manipulation (move and delete single tracks)
- search songs
- filter by genre
- media keys support
- many shortcuts
- manage multiple mpd servers
See: https://github.com/SoongNoonien/mpdevil/wiki/Usage See: https://github.com/SoongNoonien/mpdevil/wiki/Usage
@@ -59,7 +61,6 @@ Python modules:
- gi (Gtk, Gio, Gdk, GdkPixbuf, Pango, GObject, GLib, Notify) - gi (Gtk, Gio, Gdk, GdkPixbuf, Pango, GObject, GLib, Notify)
- requests - requests
- bs4 (beautifulsoup) - bs4 (beautifulsoup)
- dbus
Run: Run:
```bash ```bash
@@ -74,5 +75,5 @@ sudo update-desktop-database
Translation Translation
----------- -----------
mpdevil is currently available in English, German and Dutch. If you speek another language you can easily translate mpdevil by using `poedit`. Just import `po/mpdevil.pot` from this repo into `poedit`. To test your translation copy the new `.po` file into the `po` directory of your cloned mpdevil repo and proceed as described in the Building section. To get your translation integrated into mpdevil just send me an e-mail or create a pull request. Link to `poedit`: https://poedit.net/ Mpdevil is currently available in English, German and Dutch. If you speek another language you can easily translate mpdevil by using `poedit`. Just import `po/mpdevil.pot` from this repo into `poedit`. To test your translation copy the new `.po` file into the `po` directory of your cloned mpdevil repo and proceed as described in the Building section. To get your translation integrated into mpdevil just send me an e-mail or create a pull request. Link to `poedit`: https://poedit.net/

File diff suppressed because it is too large Load Diff

View File

Before

Width:  |  Height:  |  Size: 9.7 KiB

After

Width:  |  Height:  |  Size: 9.7 KiB

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

Before

Width:  |  Height:  |  Size: 9.7 KiB

After

Width:  |  Height:  |  Size: 9.7 KiB

View File

@@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2020 Martin Wagner <martin.wagner.dev@gmail.com> -->
<component type="desktop-application">
<id>org.mpdevil.mpdevil</id>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0</project_license>
<name>mpdevil</name>
<summary>A simple music browser for MPD</summary>
<description>
<p>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.</p>
<ul>
<li>display large covers</li>
<li>play songs without doubleclick</li>
<li>fetch lyrics</li>
<li>MPRIS interface</li>
<li>notifications on title change</li>
<li>basic queue manipulation (move and delete single tracks)</li>
<li>search songs</li>
<li>filter by genre</li>
<li>media keys support</li>
<li>many shortcuts</li>
<li>manage multiple mpd servers</li>
</ul>
</description>
<releases>
<release version="0.9.8" date="2020-12-27">
<description>
</description>
</release>
</releases>
<launchable type="desktop-id">org.mpdevil.mpdevil.desktop</launchable>
<screenshots>
<screenshot type="default">
<image type="source" width="1016" height="1024">https://raw.githubusercontent.com/SoongNoonien/mpdevil/v0.9.7/screenshots/mainwindow_0.9.5.png</image>
</screenshot>
</screenshots>
<url type="homepage">https://github.com/SoongNoonien/mpdevil</url>
<url type="bugtracker">https://github.com/SoongNoonien/mpdevil/issues</url>
<content_rating type="oars-1.1" />
<provides>
<binary>mpdevil</binary>
</provides>
<update_contact>martin.wagner.dev@gmail.com</update_contact>
</component>

View File

@@ -3,7 +3,7 @@ Name=mpdevil
GenericName=MPD Client GenericName=MPD Client
_Comment=A simple music browser for MPD _Comment=A simple music browser for MPD
Exec=mpdevil Exec=mpdevil
Icon=mpdevil Icon=org.mpdevil.mpdevil
Terminal=false Terminal=false
Type=Application Type=Application
StartupNotify=true StartupNotify=true

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<schemalist> <schemalist>
<schema id="org.mpdevil" path="/org/mpdevil/"> <schema id="org.mpdevil.mpdevil" path="/org/mpdevil/mpdevil/">
<key type="b" name="maximize"> <key type="b" name="maximize">
<default>false</default> <default>false</default>
<summary>Maximize mpdevil on startup</summary> <summary>Maximize mpdevil on startup</summary>

View File

@@ -1,4 +1,4 @@
[encoding: UTF-8] [encoding: UTF-8]
bin/mpdevil bin/mpdevil
data/mpdevil.desktop.in data/org.mpdevil.mpdevil.desktop.in

View File

@@ -4,22 +4,23 @@ import DistUtilsExtra.auto
DistUtilsExtra.auto.setup( DistUtilsExtra.auto.setup(
name='mpdevil', name='mpdevil',
version='0.9.6', # sync with bin/mpdevil version='0.9.8', # 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'),
url="https://github.com/SoongNoonien/mpdevil", url="https://github.com/SoongNoonien/mpdevil",
license='GPL-3.0', license='GPL-3.0',
data_files=[ data_files=[
('share/icons/hicolor/16x16/apps/', ['data/icons/16x16/mpdevil.png']), ('share/metainfo/', ['data/org.mpdevil.mpdevil.appdata.xml']),
('share/icons/hicolor/22x22/apps/', ['data/icons/22x22/mpdevil.png']), ('share/icons/hicolor/16x16/apps/', ['data/icons/16x16/org.mpdevil.mpdevil.png']),
('share/icons/hicolor/24x24/apps/', ['data/icons/24x24/mpdevil.png']), ('share/icons/hicolor/22x22/apps/', ['data/icons/22x22/org.mpdevil.mpdevil.png']),
('share/icons/hicolor/32x32/apps/', ['data/icons/32x32/mpdevil.png']), ('share/icons/hicolor/24x24/apps/', ['data/icons/24x24/org.mpdevil.mpdevil.png']),
('share/icons/hicolor/48x48/apps/', ['data/icons/48x48/mpdevil.png']), ('share/icons/hicolor/32x32/apps/', ['data/icons/32x32/org.mpdevil.mpdevil.png']),
('share/icons/hicolor/64x64/apps/', ['data/icons/64x64/mpdevil.png']), ('share/icons/hicolor/48x48/apps/', ['data/icons/48x48/org.mpdevil.mpdevil.png']),
('share/icons/hicolor/128x128/apps/', ['data/icons/128x128/mpdevil.png']), ('share/icons/hicolor/64x64/apps/', ['data/icons/64x64/org.mpdevil.mpdevil.png']),
('share/icons/hicolor/256x256/apps/', ['data/icons/256x256/mpdevil.png']), ('share/icons/hicolor/128x128/apps/', ['data/icons/128x128/org.mpdevil.mpdevil.png']),
('share/icons/hicolor/scalable/apps/', ['data/icons/scalable/mpdevil.svg']) ('share/icons/hicolor/256x256/apps/', ['data/icons/256x256/org.mpdevil.mpdevil.png']),
('share/icons/hicolor/scalable/apps/', ['data/icons/scalable/org.mpdevil.mpdevil.svg'])
], ],
) )