pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/graphics/gimp Update to 2.10.10
details: https://anonhg.NetBSD.org/pkgsrc/rev/4da4ae69a32c
branches: trunk
changeset: 332367:4da4ae69a32c
user: ryoon <ryoon%pkgsrc.org@localhost>
date: Tue Apr 09 13:09:43 2019 +0000
description:
Update to 2.10.10
Changelog:
Overview of Changes from GIMP 2.10.8 to GIMP 2.10.10
====================================================
Core:
- Add gimp-scratch allocator, a fast memory allocator (on the order of
magnitude of alloca()), suitable for small (up to a few megabytes),
short-lived (usually, bound to the current stack-frame) allocations.
Unlike alloca(), gimp-scratch doesn't use the stack, and is therefore
safer, and will also serve bigger requests, by falling-back to malloc().
- In gimp_drawable_transform_buffer_affine(), avoid modifying the
clipping mode when transforming layer masks, since this function
is used (among other things) to transform layer masks together with
their layer, in which case they should use the same clipping mode
as the layer. This fixes a regression introduced by commit 2ae823ba,
causing layer masks to be transformed with a mismatched clipping mode
during layer transforms, leading to discrepencies between the
transformed layer and the transformed mask.
- Moved swap/cache and temporary files out the GIMP user config dir and
added new config file substitutions ${gimp_cache_dir} and
${gimp_temp_dir}.
- Pass the GEGL tile-cache size, swap path, and thread-count to plug-ins
as part of their config, and have libgimp set the plug-in's GeglConfig
accordingly upon initialization.
- Layer groups are now rendered in bigger chunks rather than tile-by-tile
(which used to pretty much eliminate multithreading for groups), which
improves the rendering speed.
- Make saving/exporting files more robust to errors. In particular if
an error occurs during the process (be it a bug, a memory error, or
anything else), GIMP won't overwrite anymore any existing file with
incomplete contents, so that you won't end up with no valid files at
all.
- Fix a regression on support of various graphics tablet.
- Remove the "Edit -> Fade..." feature: it makes GIMP use two buffers
instead of one (east into system resources), it's broken in 2.10, and
we can make the UX better for filters.
- New generic canvas modifier 'Alt + middle click' allowing to pick
layers by clicking on pixels. The available layers will be looped
through (starting from the upper one) while Alt key is hold and the
picked layer name will be temporarily displayed in the status bar.
- When clearing a channel, do nothing if the channel is already empty;
otherwise, align the cleared rectangle to the channel buffer's tile
grid, so that all affected tiles are dropped, rather than zeroed.
Furthermore, only update the affected region of the channel.
- Brush and pattern saving logics has been moved to core code (instead
of plug-in).
- Clipboard brushes and pattern can now be duplicated.
- Parametric brushes are now 32-bit float to avoid posterization on
large brushes.
Note: raster brushes are still 8-bit and plug-ins only have access
to 8-bit versions of high-precision brushes/patterns. New API will
be required to handle high-precision data.
- On-canvas preview while editing a color in the colormap of an
indexed image.
User interface:
- Enabled HiDPI/Retina support for the GTK2/OSX build, fixes blurry icons.
- Add a tooltip to the "better compression" checkbox in save dialog to
make it clearer it does not mean that the file size is necessarily
smaller in every cases. In particular some best/worst case are
possible when an algorithm less efficient in general may end up
better on a particular image.
- Add basic support for cursors with a scale factor of 2 for HiDPI
(artwork to be updated).
- Foreground and background color icons, as well as color history will
now display out-of-gamut warning on indexed images for colors
outside of the palette, as well as on grayscale images, for non-gray
colors.
- Pack color picker and hexadecimal entry on same line in Color dock.
- Add an "Open as Image" button to the brushes dialog.
Usability:
- Attempting to transform locked layers or paint on them now results in
blinking around the status bar (where the warning message is displayed)
and around the toolbar where lock toggles are. The same applies to
attempting to move a selection where there is none ? GIMP will blink
around the toolbar where the moving target (layer, selection, path)
is chosen.
- GIMP now allows selecting default export file type for new projects.
The choice is limited to PNG, JPEG, WebP, PSD, ORA, TIFF, BMP.
- GimpSpinScale widget now has an optional feature to constrain the
value to integer when dragging with a pointer (even if the scale
allows for fractional numbers), set with new function
gimp_spin_scale_set_constrain_drag().
This is useful for settings where fractional numbers are technically
possible, yet most common use case are with integers (such as pixel
sizes, angles in degrees, etc.) so you want the easy interface to be
constrained. Fractional numbers are still settable, for instance by
keyboard edit; and arrow incrementation won't drop fraction parts.
This is currently only activated for brush options in paint tools.
Tools:
- In scale tool, scale around center even when using numeric input.
- New algorithm in the Bucket Fill tool when selecting the affected
area "Fill by line art detection", based off the G'Mic algorithm for
"smart colorization": https://hal.archives-ouvertes.fr/hal-01891876
In a few words, it identifies painted pixels (either based on
grayscale or opacity values) and tries to close line arts to allow
filling even with not perfectly closed zones; the second step of the
algorithm will flood the colors under line art pixels to prevent
"holes" in the filling.
It is possible to control a max size (in pixels) for the flooding,
as well as max length of closing segments and splines.
- The Bucket Fill tool got new interaction allowing to hold the click
and move the mouse to fill based on several seed zones (for "Fill
by line art detection" as well as "Fill similar colors"). You can
now cancel the fill in progress with right click as in other tools.
- The Bucket Fill tool now allows color picking with ctrl-click, same
as every painting tool. It will pick either the foreground or
background color depending on the selected Fill Type. The ctrl-alt
modifier combination is also possible to pick the non-Fill Type
color.
- In the Bucket Fill tool, the Alt modifier will now switch to
"FG color fill" when "Pattern fill" was set (instead of doing
nothing).
- In the Unified Transform tool, default to preserving aspect ratio
when scaling up or down.
- In the Healing tool, "Sample merged" now also work for the target
pixels, allowing to draw in empty layers.
- Selection by color is now parallelized, hence improving speed of the
Select by Color tool (and any other processing which may share this
piece of code now or in the future).
- Add "Constrain handles" and "Around center" options to the
perspective-transform tool's GUI, which are similar to the
corresponding options of the unified-transform tool.
- Improve color picking on indexed image to always select an indexed
color corresponding to the picked pixel in the colormap.
Plug-ins:
- file-pdf-save GUI now clearly indicates the order the layers will be
used to make multi-page PDFs.
- Add DDS loading/exporting plug-in originally developed by Shawn Kirst
and Arne Reuter.
- Rename the Guillotine plug-in to Slice Using Guides.
- Add a new option saving a color profile when exporting PNG, JPEG, TIFF.
Always save it when exporting to PSD.
- Remove the "Advanced" expanders from the PNG and TIFF export dialogs.
- Full rewrite of the Spyrogimp plug-in with much more options and
better interaction.
- Indexed TIFF with alpha channel now supported.
Filters:
- Add on-canvas GUI (simple lines) for circular, linear, and zoom motion
blur.
Help:
- Link to the bugtracker directly from the Help menu, also link to the
wiki and the roadmap. Remove the link to currently disabled
registry.gimp.org.
Installers:
- Windows: proper fix for libthai to stop GIMP from crashing in the
Thai locale.
Translations:
- Czech, Danish, French, Italian, Japanese, Marathi, Polish, Russian,
Spanish, Swedish, Ukrainian.
Build:
- Bumping GTK+ dependency to the micro update GTK+ 2.24.32 to handle
several bugs on Windows (broken shortcuts on non-latin layouts and
broken vector icons).
diffstat:
graphics/gimp/Makefile | 5 ++---
graphics/gimp/PLIST | 5 ++++-
graphics/gimp/distinfo | 10 +++++-----
3 files changed, 11 insertions(+), 9 deletions(-)
diffs (64 lines):
diff -r 085e8204f239 -r 4da4ae69a32c graphics/gimp/Makefile
--- a/graphics/gimp/Makefile Tue Apr 09 13:09:23 2019 +0000
+++ b/graphics/gimp/Makefile Tue Apr 09 13:09:43 2019 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.305 2019/04/03 06:02:29 wiz Exp $
+# $NetBSD: Makefile,v 1.306 2019/04/09 13:09:43 ryoon Exp $
-DISTNAME= gimp-2.10.8
-PKGREVISION= 6
+DISTNAME= gimp-2.10.10
CATEGORIES= graphics
MASTER_SITES= http://download.gimp.org/pub/gimp/v${PKGVERSION_NOREV:R}/
EXTRACT_SUFX= .tar.bz2
diff -r 085e8204f239 -r 4da4ae69a32c graphics/gimp/PLIST
--- a/graphics/gimp/PLIST Tue Apr 09 13:09:23 2019 +0000
+++ b/graphics/gimp/PLIST Tue Apr 09 13:09:43 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.65 2019/04/03 06:02:29 wiz Exp $
+@comment $NetBSD: PLIST,v 1.66 2019/04/09 13:09:43 ryoon Exp $
bin/gimp
bin/gimp-2.10
bin/gimp-console
@@ -228,6 +228,7 @@
include/gimp-2.0/libgimpwidgets/gimpscaleentry.h
include/gimp-2.0/libgimpwidgets/gimpscrolledpreview.h
include/gimp-2.0/libgimpwidgets/gimpsizeentry.h
+include/gimp-2.0/libgimpwidgets/gimpspinbutton.h
include/gimp-2.0/libgimpwidgets/gimpstringcombobox.h
include/gimp-2.0/libgimpwidgets/gimpunitcombobox.h
include/gimp-2.0/libgimpwidgets/gimpunitmenu.h
@@ -280,6 +281,7 @@
lib/gimp/2.0/plug-ins/file-compressor/file-compressor
lib/gimp/2.0/plug-ins/file-csource/file-csource
lib/gimp/2.0/plug-ins/file-darktable/file-darktable
+lib/gimp/2.0/plug-ins/file-dds/file-dds
lib/gimp/2.0/plug-ins/file-desktop-link/file-desktop-link
lib/gimp/2.0/plug-ins/file-dicom/file-dicom
lib/gimp/2.0/plug-ins/file-faxg3/file-faxg3
@@ -3610,6 +3612,7 @@
share/gtk-doc/html/libgimpwidgets/GimpUnitMenu.html
share/gtk-doc/html/libgimpwidgets/GimpUnitStore.html
share/gtk-doc/html/libgimpwidgets/GimpZoomModel.html
+share/gtk-doc/html/libgimpwidgets/api-index-2-10-10.html
share/gtk-doc/html/libgimpwidgets/api-index-2-10-4.html
share/gtk-doc/html/libgimpwidgets/api-index-2-10.html
share/gtk-doc/html/libgimpwidgets/api-index-2-2.html
diff -r 085e8204f239 -r 4da4ae69a32c graphics/gimp/distinfo
--- a/graphics/gimp/distinfo Tue Apr 09 13:09:23 2019 +0000
+++ b/graphics/gimp/distinfo Tue Apr 09 13:09:43 2019 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.96 2018/11/22 13:02:21 ryoon Exp $
+$NetBSD: distinfo,v 1.97 2019/04/09 13:09:43 ryoon Exp $
-SHA1 (gimp-2.10.8.tar.bz2) = fb694b0cda834e7b7924e9ba09b764b5c46fe93c
-RMD160 (gimp-2.10.8.tar.bz2) = 6ba70462096cc79c80c4e5bcb8abfe3c339542d6
-SHA512 (gimp-2.10.8.tar.bz2) = b458dd710b786152f95a8e48a0727b71cac549fccb31ac9e1e6ac3c617652079773ce7076401f8ade750ed38bdc78dfdec3317423f4c4e9c931f78002bd7454e
-Size (gimp-2.10.8.tar.bz2) = 31954568 bytes
+SHA1 (gimp-2.10.10.tar.bz2) = e920e5f5b7a895e2c8b1680136453ceb2a3e575c
+RMD160 (gimp-2.10.10.tar.bz2) = 888e4a3da7198618a7db8bc3c21956169c39efbf
+SHA512 (gimp-2.10.10.tar.bz2) = 87caab9643a018e741e5e51c61220b7b282a66ed5bb723750cdf4139950f98c9ab246f4d6450420531d0e878c4561150efc4063cda896f08b25669bac4d1d172
+Size (gimp-2.10.10.tar.bz2) = 32408724 bytes
SHA1 (patch-aa) = 403c46d7070de208769e99e512922ba3a5b7129b
SHA1 (patch-ab) = 37820b9e03702248294f0030ffbd09e7f14f3dcb
SHA1 (patch-app_core_gimpbrush-transform.cc) = 2524948ed5b04ab2b50f169f5dfd5eba4aac4395
Home |
Main Index |
Thread Index |
Old Index