Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package drawy for openSUSE:Factory checked 
in at 2026-06-28 21:06:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/drawy (Old)
 and      /work/SRC/openSUSE:Factory/.drawy.new.11887 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "drawy"

Sun Jun 28 21:06:02 2026 rev:3 rq:1362166 version:1.0.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/drawy/drawy.changes      2026-05-07 
15:46:35.151082865 +0200
+++ /work/SRC/openSUSE:Factory/.drawy.new.11887/drawy.changes   2026-06-28 
21:06:41.058377770 +0200
@@ -1,0 +2,29 @@
+Sun Jun 28 11:36:50 UTC 2026 - Christophe Marin <[email protected]>
+
+- Add patch:
+  * 0001-Define-soversion-for-drawyconfig.patch
+
+-------------------------------------------------------------------
+Wed Jun 24 19:17:01 UTC 2026 - Christophe Marin <[email protected]>
+
+- Update to 1.0.2, Check the CHANGELOG.md file for the full list of
+  changes.
+  Fixes:
+  * Multiple issues with group items and multi-selections acting
+    incorrectly during rotation or resizing.
+  * Canvas corruption bugs and visual artifacts that appeared
+    when zooming or resizing the window.
+  * Undo and redo history breaking after grouping items or
+    clearing the canvas.
+  * Loss of stylus pressure data when saving and loading files.
+  * Bounding box and intersection logic errors for the Diamond tool.
+  * Accidental duplication of items when attempting to translate
+    them across the canvas.
+  * Saved strokes failing to load correctly upon opening a document.
+  * Property bar flickering rapidly when selecting new items.
+  * Background color fills unintentionally applying to grouped
+    polygon strokes.
+  * Memory leaks and uninitialized variables flagged by internal
+    analysis tools.
+
+-------------------------------------------------------------------

Old:
----
  drawy-1.0.1.tar.xz
  drawy-1.0.1.tar.xz.sig

New:
----
  0001-Define-soversion-for-drawyconfig.patch
  drawy-1.0.2.tar.xz
  drawy-1.0.2.tar.xz.sig

----------(New B)----------
  New:- Add patch:
  * 0001-Define-soversion-for-drawyconfig.patch
----------(New E)----------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ drawy.spec ++++++
--- /var/tmp/diff_new_pack.js08UM/_old  2026-06-28 21:06:41.674398528 +0200
+++ /var/tmp/diff_new_pack.js08UM/_new  2026-06-28 21:06:41.674398528 +0200
@@ -21,7 +21,7 @@
 
 %bcond_without released
 Name:           drawy
-Version:        1.0.1
+Version:        1.0.2
 Release:        0
 Summary:        Whiteboard application
 License:        GPL-3.0-or-later
@@ -32,6 +32,8 @@
 # 
https://invent.kde.org/sysadmin/release-keyring/-/raw/master/keys/[email protected]?ref_type=heads
 Source2:        drawy.keyring
 %endif
+# PATCH-FIX-UPSTREAM
+Patch0:         0001-Define-soversion-for-drawyconfig.patch
 BuildRequires:  kf6-extra-cmake-modules >= %{kf6_version}
 BuildRequires:  pkgconfig
 BuildRequires:  shared-mime-info
@@ -50,7 +52,12 @@
 BuildRequires:  pkgconfig(libzstd)
 
 %description
-Drawy lets you create ideas, diagrams, and visual notes on an infinite 
whiteboard with a smooth and responsive canvas. You can draw with 
pressure-sensitive tablet support, add text, insert images, and use basic 
shapes such as rectangles, ellipses, arrows, and lines to organise your content 
clearly. You can choose your own color palette and export your work as image 
files whenever needed.
+Drawy lets you create ideas, diagrams, and visual notes on an infinite
+whiteboard with a smooth and responsive canvas. You can draw with
+pressure-sensitive tablet support, add text, insert images, and use basic
+shapes such as rectangles, ellipses, arrows, and lines to organise your content
+clearly. You can choose your own color palette and export your work as image
+files whenever needed.
 
 %lang_package
 
@@ -75,6 +82,7 @@
 
 %files
 %license LICENSES/*
+%doc CHANGELOG.md
 %doc %lang(en) %{_kf6_htmldir}/en/drawy
 %{_kf6_applicationsdir}/org.kde.drawy.desktop
 %{_kf6_appstreamdir}/org.kde.drawy.metainfo.xml
@@ -83,6 +91,7 @@
 %{_kf6_debugdir}/drawy.categories
 %{_kf6_iconsdir}/hicolor/*/apps/drawy.*
 %{_kf6_iconsdir}/hicolor/*/mimetypes/application-x-drawy.png
+%{_kf6_libdir}/libdrawyconfig.so.*
 %{_kf6_libdir}/libdrawygui.so.*
 %{_kf6_libdir}/libdrawywidgets.so.*
 %{_kf6_libdir}/libstandardformplugin.so.*

++++++ 0001-Define-soversion-for-drawyconfig.patch ++++++
>From 4366bc812f75a07484f085de5971c6e028fb47f8 Mon Sep 17 00:00:00 2001
From: Christophe Marin <[email protected]>
Date: Sun, 28 Jun 2026 13:36:21 +0200
Subject: [PATCH] Define soversion for drawyconfig

---
 src/config/CMakeLists.txt | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/src/config/CMakeLists.txt b/src/config/CMakeLists.txt
index 3499a69c..620928bd 100644
--- a/src/config/CMakeLists.txt
+++ b/src/config/CMakeLists.txt
@@ -14,6 +14,15 @@ target_link_libraries(
         KF6::ConfigWidgets
 )
 
+set_target_properties(
+    drawyconfig
+    PROPERTIES
+        VERSION
+            ${DRAWY_LIB_VERSION}
+        SOVERSION
+            ${DRAWY_LIB_SOVERSION}
+)
+
 kconfig_add_kcfg_files(drawyconfig drawyglobalconfig.kcfgc)
 
 generate_export_header(drawyconfig BASE_NAME DRAWYCONFIG)
-- 
2.54.0


++++++ drawy-1.0.1.tar.xz -> drawy-1.0.2.tar.xz ++++++
++++ 5645 lines of diff (skipped)

Reply via email to