Accepting request 947431 from multimedia:apps
OBS-URL: https://build.opensuse.org/request/show/947431 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/spotify-qt?expand=0&rev=2
This commit is contained in:
commit
835c478f30
@ -1,3 +1,44 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jan 18 09:46:02 UTC 2022 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||||
|
|
||||||
|
- Clean up spec file a bit:
|
||||||
|
+ Drop empty post/postubn scriptlets
|
||||||
|
+ Remove not used requires on hicolor-icon-theme,
|
||||||
|
shared-mime-info, and update-desktop-files.
|
||||||
|
+ Package license file.
|
||||||
|
+ Set license to GPL-3.0-only: there is no indication that
|
||||||
|
GPL-3.0-or-later is valid.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 17 13:32:14 UTC 2022 - Jens K. <karatekhd@opensuse.org>
|
||||||
|
|
||||||
|
- Update to version 3.8:
|
||||||
|
- Fixes
|
||||||
|
* Fixed empty context menu when right-clicking empty spaces.
|
||||||
|
* Fixed not updating playlist when deleting a track.
|
||||||
|
* Fixed incorrect track order after deleting a track in a playlist.
|
||||||
|
* Fixed paging not working with some lists.
|
||||||
|
* Fixed not removing extra spacing when using system title bar.
|
||||||
|
* Fixed issues with followed playlists by other users not updating properly.
|
||||||
|
* Fixed issue when attempting to search for nothing.
|
||||||
|
* Fixed issues resuming playback when last used device was no longer available.
|
||||||
|
- Changes
|
||||||
|
* Added an option to show desktop notification on track change.
|
||||||
|
* Added support for repeating a single track.
|
||||||
|
* Added support for podcasts.
|
||||||
|
* New and improved volume slider.
|
||||||
|
* Already opened artists are now re-used.
|
||||||
|
* Added support for mirrored title bar buttons.
|
||||||
|
* Added support for creating new playlists.
|
||||||
|
* Added support for following, and unfollowing, playlists.
|
||||||
|
* New status messages, replacing the status bar and desktop notifications.
|
||||||
|
* Added a custom font for the custom dark theme.
|
||||||
|
* Now continues playing tracks from search results.
|
||||||
|
* Now shows more artists links, for example social media links.
|
||||||
|
* Removed broken "PulseAudio volume control" setting.
|
||||||
|
* Tracks in albums now show an added date for when the album released.
|
||||||
|
* New categories in settings for logs and for troubleshooting.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Aug 15 21:16:01 UTC 2021 - Jens K. <jens@karatek.net>
|
Sun Aug 15 21:16:01 UTC 2021 - Jens K. <jens@karatek.net>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package spotify-qt
|
# spec file for package spotify-qt
|
||||||
#
|
#
|
||||||
# Copyright (c) 2021 SUSE LLC
|
# Copyright (c) 2022 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,26 +17,19 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: spotify-qt
|
Name: spotify-qt
|
||||||
Version: 3.7
|
Version: 3.8
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Lightweight Spotify client using Qt
|
Summary: Lightweight Spotify client using Qt
|
||||||
License: GPL-3.0-or-later
|
License: GPL-3.0-only
|
||||||
URL: https://github.com/kraxarn/spotify-qt
|
URL: https://github.com/kraxarn/spotify-qt
|
||||||
Source: https://github.com/kraxarn/spotify-qt/archive/refs/tags/v%{version}.tar.gz
|
Source: https://github.com/kraxarn/spotify-qt/archive/refs/tags/v%{version}.tar.gz
|
||||||
Group: Productivity/Multimedia/Sound/Players
|
Group: Productivity/Multimedia/Sound/Players
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: make
|
||||||
BuildRequires: cmake(Qt5Core)
|
BuildRequires: cmake(Qt5Core)
|
||||||
BuildRequires: cmake(Qt5Svg)
|
BuildRequires: cmake(Qt5Network)
|
||||||
BuildRequires: cmake(Qt5Network)
|
BuildRequires: cmake(Qt5Svg)
|
||||||
BuildRequires: gcc-c++
|
Suggests: spotifyd
|
||||||
BuildRequires: make
|
|
||||||
Requires: hicolor-icon-theme
|
|
||||||
Requires(post): hicolor-icon-theme
|
|
||||||
Requires(post): shared-mime-info
|
|
||||||
Requires(postun): hicolor-icon-theme
|
|
||||||
Requires(postun): shared-mime-info
|
|
||||||
Requires(post): update-desktop-files
|
|
||||||
Requires(postun): update-desktop-files
|
|
||||||
BuildRequires: update-desktop-files
|
|
||||||
|
|
||||||
%description
|
%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.
|
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.
|
||||||
@ -51,17 +44,15 @@ An unofficial Spotify client using Qt as a simpler, lighter alternative to the o
|
|||||||
%install
|
%install
|
||||||
%cmake_install
|
%cmake_install
|
||||||
|
|
||||||
%post
|
|
||||||
%postun
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%ctest
|
%ctest
|
||||||
|
|
||||||
%files
|
%files
|
||||||
|
%license license
|
||||||
%{_bindir}/%{name}
|
%{_bindir}/%{name}
|
||||||
%{_datadir}/applications/%{name}.desktop
|
%{_datadir}/applications/%{name}.desktop
|
||||||
%{_datadir}/icons/hicolor/
|
%{_datadir}/icons/hicolor/
|
||||||
%{_datadir}/icons/hicolor/scalable/
|
%{_datadir}/icons/hicolor/scalable/
|
||||||
%{_datadir}/icons/hicolor/scalable/apps/%{name}.svg
|
%{_datadir}/icons/hicolor/scalable/apps/%{name}.svg
|
||||||
%changelog
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:5338c83d49e3aefd287e78856666f42e4f921631bcc9fbe13a2ec8543c835ad8
|
|
||||||
size 811287
|
|
3
v3.8.tar.gz
Normal file
3
v3.8.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:deb12800b9fb4f501f8dfc97a2fdc4989849fe8bbf6f38d79503214e03afe5ad
|
||||||
|
size 1128273
|
Loading…
Reference in New Issue
Block a user