2015-10-04 14:35:29 by Takahiro Kambe | Files touched by this commit (2) |
Log message:
Update ruby-mini-magick to 4.3.5.
v4.3.5
* mini_magick/version.rb is now properly required in the main file (previously
MiniMagick.version was throwing a NoMethodError unless you explicitly
required mini_magick/version.rb)
v4.3.4
* Fix MiniMagick::Tool#tile method being applied as a creation operator
(tile:) instead of an option (-tile)
|
2015-09-13 16:32:27 by Takahiro Kambe | Files touched by this commit (2) |
Log message:
Update ruby-mini-magick to 4.3.3.
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
|
2015-06-07 12:43:50 by Takahiro Kambe | Files touched by this commit (2) |
Log message:
Update ruby-mini-magick to 4.2.7.
4.2.7
* Fix Ruby 1.9.3
4.2.5
* Fixed MiniMagick::Image#details parsing
4.2.4
* Fixed detecting MiniMagick version
* Fix the private method 'format' called on mogrify for real
4.2.3
* Fixed a rush mistake
4.2.2
* Raise proper error in #cheap_info on invalid image
* Improved MiniMagick::Image#details parsing
* Attempt to solve private method 'format' called on mogrify
4.2.1
* Attempt to fix #279
4.1.1
* Fix MiniMagick::Image#composite defaulting to JPG extension. The default is
now the extension of the base image, the one on which composite is called.
|
2015-03-13 15:17:13 by Takahiro Kambe | Files touched by this commit (2) |
Log message:
Update ruby-mini-magick to 4.1.0.
4.1.0
* Added MiniMagick::Tool#stack for building ImageMagick stacks:
MiniMagick::Tool::Convert.new do |convert|
convert << "wand.gif"
convert.stack do |stack|
stack << "wand.gif"
stack.rotate(30)
end
convert << "images.gif"
end
convert wand.gif \( wand.gif -rotate 90 \) images.gif
4.0.4
* Allow filenames with colon in their names (thanks to @agorf)
|
2015-02-03 15:14:12 by Takahiro Kambe | Files touched by this commit (3) |
Log message:
Update ruby-mini_magick to 4.0.3.
Changes are not available, please refer release page on GitHub:
https://github.com/minimagick/minimagick/releases
|
2014-03-14 18:11:43 by Takahiro Kambe | Files touched by this commit (3) |
Log message:
Update ruby-mini-magick to 3.7.0.
Changes are not available, but handle filename with special character.
|
2013-09-15 15:47:23 by Takahiro Kambe | Files touched by this commit (3) |
Log message:
Update ruby-mini-magick to 3.6.0.
Exact changes aren't available, but fixed handling of filename with special
characters.
|
2013-03-11 10:17:19 by Takahiro Kambe | Files touched by this commit (3) |  |
Log message:
Update ruby-mini-magick to 3.5.0.
No official changes are available, but various bugfixes and document updates.
|
2012-03-17 16:46:24 by Takahiro Kambe | Files touched by this commit (3) |
Log message:
Update ruby-mini-magick to 3.4.
* Dec 28, 2011 - Releasing v3.4 - Better windows support. Fixed problem with
combine_options. Fixed up readme. [hcatlin]
* Dec 21, 2011 - Refactored gem structure a little and added a few bug fixes
to better support Windows users - No changes to API though [2potatocakes]
|
2011-12-15 16:38:05 by Takahiro Kambe | Files touched by this commit (1) |
Log message:
Relax dependency to ruby-subexec.
Bump PKGREVISION.
|