Hello community,
here is the log from the commit of package kImageAnnotator for openSUSE:Factory checked in at 2020-08-03 14:17:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kImageAnnotator (Old)
and /work/SRC/openSUSE:Factory/.kImageAnnotator.new.3592 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kImageAnnotator"
Mon Aug 3 14:17:55 2020 rev:7 rq:824067 version:0.3.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/kImageAnnotator/kImageAnnotator.changes 2020-06-27 23:22:49.553870731 +0200
+++ /work/SRC/openSUSE:Factory/.kImageAnnotator.new.3592/kImageAnnotator.changes 2020-08-03 14:18:36.108692576 +0200
@@ -1,0 +2,6 @@
+Fri Jul 31 19:14:44 UTC 2020 - Martin Hauke <mardnh(a)gmx.de>
+
+- Update to version 0.3.2
+ * Fixed: Tests fail to build with shared library.
+
+-------------------------------------------------------------------
Old:
----
kImageAnnotator-0.3.1.tar.gz
New:
----
kImageAnnotator-0.3.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kImageAnnotator.spec ++++++
--- /var/tmp/diff_new_pack.6j2P59/_old 2020-08-03 14:18:37.076693547 +0200
+++ /var/tmp/diff_new_pack.6j2P59/_new 2020-08-03 14:18:37.080693551 +0200
@@ -16,10 +16,10 @@
#
-%define sover 0_3_1
+%define sover 0_3_2
%define libname libkImageAnnotator%{sover}
Name: kImageAnnotator
-Version: 0.3.1
+Version: 0.3.2
Release: 0
Summary: Tool for annotating images
License: GPL-2.0-or-later
++++++ kImageAnnotator-0.3.1.tar.gz -> kImageAnnotator-0.3.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kImageAnnotator-0.3.1/CHANGELOG.md new/kImageAnnotator-0.3.2/CHANGELOG.md
--- old/kImageAnnotator-0.3.1/CHANGELOG.md 2020-06-25 07:24:50.000000000 +0200
+++ new/kImageAnnotator-0.3.2/CHANGELOG.md 2020-07-29 17:03:30.000000000 +0200
@@ -1,7 +1,10 @@
# Change log
+## Release 0.3.2
+* Fixed: Tests fail to build with shared library. ([#128](https://github.com/ksnip/kImageAnnotator/issues/128))
+
## Release 0.3.1
-* Fixed: Crashes after undoing a number annotation. ([#106](https://github.com/ksnip/kImageAnnotator/issues/114))
+* Fixed: Crashes after undoing a number annotation. ([#114](https://github.com/ksnip/kImageAnnotator/issues/114))
* Fixed: Text overlapping when resizing text box. ([#53](https://github.com/ksnip/kImageAnnotator/issues/53))
* Fixed: Snap lines to degrees not working when CTRL pressed before clicking annotation area. ([#113](https://github.com/ksnip/kImageAnnotator/issues/113))
* Fixed: "Border and Fill" submenu cutting off text under windows. ([#117](https://github.com/ksnip/kImageAnnotator/issues/117))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kImageAnnotator-0.3.1/CMakeLists.txt new/kImageAnnotator-0.3.2/CMakeLists.txt
--- old/kImageAnnotator-0.3.1/CMakeLists.txt 2020-06-25 07:24:50.000000000 +0200
+++ new/kImageAnnotator-0.3.2/CMakeLists.txt 2020-07-29 17:03:30.000000000 +0200
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.5)
-project(kImageAnnotator LANGUAGES CXX VERSION 0.3.1)
+project(kImageAnnotator LANGUAGES CXX VERSION 0.3.2)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
@@ -25,7 +25,7 @@
set(QT_MIN_VERSION "5.9.4")
find_package(Qt5 ${QT_MIN_VERSION} REQUIRED Widgets Svg)
-if (UNIX)
+if (UNIX AND NOT APPLE)
find_package(X11 REQUIRED)
endif ()
@@ -67,10 +67,10 @@
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
)
-target_link_libraries(kImageAnnotator PUBLIC Qt5::Widgets Qt5::Svg PRIVATE kColorPicker::kColorPicker)
+target_link_libraries(kImageAnnotator PUBLIC Qt5::Widgets Qt5::Svg kColorPicker::kColorPicker)
-if (UNIX)
- target_link_libraries(kImageAnnotator PRIVATE X11)
+if (UNIX AND NOT APPLE)
+ target_link_libraries(kImageAnnotator PUBLIC X11)
endif ()
target_compile_definitions(kImageAnnotator PRIVATE KIMAGEANNOTATOR_LIB)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kImageAnnotator-0.3.1/README.md new/kImageAnnotator-0.3.2/README.md
--- old/kImageAnnotator-0.3.1/README.md 2020-06-25 07:24:50.000000000 +0200
+++ new/kImageAnnotator-0.3.2/README.md 2020-07-29 17:03:30.000000000 +0200
@@ -1,7 +1,7 @@
# kImageAnnotator [![Build Status][travis-badge]][travis-url] [![Translation status][weblate-badge]][weblate-url]
Tool for annotating images
-Version 0.3.1
+Version 0.3.2
![kImageAnnotator](https://i.imgur.com/27kGPO0.png "kImageAnnotator")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kImageAnnotator-0.3.1/tests/annotations/core/AnnotationAreaTest.cpp new/kImageAnnotator-0.3.2/tests/annotations/core/AnnotationAreaTest.cpp
--- old/kImageAnnotator-0.3.1/tests/annotations/core/AnnotationAreaTest.cpp 2020-06-25 07:24:50.000000000 +0200
+++ new/kImageAnnotator-0.3.2/tests/annotations/core/AnnotationAreaTest.cpp 2020-07-29 17:03:30.000000000 +0200
@@ -60,6 +60,7 @@
auto resultImage = annotationArea.image();
auto expectedImage = pixmap.scaled(pixmap.size() * scaleFactor).toImage().convertToFormat(QImage::Format_ARGB32_Premultiplied);
+ expectedImage.setDevicePixelRatio(scaleFactor);
QCOMPARE(resultImage, expectedImage);
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kImageAnnotator-0.3.1/translations/kImageAnnotator_de.ts new/kImageAnnotator-0.3.2/translations/kImageAnnotator_de.ts
--- old/kImageAnnotator-0.3.1/translations/kImageAnnotator_de.ts 2020-06-25 07:24:50.000000000 +0200
+++ new/kImageAnnotator-0.3.2/translations/kImageAnnotator_de.ts 2020-07-29 17:03:30.000000000 +0200
@@ -9,19 +9,19 @@
</message>
<message>
<source>Bring to Front</source>
- <translation type="unfinished"></translation>
+ <translation>Nach vorne bringen</translation>
</message>
<message>
<source>Bring Forward</source>
- <translation type="unfinished"></translation>
+ <translation>Nach vorne bringen</translation>
</message>
<message>
<source>Send Backward</source>
- <translation type="unfinished"></translation>
+ <translation>Nach hinten schicken</translation>
</message>
<message>
<source>Send to Back</source>
- <translation type="unfinished"></translation>
+ <translation>Nach hinten schicken</translation>
</message>
<message>
<source>Select This</source>
@@ -64,15 +64,15 @@
</message>
<message>
<source>Border And Fill Visibility</source>
- <translation type="unfinished"></translation>
+ <translation>Sichtbarkeit von Rahmen und Füllungen</translation>
</message>
<message>
<source>Starting Number</source>
- <translation type="unfinished"></translation>
+ <translation>Anfangsnummer</translation>
</message>
<message>
<source>Blur Radius</source>
- <translation type="unfinished"></translation>
+ <translation>Unschärferadius</translation>
</message>
<message>
<source>Sticker</source>
@@ -87,7 +87,7 @@
</message>
<message>
<source>Close Other</source>
- <translation type="unfinished"></translation>
+ <translation>Andere schließen</translation>
</message>
<message>
<source>Close All</source>
@@ -95,18 +95,18 @@
</message>
<message>
<source>Close All to the Left</source>
- <translation type="unfinished"></translation>
+ <translation>Alle nach links schließen</translation>
</message>
<message>
<source>Close All to the Right</source>
- <translation type="unfinished"></translation>
+ <translation>Alle nach rechts schließen</translation>
</message>
</context>
<context>
<name>kImageAnnotator::CropWidget</name>
<message>
<source>Crop</source>
- <translation type="unfinished"></translation>
+ <translation>Ausschneiden</translation>
</message>
<message>
<source>Cancel</source>
@@ -133,26 +133,26 @@
<name>kImageAnnotator::FillTypePicker</name>
<message>
<source>No Border and No Fill</source>
- <translation type="unfinished"></translation>
+ <translation>Kein Rahmen und keine Füllung</translation>
</message>
<message>
<source>Border and Fill</source>
- <translation type="unfinished"></translation>
+ <translation>Rahmen und Füllung</translation>
</message>
<message>
<source>Border and No Fill</source>
- <translation type="unfinished"></translation>
+ <translation>Rahmen und keine Füllung</translation>
</message>
</context>
<context>
<name>kImageAnnotator::ScaleDialog</name>
<message>
<source>Scale Image</source>
- <translation type="unfinished"></translation>
+ <translation>Bild skalieren</translation>
</message>
<message>
<source>Keep Aspect Ratio</source>
- <translation type="unfinished"></translation>
+ <translation>Seitenverhältnis beibehalten</translation>
</message>
<message>
<source>Width:</source>
@@ -195,15 +195,15 @@
</message>
<message>
<source>Marker Rectangle</source>
- <translation type="unfinished"></translation>
+ <translation>Markierungsrechteck</translation>
</message>
<message>
<source>Marker Ellipse</source>
- <translation type="unfinished"></translation>
+ <translation>Markierungsellipse</translation>
</message>
<message>
<source>Marker Pen</source>
- <translation type="unfinished"></translation>
+ <translation>Markierungsstift</translation>
</message>
<message>
<source>Text</source>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kImageAnnotator-0.3.1/translations/kImageAnnotator_hr.ts new/kImageAnnotator-0.3.2/translations/kImageAnnotator_hr.ts
--- old/kImageAnnotator-0.3.1/translations/kImageAnnotator_hr.ts 1970-01-01 01:00:00.000000000 +0100
+++ new/kImageAnnotator-0.3.2/translations/kImageAnnotator_hr.ts 2020-07-29 17:03:30.000000000 +0200
@@ -0,0 +1,245 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.1" language="hr">
+<context>
+ <name>kImageAnnotator::AnnotationContextMenu</name>
+ <message>
+ <source>Arrange</source>
+ <translation>Rasporedi</translation>
+ </message>
+ <message>
+ <source>Bring to Front</source>
+ <translation>Postavi ispred</translation>
+ </message>
+ <message>
+ <source>Bring Forward</source>
+ <translation>Postavi ispred</translation>
+ </message>
+ <message>
+ <source>Send Backward</source>
+ <translation>Postavi iza</translation>
+ </message>
+ <message>
+ <source>Send to Back</source>
+ <translation>Postavi iza</translation>
+ </message>
+ <message>
+ <source>Select This</source>
+ <translation>Odaberi ovo</translation>
+ </message>
+ <message>
+ <source>Copy</source>
+ <translation>Kopiraj</translation>
+ </message>
+ <message>
+ <source>Paste</source>
+ <translation>Umetni</translation>
+ </message>
+ <message>
+ <source>Edit</source>
+ <translation>Uredi</translation>
+ </message>
+ <message>
+ <source>Delete</source>
+ <translation>Izbriši</translation>
+ </message>
+</context>
+<context>
+ <name>kImageAnnotator::AnnotationSettings</name>
+ <message>
+ <source>Color</source>
+ <translation>Kolor</translation>
+ </message>
+ <message>
+ <source>Width</source>
+ <translation>Širina</translation>
+ </message>
+ <message>
+ <source>Text Color</source>
+ <translation>Boja teksta</translation>
+ </message>
+ <message>
+ <source>Font Size</source>
+ <translation>Veličina fonta</translation>
+ </message>
+ <message>
+ <source>Border And Fill Visibility</source>
+ <translation>Vidljivost ruba i ispune</translation>
+ </message>
+ <message>
+ <source>Starting Number</source>
+ <translation>Početni broj</translation>
+ </message>
+ <message>
+ <source>Blur Radius</source>
+ <translation>Radijus mutnoće</translation>
+ </message>
+ <message>
+ <source>Sticker</source>
+ <translation>Naljepnica</translation>
+ </message>
+</context>
+<context>
+ <name>kImageAnnotator::AnnotationTabContextMenu</name>
+ <message>
+ <source>Close</source>
+ <translation>Zatvori</translation>
+ </message>
+ <message>
+ <source>Close Other</source>
+ <translation>zatvori ostale</translation>
+ </message>
+ <message>
+ <source>Close All</source>
+ <translation>Zatvori sve</translation>
+ </message>
+ <message>
+ <source>Close All to the Left</source>
+ <translation>Zatvori sve na lijevo</translation>
+ </message>
+ <message>
+ <source>Close All to the Right</source>
+ <translation>Zatvori sve na desno</translation>
+ </message>
+</context>
+<context>
+ <name>kImageAnnotator::CropWidget</name>
+ <message>
+ <source>Crop</source>
+ <translation>Obreži</translation>
+ </message>
+ <message>
+ <source>Cancel</source>
+ <translation>Prekini</translation>
+ </message>
+ <message>
+ <source>X:</source>
+ <translation>X:</translation>
+ </message>
+ <message>
+ <source>Y:</source>
+ <translation>Y:</translation>
+ </message>
+ <message>
+ <source>W:</source>
+ <translation>Š:</translation>
+ </message>
+ <message>
+ <source>H:</source>
+ <translation>V:</translation>
+ </message>
+</context>
+<context>
+ <name>kImageAnnotator::FillTypePicker</name>
+ <message>
+ <source>No Border and No Fill</source>
+ <translation>Bez ruba i bez ispune</translation>
+ </message>
+ <message>
+ <source>Border and Fill</source>
+ <translation>Rub i ispuna</translation>
+ </message>
+ <message>
+ <source>Border and No Fill</source>
+ <translation>Rub i bez ispune</translation>
+ </message>
+</context>
+<context>
+ <name>kImageAnnotator::ScaleDialog</name>
+ <message>
+ <source>Scale Image</source>
+ <translation>Skaliraj sliku</translation>
+ </message>
+ <message>
+ <source>Keep Aspect Ratio</source>
+ <translation>Zadrži omjer</translation>
+ </message>
+ <message>
+ <source>Width:</source>
+ <translation>Širina:</translation>
+ </message>
+ <message>
+ <source>Height:</source>
+ <translation>Visina:</translation>
+ </message>
+ <message>
+ <source>OK</source>
+ <translation>U redu</translation>
+ </message>
+ <message>
+ <source>Cancel</source>
+ <translation>Prekini</translation>
+ </message>
+ <message>
+ <source>Pixel</source>
+ <translation>Piksel</translation>
+ </message>
+ <message>
+ <source>Percent</source>
+ <translation>Postotak</translation>
+ </message>
+</context>
+<context>
+ <name>kImageAnnotator::ToolPicker</name>
+ <message>
+ <source>Select</source>
+ <translation>Odaberi</translation>
+ </message>
+ <message>
+ <source>Pen</source>
+ <translation>Pero</translation>
+ </message>
+ <message>
+ <source>Number</source>
+ <translation>Broj</translation>
+ </message>
+ <message>
+ <source>Marker Rectangle</source>
+ <translation>Marker pravokutnik</translation>
+ </message>
+ <message>
+ <source>Marker Ellipse</source>
+ <translation>Marker elipsa</translation>
+ </message>
+ <message>
+ <source>Marker Pen</source>
+ <translation>Marker olovka</translation>
+ </message>
+ <message>
+ <source>Text</source>
+ <translation>Tekst</translation>
+ </message>
+ <message>
+ <source>Arrow</source>
+ <translation>Strelica</translation>
+ </message>
+ <message>
+ <source>Double Arrow</source>
+ <translation>dvostruka strelica</translation>
+ </message>
+ <message>
+ <source>Line</source>
+ <translation>Crta</translation>
+ </message>
+ <message>
+ <source>Blur</source>
+ <translation>Mutnoća</translation>
+ </message>
+ <message>
+ <source>Rectangle</source>
+ <translation>Pravokutnik</translation>
+ </message>
+ <message>
+ <source>Ellipse</source>
+ <translation>Elipsa</translation>
+ </message>
+ <message>
+ <source>Number Pointer</source>
+ <translation>Označivač brojeva</translation>
+ </message>
+ <message>
+ <source>Sticker</source>
+ <translation>Naljepnica</translation>
+ </message>
+</context>
+</TS>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kImageAnnotator-0.3.1/translations/kImageAnnotator_ru.ts new/kImageAnnotator-0.3.2/translations/kImageAnnotator_ru.ts
--- old/kImageAnnotator-0.3.1/translations/kImageAnnotator_ru.ts 2020-06-25 07:24:50.000000000 +0200
+++ new/kImageAnnotator-0.3.2/translations/kImageAnnotator_ru.ts 2020-07-29 17:03:30.000000000 +0200
@@ -110,7 +110,7 @@
</message>
<message>
<source>Cancel</source>
- <translation>Отменить</translation>
+ <translation>Отмена</translation>
</message>
<message>
<source>X:</source>
@@ -168,7 +168,7 @@
</message>
<message>
<source>Cancel</source>
- <translation>Отменить</translation>
+ <translation>Отмена</translation>
</message>
<message>
<source>Pixel</source>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kImageAnnotator-0.3.1/translations/kImageAnnotator_zh_Hans.ts new/kImageAnnotator-0.3.2/translations/kImageAnnotator_zh_Hans.ts
--- old/kImageAnnotator-0.3.1/translations/kImageAnnotator_zh_Hans.ts 2020-06-25 07:24:50.000000000 +0200
+++ new/kImageAnnotator-0.3.2/translations/kImageAnnotator_zh_Hans.ts 2020-07-29 17:03:30.000000000 +0200
@@ -29,42 +29,42 @@
</message>
<message>
<source>Copy</source>
- <translation type="unfinished"></translation>
+ <translation>复制</translation>
</message>
<message>
<source>Paste</source>
- <translation type="unfinished"></translation>
+ <translation>粘贴</translation>
</message>
<message>
<source>Edit</source>
- <translation type="unfinished"></translation>
+ <translation>编辑</translation>
</message>
<message>
<source>Delete</source>
- <translation type="unfinished"></translation>
+ <translation>删除</translation>
</message>
</context>
<context>
<name>kImageAnnotator::AnnotationSettings</name>
<message>
<source>Color</source>
- <translation type="unfinished"></translation>
+ <translation>颜色</translation>
</message>
<message>
<source>Width</source>
- <translation type="unfinished"></translation>
+ <translation>宽度</translation>
</message>
<message>
<source>Text Color</source>
- <translation type="unfinished"></translation>
+ <translation>文本颜色</translation>
</message>
<message>
<source>Font Size</source>
- <translation type="unfinished"></translation>
+ <translation>字体大小</translation>
</message>
<message>
<source>Border And Fill Visibility</source>
- <translation type="unfinished"></translation>
+ <translation>边框和填充可见性</translation>
</message>
<message>
<source>Starting Number</source>
@@ -83,15 +83,15 @@
<name>kImageAnnotator::AnnotationTabContextMenu</name>
<message>
<source>Close</source>
- <translation type="unfinished"></translation>
+ <translation>关闭</translation>
</message>
<message>
<source>Close Other</source>
- <translation type="unfinished"></translation>
+ <translation>关闭其它</translation>
</message>
<message>
<source>Close All</source>
- <translation type="unfinished"></translation>
+ <translation>关闭全部</translation>
</message>
<message>
<source>Close All to the Left</source>
@@ -106,11 +106,11 @@
<name>kImageAnnotator::CropWidget</name>
<message>
<source>Crop</source>
- <translation type="unfinished"></translation>
+ <translation>裁切</translation>
</message>
<message>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>取消</translation>
</message>
<message>
<source>X:</source>
@@ -133,50 +133,50 @@
<name>kImageAnnotator::FillTypePicker</name>
<message>
<source>No Border and No Fill</source>
- <translation type="unfinished"></translation>
+ <translation>无边框且无填充</translation>
</message>
<message>
<source>Border and Fill</source>
- <translation type="unfinished"></translation>
+ <translation>有边框且有填充</translation>
</message>
<message>
<source>Border and No Fill</source>
- <translation type="unfinished"></translation>
+ <translation>有边框且无填充</translation>
</message>
</context>
<context>
<name>kImageAnnotator::ScaleDialog</name>
<message>
<source>Scale Image</source>
- <translation type="unfinished"></translation>
+ <translation>缩放图像</translation>
</message>
<message>
<source>Keep Aspect Ratio</source>
- <translation type="unfinished"></translation>
+ <translation>保持长宽比</translation>
</message>
<message>
<source>Width:</source>
- <translation type="unfinished"></translation>
+ <translation>宽度:</translation>
</message>
<message>
<source>Height:</source>
- <translation type="unfinished"></translation>
+ <translation>高度:</translation>
</message>
<message>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation>确定</translation>
</message>
<message>
<source>Cancel</source>
- <translation type="unfinished"></translation>
+ <translation>取消</translation>
</message>
<message>
<source>Pixel</source>
- <translation type="unfinished"></translation>
+ <translation>像素</translation>
</message>
<message>
<source>Percent</source>
- <translation type="unfinished"></translation>
+ <translation>百分比</translation>
</message>
</context>
<context>
@@ -207,15 +207,15 @@
</message>
<message>
<source>Text</source>
- <translation type="unfinished"></translation>
+ <translation>文本</translation>
</message>
<message>
<source>Arrow</source>
- <translation type="unfinished"></translation>
+ <translation>箭头</translation>
</message>
<message>
<source>Double Arrow</source>
- <translation type="unfinished"></translation>
+ <translation>双箭头</translation>
</message>
<message>
<source>Line</source>