Compare commits
4 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 80b890bb13 | |||
| 8105a02436 | |||
| c48ddc7850 | |||
| 9475c0fe14 |
3
mpris-ctl-v1.0.1.tar.gz
Normal file
3
mpris-ctl-v1.0.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:814dd29dc87ca713c48f4abbbb7b0188e7d0de857c16ec4594dec9a2ba4bf3db
|
||||
size 15276
|
||||
@@ -1,3 +1,60 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 4 12:59:00 UTC 2025 - Martin Hauke <mardnh@gmx.de>
|
||||
|
||||
- Update to version 1.0.1
|
||||
* New version to release the improvements made by @mcepl to the
|
||||
install target.
|
||||
- Drop patch:
|
||||
* openSUSE-install.patch (not longer needed)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 23 19:28:12 UTC 2025 - Matej Cepl <mcepl@cepl.eu>
|
||||
|
||||
- Update to 1.0.0:
|
||||
Ooops, we've run out of minor versions
|
||||
- The only significant addition to this release is the "raise"
|
||||
command that can be used to make players pop up after being
|
||||
minimized or hidden.
|
||||
- Update to 0.9.100:
|
||||
Shuffle boogie
|
||||
- The shuffle command was broken for a while in some builds
|
||||
(maybe even from the start?), resulting in a crash from
|
||||
inside the DBUS library. We fixed it, and shuffle can safely
|
||||
be used again.
|
||||
- Update to 0.9.99.1:
|
||||
Absolute unit of a volume
|
||||
- This release only contains a fix for parsing absolute volumes
|
||||
from the command arguments.
|
||||
- Update to 0.9.99:
|
||||
Pipe up
|
||||
- Added a new command for getting and setting the volume.
|
||||
- Added formatting for time properties.
|
||||
- Update to 0.9.98:
|
||||
Still seeking the best in others
|
||||
- Fixed an issue with parsing negative seek times.
|
||||
- Update to 0.9.96:
|
||||
The final countdown (take 2)
|
||||
- Added commands to change shuffle and repeat modes.
|
||||
- Improved how we're showing the metadata values that are
|
||||
string arrays (like artist, and album artist).
|
||||
- Fixed a double free for a dbus reply on seek method.
|
||||
- Update to 0.9.95:
|
||||
The final countdown (take 1)
|
||||
- Added commands to change shuffle and repeat modes.
|
||||
- Improved how we're showing the metadata values that are
|
||||
string arrays (like artist, and album artist).
|
||||
- Update to 0.9:
|
||||
The "Those who seek, will find"
|
||||
- Add "seek" command capable of back or forward seeking into
|
||||
current track.
|
||||
- Improve active/inactive/named player selection for commands.
|
||||
- Improve documentation.
|
||||
- Update to 0.8.6:
|
||||
The "Backstreet's back all right"
|
||||
- Fix a crash when loading player names from the --player flag.
|
||||
- Many thanx and apologies to github users vaygr and JosefLitos
|
||||
for their bug reports and reminders.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 4 14:51:36 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package mpris-ctl
|
||||
#
|
||||
# Copyright (c) 2022 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -17,15 +17,12 @@
|
||||
|
||||
|
||||
Name: mpris-ctl
|
||||
Version: 0.8.5
|
||||
Version: 1.0.1
|
||||
Release: 0
|
||||
Summary: Basic mpris player control for linux command line
|
||||
License: MIT
|
||||
URL: https://github.com/mariusor/mpris-ctl
|
||||
Source: https://github.com/mariusor/mpris-ctl/archive/refs/tags/v%{version}.tar.gz
|
||||
# PATCH-FIX-UPSTREAM openSUSE-install.patch gh#mariusor/mpris-ctl#21 mcepl@suse.com
|
||||
# Fix Makefile for install to create required directories
|
||||
Patch0: openSUSE-install.patch
|
||||
URL: https://git.sr.ht/~mariusor/mpris-ctl
|
||||
Source: https://git.sr.ht/~mariusor/mpris-ctl/archive/v%{version}.tar.gz#/%{name}-v%{version}.tar.gz
|
||||
BuildRequires: dbus-1-devel
|
||||
BuildRequires: scdoc
|
||||
|
||||
@@ -34,7 +31,7 @@ Minimalistic cli tool for controlling audio players exposing a MPRIS
|
||||
DBus interface, targeted at keyboard based WMs.
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
%autosetup -p1 -n %{name}-v%{version}
|
||||
|
||||
%build
|
||||
%make_build
|
||||
|
||||
@@ -1,17 +0,0 @@
|
||||
---
|
||||
Makefile | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -82,8 +82,8 @@ clean:
|
||||
$(RM) $(BIN_NAME).1
|
||||
|
||||
install: $(BIN_NAME) $(BIN_NAME).1
|
||||
- install $(BIN_NAME) $(DESTDIR)$(INSTALL_PREFIX)/bin
|
||||
- install -m 644 $(BIN_NAME).1 $(DESTDIR)$(INSTALL_PREFIX)/$(MAN_DIR)/man1
|
||||
+ install -m 755 -D $(BIN_NAME) $(DESTDIR)$(INSTALL_PREFIX)/bin/$(BIN_NAME)
|
||||
+ install -m 644 -D $(BIN_NAME).1 $(DESTDIR)$(INSTALL_PREFIX)/$(MAN_DIR)/man1/$(BIN_NAME).1
|
||||
|
||||
uninstall:
|
||||
$(RM) $(DESTDIR)$(INSTALL_PREFIX)/bin/$(BIN_NAME)
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9194f45656637eb9a6b578f81cc192bbd06f288e3e161ad347348fecae066ce2
|
||||
size 12037
|
||||
Reference in New Issue
Block a user