Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package opentoonz for openSUSE:Factory checked in at 2023-05-11 12:34:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/opentoonz (Old) and /work/SRC/openSUSE:Factory/.opentoonz.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "opentoonz" Thu May 11 12:34:16 2023 rev:19 rq:1086189 version:1.7.1 Changes: -------- --- /work/SRC/openSUSE:Factory/opentoonz/opentoonz.changes 2023-05-08 19:42:39.325781334 +0200 +++ /work/SRC/openSUSE:Factory/.opentoonz.new.1533/opentoonz.changes 2023-05-11 12:34:57.627137799 +0200 @@ -1,0 +2,60 @@ +Wed May 10 21:50:59 UTC 2023 - Christophe Marin <[email protected]> + +- Update to 1.7.1 + New Features: + * Enabled pasting external clipboard images + * Preproduction Board panel + * Custom Panels + * Main Window See Through Mod + * Added Haiku support + * Export Camera Track + * Export Open Cel Animation (OCA) format + * Export Scene + * Convert TZP to TLV in folder + * New Fx: Floor Bump Fx Iwa + * New Fxs: Flow Fx series + Audio: + * Added additional support for audio formats + * Audio in Fast Render to MP4 Extremely Boosted + Tools: + * Added Straight line mode on Brush tool + * Added OpenToonz vector logo brush + * Added Gimp (Mypaint) Brushes + * Added Flip and rotate toolbar options to Animate tool + * Added Pick + Freehand mode to Fill tool + * Added Triangle Brush Cursors + * Enabled to use MyPaint styles with Geometric tool + Checks: + * Improve Transparency Check suitable for Japanese animation + industry + * Function Editor/Curve Editor + * Enabled to stretch function curve keys with Alt+drag + * Bigger Handles & Improved Contrast + Histogram: + * Enhanced histogram popup + Image formats/ffmpeg: + * Added support for MOV, APNG and other formats + Rendering: + * Supported floating point & Linear color space rendering + * Enhanced viewer preview + Schematic: + * Enabled to snap schematic node + Xsheet/Timeline: + * Timeline/Xsheet navigation tags + * Customizable column color filters + * Thicken Xsheet marker lines + * Paste cells command behavior option + * Delete cells command behavior + * Selection aware command name + * Modified the "Reframe with Empty Inbetweens" command + behavior + Cache: + * Extended the coverage of the "Default TLV Caching Behavior" + option to all raster levels on any loading +- Drop patches: + * 0001-Clarify-size_t-origin-for-tgc-hash-BucketNode.patch + * 0001-Use-the-system-mypaint-brushes.patch +- Add patch: + * 0001-Fix-build-with-Werror-return-type.patch + +------------------------------------------------------------------- Old: ---- 0001-Clarify-size_t-origin-for-tgc-hash-BucketNode.patch 0001-Use-the-system-mypaint-brushes.patch opentoonz-1.6.0.tar.xz New: ---- 0001-Fix-build-with-Werror-return-type.patch opentoonz-1.7.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ opentoonz.spec ++++++ --- /var/tmp/diff_new_pack.uOMxkE/_old 2023-05-11 12:34:58.151140375 +0200 +++ /var/tmp/diff_new_pack.uOMxkE/_new 2023-05-11 12:34:58.155140394 +0200 @@ -1,7 +1,7 @@ # # spec file for package opentoonz # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: opentoonz -Version: 1.6.0 +Version: 1.7.1 Release: 0 Summary: 2D animation software License: BSD-2-Clause @@ -27,10 +27,8 @@ Source99: %{name}-rpmlintrc # PATCH-FIX-UPSTREAM Patch0: 0001-Fix-linker-errors-on-Linux.patch -# PATCH-FIX-OPENSUSE -- Use the system mypaint brushes -Patch1: 0001-Use-the-system-mypaint-brushes.patch # PATCH-FIX-UPSTREAM -Patch2: 0001-Clarify-size_t-origin-for-tgc-hash-BucketNode.patch +Patch1: 0001-Fix-build-with-Werror-return-type.patch BuildRequires: boost-devel >= 1.55 BuildRequires: cmake BuildRequires: freeglut-devel @@ -55,6 +53,7 @@ BuildRequires: cmake(Qt5Script) BuildRequires: cmake(Qt5SerialPort) BuildRequires: cmake(Qt5Svg) +BuildRequires: cmake(Qt5UiTools) BuildRequires: cmake(Qt5Widgets) BuildRequires: cmake(Qt5Xml) BuildRequires: pkgconfig(freetype2) ++++++ 0001-Fix-build-with-Werror-return-type.patch ++++++ >From 8cdd80a7d3e1b15006d59f09297fc769de3e2ef4 Mon Sep 17 00:00:00 2001 From: Christophe Marin <[email protected]> Date: Thu, 11 May 2023 00:48:18 +0200 Subject: [PATCH] Fix build with -Werror=return-type --- toonz/sources/stdfx/igs_rotate_blur.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toonz/sources/stdfx/igs_rotate_blur.cpp b/toonz/sources/stdfx/igs_rotate_blur.cpp index ff9c6fc..4ab516d 100644 --- a/toonz/sources/stdfx/igs_rotate_blur.cpp +++ b/toonz/sources/stdfx/igs_rotate_blur.cpp @@ -230,7 +230,7 @@ private: // disable Rotator(); Rotator(const Rotator&); - Rotator& operator=(const Rotator&) {} + Rotator& operator=(const Rotator&) { return *this; } }; //------------------------------------------------------------------ -- 2.40.1 ++++++ 0001-Fix-linker-errors-on-Linux.patch ++++++ --- /var/tmp/diff_new_pack.uOMxkE/_old 2023-05-11 12:34:58.183140532 +0200 +++ /var/tmp/diff_new_pack.uOMxkE/_new 2023-05-11 12:34:58.187140552 +0200 @@ -1,4 +1,4 @@ -From fa1de4f333f423737c916efec3d3df772a6d8577 Mon Sep 17 00:00:00 2001 +From d9f3624936fa3669363b4670e5dc196e47f0ea16 Mon Sep 17 00:00:00 2001 From: Christophe Giboudeaux <[email protected]> Date: Mon, 13 Apr 2020 10:14:42 +0200 Subject: [PATCH] Fix linker errors on Linux. @@ -10,10 +10,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/toonz/sources/tnzcore/CMakeLists.txt b/toonz/sources/tnzcore/CMakeLists.txt -index c34f3aa..b8d46d3 100644 +index e1cdaa2..72a3d26 100644 --- a/toonz/sources/tnzcore/CMakeLists.txt +++ b/toonz/sources/tnzcore/CMakeLists.txt -@@ -356,5 +356,5 @@ endif() +@@ -358,5 +358,5 @@ endif() target_link_libraries(tnzcore Qt5::Core Qt5::OpenGL Qt5::Network Qt5::Multimedia ${GL_LIB} ${GLUT_LIB} ${QT_LIB} ${Z_LIB} ${JPEG_LIB} ${LZ4_LIB} @@ -21,16 +21,16 @@ + ${EXTRA_LIBS} ${CMAKE_DL_LIBS} ) diff --git a/toonz/sources/toonzqt/CMakeLists.txt b/toonz/sources/toonzqt/CMakeLists.txt -index eb8536a..efba45c 100644 +index 0c44f51..de693f3 100644 --- a/toonz/sources/toonzqt/CMakeLists.txt +++ b/toonz/sources/toonzqt/CMakeLists.txt -@@ -248,4 +248,4 @@ elseif(BUILD_ENV_UNIXLIKE) +@@ -252,4 +252,4 @@ elseif(BUILD_ENV_UNIXLIKE) endif() endif() -target_link_libraries(toonzqt Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Network Qt5::OpenGL Qt5::Svg ${EXTRA_LIBS} ${GL_LIB}) +target_link_libraries(toonzqt Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Network Qt5::OpenGL Qt5::Svg ${EXTRA_LIBS} ${GL_LIB} ${CMAKE_DL_LIBS}) -- -2.30.2 +2.40.1 ++++++ _service ++++++ --- /var/tmp/diff_new_pack.uOMxkE/_old 2023-05-11 12:34:58.219140709 +0200 +++ /var/tmp/diff_new_pack.uOMxkE/_new 2023-05-11 12:34:58.223140729 +0200 @@ -2,8 +2,8 @@ <service name="tar_scm" mode="disabled"> <param name="scm">git</param> <param name="url">https://github.com/opentoonz/opentoonz</param> - <param name="revision">v1.6.0</param> - <param name="versionformat">1.6.0</param> + <param name="revision">v1.7.1</param> + <param name="versionformat">1.7.1</param> <!-- the openblas folder contains unredistributable files --> <param name="exclude">thirdparty/openblas</param> <!-- more thirdparty dependencies we don't need --> ++++++ opentoonz-1.6.0.tar.xz -> opentoonz-1.7.1.tar.xz ++++++ /work/SRC/openSUSE:Factory/opentoonz/opentoonz-1.6.0.tar.xz /work/SRC/openSUSE:Factory/.opentoonz.new.1533/opentoonz-1.7.1.tar.xz differ: char 15, line 1
