Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package Komikku for openSUSE:Factory checked in at 2026-01-09 17:04:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/Komikku (Old) and /work/SRC/openSUSE:Factory/.Komikku.new.1928 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "Komikku" Fri Jan 9 17:04:36 2026 rev:58 rq:1326318 version:1.99.0 Changes: -------- --- /work/SRC/openSUSE:Factory/Komikku/Komikku.changes 2025-12-23 13:45:24.060143370 +0100 +++ /work/SRC/openSUSE:Factory/.Komikku.new.1928/Komikku.changes 2026-01-09 17:06:25.827308047 +0100 @@ -1,0 +2,16 @@ +Thu Jan 8 23:24:26 UTC 2026 - Richard Rahl <[email protected]> + +- Update to version 1.99.0: + * [Servers] Anime-Sama (FR): Update + * [Servers] Cartel De Manhwas (ES): Re-enabled + * [Servers] Kavita: Fixed chapters recovery + * [Servers] Neko Scans (ES): Re-enabled + * [Servers] NHentai: Update + * [Servers] Rezo Scans (EN): Disabled + * [Servers] Rimu Scans (FR): Disabled + * [Servers] Team-X (AR): Update + * [L10n] Updated Indonesian and Spanish translations +- Readd convert-to-modern-colorthief.patch, as upstream wants to + avoid 1.8 MB of (rust) dependencies + +------------------------------------------------------------------- Old: ---- Komikku-1.98.0.tar.gz New: ---- Komikku-1.99.0.tar.gz convert-to-modern-colorthief.patch ----------(New B)---------- New: * [L10n] Updated Indonesian and Spanish translations - Readd convert-to-modern-colorthief.patch, as upstream wants to avoid 1.8 MB of (rust) dependencies ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ Komikku.spec ++++++ --- /var/tmp/diff_new_pack.TIOWOI/_old 2026-01-09 17:06:26.519336733 +0100 +++ /var/tmp/diff_new_pack.TIOWOI/_new 2026-01-09 17:06:26.519336733 +0100 @@ -1,7 +1,7 @@ # # spec file for package Komikku # -# Copyright (c) 2025 SUSE LLC and contributors +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,13 +18,14 @@ %define appid info.febvre.Komikku Name: Komikku -Version: 1.98.0 +Version: 1.99.0 Release: 0 Summary: A manga reader for GNOME # appdata.xml is CC-BY-4.0 License: CC-BY-4.0 AND GPL-3.0-or-later URL: https://codeberg.org/valos/Komikku Source0: %{url}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz +Patch0: convert-to-modern-colorthief.patch BuildRequires: cmake BuildRequires: desktop-file-utils BuildRequires: fdupes ++++++ Komikku-1.98.0.tar.gz -> Komikku-1.99.0.tar.gz ++++++ ++++ 9180 lines of diff (skipped) ++++++ convert-to-modern-colorthief.patch ++++++ diff -rubN komikku/komikku/models/database/mangas.py komikku-patched/komikku/models/database/mangas.py --- komikku/komikku/models/database/mangas.py 2026-01-05 01:59:13.000000000 +0100 +++ komikku-patched/komikku/models/database/mangas.py 2026-01-09 00:34:13.294683759 +0100 @@ -13,7 +13,7 @@ import shutil import time -from colorthief import ColorThief +from modern_colorthief import get_pallete from PIL import Image from PIL import ImageFilter from PIL import ImageStat @@ -143,7 +143,7 @@ if '@define-color' not in data: return data - palette = ColorThief(cover_path).get_palette(color_count=2, quality=1)[:2] + palette = get_pallete(cover_path).get_palette(color_count=2, quality=1)[:2] if len(palette) != 2: # Single color image? return None diff -rubN komikku/requirements.txt komikku-patched/requirements.txt --- komikku/requirements.txt 2026-01-05 01:59:13.000000000 +0100 +++ komikku-patched/requirements.txt 2026-01-09 00:34:23.916562365 +0100 @@ -4,7 +4,7 @@ beautifulsoup4 brotli >= 1.2.0 -colorthief +modern_colorthief dateparser >= 1.1.6 emoji keyring >= 21.6.0
