17
0

4 Commits

6 changed files with 57 additions and 20 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8ebbfdce39efbbb63679badc3320fe06eb3aa68a4da5f50740197645c985ad0f
size 3295008

View File

@@ -1,11 +0,0 @@
-----BEGIN PGP SIGNATURE-----
iQEzBAABCAAdFiEEOf+pPK6cavwhKtACAjJUSCBORSoFAmeJYSkACgkQAjJUSCBO
RSpFGwf6A8KvVvvfbSt0XtnXINyA44bJnu6dJEfffsnNknLUylRmCY0f1ICtVTSm
tO15yYrYO19hbS/E+Liw3MPrIQiZ+pf+ZrODN7tzJIKJZTyz/GK7owm6zCCWRFWP
Y37467YrNKud1TFXvNAsyqPVdD8WvcZ975V8x6nWvoi381yxZO2+bRRxpSf5H6Rx
JMNyeUr3SRCIR/fAPgxByXGkqV9fjByB18hAETIMd6jyJ1MVqib9X9w00QVtn4K4
d5UUiteP04LzuGC4YcFkD2kPZ3PGSLSNyKAkXB1xkFnrGH9zGByhf70kPYnTDa2F
9s5o0xKjSuyOnbPo6G2QzOvV/UXycg==
=Zwhi
-----END PGP SIGNATURE-----

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:11ed4ce1c164a8b6d50bbc1548b5849ab75d5fb837619b90f2cea51ed122547a
size 3338672

View File

@@ -0,0 +1,11 @@
-----BEGIN PGP SIGNATURE-----
iQEzBAABCgAdFiEEOf+pPK6cavwhKtACAjJUSCBORSoFAmkV82AACgkQAjJUSCBO
RSp2bwf/TQwpcDEzDpPEeXuK05pcgsLBU4sdDIr/jFHMYVNmK7LV/ovEwQucDg4G
myOpNszDkOS3YV/N8KKWv+xv6w30OLWYb2NBOuzjwpJ4qVsCGyecZ1wqv0Z7/ZwO
P5UJTWVtwUjUxFfnLMGaXzeFWsDzELzl0Xp3aDJo0Q4EiX2lHA05+NRnq7I/FTU9
d7O142Kc33B8pQ96ZaCPyMxTH3YaMUmwSMZMewBtsn4GpcgYMRfdJOy/x/iX0sih
VkRbiy9OadlUpgXUk9A3oj9zSLHKrh+qt7dN6gX+Z1+ZKjXsES8Yt9ZlQEGWwyUa
nKDBz02VpkqAODtpdd1hj4ZLpsD/sw==
=mV0H
-----END PGP SIGNATURE-----

View File

@@ -1,3 +1,20 @@
-------------------------------------------------------------------
Sat Nov 15 21:21:02 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 0.6.0
* Fix drag handler and aspect ratio logic
* Feature to enforce aspect ratio in crop
* AnnotationTool: add CropTool enum value and geometry property
* Remove kirigami link dependency
* Use OpenCV 4.7 for stack blur
* Make OpenCV fully optional and add a warning message without it
* Move modification state tracking to History
* Add modified property to annotationdocument
* Move functions above struct/class definitions
* AnnotationDocument & SelectedItemWrapper: Add applyTransform()
* Allow saving and clearing the annotation document from QML
* add spectacle annotation system
-------------------------------------------------------------------
Tue Feb 18 09:47:04 UTC 2025 - Christophe Marin <christophe@krop.fr>

View File

@@ -1,7 +1,7 @@
#
# spec file for package kquickimageeditor
#
# Copyright (c) 2025 SUSE LLC
# Copyright (c) 2025 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
@@ -23,14 +23,14 @@ ExclusiveArch: do_not_build
%if "%{flavor}" == "qt6"
%define qt6 1
%define pkg_suffix 6
%define kf6_version 6.0.0
%define qt6_version 6.6.0
%define kf6_version 6.13.0
%define qt6_version 6.8.0
%endif
%define rname kquickimageeditor
%bcond_without released
Name: kquickimageeditor%{?pkg_suffix}
Version: 0.5.0
Version: 0.6.0
Release: 0
Summary: A set of QtQuick components for image editing
License: LGPL-2.1-or-later
@@ -42,7 +42,10 @@ Source2: kquickimageeditor.keyring
%endif
%if 0%{?qt6}
BuildRequires: kf6-extra-cmake-modules >= %{kf6_version}
BuildRequires: cmake(KF6Config) >= %{kf6_version}
BuildRequires: cmake(OpenCV) >= 4.7.0
BuildRequires: cmake(Qt6Core) >= %{qt6_version}
BuildRequires: cmake(Qt6Qml) >= %{qt6_version}
BuildRequires: cmake(Qt6Quick) >= %{qt6_version}
%endif
@@ -57,13 +60,19 @@ Summary: A set of QtQuick components for image editing
KQuickImageEditor is a set of QtQuick components providing basic image editing
capabilities.
%package -n libKQuickImageEditor1
Summary: KQuickImageEditor library
%description -n libKQuickImageEditor1
KQuickImageEditor is a set of QtQuick components providing basic image editing
capabilities.
%package devel
Summary: Development files for KQuickImageEditor
Requires: kquickimageeditor%{?pkg_suffix}-imports = %{version}
Requires: libKQuickImageEditor1 = %{version}
%if 0%{?qt6}
Requires: cmake(Qt6Core) >= %{qt6_version}
# TODO: Remove after next update
Conflicts: kquickimageeditor-devel
%endif
%description devel
@@ -84,6 +93,14 @@ basic image editing capabilities.
%kf6_install
%endif
%if 0%{?qt6}
%ldconfig_scriptlets -n libKQuickImageEditor1
%files -n libKQuickImageEditor1
%license LICENSES/*
%{_kf6_libdir}/libKQuickImageEditor.so.*
%endif
%files imports
%license LICENSES/*
%doc README.md
@@ -93,7 +110,10 @@ basic image editing capabilities.
%files devel
%if 0%{?qt6}
%{_includedir}/kquickimageeditor/
%{_includedir}/KQuickImageEditor/
%{_kf6_cmakedir}/KQuickImageEditor/
%{_kf6_libdir}/libKQuickImageEditor.so
%{_kf6_mkspecsdir}/qt_KQuickImageEditor.pri
%endif