summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authornia <nia@pkgsrc.org>2020-07-26 22:37:12 +0000
committernia <nia@pkgsrc.org>2020-07-26 22:37:12 +0000
commit2bd205930e93725561ab1649ed5c97971a2d39dd (patch)
tree5d240d67150cde84c91e687272edbb2fe8d97020 /audio
parentb5d48ccc111cdca47eb6ac0bc1534ff50563d9f8 (diff)
downloadpkgsrc-2bd205930e93725561ab1649ed5c97971a2d39dd.tar.gz
strawberry: Update to 0.6.13
0.6.13: Bugfixes: * Fixed cut-off text in about dialog. * Fixed increasing play count when stop after track is enabled. * Fixed showing/hiding playing widget when playback is started while window is hidden. * Fixed "Show in file browser" to also work on local songs that are not in the collection. * Fixed "Show in file browser" to work with PCManFM file manager. * Fixed audio analyzer to work with S24LE and F32LE audio formats. * Fixed playlist background image not loading. * Fixed a memory leak when switching between playlists. * Removed use of HTML in systemtray tooltip on KDE, since KDE no longer renders HTML in the systemtray. Enhancements: * Replaced use of C style casts. * Adapted use of C++11 override. * Improved CMake build files. * Added new on startup options to show maximized or minimized. * Builtin TagLib code is updated and improved. * Made most icon sizes configurable in the settings, and increased default sizes for icons. * Improved fancy tabbar to use font sizes from the theme instead of fixed sizes. * Moving the currently playing song to the top when the playlist is manually shuffled. * Added "a taste of Strawbs" background image. * Fixed unit test for testing playlist model. * Added new unit tests for tagreader.
Diffstat (limited to 'audio')
-rw-r--r--audio/strawberry/Makefile4
-rw-r--r--audio/strawberry/distinfo14
-rw-r--r--audio/strawberry/patches/patch-src_analyzer_analyzerbase.cpp17
-rw-r--r--audio/strawberry/patches/patch-src_analyzer_analyzerbase.h17
4 files changed, 9 insertions, 43 deletions
diff --git a/audio/strawberry/Makefile b/audio/strawberry/Makefile
index 09a2bba6372..7e8426bfcc6 100644
--- a/audio/strawberry/Makefile
+++ b/audio/strawberry/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2020/06/09 17:49:24 nia Exp $
+# $NetBSD: Makefile,v 1.6 2020/07/26 22:37:12 nia Exp $
-DISTNAME= strawberry-0.6.12
+DISTNAME= strawberry-0.6.13
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_GITHUB:=strawberrymusicplayer/}
GITHUB_PROJECT= strawberry
diff --git a/audio/strawberry/distinfo b/audio/strawberry/distinfo
index 71041a38af7..cbc56a03670 100644
--- a/audio/strawberry/distinfo
+++ b/audio/strawberry/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.3 2020/06/09 17:49:24 nia Exp $
+$NetBSD: distinfo,v 1.4 2020/07/26 22:37:12 nia Exp $
-SHA1 (strawberry-0.6.12.tar.xz) = 57c210024785de087a9e57c07290a19567e3efaf
-RMD160 (strawberry-0.6.12.tar.xz) = 899d14f76fcf388576801b308619da25e3b818a8
-SHA512 (strawberry-0.6.12.tar.xz) = cce4fcef1cc3700dcbab9a9ac8d1cb72d2f0b1b6072002bd837825c2504b42ad2f2f8c2a23a600cf9c12c91ce6628130c166779eb6902aedb12835ff3765ee12
-Size (strawberry-0.6.12.tar.xz) = 9311104 bytes
-SHA1 (patch-src_analyzer_analyzerbase.cpp) = 80518d269382c06c88e8732c57da5a66ca3facc7
-SHA1 (patch-src_analyzer_analyzerbase.h) = 67a2c5f3a8d8153e7cfdab295e121e2140db0ab3
+SHA1 (strawberry-0.6.13.tar.xz) = 755093fc71769eaddd32d42e5fe97c5f82cbd6cf
+RMD160 (strawberry-0.6.13.tar.xz) = 80dd8cd7dbc12129b71b7847961f16c53626f860
+SHA512 (strawberry-0.6.13.tar.xz) = b3db58a30d50f74b313c0af5a492ea809d631c4152f856b19debb5f811688eb21d97ba35b58f3f1d00779fcd76220d88b4dafc32520416f7e749c6680257ad49
+Size (strawberry-0.6.13.tar.xz) = 10156576 bytes
+#SHA1 (patch-src_analyzer_analyzerbase.cpp) = 80518d269382c06c88e8732c57da5a66ca3facc7
+#SHA1 (patch-src_analyzer_analyzerbase.h) = 67a2c5f3a8d8153e7cfdab295e121e2140db0ab3
diff --git a/audio/strawberry/patches/patch-src_analyzer_analyzerbase.cpp b/audio/strawberry/patches/patch-src_analyzer_analyzerbase.cpp
deleted file mode 100644
index 7cd98e7dfe5..00000000000
--- a/audio/strawberry/patches/patch-src_analyzer_analyzerbase.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-src_analyzer_analyzerbase.cpp,v 1.1 2020/06/09 17:49:24 nia Exp $
-
-analyzerbase.cpp:(.text+0x14): undefined reference to `vtable for Analyzer::Base'
-
-XXX: Someone who understands C++ more should look at this...
-
---- src/analyzer/analyzerbase.cpp.orig 2020-04-07 14:46:17.199829715 +0000
-+++ src/analyzer/analyzerbase.cpp
-@@ -65,6 +65,8 @@ Analyzer::Base::Base(QWidget *parent, ui
- new_frame_(false),
- is_playing_(false) {}
-
-+Analyzer::Base::~Base() { delete fht_; }
-+
- void Analyzer::Base::hideEvent(QHideEvent*) { timer_.stop(); }
-
- void Analyzer::Base::showEvent(QShowEvent*) { timer_.start(timeout(), this); }
diff --git a/audio/strawberry/patches/patch-src_analyzer_analyzerbase.h b/audio/strawberry/patches/patch-src_analyzer_analyzerbase.h
deleted file mode 100644
index 1c356933a03..00000000000
--- a/audio/strawberry/patches/patch-src_analyzer_analyzerbase.h
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-src_analyzer_analyzerbase.h,v 1.1 2020/06/09 17:49:24 nia Exp $
-
-analyzerbase.cpp:(.text+0x14): undefined reference to `vtable for Analyzer::Base'
-
-XXX: Someone who understands C++ more should look at this...
-
---- src/analyzer/analyzerbase.h.orig 2020-04-07 14:46:17.199829715 +0000
-+++ src/analyzer/analyzerbase.h
-@@ -55,7 +55,7 @@ class Base : public QWidget {
- Q_OBJECT
-
- public:
-- ~Base() { delete fht_; }
-+ ~Base();
-
- uint timeout() const { return timeout_; }
-