head 1.2; access; symbols pkgsrc-2026Q1:1.2.0.20 pkgsrc-2026Q1-base:1.2 pkgsrc-2025Q4:1.2.0.18 pkgsrc-2025Q4-base:1.2 pkgsrc-2025Q3:1.2.0.16 pkgsrc-2025Q3-base:1.2 pkgsrc-2025Q2:1.2.0.14 pkgsrc-2025Q2-base:1.2 pkgsrc-2025Q1:1.2.0.12 pkgsrc-2025Q1-base:1.2 pkgsrc-2024Q4:1.2.0.10 pkgsrc-2024Q4-base:1.2 pkgsrc-2024Q3:1.2.0.8 pkgsrc-2024Q3-base:1.2 pkgsrc-2024Q2:1.2.0.6 pkgsrc-2024Q2-base:1.2 pkgsrc-2024Q1:1.2.0.4 pkgsrc-2024Q1-base:1.2 pkgsrc-2023Q4:1.2.0.2 pkgsrc-2023Q4-base:1.2 pkgsrc-2023Q3:1.1.0.6 pkgsrc-2023Q3-base:1.1 pkgsrc-2023Q2:1.1.0.4 pkgsrc-2023Q2-base:1.1 pkgsrc-2023Q1:1.1.0.2 pkgsrc-2023Q1-base:1.1; locks; strict; comment @// @; 1.2 date 2023.11.20.00.58.10; author nia; state Exp; branches; next 1.1; commitid kNi49OqpOmwCHhNE; 1.1 date 2023.02.04.15.38.39; author nia; state Exp; branches; next ; commitid vB2stSQSWeCyRdcE; desc @@ 1.2 log @strawberry: Update to 1.0.21 Strawberry Music Player ======================= ChangeLog Version 1.0.21 (2023.10.21): Bugfixes: * Fixed seekbar position resetting to zero before showing actual position when seeking. * Fixed compressed files showing up in collection * Fixed connecting devices * Fixed device schema missing ebur128 fields. * Fixed collection search by tag not working with space between colon and search term * Fixed seeking when 5 seconds is remaining of the song resetting position to beginning * Fixed intermittent crash when seeking with Auto as output Enhancements: * Support using system KDSingleApplication when available. * Improved lyrics matching. * (macOS) Fully codesign binaries and DMG. Version 1.0.20 (2023.09.24): Bugfixes: * Fixed appdata validation. Version 1.0.19 (2023.09.24): Bugfixes: * Use shared pointers for objects to fix potential crashes on exit * Fixed smart playlist search not matching unrated songs * Fixed reading FMPS_Playcount for MP3 ID3v2 tags * Always stop playing after 100 errors to prevent flooding the error dialog * Fixed volume going to 100% when decreasing volume beyond zero * Fixed error dialog sometimes showing empty. * (macOS) Fixed missing search bars Enhancements: * Add Mpris2 property to read/write rating * Capitalize playlist column names * Added lyrics from songlyrics.com, azlyrics.com, elyrics.net and lyricsmode.com. New features * Support performing song loudness analysis using `libebur128` * Support song playback loudness normalization, as per EBU R 128 Other: * Removed last.fm HTTPS workaround and GnuTLS dependency * Removed broken lyrics.com lyrics provider. @ text @$NetBSD: patch-src_utilities_transliterate.cpp,v 1.1 2023/02/04 15:38:39 nia Exp $ Support non-POSIX iconv prototype in NetBSD 9/earlier and SunOS. --- src/utilities/transliterate.cpp.orig 2023-09-25 17:20:58.428898151 +0000 +++ src/utilities/transliterate.cpp @@@@ -28,6 +28,15 @@@@ # include #endif +#if defined(__NetBSD__) +#include +#if __NetBSD_Prereq__(9,99,17) +#define NETBSD_POSIX_ICONV 1 +#else +#define NETBSD_POSIX_ICONV 0 +#endif +#endif + #include #include @@@@ -76,7 +85,11 @@@@ QString Transliterate(const QString &acc snprintf(input, input_len, "%s", utf8.constData()); +#if (defined(__NetBSD__) && !NETBSD_POSIX_ICONV) || defined(__sun) + iconv(conv, (const char **)&input, &input_len, &output, &output_len); +#else iconv(conv, &input, &input_len, &output, &output_len); +#endif iconv_close(conv); QString ret(output_ptr); @ 1.1 log @strawberry: update to 1.0.14 Version 1.0.14 (2023.01.13): Bugfixes: * Fix initial volume not set when using Auto as output * Fix saving moodbar if the URL contains host, ie.: UNC paths for SMB * Fix CollectionBackendTest compile error * Remove explicitly enabling debug messages Version 1.0.13 (2023.01.09): Bugfixes: * Fixed volume synchronization leading to infinite loop resulting in crash when adjusting volume while playing * Fixed incorrect volume. * Fixed collection organizing incorrectly handling slashes inside {} brackets for variables * Fixed saving relative playlists to non-existing playlist files * Fixed intermittent crash on collection model query * Require system icons for fancy tabbar and settings sidebar to be larger than 22x22 Version 1.0.12 (2023.01.02): Bugfixes: * Fixed crash when adjusting volume with mouse wheel * Fixed playback stopping in certain cases where the next track was unavailable Removed features: * Removed appearance settings for changing palette colors, it was never properly implemented. Version 1.0.11 (2022.12.30): Bugfixes: * Capitalize GLib application name so it appears nicely in GNOME and PulseAudio Volume Control * Fixed missing application icon for PulseAudio Volume Control * Ignore errors for missing albums when updating Tidal collection if there are results * Only run periodic collection scan when moitoring collection setting is on. * Fixed an edge case where the context headline text was being cut short * Made "Show in file browser" support SpaceFM filemanager * Fixed incorrect tab order in edit tag dialog * Changed "FMPS_PlayCount" to "FMPS_Playcount" when saving tag * Fixed compilation tag read and write for MP4 * Removed incorrect use of "TPE1" for performer when reading ID3 tags * Disable tag fields for unsupported tags in tag editor. * Don't allow organizing files without unique tags (track or title) for filename * Don't remove disc from album title when creating cover hash to allow different covers for each disc on an album * Fixed incorrect relative paths for song filenames when saving playlists if the saved playlist location is a symablic link to the song filename * Scrobble "Various Artists" as album artist (#1082). Enhancements: * Use system volume instead of own software volume when available (#1037). * Improved Tidal and Qobuz support with timed requests. * Support MPRIS2 xesam:userRating. @ text @d1 1 a1 1 $NetBSD$ d5 1 a5 1 --- src/utilities/transliterate.cpp.orig 2022-12-28 21:54:04.427431913 +0000 d7 3 a9 3 @@@@ -34,6 +34,15 @@@@ #include "transliterate.h" d20 2 a21 1 namespace Utilities { a22 1 QString Transliterate(const QString &accented_str) { @