summaryrefslogtreecommitdiff
path: root/graphics/ruby-mini-magick
AgeCommit message (Collapse)AuthorFilesLines
2016-10-15Update ruby-mini-magick to 4.5.1.taca3-9/+8
v4.5.1 * Fixed MiniMagick logging commands by default v4.5.0 New features * Added the ability for ImageMagick commands to accept standard input: identify = MiniMagick::Tool::Identify.new identify.stdin # adds "-" identify.call(stdin: image_content) * Added ability to capture stdout, stderr and exist status by passing a block to MiniMagick::Tool#call: compare = MiniMagick::Tool::Compare.new # build the command compare.call do |stdout, stderr, status| # ... end * Added ability to assign MiniMagick.logger to Rails.logger Bug fixes * The value of MiniMagick.whiny configuration option is now respected * The new filename when calling #format is now generated better when calling on a layer * Delete *.cache files generated by .mpc files when deleting MiniMagick::Image Deprecations * Whiny option should now be passed as a keyword argument: MiniMagick::Tool::Identify.new(false) # deprecated MiniMagick::Tool::Identify.new(whiny: false) # good * Passing the whiny argument to MiniMagick::Tool#call is deprecated, it should now always be passed to MiniMagick::Tool.new
2016-02-17Update ruby-mini-magick to 4.4.0.taca2-7/+7
4.4.0 * Using MiniMagick::Image#format now works when the image instance is a layer/frame/page. * Calling MiniMagick::Tool#clone as a way of adding the -clone CLI option now works properly (before it would call Object#clone). * Badly encoded lines in identify -verbose don't cause an error anymore in MiniMagick::Image#details. * MiniMagick::Image#details doesn't hang anymore when clipping paths are present * Added MiniMagick::Image#tempfile for accessing the underlying temporary file.
2015-12-02Update ruby-mini-magick to 4.3.6.taca2-7/+7
* Restore the old behaviour of MiniMagick::Image#respond_to? by looking at mogrify -help and finding the method. This restores compatibilty with CarrierWave.
2015-11-03Add SHA512 digests for distfiles for graphics categoryagc1-1/+2
Problems found with existing digests: Package fotoxx distfile fotoxx-14.03.1.tar.gz ac2033f87de2c23941261f7c50160cddf872c110 [recorded] 118e98a8cc0414676b3c4d37b8df407c28a1407c [calculated] Package ploticus-examples distfile ploticus-2.00/plnode200.tar.gz 34274a03d0c41fae5690633663e3d4114b9d7a6d [recorded] da39a3ee5e6b4b0d3255bfef95601890afd80709 [calculated] Problems found locating distfiles: Package AfterShotPro: missing distfile AfterShotPro-1.1.0.30/AfterShotPro_i386.deb Package pgraf: missing distfile pgraf-20010131.tar.gz Package qvplay: missing distfile qvplay-0.95.tar.gz Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2015-10-04Update ruby-mini-magick to 4.3.5.taca2-6/+6
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-13Update ruby-mini-magick to 4.3.3.taca2-6/+6
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-07Update ruby-mini-magick to 4.2.7.taca2-7/+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-13Update ruby-mini-magick to 4.1.0.taca2-6/+6
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-03Update ruby-mini_magick to 4.0.3.taca3-10/+23
Changes are not available, please refer release page on GitHub: https://github.com/minimagick/minimagick/releases
2014-03-14Update ruby-mini-magick to 3.7.0.taca3-25/+12
Changes are not available, but handle filename with special character.
2013-09-15Update ruby-mini-magick to 3.6.0.taca3-7/+8
Exact changes aren't available, but fixed handling of filename with special characters.
2013-03-11Update ruby-mini-magick to 3.5.0.taca3-9/+9
No official changes are available, but various bugfixes and document updates.
2012-03-17Update ruby-mini-magick to 3.4.taca3-21/+20
* 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-15Relax dependency to ruby-subexec.taca1-3/+5
Bump PKGREVISION.
2011-08-12Restrict dependency pattern due to gemspec.taca1-2/+3
Bump PKGREVISION.
2011-06-19Update ruby-mini-magick pacakge to 3.3.taca3-9/+10
Changes are unknown.
2011-03-23Update ruby-mini-magick package to 3.2.taca3-8/+8
Changes are unavailable.
2010-09-10Updaet graphics/ruby-mini-magick to 2.1.taca3-17/+19
* Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. * Add LICENSE. * Remove default value of GEM_BUILD. * Ajust new ruby package's framework. Changes are unknown.
2009-11-23Updated ruby-mini-magick to 1.2.5fhajny4-32/+19
2009-06-14Remove @dirrm entries from PLISTsjoerg1-4/+1
2009-06-12* Fix build problem of ruby-mini-magick package correcting URL parametertaca3-2/+21
to rakefile to fix build problem with newer rake's strict checking. * Add LICENSE. No PKGREVISION bump since there is no change with built package.
2008-04-30Initial import of ruby18-mini-magick-1.2.3 as graphics/ruby-mini-magick.jlam4-0/+46
MiniMagick gives you access to all the command-line options ImageMagick has (found at http://www.imagemagick.org/script/mogrify.php). Using MiniMagick as an alternative to RMagick allows the Ruby processes memory to remain small because it spawns ImageMagick's mogrify program, which has much lower memory usage than RMagick.