Branch: refs/heads/testing Home: https://github.com/synfig/synfig Commit: 41aff7b18ee2150b6627b2b8d5a912134f95ad77 https://github.com/synfig/synfig/commit/41aff7b18ee2150b6627b2b8d5a912134f95ad77 Author: Konstantin Dmitriev <ksee.zelga...@gmail.com> Date: 2024-08-23 (Fri, 23 Aug 2024)
Changed paths: M ChangeLog-development.md M ChangeLog-split.sh M ChangeLog.last_id M ETL/NEWS M synfig-core/NEWS M synfig-studio/NEWS M synfig-studio/org.synfig.SynfigStudio.appdata.xml.in M version-release.sh Log Message: ----------- chore: Release version 1.5.3 (#3410) Commit: e642ab49471b6ed261749f9df43d0a7d734fc534 https://github.com/synfig/synfig/commit/e642ab49471b6ed261749f9df43d0a7d734fc534 Author: rodolforg <rodolf...@users.noreply.github.com> Date: 2024-08-23 (Fri, 23 Aug 2024) Changed paths: M synfig-core/src/synfig/filesystem_path.cpp M synfig-core/test/filesystem_path.cpp Log Message: ----------- fix: drag-n-drop import when filename contains non-latin chars (#3412) Commit: af759ed5ff39e86600041b5f01b1714c993c0cec https://github.com/synfig/synfig/commit/af759ed5ff39e86600041b5f01b1714c993c0cec Author: Pablo Gil <pgilfernan...@gmail.com> Date: 2024-09-06 (Fri, 06 Sep 2024) Changed paths: M autobuild/osx/app-template/Contents/Resources/SynfigStudio.icns M autobuild/osx/app-template/Contents/Resources/sif_file.icns M synfig-osx/launcher/sif_file.icns M synfig-osx/launcher/voria.icns Log Message: ----------- refactor: update macOS icons to higher resolutions (#3224) Commit: 7fe695706485c94e2ff8e5477d681a64c2a9c9cc https://github.com/synfig/synfig/commit/7fe695706485c94e2ff8e5477d681a64c2a9c9cc Author: Rodolfo Ribeiro Gomes <rodolf...@gmail.com> Date: 2024-09-06 (Fri, 06 Sep 2024) Changed paths: M ETL/ETL/_handle.h M synfig-core/test/handle.cpp Log Message: ----------- refactor: adds move constructor and move assignment to etl::handle Commit: 702d11f2b0d1094c6da1350ace0b40369325f109 https://github.com/synfig/synfig/commit/702d11f2b0d1094c6da1350ace0b40369325f109 Author: Rodolfo Ribeiro Gomes <rodolf...@gmail.com> Date: 2024-09-06 (Fri, 06 Sep 2024) Changed paths: M ETL/ETL/_handle.h Log Message: ----------- refactor: adds move constructor and move assignment to etl::loose_handle Commit: d8b281487ddd7e59e908cc217aeb0d2c5d857909 https://github.com/synfig/synfig/commit/d8b281487ddd7e59e908cc217aeb0d2c5d857909 Author: Rodolfo Ribeiro Gomes <rodolf...@gmail.com> Date: 2024-09-06 (Fri, 06 Sep 2024) Changed paths: M ETL/ETL/_handle.h Log Message: ----------- doc(handle): update style and create for more methods Commit: 2622c4cacfca5fc909ebdbb1bdae07f178e60708 https://github.com/synfig/synfig/commit/2622c4cacfca5fc909ebdbb1bdae07f178e60708 Author: Rodolfo Ribeiro Gomes <rodolf...@gmail.com> Date: 2024-09-06 (Fri, 06 Sep 2024) Changed paths: M ETL/ETL/_handle.h Log Message: ----------- refactor: apply Rule of Three for loose_handle (missing destructor) Commit: 0d0f96d3ec706dac75194b73f86079eccccb0294 https://github.com/synfig/synfig/commit/0d0f96d3ec706dac75194b73f86079eccccb0294 Author: Rodolfo Ribeiro Gomes <rodolf...@gmail.com> Date: 2024-09-08 (Sun, 08 Sep 2024) Changed paths: M ETL/ETL/_handle.h M synfig-core/test/handle.cpp Log Message: ----------- refactor: adds move constructor and move assignment to etl::rhandle Commit: 02b4d0835638b6564d1192a2cc930fd4ff466ea7 https://github.com/synfig/synfig/commit/02b4d0835638b6564d1192a2cc930fd4ff466ea7 Author: ice0 <konop...@gmail.com> Date: 2024-09-08 (Sun, 08 Sep 2024) Changed paths: M ETL/ETL/_handle.h M synfig-core/test/handle.cpp Log Message: ----------- refactor: add move constructor to handle/loose_handle/rhandle (#3417) refactor: add move constructor to handle/loose_handle/rhandle Commit: 4160e5d5b22fcb31e6fada2a4b2fa97061ad43b4 https://github.com/synfig/synfig/commit/4160e5d5b22fcb31e6fada2a4b2fa97061ad43b4 Author: rodolforg <rodolf...@users.noreply.github.com> Date: 2024-09-14 (Sat, 14 Sep 2024) Changed paths: M synfig-core/src/modules/mod_imagemagick/mptr_imagemagick.cpp M synfig-core/src/modules/mod_imagemagick/trgt_imagemagick.cpp Log Message: ----------- fix: change convert.exe syntax to avoid clash in Windows (#3416) On Windows (I built with CMake) for some weird reason calling ImageMagick's convert calls Windows/System32/convert.exe . It's odd because my Path env var seems to list the mingw64 directory first, but a solution is using the 'magick' syntax, where you just call 'magick' to convert as per https://imagemagick.org/script/command-line-tools.php The problem is widely known as per https://stackoverflow.com/questions/3060205/error-invalid-parameter-fom-imagemagick-convert-on-windows , I was getting the same 'Invalid Parameter' error The patch uses 'magick convert' (legacy syntax), instead of 'magick' for compatibility with ImageMagick 6, since many distros don't have official packages for ImageMagick 7, despite the release being over 5 years old: https://packages.debian.org/search?searchon=sourcenames&keywords=imagemagick https://packages.fedoraproject.org/pkgs/ImageMagick/ImageMagick/ https://packages.ubuntu.com/search?keywords=imagemagick The reason is that v7's syntax is not fully compatible with v6 but it our syntax seems safe TL;DR: Instead of using ImageMagick with 'convert' use 'magick convert' since Win has another 'convert' program Supersedes: #2951 Co-authored-by: Eduardo Hernández <coz.eduardo.hernan...@gmail.com> Commit: fac37312f89e49444ff537e0aec59cd6ed0ab4ba https://github.com/synfig/synfig/commit/fac37312f89e49444ff537e0aec59cd6ed0ab4ba Author: rodolforg <rodolf...@users.noreply.github.com> Date: 2024-09-22 (Sun, 22 Sep 2024) Changed paths: M synfig-core/src/modules/mod_imagemagick/mptr_imagemagick.cpp M synfig-core/src/modules/mod_imagemagick/trgt_imagemagick.cpp Log Message: ----------- fix: convert.exe directory and missing extension (#3421) https://learn.microsoft.com/en-us/windows/win32/api/processthreadsapi/nf-processthreadsapi-createprocessw > If the file name does not contain an extension, .exe is appended. > Therefore, if the file name extension is .com, this parameter must > include the .com extension. > If the file name ends in a period (.) with no extension, or if the > file name contains a path, .exe is not appended. Commit: 31b472971336c16786942a55aceff2cc5e08f812 https://github.com/synfig/synfig/commit/31b472971336c16786942a55aceff2cc5e08f812 Author: ice0 <konop...@gmail.com> Date: 2024-09-22 (Sun, 22 Sep 2024) Changed paths: M synfig-studio/plugins/lottie-exporter/export_without_variable_width.py M synfig-studio/plugins/lottie-exporter/lottie-exporter.py Log Message: ----------- fix: Lottie export failure with Japanese locale setting in Windows (#3419) Related issue: #3418 Commit: c579450ee3038c664636b94289f6b1ee192f8b2d https://github.com/synfig/synfig/commit/c579450ee3038c664636b94289f6b1ee192f8b2d Author: rodolforg <rodolf...@users.noreply.github.com> Date: 2024-10-14 (Mon, 14 Oct 2024) Changed paths: M synfig-core/src/synfig/valuenodes/valuenode_composite.h M synfig-core/src/synfig/valuenodes/valuenode_radialcomposite.h Log Message: ----------- refactor: avoid macro in header file of ValueNode_Composite (#3429) It's for internal use only. Commit: 4d8a86cd77d57f5e3667ec8812b4bca086d81ac5 https://github.com/synfig/synfig/commit/4d8a86cd77d57f5e3667ec8812b4bca086d81ac5 Author: ice0 <konop...@gmail.com> Date: 2024-10-17 (Thu, 17 Oct 2024) Changed paths: M synfig-core/test/test_base.h Log Message: ----------- fix: Clang build Commit: 0eedd4d4b15be9020669e32b768e6e3f450c0c4e https://github.com/synfig/synfig/commit/0eedd4d4b15be9020669e32b768e6e3f450c0c4e Author: ice0 <konop...@gmail.com> Date: 2024-10-17 (Thu, 17 Oct 2024) Changed paths: M .github/workflows/synfig-ci.yml Log Message: ----------- ci(Github Actions): bump macOS version (12 Monterey -> 13 Ventura) Homebrew has stopped building Monterey bottles (https://github.com/Homebrew/brew/pull/18314) Commit: 07bfe19ecc40621fcd10e1b3625d52c3f460d6d8 https://github.com/synfig/synfig/commit/07bfe19ecc40621fcd10e1b3625d52c3f460d6d8 Author: ice0 <konop...@gmail.com> Date: 2024-10-17 (Thu, 17 Oct 2024) Changed paths: M .github/workflows/synfig-ci.yml M synfig-core/test/test_base.h Log Message: ----------- fix: clang build (and bump macOS version) (#3438) fix: clang build (and bump macOS version) Commit: 4e31ac24dc8f7012c56590146e61716907fa9252 https://github.com/synfig/synfig/commit/4e31ac24dc8f7012c56590146e61716907fa9252 Author: Shreyas <69378056+shreyaspra...@users.noreply.github.com> Date: 2024-10-18 (Fri, 18 Oct 2024) Changed paths: M 2-build-cmake.sh M autobuild/build.sh M autobuild/msys2/build_mlt.sh M autobuild/synfigstudio-release.sh M cmake/InstallMSYS2.cmake Log Message: ----------- fix: Upgraded MLT version from '7.2.0' to '7.28.0' under MSYS2 environment (#3437) - Updated MLT to address issue #3026. - Tested functionalities to verify the upgrade under MSYS2 Environment in Windows. Commit: e3de4eb4ed0331ab591cdcdb4d97935ac0202c86 https://github.com/synfig/synfig/commit/e3de4eb4ed0331ab591cdcdb4d97935ac0202c86 Author: Rodolfo Ribeiro Gomes <rodolf...@gmail.com> Date: 2024-10-19 (Sat, 19 Oct 2024) Changed paths: M synfig-core/test/benchmark.cpp Log Message: ----------- fix: missing variable initialization Commit: d7e8609c52e06b620b6f51ba8b71c513da5f104a https://github.com/synfig/synfig/commit/d7e8609c52e06b620b6f51ba8b71c513da5f104a Author: Rodolfo Ribeiro Gomes <rodolf...@gmail.com> Date: 2024-10-19 (Sat, 19 Oct 2024) Changed paths: M synfig-core/src/modules/lyr_std/curvewarp.h Log Message: ----------- fix: warning about mixed declaration/definition of class/struct solves warning: 'Internal' defined as a struct here but previously declared as a class; this is valid, but may result in linker errors under the Microsoft C++ ABI [-Wmismatched-tags] Commit: 4e4d8b9c142be9592d674b05dab316172cc2c056 https://github.com/synfig/synfig/commit/4e4d8b9c142be9592d674b05dab316172cc2c056 Author: ice0 <konop...@gmail.com> Date: 2024-10-19 (Sat, 19 Oct 2024) Changed paths: M synfig-core/src/modules/lyr_std/curvewarp.h M synfig-core/test/benchmark.cpp Log Message: ----------- fix: uninitialized variable and mixed declaration/definition of class (#3435) fix: uninitialized var and mixed declaration/definition of class Commit: bab18f404daeda872435fbf1eea8cc5820782f7a https://github.com/synfig/synfig/commit/bab18f404daeda872435fbf1eea8cc5820782f7a Author: Rodolfo Ribeiro Gomes <rodolf...@gmail.com> Date: 2024-10-19 (Sat, 19 Oct 2024) Changed paths: M synfig-studio/src/gui/cellrenderer/cellrenderer_value.cpp M synfig-studio/src/gui/cellrenderer/cellrenderer_value.h M synfig-studio/src/gui/dialogs/dialog_color.cpp M synfig-studio/src/gui/dialogs/dialog_color.h M synfig-studio/src/gui/dialogs/dialog_gradient.cpp M synfig-studio/src/gui/dialogs/dialog_gradient.h M synfig-studio/src/gui/trees/layertree.cpp Log Message: ----------- fix: color/gradient dialog edits the parameter that opened itself Here we prevent to emit signal_edited_ for Color and Gradient dialog windows when presented by Parameter Panel. Those dialogs may be opened by a cell and try to update the parameter value related to another one, as it just remembered its parameter tree path. Reproducible steps: 1. Create a region layer 2. Create an outline layer 3. Click on color parameter to edit it 4. Without closing color dialog, select the region layer instead 5. Try to edit the color in dialog 6. Error Message appears fix #3288 Commit: 9c7f67d3e1ca47f980bc5c575461fd681c9503e4 https://github.com/synfig/synfig/commit/9c7f67d3e1ca47f980bc5c575461fd681c9503e4 Author: Rodolfo Ribeiro Gomes <rodolf...@gmail.com> Date: 2024-10-19 (Sat, 19 Oct 2024) Changed paths: M synfig-studio/src/gui/cellrenderer/cellrenderer_value.h Log Message: ----------- refactor: reduces some member class visibility `protected` instead of `public` Commit: b80368f5577c7637218870dd80ee24da7077e187 https://github.com/synfig/synfig/commit/b80368f5577c7637218870dd80ee24da7077e187 Author: Rodolfo Ribeiro Gomes <rodolf...@gmail.com> Date: 2024-10-19 (Sat, 19 Oct 2024) Changed paths: M synfig-studio/src/gui/cellrenderer/cellrenderer_value.cpp M synfig-studio/src/gui/dialogs/dialog_color.cpp M synfig-studio/src/gui/dialogs/dialog_gradient.cpp Log Message: ----------- fix: don't pollute undo history after layer deletion If user opens Color dialog for editing a layer parameter, deletes this layer while Color dialog is still open and keep using the dialog for color changing, the Undo history is filled with useless color changes... Commit: 483b5ed6fd2917937761b0a029d86b1b9b0be36c https://github.com/synfig/synfig/commit/483b5ed6fd2917937761b0a029d86b1b9b0be36c Author: ice0 <konop...@gmail.com> Date: 2024-10-20 (Sun, 20 Oct 2024) Changed paths: M synfig-studio/src/gui/cellrenderer/cellrenderer_value.cpp M synfig-studio/src/gui/cellrenderer/cellrenderer_value.h M synfig-studio/src/gui/dialogs/dialog_color.cpp M synfig-studio/src/gui/dialogs/dialog_color.h M synfig-studio/src/gui/dialogs/dialog_gradient.cpp M synfig-studio/src/gui/dialogs/dialog_gradient.h M synfig-studio/src/gui/trees/layertree.cpp Log Message: ----------- fix: color/gradient dialog edits the parameter that opened itself (#3373) fix: color/gradient dialog edits the parameter that opened itself Commit: bcc6bf098a06ceb42c1c8331f5df0e8338708ff3 https://github.com/synfig/synfig/commit/bcc6bf098a06ceb42c1c8331f5df0e8338708ff3 Author: rodolforg <rodolf...@users.noreply.github.com> Date: 2024-10-20 (Sun, 20 Oct 2024) Changed paths: M synfig-studio/src/gui/dialogs/dialog_pasteoptions.cpp M synfig-studio/src/gui/dialogs/dialog_pasteoptions.h M synfig-studio/src/gui/resources/ui/dialog_pasteoptions.glade Log Message: ----------- feat: add "copy all" for Paste Options dialog (#3422) fix #3413 Commit: 8170b7dae4721bbc838ace23450b987c0685efe0 https://github.com/synfig/synfig/commit/8170b7dae4721bbc838ace23450b987c0685efe0 Author: luzpaz <luz...@users.noreply.github.com> Date: 2024-10-21 (Mon, 21 Oct 2024) Changed paths: M perf/scripts/test_render_all_perf.py M synfig-core/bootstrap.sh M synfig-core/src/modules/lyr_freetype/lyr_freetype.h M synfig-core/src/synfig/CMakeLists.txt M synfig-core/src/synfig/blur/boxblur.h M synfig-core/src/synfig/filesystem_path.h M synfig-core/src/synfig/os.cpp M synfig-core/src/synfig/pen.h M synfig-core/src/synfig/rendering/task.h M synfig-core/src/synfig/synfig_iterations.h M synfig-studio/bootstrap.sh M synfig-studio/docs/bones_gui.txt M synfig-studio/src/gui/app.cpp M synfig-studio/src/gui/dialogs/dialog_spritesheetparam.cpp M synfig-studio/src/gui/docks/dock_navigator.cpp M synfig-studio/src/gui/states/state_circle.cpp M synfig-studio/src/gui/states/state_draw.cpp M synfig-studio/src/gui/states/state_lasso.cpp M synfig-studio/src/synfigapp/actions/waypointsetsmart.cpp M synfig-studio/src/synfigapp/blineconvert.cpp M synfig-studio/src/synfigapp/instance.cpp M synfig-studio/src/synfigapp/vectorizer/centerlineskeletonizer.cpp Log Message: ----------- chore: fix various typos (#3443) Found via `codespell -q 3 -L aline,ang,apendices,ba,bu,childs,dout,eiter,existant,forse,objext,pard,parms,pevent,propertyst,rin,ro,sectionin,shouldbe,textin,thru,uint,unselect,vertexes -S "./.git,*.patch,./synfig-studio/po,./synfig-core/po,/synfig-core/m4,./synfig-osx/,./gtkmm-osx,./bugs,.*.eps,*.sif,./synfig-studio/plugins/lottie-exporter"` Commit: 9f95d2c51e3735f8590d22c5c5466c463bb63db1 https://github.com/synfig/synfig/commit/9f95d2c51e3735f8590d22c5c5466c463bb63db1 Author: rodolforg <rodolf...@users.noreply.github.com> Date: 2024-10-21 (Mon, 21 Oct 2024) Changed paths: M synfig-studio/src/gui/app.cpp M synfig-studio/src/gui/mainwindow.cpp M synfig-studio/src/gui/resources/ui/studio_menubar.xml Log Message: ----------- refactor: rename setup and help-about actions - preparing to macOS (#3195) Commit: c8120b823d5d8f70f4d338c4e1adff761afee0ec https://github.com/synfig/synfig/commit/c8120b823d5d8f70f4d338c4e1adff761afee0ec Author: rodolforg <rodolf...@users.noreply.github.com> Date: 2024-10-21 (Mon, 21 Oct 2024) Changed paths: M synfig-studio/src/gui/workarearenderer/renderer_bonesetup.cpp Log Message: ----------- fix: proper reset of bonesetup size in WorkArea (#3380) Commit: 071dce7776577c2dfe0188a953dc7bc3a344c4b5 https://github.com/synfig/synfig/commit/071dce7776577c2dfe0188a953dc7bc3a344c4b5 Author: rodolforg <rodolf...@users.noreply.github.com> Date: 2024-10-21 (Mon, 21 Oct 2024) Changed paths: M synfig-core/src/modules/mod_ffmpeg/trgt_ffmpeg.cpp M synfig-core/src/synfig/filesystem.cpp M synfig-core/src/synfig/filesystem.h M synfig-studio/src/gui/app.cpp Log Message: ----------- refactor: Filesystem::remove_recursive() uses Path (#3364) `synfig::Filesystem::remove_recursive()` now uses `synfig::filesystem::Path` instead of `synfig::String` Commit: eb277aa56a3e7d339fa4967deaf83d4f0a6586ab https://github.com/synfig/synfig/commit/eb277aa56a3e7d339fa4967deaf83d4f0a6586ab Author: rodolforg <rodolf...@users.noreply.github.com> Date: 2024-10-21 (Mon, 21 Oct 2024) Changed paths: M synfig-core/src/modules/mod_svg/svg_parser.cpp M synfig-core/src/modules/mod_svg/svg_parser.h Log Message: ----------- feat(SVG): naive support to Text element (#3320) It doesn't handle <textPath>, text span (<tspan>), stroke, multiple lines, and per-character transformations (offset and rotation) autowrap, font selection among options... But it does some work, I promise ;) Commit: bd2bf9f52b3a11514d79b8ef9db137870ac3842c https://github.com/synfig/synfig/commit/bd2bf9f52b3a11514d79b8ef9db137870ac3842c Author: rodolforg <rodolf...@users.noreply.github.com> Date: 2024-10-21 (Mon, 21 Oct 2024) Changed paths: M synfig-studio/src/gui/widgets/widget_curves.cpp Log Message: ----------- fix: handle (Radial)Composite valuenodes via Widget_Curves (#3428) fix #3426 Commit: 46013ffe667813998f024f9a96df0328f62403e1 https://github.com/synfig/synfig/commit/46013ffe667813998f024f9a96df0328f62403e1 Author: rodolforg <rodolf...@users.noreply.github.com> Date: 2024-10-22 (Tue, 22 Oct 2024) Changed paths: M synfig-core/src/modules/mod_gradient/conicalgradient.cpp M synfig-core/src/modules/mod_gradient/lineargradient.cpp M synfig-core/src/modules/mod_gradient/radialgradient.cpp M synfig-core/src/modules/mod_gradient/spiralgradient.cpp Log Message: ----------- refactor: simpler gradient render task declarations (#3301) and add proper SYNFIG_EXPORT for MSVC builds Commit: 4fadf2837bdc136fad26e0518c2b23e0842df780 https://github.com/synfig/synfig/commit/4fadf2837bdc136fad26e0518c2b23e0842df780 Author: rodolforg <rodolf...@users.noreply.github.com> Date: 2024-10-23 (Wed, 23 Oct 2024) Changed paths: M synfig-studio/src/synfigapp/value_desc.h Log Message: ----------- refactor: add move constructor and move assignment operator to ValueDesc (#3150) Note: sadly the usage is low. By adding debug messages on copy constructor and assignment operator, it can be seen there is *a lot* of copy while clicking around, moving mouse or even after a Alt+Tab to change to other application. Commit: 1d37f2cd35b50def8322b47fc0683f6216c7cb23 https://github.com/synfig/synfig/commit/1d37f2cd35b50def8322b47fc0683f6216c7cb23 Author: Konstantin Dmitriev <ksee.zelga...@gmail.com> Date: 2024-11-08 (Fri, 08 Nov 2024) Changed paths: M .github/workflows/synfig-ci-self-hosted.yml Log Message: ----------- ci: Resolve error when build dir cannot be removed after previously failed (terminated) run (#3450) Commit: 29c95343f6e86682585a3b43243d1858ef569a1b https://github.com/synfig/synfig/commit/29c95343f6e86682585a3b43243d1858ef569a1b Author: Ahmed Khaled <65862757+ahmed-khaled-...@users.noreply.github.com> Date: 2024-11-10 (Sun, 10 Nov 2024) Changed paths: A .github/workflows/generate-release-notes.yml Log Message: ----------- ci: Add ability to generate release notes for GitHub releases (#3392) Commit: 61df837c9795242f65e9e03a2e2e3218f1d2a630 https://github.com/synfig/synfig/commit/61df837c9795242f65e9e03a2e2e3218f1d2a630 Author: Ahmed Khaled <65862757+ahmed-khaled-...@users.noreply.github.com> Date: 2024-11-10 (Sun, 10 Nov 2024) Changed paths: A .github/workflows/show-pr-change-note.yml Log Message: ----------- ci: Add automatically showing contributors how their pull requests affect the release notes (#3393) * ci: Add automatically showing how pull requests affect release notes * ci: update show-pr-change-note to use release notes manager v1.0.1 this refines the GitHub bot messages that encourage better PR descriptions Commit: 149463728758ce060682abd307799f7d1ece44bc https://github.com/synfig/synfig/commit/149463728758ce060682abd307799f7d1ece44bc Author: Ahmed Khaled <65862757+ahmed-khaled-...@users.noreply.github.com> Date: 2024-11-22 (Fri, 22 Nov 2024) Changed paths: M .github/workflows/show-pr-change-note.yml Log Message: ----------- fix(ci): show-pr-change-note not working with prs from forks (#3453) Commit: d8c0391d96dd921898821d9721c3d2f97cf3f047 https://github.com/synfig/synfig/commit/d8c0391d96dd921898821d9721c3d2f97cf3f047 Author: Rodolfo Ribeiro Gomes <rodolf...@gmail.com> Date: 2024-11-22 (Fri, 22 Nov 2024) Changed paths: M synfig-core/src/modules/lyr_std/bevel.cpp M synfig-core/src/modules/lyr_std/bevel.h Log Message: ----------- WIP: port Bevel layer to Cobra engine Commit: 372a6b831a2f9a4a32ce8b5cb24e0907423df73a https://github.com/synfig/synfig/commit/372a6b831a2f9a4a32ce8b5cb24e0907423df73a Author: Rodolfo Ribeiro Gomes <rodolf...@gmail.com> Date: 2024-11-22 (Fri, 22 Nov 2024) Changed paths: M synfig-core/src/modules/lyr_std/bevel.cpp Log Message: ----------- WIP: move to Commit: 4980ee6e12549b0e681683be21e4d342f657bcf9 https://github.com/synfig/synfig/commit/4980ee6e12549b0e681683be21e4d342f657bcf9 Author: Rodolfo Ribeiro Gomes <rodolf...@gmail.com> Date: 2024-11-22 (Fri, 22 Nov 2024) Changed paths: M synfig-core/src/modules/lyr_std/bevel.cpp Log Message: ----------- WIP calc bounds e outros Commit: 5ac72071b7abfd2325679c528703b40a6df09078 https://github.com/synfig/synfig/commit/5ac72071b7abfd2325679c528703b40a6df09078 Author: Rodolfo Ribeiro Gomes <rodolf...@gmail.com> Date: 2024-11-22 (Fri, 22 Nov 2024) Changed paths: M synfig-core/src/modules/lyr_std/bevel.cpp Log Message: ----------- WIP soft reset Commit: 020012bdcb3e53f14c77c4e450bccaaf39879901 https://github.com/synfig/synfig/commit/020012bdcb3e53f14c77c4e450bccaaf39879901 Author: Rodolfo Ribeiro Gomes <rodolf...@gmail.com> Date: 2024-11-26 (Tue, 26 Nov 2024) Changed paths: M synfig-core/src/modules/lyr_std/bevel.cpp Log Message: ----------- WIP a mess that seems to work? Commit: 690e9e9772b38778d9d002e3a73ee5928ac4a62d https://github.com/synfig/synfig/commit/690e9e9772b38778d9d002e3a73ee5928ac4a62d Author: Rodolfo Ribeiro Gomes <rodolf...@gmail.com> Date: 2024-11-26 (Tue, 26 Nov 2024) Changed paths: M synfig-core/src/modules/lyr_std/bevel.cpp Log Message: ----------- strangely fix the shadow/light shift Compare: https://github.com/synfig/synfig/compare/3b7c539bcca3...690e9e9772b3 To unsubscribe from these emails, change your notification settings at https://github.com/synfig/synfig/settings/notifications _______________________________________________ Synfig-devl mailing list Synfig-devl@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/synfig-devl