Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/audio/strawberry strawberry: Update to 0.6.13



details:   https://anonhg.NetBSD.org/pkgsrc/rev/e7d31c0624c1
branches:  trunk
changeset: 436068:e7d31c0624c1
user:      nia <nia%pkgsrc.org@localhost>
date:      Sun Jul 26 22:37:12 2020 +0000

description:
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:

 audio/strawberry/Makefile                                    |   4 +-
 audio/strawberry/distinfo                                    |  14 ++++----
 audio/strawberry/patches/patch-src_analyzer_analyzerbase.cpp |  17 ------------
 audio/strawberry/patches/patch-src_analyzer_analyzerbase.h   |  17 ------------
 4 files changed, 9 insertions(+), 43 deletions(-)

diffs (73 lines):

diff -r 0aadf8885d48 -r e7d31c0624c1 audio/strawberry/Makefile
--- a/audio/strawberry/Makefile Sun Jul 26 20:47:47 2020 +0000
+++ b/audio/strawberry/Makefile Sun Jul 26 22:37:12 2020 +0000
@@ -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 -r 0aadf8885d48 -r e7d31c0624c1 audio/strawberry/distinfo
--- a/audio/strawberry/distinfo Sun Jul 26 20:47:47 2020 +0000
+++ b/audio/strawberry/distinfo Sun Jul 26 22:37:12 2020 +0000
@@ -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 -r 0aadf8885d48 -r e7d31c0624c1 audio/strawberry/patches/patch-src_analyzer_analyzerbase.cpp
--- a/audio/strawberry/patches/patch-src_analyzer_analyzerbase.cpp      Sun Jul 26 20:47:47 2020 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -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 -r 0aadf8885d48 -r e7d31c0624c1 audio/strawberry/patches/patch-src_analyzer_analyzerbase.h
--- a/audio/strawberry/patches/patch-src_analyzer_analyzerbase.h        Sun Jul 26 20:47:47 2020 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -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_; }
- 



Home | Main Index | Thread Index | Old Index