Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package goldendict-ng for openSUSE:Factory checked in at 2025-07-30 11:46:06 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/goldendict-ng (Old) and /work/SRC/openSUSE:Factory/.goldendict-ng.new.13279 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "goldendict-ng" Wed Jul 30 11:46:06 2025 rev:5 rq:1296409 version:25.06.0 Changes: -------- --- /work/SRC/openSUSE:Factory/goldendict-ng/goldendict-ng.changes 2024-12-19 21:42:33.801489435 +0100 +++ /work/SRC/openSUSE:Factory/.goldendict-ng.new.13279/goldendict-ng.changes 2025-07-30 11:47:09.219133156 +0200 @@ -1,0 +2,65 @@ +Thu Jul 24 05:13:39 UTC 2025 - Atri Bhattacharya <[email protected]> + +- Update to version 25.06.0: + * Feature: Split Single/Solo Selection Mode to 2 composable + features (gh#xiaoyifang/goldendict-ng#2275). + * Improvements: + - Optimize the builtin whitelist check + (gh#xiaoyifang/goldendict-ng#2371). + - Minor changes to the default style css + (gh#xiaoyifang/goldendict-ng#2351). + - Extract common variable to config constexpr + (gh#xiaoyifang/goldendict-ng#2350). + - Register custom protocol (gh#xiaoyifang/goldendict-ng#2359). + - Remove website dictionary experimental feature + (gh#xiaoyifang/goldendict-ng#2335). + - Move iframe embed event to js file + (gh#xiaoyifang/goldendict-ng#2337). + - Update iframe resizing scripts + (gh#xiaoyifang/goldendict-ng#2339). + - Iframe experimental feature to bypass cors + (gh#xiaoyifang/goldendict-ng#2338). + - Protect vector variable in wordfinder with copy-on-read + (gh#xiaoyifang/goldendict-ng#2324). + - Refactor language loading logic in preferences UI. + (gh#xiaoyifang/goldendict-ng#2327). + - Add prettier configuration + (gh#xiaoyifang/goldendict-ng#2313). + - Remove deprecated window.event variable + (gh#xiaoyifang/goldendict-ng#2312). + - Action input variable (gh#xiaoyifang/goldendict-ng#2315). + - Move audio play icon image to css + (gh#xiaoyifang/goldendict-ng#2320). + - Only show splash windows when not enable start to tray + (gh#xiaoyifang/goldendict-ng#2299). + - Rename anki to Anki (gh#xiaoyifang/goldendict-ng#2308). + - Extract div onclick event to js file + (gh#xiaoyifang/goldendict-ng#2300). + - Safeguard to reset source + (gh#xiaoyifang/goldendict-ng#2309). + - Rename to more meaningful form + (gh#xiaoyifang/goldendict-ng#2289). + - Add F11 as the shortcut to open configuration folder. + - Simplify dsl opt_expand logic + (gh#xiaoyifang/goldendict-ng#2295). + - Dsl restrict area (gh#xiaoyifang/goldendict-ng#2296). + - Replace collapse png image with svg + (gh#xiaoyifang/goldendict-ng#2294). + - Remove jap trans hepburn checkbox + (gh#xiaoyifang/goldendict-ng#2297). + - Add concurrency to the workflow + (gh#xiaoyifang/goldendict-ng#2305). + - Rework of PR#2279 (gh#xiaoyifang/goldendict-ng#2283). + - Update sonar scan version + (gh#xiaoyifang/goldendict-ng#2288). + * Bug fixes: + - Epwing dictionary crash when meet certain diacritics + (gh#xiaoyifang/goldendict-ng#2348). + - Custom trans does not work + (gh#xiaoyifang/goldendict-ng#2349). + - History back/forward navigation,audio playing issue. +- Fix lang_package macro usage for Leap 15.6 and older. +- Use GCC 11 for builds on Leap 15.6 and older as c++-17 std + including <filesystem> header support is required. + +------------------------------------------------------------------- Old: ---- goldendict-ng-24.09.1.obscpio New: ---- goldendict-ng-25.06.0.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ goldendict-ng.spec ++++++ --- /var/tmp/diff_new_pack.Vw1OFT/_old 2025-07-30 11:47:09.951163438 +0200 +++ /var/tmp/diff_new_pack.Vw1OFT/_new 2025-07-30 11:47:09.955163603 +0200 @@ -1,7 +1,7 @@ # # spec file for package goldendict-ng # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,8 +17,11 @@ %define __builder ninja +%if 0%{?suse_version} < 1600 +%define gcc_ver 11 +%endif Name: goldendict-ng -Version: 24.09.1 +Version: 25.06.0 Release: 0 Summary: Dictionary Lookup Program License: GPL-3.0-or-later @@ -27,7 +30,7 @@ Source0: %{name}-%{version}.tar.xz BuildRequires: cmake BuildRequires: desktop-file-utils -BuildRequires: gcc-c++ +BuildRequires: gcc%{?gcc_ver}-c++ BuildRequires: git BuildRequires: ninja BuildRequires: pkgconfig @@ -71,13 +74,21 @@ The Next Generation GoldenDict: A feature-rich dictionaries lookup program, supporting many dictionary formats. +%if 0%{?suse_version} >= 1600 %lang_package -b goldendict-lang +%else +%lang_package +%endif %prep %autosetup %build -%cmake -DCMAKE_SKIP_INSTALL_RPATH:BOOL=ON +%cmake \ + -DCMAKE_C_COMPILER=gcc%{?gcc_ver:-%{gcc_ver}} \ + -DCMAKE_CXX_COMPILER=g++%{?gcc_ver:-%{gcc_ver}} \ + -DCMAKE_SKIP_INSTALL_RPATH:BOOL=ON \ + %{nil} %cmake_build %install ++++++ _service ++++++ --- /var/tmp/diff_new_pack.Vw1OFT/_old 2025-07-30 11:47:09.979164596 +0200 +++ /var/tmp/diff_new_pack.Vw1OFT/_new 2025-07-30 11:47:09.983164761 +0200 @@ -4,8 +4,8 @@ <param name="filename">goldendict-ng</param> <param name="scm">git</param> <param name="url">[email protected]:xiaoyifang/goldendict-ng.git</param> - <param name="version">24.09.1</param> - <param name="revision">v24.09.1-Release.ca9dd133</param> + <param name="version">25.06.0</param> + <param name="revision">v25.06.0-Release.8a87a79b</param> <param name="exclude">winlibs/*</param> <param name="submodules">disable</param> </service> ++++++ goldendict-ng-24.09.1.obscpio -> goldendict-ng-25.06.0.obscpio ++++++ ++++ 413342 lines of diff (skipped) ++++++ goldendict-ng.obsinfo ++++++ --- /var/tmp/diff_new_pack.Vw1OFT/_old 2025-07-30 11:47:11.051208943 +0200 +++ /var/tmp/diff_new_pack.Vw1OFT/_new 2025-07-30 11:47:11.055209108 +0200 @@ -1,5 +1,5 @@ name: goldendict-ng -version: 24.09.1 -mtime: 1730756130 -commit: ca9dd133206d8825d0e27f792874fd5716e8af5e +version: 25.06.0 +mtime: 1750225382 +commit: 8a87a79bcb70b8d3b229fee84fda4b5f679e1600
