Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
pkgsrc change: Add dependency to devel/ruby-gnome2-gio.
2.1.8: 2015-09-06
A bug fix release for 2.1.7. 2.1.7 can't start on Windows.
Fixes
rabbit
* Windows: Fixed a bug that Rabbit can't start. [Reported by yoku0825]
Thanks
* yoku0825
2.1.7: 2015-09-05
Note markup support in Markdown release.
Improvements
rabbit
* Removed GDK rendering engine. (Because cairo is always available since a few
years ago. If we can use cairo, there is no problem without GDK rendering
engine.)
* Improved GTK+ 3 support. (It's not completed yet.) [Patch by okkez]
* Removed unused --server option.
* Wiki markup: Improved error message when unsupported markup is used.
* Markdown markup: Supported error message when multiple images exist in a
paragraph. [GitHub#71][Reported by Colin Dean]
* Markdown markup: Supported note markup. [Suggested by yoku0825]
Syntax is {::note}...{:/note}.
Example:
Normal text {::note}note{:/note} Normal text
Theme
* image-timer: Reduced memory usage.
* image-slide-number: Reduced memory usage.
* clear-blue: Removed indent of the first line in block quote.
Document
* Marked up README in Markdown. [GitHub#72][Patch by Toshi MARUYAMA]
* Improved description about Rabbit in Japanese. [GitHub#74][Patch by YU-TAYU]
Fixes
rabbit-slide
* Fixed a bug that invalid Markdown is generated. [Matafumi Yokoyama]
Document
* Fixed a bug that side menu is hidden. [GitHub#75][Reported by YU-TAYU]
Thanks
* okkez
* Matafumi Yokoyama
* Colin Dean
* Toshi MARUYAMA
* YU-TAYU
* yoku0825
|
|
v4.3.3
* Fixed a bug where, if you would reference any image info inside Image#format
{} or Image#combine_options {}, this info would be cached even after these
methods were executed, leaving the MiniMagick::Image instance with stale
data.
v4.3.2
* Fixed MiniMagick::Image.new("...").format("<ext>") not working if the image
didn't have an extension.
v4.3.1
* Reverted making MiniMagick configuration thread safe, until we figure out
what caused #328.
v4.3.0
* Fixed early reportings of ImageMagick/GraphicsMagick not being installed by
removing the automagically generated methods (commit)
* MiniMagick.with_cli is now thread-safe, as well as other configuration
options
v4.2.10
* Make GraphicsMagick's mogrify support the "-gravity" option.
v4.2.9
* Fixes MiniMagick::Image#size to properly return filesize in bytes
* Added MiniMagick::Image#human_size which holds ImageMagick's human-readable
size string.
v4.2.8
This version has been yanked as it holds a backwards incompatibility which
breaks CarrierWave.
* MiniMagick.with_cli will now restore the old CLI even when errors occur.
* Fixed race condition which caused the MiniMagick::Tool methods not to be
defined yet (can happen in multithreaded environments)
Backwards compatibility
* MiniMagick::Image#size now returns a string with the filesize unit included
|
|
## RMagick 2.15.4
- Improved C extension building process - @u338steven
## RMagick 2.15.3
- Fixed ImageMagick version detection on Windows - @maisumakun
|
|
This requires disabling nouveau and radeon drivers.
The performance boost is appreciable, glxgears is twice as fast on
a cubieboard 2:
cubiem:/>/usr/X11R7/bin/glxgears
76 frames in 5.1 seconds = 15.022 FPS
75 frames in 5.0 seconds = 14.889 FPS
75 frames in 5.0 seconds = 14.979 FPS
69 frames in 5.1 seconds = 13.653 FPS
80 frames in 5.1 seconds = 15.831 FPS
78 frames in 5.0 seconds = 15.529 FPS
cubiem:/>/usr/pkg/bin/glxgears
121 frames in 5.0 seconds = 24.076 FPS
184 frames in 5.0 seconds = 36.595 FPS
182 frames in 5.0 seconds = 36.072 FPS
175 frames in 5.0 seconds = 34.718 FPS
171 frames in 5.0 seconds = 34.053 FPS
169 frames in 5.0 seconds = 33.734 FPS
on the beaglebone the boost is nearly 2x too:
beagle:~> /usr/X11R7/bin/glxgears
47 frames in 5.0 seconds = 9.343 FPS
47 frames in 5.1 seconds = 9.246 FPS
47 frames in 5.1 seconds = 9.210 FPS
47 frames in 5.1 seconds = 9.253 FPS
47 frames in 5.1 seconds = 9.252 FPS
47 frames in 5.1 seconds = 9.236 FPS
beagle:~> /usr/pkg/bin/glxgears
2 frames in 7.3 seconds = 0.275 FPS
84 frames in 5.1 seconds = 16.613 FPS
84 frames in 5.0 seconds = 16.641 FPS
83 frames in 5.0 seconds = 16.482 FPS
83 frames in 5.0 seconds = 16.480 FPS
83 frames in 5.0 seconds = 16.436 FPS
|
|
|
|
MAJOR CHANGES:
Now builds with CMake 2.8.9 and newer (previously required
3.0.0)
CHANGES IN THE SOFTWARE CONFIGURATION:
CMakeLists.txt / CMake
Supports CMake 2.8.9 and later.
Add missing file which wasn't being distributed, causing
unit tests to fail.
Make shared/static library building configurable.
CMake reads all version information directly from configure.ac
to avoid duplication of values.
CMake builds are now included in 'distcheck' target.
Makefile.am
Autotools 'make distcheck' now tests the CMake-based build
if CMake is available.
CHANGES IN LIBTIFF:
Fixes to avoid undefined behaviour of signed types (C standard
compliance).
Fixes to avoid possible isses when casting to unsigned char.
Fixes to avoid undefined behaviour with shifts.
Fix generation of output with 16 bit or 32 bit integer, when
byte swapping is needed, in horizontal predictor (#2521).
Fix decoding when there is a single pixel to decode (unlikely
case...) and byte swapping is involved.
Add add explicit masking with 0xff before casting to uchar in
floating-point horizontal differencing and accumulation routines.
Eliminate requirement for and use of 64-bit constant values.
CHANGES IN THE TOOLS:
tiffgt
Silence glut API deprecation warnings on MacOS X.
fax2ps
Detect failure to write to temporary file.
|
|
Changes:
GL API registry update
fixes for a nonconformant GL implementation
some library size reductions
support reproducible builds
|
|
XXX shouldn't devel/libelf in fact have a builtin.mk?
|
|
|
|
is also required to support the latest RADEON GPUs, so enable it
by default on platforms where such GPUs might be encountered.
Also enable thread local storage support in GLX for those platforms.
Part of PR pkg/50172.
|
|
The libchamplain option used to work, but it doesn't seem to work in
this version, and it pulls in a lot of dependencies. Disable it by
default until this is resolved.
|
|
|
|
|
|
|
|
|
|
|
|
SyntaxError: Missing parentheses in call to print
|
|
|
|
Requested by David Shao in PR pkg/50202.
Also as suggested add support for using libdevq for FreeBSD, from Ports.
(Re the PR: I think we should have TLS GLX unconditionally enabled on
platforms that support it, but needs more testing so not commited just yet.)
New features in MesaLib 10.6:
GL_AMD_pinned_memory on r600, radeonsi
GL_ARB_clip_control on i965
GL_ARB_depth_buffer_float on freedreno
GL_ARB_depth_clamp on freedreno
GL_ARB_direct_state_access on all drivers that support GL 2.0+
GL_ARB_draw_indirect, GL_ARB_multi_draw_indirect on r600
GL_ARB_draw_instanced on freedreno
GL_ARB_gpu_shader_fp64 on nvc0, softpipe
GL_ARB_gpu_shader5 on i965/gen8+
GL_ARB_instanced_arrays on freedreno
GL_ARB_pipeline_statistics_query on i965, nv50, nvc0, r600, radeonsi, softpipe
GL_ARB_program_interface_query (all drivers)
GL_ARB_texture_stencil8 on nv50, nvc0, r600, radeonsi, softpipe
GL_ARB_texture_view on llvmpipe, softpipe
GL_ARB_uniform_buffer_object on freedreno
GL_ARB_vertex_attrib_64bit on nvc0, softpipe
GL_ARB_viewport_array, GL_AMD_vertex_shader_viewport_index on i965/gen6
GL_EXT_draw_buffers2 on freedreno
GL_OES_EGL_sync on all drivers
EGL_KHR_fence_sync on i965, freedreno, nv50, nvc0, r600, radeonsi
EGL_KHR_wait_sync on i965, freedreno, nv50, nvc0, r600, radeonsi
EGL_KHR_cl_event2 on freedreno, nv50, nvc0, r600, radeonsi
GL_AMD_performance_monitor on nvc0
Also many bugfixes.
|
|
|
|
(1.2.2 and 1.2.1 are build nits)
Geeqie 1.2
==========
- Support for lcms2
- Basic support for lua scripting (still documentation needed)
- Several bugfixes
|
|
|
|
|
|
globs to ensure NetBSD 10 is not incorrectly matched when it is released.
|
|
|
|
|
|
(While 1.9.1 exists, it is a pre-release and hence not packaged.)
guile-cairo 1.4.1 -- 2011-04-22
===============================
* Guile-Cairo has moved to git. See the HACKING file for information on
how to access Guile-Cairo.
* Guile-Cairo's license has been upgraded to the LGPL version 3 or
later. This should not cause problems for any users. See
http://www.gnu.org/licenses/gpl-faq.html#AllCompatibility for more
information.
|
|
Change to lcms2.
16/06/2015 - UFRaw-0.22 released, based on DCRaw v 9.26.
* Fix security issue CVE-2015-3885.
* Removal of liblcms1 support.
* Better Foveon support.
* Lot of new camera support and bug fixes.
|
|
----------------------
(from http://www.freetype.org/)
2015-06-08 FreeType 2.6
FreeType 2.6 has been released. This is a new major release that
provides a better (and simpler) thread-safety model. Among other new
features we now have auto-hinting support for Arabic and Thai,
together with much improved handling of Apple's GX TrueType variation
font format.
(ChangeLog from 2.5.5 to 2.6 extends some 1600 lines, consult with it
in src tarball if necessary, thanks)
ok by wiz@
|
|
* Bug fix release
|
|
|
|
* Support for configure/build using CMake.
* Support for large (> 2GB) files under Microsoft Windows.
|
|
Imagick is a PHP extension to create and modify images using
the ImageMagick library.
|
|
|
|
Draw chemical structure diagrams with Metafont/MetaPost
Add tex-roundrect{,-doc} 1.0
Metapost macros for highly configurable rounded rectangles
Add tex-shapes{,-doc} 1.0
Draw polygons, reentrant stars, and fractions in circles with Metapost
|
|
|
|
Create scientific posters using TikZ
|
|
also CVE-2015-4491, lifted from
https://git.gnome.org/browse/gdk-pixbuf/commit/gdk-pixbuf/pixops/pixops.c?id=ffec86ed5010c5a2be14f47b33bcf4ed3169a199
and
https://git.gnome.org/browse/gdk-pixbuf/commit/?id=8dba67cb4f38d62a47757741ad41e3f245b4a32a
Bump PKGREVISION.
|
|
|
|
|
|
|
|
gphoto2 2.5.8 release
* --keep-raw option added, which leaves non-JPEG files on camera during
capture or wait-event-and-download
* --show-preview option split out of --capture-preview. --show-preview
now displays the ascii art preview, --capture-preview no longer does.
* updated translations: french, ukrainian, vietnamese, russian, polish,
dutch, hungarian, esperanto, serbian, danish
gphoto2 2.5.6
* --wait-event / --wait-event-and-download can now wait for strings
--wait-event=CAPTURECOMPLETE
--wait-event=FILEADDED
--wait-event="Property 5001"
* updated translations: french, ukrainian, dutch, polish, russian, vietnamese, hungarian, serbian
gphoto2 2.5.5
* manpage updated
* updated translations
* bugfix for DST usage in handling date/time widgets
* adjusted wait time heuristics after capture
* --debug-loglevel=(debug|verbose|data|all) option added to select debug verbosity
* fixed --filename with cross-device usage
gphoto2 2.5.4
* --skip-existing option that skips if a local file would already exist
* %F for foldername inclusion added to format strings for --filename
* add the commandline arguments to the debug log
gphoto2 2.5.3
* translations updated: dutch, polish, ukrainian, russian, taiwanese
* small --show-info bugfix
gphoto2 2.5.2
* new --reset option to reset usb devices.
* using --filename, if the camera reports 1. Jan 1970, fall back to
use the current date/time.
* translations updated: french, polish, vietnamese, russian, simplified chinese, danish
gphoto2 2.5.1
* Fixed that the meaning of --keep and --no-keep was switched.
* Allow passing absolute filenames to
-p, -d, -r/--rmdir, -m/--mkdir, -t, --show-info, --get-metadata,
--get-raw-data, --get-audio-data,
like e.g.:
gphoto2 -p /store_00010001/DCIM/100D7000/DSC_0001.JPG
* -L --quiet now prints a list of all files, 1 per line.
* -l --quiet now prints a list of all folders, 1 per line.
gphoto2 2.5.0
* Added "--keep" and "--no-keep" options for capture tethered
and capture image.
* --wait-event and --capture-tethered can now do:
* nr of events (200)
* seconds (100s)
* milliseconds (200ms) (1/1000 of a second)
* frames (50f) (number of images)
* New --list-all-config gives the full config tree.
gphoto2 2.4.99.2
* Updated for new GPPortInfo in libgphoto2 2.5.0
* Updated for various changed file interfaces in libgphoto2 2.5.0
* Capture mainloop changed to handle JPEG+RAW capture (one release
resulting in 1 or more files).
(Also: refactored and rewritten to be more beautiful)
* Capture mainloop uses trigger capture + waitevent if present.
* Fixed use-after-free problem in file save
* Fixed %n to use an incremental counter, instead of a filesystem index.
gphoto2 2.4.10.1
* Switched %n behaviour to be linear increasing, instead of
a folder index.
gphoto2 2.4.10
* Event loop handling non-waitevent able cameras.
* --capture-movie (optional arguments: frames, or seconds)
now loops over preview capture as fast as possible
and writes the frames continously.
The resulting file is "MotionJPEG" and can be postprocessed
or displayed (by mplayer).
Also output to stdout is possible for pipeing like:
gphoto2 --stdout --capture-movie | someotherprogram
gphoto2 2.4.9
* Capture main event loop rewritten to always use wait event
to also support multiple image captures. (JPEG+RAW)
* Fixed various bugs and memory leaks.
* Translation updates.
gphoto2 2.4.8
* Output CAPTURECOMPLETE on waitevent
* On --filename "foo/bar/berk.jpg" create subdirectories if
not yet present.
* New shell command:
capture-preview
* Added Bulb Mode in interval capture with -B / --bulb <seconds>
gphoto2 2.4.7
* New cmdline options: --set-config-index and --set-config-value
to avoid ambiguity of the --set-config supporting both modes.
* --wait-event can take "5s" as argument for 5 seconds of event taking
* added --wait-event-and-download=x (same as --wait-event but with download)
* New shell commands:
wait-event (events or seconds)
wait-event-and-download (events or seconds)
capture-tethered
set-config-index entry=choiceindex
set-config-value entry=value
* Enhanced --quietness.
* Added AC_SYS_LARGEFILE, enabling support to download files > 2GB.
* Updated translations.
* Various bugfixes.
gphoto2 2.4.5
* Updated translations.
* Handle ctrl-c on tethered capture.
gphoto2 2.4.4
* Updated translations.
* SIGUSR2 added ... "exit interval capture after next shot"
gphoto2 2.4.3
* Updated translations.
* For multiple cameras, specifying with --port usb:xxx,yyy is now
sufficient (previously needed --port and --camera).
|
|
|
|
|
|
* fixed: added installation of octave-based scripts: pfsoctavelum pfsoctavergb pfsstat
* fixed: libraries installed in lib64 if needed (thanks to Orion for the patch)
* fixed: added "so" version to the pfs.so library (thanks to Orion for the patch)
* fixed: Replaced depreciated OctaveMap for compatibility with octave 4.0.0
|
|
Header location and library names changed, so bump API version.
No users in pkgsrc (yet).
Changes in GEGL 0.3.0
---------------------
• Improvements to thread safety and parallelism.
• Lower overhead graph travesal due from rewrite of visitors
• OpenCL support now enabled by default when detected.
• Experimental multithreading, enable by setting
GEGL_THREADS=<number of threads> in the environment.
• Experimental mipmap rendering, which permits transparent rendering of
previews on smaller sized versions, enable by setting
GEGL_MIPMAP_RENDERING=true in the environment.
• Operations:
• new operations: alien-map, antialias, apply-lens, bilateral-filter,
bump.map, cartoon, channel-mixer, color-enhance, color-exchange,
color-reduction, color-rotate, convolution-matrix, copy-buffer, cubism,
deinterlace, diffraction-patterns, distance-transform, displace, edge,
emboss, engrave, exposure, fractal-trace, high-pass, image-compare,
illusion, invert-gamma, lens-flare, linear, linear-gradient, mosaic,
motion-blur-circular, motion-blur-zoom, noise-cell noise-cie-lch,
noise-hsv, noise-hurl, noise-pick, noise-rgb, noise-simplex, noise-spread,
n-point deformation ops, oilify, panorama-projection, photocopy, plasma,
radial-gradient, red-eye-removal, scale-size-keep-aspect, softglow,
stretch-contrast, texturize-canvas, tile-glass, tile-seamless, tile-paper,
tile, warp, whirl-pinch, wind, cache, cast-format, lcms-from-profile,
npy-save, webp-load, webp-save, scale-ratio, scale-size, seamless-clone,
sinus, supernova, value-propagate, video-degradation
• reimplementation of gaussian-blur faster and more accurate
• support for using URIs in image loaders
• Buffer:
• New default tile backend, doing disk writes in a separate thread.
|
|
(darktable didn't build before for me. A much newer version is out.)
|
|
|
|
GEGL (Generic Graphics Library) is a graph based image processing
framework.
GEGL provides infrastructure to do demand based cached non destructive
image editing on larger than RAM buffers. Through babl it provides
support for a wide range of color models and pixel storage formats for
input and output.
|