Accepting request 1233272 from multimedia:apps
- Add checks for SUSE Version - Switch suggestion from spotifyd to librespot - Move to QT6 - Update to version 3.12 Fixes * Fixed show/hide for "Added" column not being properly saved (#219, #267). * Fixed some crashes related to starting Spotify client (#251, #252). * Fixed search not loading results properly (#268). * Fixed showing "0 tracks" in album context menu for non-cached albums until loaded. * Fixed showing empty invalid playlists in the list of playlists. * Fixed layout breaking on long status messages. * Fixed sometimes showing a failed status for successful actions. Changes * Track and artist can now be clicked in now playing preview (#253). * Added option to like albums from context menu (#255). * Improved performance when loading artist albums. * Added support for setting custom window and tray icon titles. * Reworked "New Releases" to fetch everything as albums. * Improved performance when loading album tracks. * Removed support for saving passwords, as it's no longer supported. * Removed optional keychain dependency. * Added support for new OAuth authentication. * Now requires librespot v0.5.0 or newer. * Removed deprecated "Audio features". * Improved performance when loading playlists. * Now shows "Open/Close" in tray icon when "Close to tray" is enabled. * Improved error messages from Spotify client. * No longer shows "Related" artists when not available. OBS-URL: https://build.opensuse.org/request/show/1233272 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/spotify-qt?expand=0&rev=6
This commit is contained in:
commit
d587826f6a
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:91a2097fad58d87b47df7e328ec2fe4254ad463bfeaeb2d8d2e3afc5fbc2d31a
|
||||
size 1923930
|
3
spotify-qt-3.12.tar.gz
Normal file
3
spotify-qt-3.12.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5782ff9cd854aa92b4ba49837d3ed4b5ada0427fd440e16866e9727abcd9df62
|
||||
size 1916287
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 20 13:48:28 UTC 2024 - Jens K. <karatekhd@opensuse.org>
|
||||
|
||||
- Add checks for SUSE Version
|
||||
- Switch suggestion from spotifyd to librespot
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 14 22:54:05 UTC 2024 - Jens K. <karatekhd@opensuse.org>
|
||||
|
||||
- Move to QT6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 14 22:23:44 UTC 2024 - Jens K. <karatekhd@opensuse.org>
|
||||
|
||||
- Update to version 3.12
|
||||
Fixes
|
||||
* Fixed show/hide for "Added" column not being properly saved (#219, #267).
|
||||
* Fixed some crashes related to starting Spotify client (#251, #252).
|
||||
* Fixed search not loading results properly (#268).
|
||||
* Fixed showing "0 tracks" in album context menu for non-cached albums until loaded.
|
||||
* Fixed showing empty invalid playlists in the list of playlists.
|
||||
* Fixed layout breaking on long status messages.
|
||||
* Fixed sometimes showing a failed status for successful actions.
|
||||
|
||||
Changes
|
||||
* Track and artist can now be clicked in now playing preview (#253).
|
||||
* Added option to like albums from context menu (#255).
|
||||
* Improved performance when loading artist albums.
|
||||
* Added support for setting custom window and tray icon titles.
|
||||
* Reworked "New Releases" to fetch everything as albums.
|
||||
* Improved performance when loading album tracks.
|
||||
* Removed support for saving passwords, as it's no longer supported.
|
||||
* Removed optional keychain dependency.
|
||||
* Added support for new OAuth authentication.
|
||||
* Now requires librespot v0.5.0 or newer.
|
||||
* Removed deprecated "Audio features".
|
||||
* Improved performance when loading playlists.
|
||||
* Now shows "Open/Close" in tray icon when "Close to tray" is enabled.
|
||||
* Improved error messages from Spotify client.
|
||||
* No longer shows "Related" artists when not available.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 1 23:42:13 UTC 2024 - Jens K. <karatekhd@opensuse.org>
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: spotify-qt
|
||||
Version: 3.11
|
||||
Version: 3.12
|
||||
Release: 0
|
||||
Summary: Lightweight Spotify client using Qt
|
||||
License: GPL-3.0-only
|
||||
@ -25,11 +25,24 @@ URL: https://github.com/kraxarn/spotify-qt
|
||||
Source: https://github.com/kraxarn/spotify-qt/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||
Group: Productivity/Multimedia/Sound/Players
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: libsecret
|
||||
BuildRequires: make
|
||||
%if 0%{?suse_version} >= 1600 && 0%{?is_opensuse}
|
||||
BuildRequires: kf6-kcrash-devel
|
||||
BuildRequires: cmake(Qt6Core)
|
||||
BuildRequires: cmake(Qt6DBus)
|
||||
BuildRequires: cmake(Qt6Network)
|
||||
BuildRequires: cmake(Qt6Svg)
|
||||
%else
|
||||
BuildRequires: cmake(Qt5Core)
|
||||
BuildRequires: cmake(Qt5DBus)
|
||||
BuildRequires: cmake(Qt5Network)
|
||||
BuildRequires: cmake(Qt5Svg)
|
||||
Suggests: spotifyd
|
||||
%endif
|
||||
Suggests: libsecret
|
||||
%if 0%{?suse_version} >= 1600 && 0%{?is_opensuse}
|
||||
Suggests: librespot
|
||||
%endif
|
||||
|
||||
%description
|
||||
An unofficial Spotify client using Qt as a simpler, lighter alternative to the official client, inspired by spotify-tui. Much like spotify-tui, you need an actual Spotify client running, for example spotifyd, which can be configured from within the app. Also like other clients, controlling music playback requires Spotify Premium.
|
||||
|
Loading…
Reference in New Issue
Block a user