mirror of
https://github.com/void-linux/void-packages.git
synced 2025-08-02 10:52:57 +02:00
supersonic-desktop: update to 0.16.0.
This commit is contained in:
parent
9b1257640f
commit
2d74567d64
2 changed files with 3 additions and 27 deletions
|
@ -1,24 +0,0 @@
|
|||
From 989bc886466076d452914d746c150eb0ae91c9c7 Mon Sep 17 00:00:00 2001
|
||||
From: Simon Symeonidis <lethaljellybean@gmail.com>
|
||||
Date: Wed, 7 May 2025 19:36:22 -0400
|
||||
Subject: [PATCH] Change log.Println statement to log.Printf
|
||||
|
||||
This changes a statement from Println, to Printf, as it seems the
|
||||
original intention was to format the error.
|
||||
---
|
||||
ui/browsing/trackspage.go | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/ui/browsing/trackspage.go b/ui/browsing/trackspage.go
|
||||
index eaf34563..3e42edc9 100644
|
||||
--- a/ui/browsing/trackspage.go
|
||||
+++ b/ui/browsing/trackspage.go
|
||||
@@ -210,7 +210,7 @@ func (t *TracksPage) playRandomSongs() {
|
||||
go func() {
|
||||
err := t.contr.App.PlaybackManager.PlayRandomSongs("")
|
||||
if err != nil {
|
||||
- log.Println("error playing random tracks: %v", err)
|
||||
+ log.Printf("error playing random tracks: %v", err)
|
||||
fyne.Do(func() {
|
||||
t.contr.ToastProvider.ShowErrorToast(lang.L("Unable to play random tracks"))
|
||||
})
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'supersonic-desktop'
|
||||
pkgname=supersonic-desktop
|
||||
version=0.15.2
|
||||
revision=2
|
||||
version=0.16.0
|
||||
revision=1
|
||||
build_style=go
|
||||
go_import_path="github.com/dweymouth/supersonic"
|
||||
hostmakedepends="pkg-config"
|
||||
|
@ -12,7 +12,7 @@ license="GPL-3.0-or-later"
|
|||
homepage="https://github.com/dweymouth/supersonic"
|
||||
changelog="https://raw.githubusercontent.com/dweymouth/supersonic/refs/heads/main/CHANGELOG.md"
|
||||
distfiles="https://github.com/dweymouth/supersonic/archive/v${version}.tar.gz"
|
||||
checksum=5d1a4a66cc5715e3995a712996fb31b426bf933fcb3cb9731b0a9548975e4ee1
|
||||
checksum=fae1911ad67b69e6ce12027d06b8d1ba02d51c55041e9bd80cd502cd1b43e0c1
|
||||
|
||||
post_install() {
|
||||
mv "${DESTDIR}/usr/bin/supersonic" "${DESTDIR}/usr/bin/supersonic-desktop"
|
||||
|
|
Loading…
Add table
Reference in a new issue