rmagick 2.15.0 → 2.15.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rmagick might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: beb83114bca52271ffbe728210030f1fe165e0b3
4
- data.tar.gz: aa899f36246d733532c30056f5a2c25a96e4e111
3
+ metadata.gz: 7a772d0361cc037cbaa61aa77af3b775eee595f4
4
+ data.tar.gz: 87eec3f09bac61e33ab4ca8c523678c0c1f46043
5
5
  SHA512:
6
- metadata.gz: b05b73eb4085af7f55727f85febbe437625c217380312828d06110767b67ee6108fd0bd74d6a0949b9eb93f759243048d25a84a8061d8892be0b698684d8fbd9
7
- data.tar.gz: 430a64346546bf3f8efcbcada84b88f501b4db0713e7d44aafd6ec333152232d61d19eb07d1ef17b7f4163e9738c9d5cdb5d4912bfe9d31d692c76c3aa43ab16
6
+ metadata.gz: 6b732a33e02c69b5463545f53e0403cabbe2ddbdfeabefae7f2c90b5afbbc4474253888fc00dd131eae8c0d64df0f820b4ddcc49ea02e85f56dc3d4300ee0240
7
+ data.tar.gz: 1f0da96d8547220fb5c47ec51d4a65bdd18b0216dc61f7ab237fbce79bb97c7504a6a9ca3ae153decae9f2b6109cb5d6de7195d1d3c5b33ba79d04f8416a55ad
@@ -11,6 +11,15 @@ Style/DeprecatedHashMethods:
11
11
  Style/Lambda:
12
12
  Enabled: false
13
13
 
14
+ Style/StringLiterals:
15
+ EnforcedStyle: single_quotes
16
+
17
+ Style/MultilineOperationIndentation:
18
+ EnforcedStyle: indented
19
+
20
+ Style/DotPosition:
21
+ EnforcedStyle: leading
22
+
14
23
  # Auto-generated config to be cleaned up and deleted:
15
24
 
16
25
  # Offense count: 2
@@ -156,12 +165,6 @@ Style/GuardClause:
156
165
  Style/IfUnlessModifier:
157
166
  Enabled: false
158
167
 
159
- # Offense count: 651
160
- # Cop supports --auto-correct.
161
- # Configuration parameters: EnforcedStyle, SupportedStyles.
162
- Style/IndentationConsistency:
163
- Enabled: false
164
-
165
168
  # Offense count: 1049
166
169
  # Cop supports --auto-correct.
167
170
  # Configuration parameters: Width.
@@ -301,11 +304,6 @@ Style/SymbolProc:
301
304
  Style/TrailingComma:
302
305
  Enabled: false
303
306
 
304
- # Offense count: 204
305
- # Cop supports --auto-correct.
306
- Style/TrailingWhitespace:
307
- Enabled: false
308
-
309
307
  # Offense count: 2
310
308
  # Configuration parameters: EnforcedStyle, SupportedStyles.
311
309
  Style/VariableName:
@@ -0,0 +1,899 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project are documented in this file.
4
+ This project adheres to [Semantic Versioning](http://semver.org/).
5
+
6
+ ## RMagick 2.15.1
7
+
8
+ - Fix loop in linked list in `ImageList` methods => they no longer hang - @u338steven
9
+
10
+ ## RMagick 2.15.0
11
+
12
+ - Ability to remove alpha channel - @ollie
13
+ - C local variables guarded against GC to avoid segfaults - @u338steven
14
+ - trace_proc protected with a mutex to avoid segfaults - @u338steven
15
+
16
+ ## RMagick 2.14.0
17
+
18
+ - `RMagick.rb` moved to deprecated directory - @mockdeep
19
+ - Better ImageMagick feature detection - @bf4
20
+ - Prevent compilation failures if prefix is an empty string - @voxik
21
+ - `SplineInterpolatePixel` preprocessor check removed - @joshk
22
+ - Make error format a string literal - @mtasaka
23
+ - Automatically set `ARCHFLAGS` on OS X - @u338steven
24
+ - Fixed `rmagick/version` require failure - @u338steven
25
+ - Fixed escaping of `%` in `Draw#get_type_metrics` - @mkluczny
26
+ - Silence warnings on Ruby 2.2 when comparing Enums - @meanphil
27
+ - Multiple test suite improvements - @mockdeep, @bf4
28
+ - Ruby source code formatting with RuboCop - @vassilevsky
29
+
30
+ ## RMagick 2.13.4
31
+
32
+ - Proof of concept for using `pkg-config` in place of `Magick-config` on debian based systems (#129) - @theschoolmaster
33
+ - Changed `Image#resample` to calling `ResampleImage` (#127, related #29, #45) - @u338steven
34
+ - Fixed #122: `lib/RMagick.rb` is overwritten by `lib/rmagick.rb` on case-insensitive systems (#124) - @u338steven
35
+ - New class `SolidFill` in order to fill image with monochromatic background (#123) - @prijutme4ty
36
+ - Quotes for correct path of font file (#121) - @markotom
37
+ - Allow `MagickCore6` from `Magick-config` (#120) - @chulkilee
38
+ - Fixed: build error with ImageMagick 6.8.9 (when deprecated functions are excluded) (#112) - @u338steven
39
+ - Fixed: related x_resolution, y_resolution (#102) - @u338steven
40
+ - Lots of test fixes - @u338steven
41
+ - Fix pixel hash test (#95) - @ioquatix
42
+ - Fixed: build error on Windows Ruby x64 (with ImageMagick 6.8.0-10 / ImageMagick 6.8.7-7) (#94) - @u338steven
43
+
44
+ ## RMagick 2.13.3
45
+
46
+ - Fix installation error on systems with HRDI enabled RMagick (#90) - @bricef
47
+
48
+ ## RMagick 2.13.2
49
+
50
+ - Fixed issues preventing RMagick from working with version 6.8 or higher
51
+ - Fixed issues preventing RMagick from working with ruby 1.9.3
52
+
53
+ ## RMagick 2.13.1
54
+
55
+ - Fixed bug preventing RMagick from working with version 6.5.9 or higher
56
+
57
+ ## RMagick 2.13.0
58
+
59
+ - Added Doxygen documentation, for automatic documentation
60
+ - Fixed bug #27467, get RMagick to compile witH ImageMagick 6.5.7
61
+ - Fixed bug #27607, switch `Pixel#from_hsla` and `Pixel#to_hsla` to use ranges
62
+ 0-255 instead of 0-100 for saturation and lightness (range used by
63
+ ImageMagick 6.5.6-5 and higher). Also added ability to specify all
64
+ arguments to these functions as percentages (bug report by Arthur Chan).
65
+
66
+
67
+ ## RMagick 2.12.2
68
+
69
+ - Add feature tests for `SinusoidFunction` and `PolynomialFunction` enum
70
+ values to allow compiling with ImageMagick 6.4.8-7 (bug report by Mark
71
+ Richman)
72
+
73
+ ## RMagick 2.12.1
74
+
75
+ - Fix bug #27239, allow 2.12.0 to compile with older releases of ImageMagick
76
+ (bug report by Sam Lown)
77
+
78
+ ## RMagick 2.12.0
79
+
80
+ - Added `Image#function_channel` (available in ImageMagick 6.4.8-8)
81
+ - Added `Image#auto_level_channel`, `Image#auto_gamma_channel` (available in
82
+ ImageMagick 6.5.5-1)
83
+ - Added `Draw#interline_spacing`, `#interline_spacing=` (available in
84
+ ImageMagick 6.5.5-8)
85
+
86
+ ## RMagick 2.11.1
87
+
88
+ - Applied Alexey Borzenkov's mingw patches to `extconf.rb`.
89
+ - Fixed a bug in `Magick.trace_proc` that could cause a segv at program exit
90
+ with Ruby 1.9.1 (bug report by Larry Young)
91
+ - Added new `CompressionType` enum values `ZipSCompression`, `PixCompression`,
92
+ `Pxr24Compression`, `B44Compression`, `B44ACompression` (available in
93
+ ImageMagick 6.5.5-4)
94
+
95
+ ## RMagick 2.11.0
96
+
97
+ - Fix bug #26475, dissolve and watermark don't work with new versions of
98
+ ImageMagick (reported by Jim Crate)
99
+ - Add `Image#composite_mathematics` (available in ImageMagick 6.5.4-3)
100
+ - Add new `LinearDodgeCompositeOp`, `LinearBurnCompositeOp`,
101
+ `PegtopCompositeOp`, `PinLightCompositeOp`, `VividLightCompositeOp` enum values
102
+ (available in ImageMagick 6.5.4-3)
103
+
104
+ ## RMagick 2.10.0
105
+
106
+ - ImageMagick releases earlier than 6.3.5-10 and Ruby releases earlier
107
+ than 1.8.5 no longer supported.
108
+ - (Experimental) Support the use of Ruby managed memory for all memory
109
+ allocations (available in ImageMagick 6.5.3-10)
110
+ - Add `Image#selective_blur_channel` (available in ImageMagick 6.5.0-3)
111
+ - Add new `AlphaBackgroundChannel` enum value (available in ImageMagick
112
+ 6.5.2-5)
113
+ - Add new `DistortCompositeOp` enum value (available in ImageMagick 6.5.3-7)
114
+
115
+ ## RMagick 2.9.2
116
+
117
+ - Add new `HorizontalTileEdgeVirtualPixelMethod`,
118
+ `VerticalTileEdgeVirtualPixelMethod`, `CheckerTileVirtualPixelMethod`
119
+ `VirtualPixelMethod` enum values (available in ImageMagick 6.5.0-1)
120
+ - Added `BilinearForwardDistortion`, `BilinearReverseDistortion` enums
121
+ (available in ImageMagick 6.5.1-2)
122
+ - Add missing composite operators to `Magick::Draw#composite` method
123
+ - Add warning about dropping support for ImageMagick < 6.3.5 and
124
+ Ruby < 1.8.5
125
+ - Fix bug #25892, stack buffer overflow in `Magick::TypeMetric.to_s`
126
+ (reported by Roman Simecek)
127
+
128
+ ## RMagick 2.9.1
129
+
130
+ - Fix a bug that prevents the use of transparent background colors when
131
+ built with ImageMagick 6.4.9-0
132
+
133
+ ## RMagick 2.9.0
134
+
135
+ - Fix #23209, improve RVG's letter spacing (patch from Jonah Fox)
136
+ - Add `Draw#kerning=` attribute (available in ImageMagick 6.4.7-8)
137
+ - Add `Draw#interword_spacing=` attribute (available in ImageMagick
138
+ 6.4.8-0)
139
+ - Add `Draw#kerning`, `Draw#interword_spacing` primitive methods (available in
140
+ ImageMagick 6.4.8-3)
141
+ - Feature #23171, support `ImageList`, `Draw`, `Pixel` marshaling.
142
+ - Support all the new `EvaluateOperator` constants
143
+
144
+ ## RMagick 2.8.0
145
+
146
+ - Add the `endian`, `scene`, and `transparent_color` attributes to `Image::Info`
147
+ - Deprecate `Image#endian=` attribute setter
148
+ - Add the `transparent_chroma` method to the `Image` class (available in
149
+ ImageMagick 6.4.5-6)
150
+ - Add the `sparse_color` method to the `Image` class (available in ImageMagick
151
+ 6.4.3)
152
+ - Update `Image#change_geometry` to work with the new `ParseSizeGeometry` API
153
+ in ImageMagick 6.4.6-9.
154
+
155
+ ## RMagick 2.7.2
156
+
157
+ - Fix bug #22740, some `Image::Info` attribute values are not propogated to
158
+ the image object (bug report by Thomas Watson)
159
+
160
+ ## RMagick 2.7.1
161
+
162
+ - Fix bug #22471, `Magick::fonts` can abend on 64-bit systems (bug report and
163
+ patch by James Le Cuirot)
164
+ - `ImageList.new` accepts a block which is passed on to `Image::read` when
165
+ reading the input images. The block is executed in the context of an
166
+ `Image::Info` object.
167
+ - Add support for the "user" image property.
168
+ - Define the `Magick::FatalImageMagickError` exception class, raised if
169
+ ImageMagick raises a fatal (unrecoverable) exception.
170
+ - Added feature #22618, `Image#total_ink_density` (request by F. Behrens)
171
+
172
+ ## RMagick 2.7.0
173
+
174
+ - Fix bug #22152, `extconf.rb` does not respect the `LDFLAGS` environment
175
+ variable (bug report by Joseph Sokol-Margolis)
176
+ - Fix bug #22190, the `NoDitherMethod` enum value is not defined in
177
+ ImageMagick 6.4.2
178
+ - Add the `TrimBoundsLayer` `ImageLayerMethod` enum value (available in
179
+ ImageMagick 6.4.3-8)
180
+ - Add the `CopyAlphaChannel`, `ExtractAlphaChannel`, `OpaqueAlphaChannel`,
181
+ `ShapeAlphaChannel`, and `TransparentAlphaChannel` `AlphaChannelType` enum
182
+ values (available in ImageMagick 6.4.3-7)
183
+ - Rename `Image#affinity` and `ImageList#affinity` to `Image#remap` and
184
+ `ImageList#remap`. Retain the old names as aliases. (Changed in ImageMagick
185
+ 6.4.4-0)
186
+
187
+ ## RMagick 2.6.0
188
+
189
+ - Fix bug #21237, `Image::write` ignores format attribute when called with a
190
+ `Tempfile` pathname (bug report by Jack Shedd)
191
+ - Fix bug #21897, `ImageList#from_blob` abends when certain corrupt JPEG
192
+ images are used (bug report by Peter Szabo)
193
+ - Add `Image#composite_tiled`, `Image#composite_tiled!` (ref:
194
+ http://rubyforge.org/forum/forum.php?thread_id=27347&forum_id=33)
195
+ - Add `Image#deskew` (available with ImageMagick 6.4.2-5)
196
+ - Add `Image#define`, `Image#undefine` (available in ImageMagick 6.3.6)
197
+ - Add `Image#level_colors` (available in ImageMagick 6.4.2-1)
198
+ - Add `Image#levelize_channel` (available in ImageMagick 6.4.2-1)
199
+ - Add `Image#affinity`, `ImageList#affinity` (available in ImageMagick 6.4.3-6).
200
+ These methods replace `Image#map` and `ImageList#map`.
201
+ - Accept `DitherMethod` values for the `dither` argument to `Image#quantize`,
202
+ `ImageList#quantize`
203
+ - Add the `BarrelDistortion`, `PolynomialDistortion`, `ShepardsDistortion`,
204
+ `PolarDistortion`, and `DePolarDistortion` `MagickDistortion` Method enum values
205
+ (available in ImageMagick 6.4.2-6)
206
+ - Add the `HorizontalTileVirtualPixelMethod` and
207
+ `VerticalTileVirtualPixelMethod` `VirtualPixelMethod` enum values
208
+ (available in ImageMagick 6.4.2-6)
209
+ - Add `DitherMethod` enum class
210
+ - Added general-purpose `OptionalMethodArguments` class to handle ad-hoc
211
+ optional arguments.
212
+ - Support optional "distort:viewport" and "distort:scale" arguments to
213
+ `Image#distort`
214
+ - Support optional `highlight_color` and `lowlight_color` arguments
215
+ to `Image#compare_channel`
216
+
217
+ ## RMagick 2.5.2
218
+
219
+ - Add support for `MergeLayer` to `Magick::ImageList#optimize_layers` (patch
220
+ #21189, submitted by Andrew Watson)
221
+ - Add `PowQuantumOperator` argument for `Image#quantum_operator` (available
222
+ in ImageMagick 6.4.1-9)
223
+
224
+ ## RMagick 2.5.1
225
+
226
+ - Update `Pixel#to_color` to work with the new `QueryMagickColorname` API in
227
+ ImageMagick 6.4.1-9.
228
+
229
+ ## RMagick 2.5.0
230
+
231
+ - Added `Image#add_compose_mask`, `#delete_compose_mask` (feature #20531)
232
+
233
+ ## RMagick 2.4.0
234
+
235
+ - Added `Image#image_type=` (feature #20490)
236
+
237
+ ## RMagick 2.3.0
238
+
239
+ - Added `Image#encipher`, `Image#decipher` (available with ImageMagick 6.3.8-6)
240
+ - Added `DXT1Compression`, `DXT3Compression`, and `DXT5Compression`
241
+ `CompressionType` enums (available in ImageMagick 6.3.9-4)
242
+ - Added optional "use hex format" argument to `Pixel#to_color`
243
+ - Support `:area` resource type in `Magick.limit_resource`
244
+ - `Pixel.from_HSL` and `Pixel#to_HSL` are deprecated. Use `Pixel.from_hsla`
245
+ and `Pixel#to_hsla` instead. The new methods rely on the ImageMagick 6.3.5
246
+ and later API.
247
+ - The `Image#alpha` and `alpha=` attributes are deprecated. Use `alpha()` and
248
+ `alpha?` instead.
249
+ - The `Image#mask=` attribute is deprecated. Use `mask()` instead.
250
+ - The use of Ruby older than version 1.8.4 with RMagick is deprecated and
251
+ will not be supported in a future release.
252
+ - Fix bug #18271, rvg width and height attributes wrong after a call to
253
+ viewbox (reported by Greg Jarman)
254
+
255
+ ## RMagick 2.2.2
256
+
257
+ - Fix bug #18016, add test for `InitializeMagick` in `libMagickCore` to
258
+ `extconf.rb`
259
+
260
+ ## RMagick 2.2.0
261
+
262
+ - Added `Image#opaque_channel`, `Image#paint_transparent` (available with
263
+ ImageMagick 6.3.7-10)
264
+ - Added `Image#liquid_rescale` (available with ImageMagick 6.3.8-2)
265
+ - Added `CMYColorspace` `ColorspaceType` value
266
+ - Fixed bug #17148, compiler error message on Solaris (bug report by Trever
267
+ Wennblom)
268
+ - Fixed bug #17470, `get_exif_by_number`, `get_exif_by_entry` may fail when
269
+ called with one or more arguments
270
+
271
+ ## RMagick 2.1.0
272
+
273
+ - Added `Image::Info#caption=` attribute
274
+ - Rename `Image#crop_resized`, `#crop_resized!` to `#resize_to_fill`,
275
+ `#resize_to_fill!`. Add aliases for the old names.
276
+ - Fix bug #16776, in the `axes.rb` example the last 2 arguments to
277
+ `border.rectangle` are swapped (bug report by Alain Feler)
278
+ - Fix bug #16931, apostrophe in #error directive causes error in some
279
+ versions of GCC (bug report by Justin Dossey)
280
+
281
+ ## RMagick 2.0.0
282
+
283
+ - Replaced `configure`/`make`/`make install` with standard Ruby `setup.rb`,
284
+ `extconf.rb`
285
+ - Removed support for Ruby earlier than 1.8.2
286
+ - Removed support for GraphicsMagick. As a result these methods are no
287
+ longer available: `Image#grayscale_pseudo_class`, `Image#statistics`.
288
+ - Removed support for all releases of ImageMagick earlier than 6.3.0.
289
+ - Removed deprecated `Image#random_channel_threshold`. Use
290
+ `Image#random_threshold_channel` instead
291
+ - Removed deprecated `Image#channel_threshold`. Use
292
+ `Image#random_threshold_channel` instead
293
+ - Removed unecessary `Image#montage=`
294
+ - Removed unecessary and undocumented `Image#image_type=`
295
+ - Removed deprecated `Image::Info#tile_info`, `tile_info=` attributes.
296
+ - Removed deprecated `Image::Info#tile`, `tile=` attributes. Use `#extract`,
297
+ `#extract=` instead
298
+ - Removed deprecated `Image::Info#subimage`, `subimage=` attributes. Use
299
+ `scene`, `scene=` instead
300
+ - Removed deprecated `Image::Info#subrange`, `subrange=` attributes. Use
301
+ `number_scenes`, `number_scenes=` instead
302
+ - Removed deprecated `Magick.set_monitor`. Use `Image#set_monitor`,
303
+ `Image::Info#set_monitor` instead
304
+ - Removed deprecated `RunlengthEncodedCompression` `CompressionType`. Use
305
+ `RLECompression` instead
306
+ - Deprecated `Image#matte`, `matte=` with ImageMagick 6.3.5 and later
307
+ - Added `Image::Info#stroke=`, `stroke_width=` and `undercolor=` attributes
308
+ - Added `Image::Info#tile_offset=` attribute
309
+ - Added `Draw#fill_pattern=` and `#stroke_pattern=` annotate attributes
310
+ - Changed `Image::Info[]` and `Image::Info[]=` to allow an omitted "format"
311
+ argument
312
+ - Added `Image#destroy!`, `destroyed?`, `check_destroyed` methods
313
+ - Support `Image` object creation/destruction tracing with the
314
+ `Magick.trace_proc` attribute
315
+ - Added `Magick::QuantumRange`. `Magick::MaxRGB` is deprecated.
316
+ - Added `OptimizeTransLayer`, `RemoveDupsLayer`, `RemoveZeroLayer`,
317
+ `OptimizeImageLayer` `ImageLayerMethods` enum values (available with
318
+ ImageMagick 6.3.3),
319
+ `MosaicLayer`, `FlattenLayer` (available with ImageMagick 6.3.6)
320
+ - RMagick works with Q32 version of ImageMagick
321
+ - Added `ChangeMaskCompositeOp`, `DivideCompositeOp`, `LinearLightCompositeOp`
322
+ `CompositeOperator` enum values
323
+ - Added `SplineInterpolatePixel` `InterpolatePixelMethod` enum value
324
+ - Added `DitherVirtualPixelMethod`, `RandomVirtualPixelMethod`,
325
+ `BlackVirtualPixelMethod`, `GrayVirtualPixelMethod`, `WhiteVirtualPixelMethod`
326
+ (available with ImageMagick 6.3.5), and `MaskVirtualPixelMethod` (available
327
+ with ImageMagick 6.3.3) `VirtualPixelMethod` enum values
328
+ - Added `GIFInterlace`, `JPEGInterlace`, `PNGInterlace` `Interlace` type enum
329
+ values (available with ImageMagick 6.3.4)
330
+ - Added `SentinelFilter` `FilterTypes` enum value (available in ImageMagick
331
+ 6.3.6)
332
+ - Added `Image.combine`
333
+ - Added `Image#separate` (available with ImageMagick 6.3.2)
334
+ - Added `Image#distort` (available with ImageMagick 6.3.5)
335
+ - Added `Image#each_pixel` (thanks to Russell Norris for the suggestion and
336
+ code)
337
+ - Added `Image#histogram?` (available with ImageMagick 6.3.5)
338
+ - Added `Image#sync_profiles` (available with ImageMagick 6.3.2)
339
+ - Added `Image#extent` (available with ImageMagick 6.3.1)
340
+ - Added `Image#excerpt`, `Image#excerpt!` (available with ImageMagick 6.3.5)
341
+ - Added `Image::Info#attenuate`
342
+ - Added `Image#clut_channel` (available with ImageMagick 6.3.5)
343
+ - Feature Request #16264, added `ImageList#composite_layers` (available with
344
+ ImageMagick 6.3.3, request from Steve Martocci)
345
+ - Added `Image#alpha=` (available with ImageMagick 6.3.5)
346
+ - Added `Image#gravity=`
347
+ - Added `Image#equalize_channel` (available with ImageMagick 6.3.6)
348
+ - Added new `FilterTypes` values `KaiserFilter`, `WelshFilter`, `ParzenFilter`,
349
+ `LagrangeFilter`, `BohmanFilter`, `BartlettFilter` (available with ImageMagick
350
+ 6.3.6)
351
+ - Fix bug #10339, `Image#trim` does not support "reset page information
352
+ option" (bug report from Nobody)
353
+ - Renamed `RMagick.so` to `RMagick2.so` to prevent confusion between `RMagick.rb`
354
+ and `RMagick.so`
355
+ - Feature Request #16276, re-organize doc to not split `Image` method pages
356
+ in the middle of an initial letter (request from Roy Leban)
357
+ - Updated for ImageMagick 6.3.7-5
358
+ - Made changes as necessary to work with current Ruby 1.9.0
359
+
360
+ ## RMagick 1.15.12
361
+
362
+ - Fix bug #16221, starting with ImageMagick 6.3.2, get_exif_by_entry/number
363
+ returns empty array/hash when no arguments are specified, even though the
364
+ image has EXIF data (bug report from Paul Clegg)
365
+
366
+ ## RMagick 1.15.11
367
+
368
+ - Fix bug #15887, the x_ and y_resolution attributes don't respect the units
369
+ attribute (bug report from Ben Greenburg)
370
+ - Fix bug #15889, memory leak in Draw#composite method (bug report from Till
371
+ Vollmer)
372
+
373
+ ## RMagick 1.15.10
374
+
375
+ - Update Magick::Pixel.from_HSL, #to_HSL to work with new APIs in
376
+ ImageMagick 6.3.5-9.
377
+
378
+ ## RMagick 1.15.9
379
+
380
+ - Fixed bug #12089 (bug report from Hans de Graaff)
381
+
382
+ ## RMagick 1.15.8
383
+
384
+ - Fixed bug #12671, incorrect link in HTML doc (bug report from Thomas R.
385
+ Koll
386
+ - Fixed bug #11890, incorrect usage description for Draw#text_undercolor in
387
+ HTML doc (bug report from Ezra Freedman)
388
+ - Fixed bug #12706, specifying both a gravity and offsets to Image#composite
389
+ positions the composite image incorrectly (bug report from Benoit Larroque)
390
+
391
+ ## RMagick 1.15.7
392
+
393
+ - Fix bug #11033, make distclean misses some files (bug report from Lucas
394
+ Nussbaum)
395
+ - Work around SetMagickRegistry problem in ImageMagick 6.3.4-7
396
+
397
+ ## RMagick 1.15.6
398
+
399
+ - Fix bug #10070, memory leak in Draw#get_type_metrics,
400
+ Draw#get_multiline_type_metrics, Draw#annotate (bug report from Sinclair
401
+ Bain)
402
+ - Fix bug #10080, scripts in examples directory should not be marked
403
+ executable (bug report from Lucas Nussbaum)
404
+
405
+ ## RMagick 1.15.5
406
+
407
+ - Fix bug #9637, export_pixels always exports all 0's for 1-bit images (bug
408
+ report from Doug Patterson)
409
+
410
+ ## RMagick 1.15.4
411
+
412
+ - Fix bug #8927, RMagick and rbgsl both export the name ID_call (bug report
413
+ from Shin Enomoto)
414
+
415
+ ## RMagick 1.15.3
416
+
417
+ - Fix bug #8697, Image::Info.fill= doesn't work when creating "caption:"
418
+ format images (bug report from choonkeat)
419
+
420
+ ## RMagick 1.15.2
421
+
422
+ - Fix bug #8408, a compatibility problem with some versions of ImageMagick
423
+ before 6.2.5 (bug report from Geir Gluckstad)
424
+
425
+ ## RMagick 1.15.1
426
+
427
+ - Fix bug #8307, compatibility problems with older (6.0.x) versions of
428
+ ImageMagick (bug report from Chris Taggart)
429
+
430
+ ## RMagick 1.15.0
431
+
432
+ - Added fx method to ImageList class
433
+ - Added wet_floor method to the Image class
434
+ - Added linear_stretch method to the Image class (available with
435
+ ImageMagick 6.3.1-1)
436
+ - Added recolor method to the Image class (available with ImageMagick 6.3.1-3)
437
+ - Added polaroid method to the Image class (available with ImageMagick 6.3.1-6)
438
+ - Added origin attribute to the Image::Info class (supported by
439
+ ImageMagick 6.3.1-4 and later)
440
+ - Added PaletteBilevelMatteType to the ImageType enum
441
+ - Fix bug #6260, some RVG examples produce all-black GIF images
442
+ - Fix bug #7034, fix the matte method in the Draw class
443
+ - Fix bug #7373, default channels should be RGB instead of RGBA
444
+ - Fix bug #7716, Pixel#intensity wrong for gray images (bug report from
445
+ Morio Miki)
446
+ - Fix bug #7949, Magick::Draw.new abends when an exception occurs before
447
+ the draw object is fully initialized (bug report from Andrew Kaspick)
448
+ - Fix bug #8015, Magick::Draw.new doesn't call the optional arguments block
449
+ in the right scope (bug report from Andrew Kaspick)
450
+ - Tested with ImageMagick 6.3.2-0
451
+
452
+ ## RMagick 1.14.1
453
+
454
+ - Handle change to the type of the ColorInfo.color field introduced by
455
+ ImageMagick 6.3.0
456
+
457
+ ## RMagick 1.14.0
458
+
459
+ - Feature request #5015, support CMYK->RGB conversions. Added the
460
+ add_profile and delete_profiles to the Image class. Fixed the profile!,
461
+ iptc_profile, and color_profile methods. Added the
462
+ black_point_compensation attribute. (requested by Niklas Ekman)
463
+ - Added adaptive_blur, adaptive_blur_channel, find_similar_region, sketch
464
+ methods to the Image class (available with ImageMagick 6.2.8-6)
465
+ - Added adaptive_resize to the Image class (available with
466
+ ImageMagick 6.2.9)
467
+ - Added resample method to the Image class (thanks to Ant Peacocke for the
468
+ idea)
469
+ - Added four new compositing methods to the Image class: blend, displace,
470
+ dissolve, and watermark
471
+ - Feature request #5418, add get_iptc_dataset and each_iptc_dataset to the
472
+ Image class (requested by Oliver Andrich)
473
+ - Added the bias and mask attributes to the Image class
474
+ - Added optional qualifier argument to Image#rotate
475
+ - Patch #5742 from Douglas Sellers, adds channel method to the Image::Info
476
+ class.
477
+ - Added new ChannelType enum values
478
+ - Added texture= attribute writer to the Image::Info class
479
+ - Added tile= attribute writer to the Draw class
480
+ - Added pixel_interpolation_method attribute, InterpolatePixelMethod enum
481
+ class to the Image class (available with ImageMagick 6.2.9)
482
+ - Added "Magick Command Options and Their Equivalent Methods" page to the
483
+ documentation
484
+ - Fix bug #5079, Image#quantum_operator method doesn't work (bug report
485
+ from Pedro Martins)
486
+ - Fix bug #5080, incorrect RVG images when non-0 values used for the min_x
487
+ or min_y arguments to RVG#viewbox (bug report from Daniel Harple)
488
+ - Fix bug #5370, the clip_mask= attribute doesn't work
489
+ - Fix bug #5506, wrong argument used to intialize AffineMatrix (bug
490
+ report from Michael Shantzis)
491
+
492
+ ## RMagick 1.13.0
493
+
494
+ - Added transform, transform!, transpose, transpose! methods to Image class
495
+ (available with ImageMagick 6.2.8)
496
+ - Feature #4844, add auto_orient, auto_orient! methods to Image class
497
+ (suggestion from John Oordopjes, available with ImageMagick 6.2.8)
498
+ - Added adaptive_sharpen, adaptive_sharpen_channel methods to Image class
499
+ (available with ImageMagick 6.2.7)
500
+ - Added composite_image_channel, composite_image_channel! methods to Image
501
+ class (added in ImageMagick 6.2.6)
502
+ - Added radial_blur_channel method to Image class (available in
503
+ ImageMagick 6.2.4)
504
+ - Fix bug #4806, add hash, eql? methods to Pixel class (bug report from
505
+ Tim Pease)
506
+ - Change extension filename to match RubyGems 0.9.0 expectations.
507
+ - Fix bug #4821, correct doc for Image#rotate (bug report from Tim Pease)
508
+ - Update the Draw#annotate documentation
509
+
510
+ ## RMagick 1.12.0
511
+
512
+ - Fix bug #4630, the new signature for #level is incompatible with
513
+ releases prior to 1.10.1 (bug report from Al Evans)
514
+
515
+ ## RMagick 1.11.1
516
+
517
+ - Fix bug #4511, add Makefile, rmagick_config.h as dependencies
518
+ in the Makefile (bug report from Eric Hodel)
519
+ - Ensure ExceptionInfo structures are freed
520
+
521
+ ## RMagick 1.11.0
522
+
523
+ - Feature #3705, add resize_to_fit (thanks to Robert Manni for the code)
524
+ - Added optimize_layers method to the ImageList class (available with
525
+ ImageMagick 6.2.6)
526
+ - Added limit_resource method to the Magick module
527
+ - Replaced install.rb with setup.rb, improved gem install
528
+ (bug report from Ryan Davis)
529
+ - Added --disable-htmldoc option to setup.rb
530
+ - Fix bug #4104, incorrect label on example (reported by Jason Lee)
531
+ - Added contrast_stretch_channel to the Image class (available with
532
+ ImageMagick 6.2.6)
533
+ - Improved Magick exception handling to eliminate memory leaks when an exception
534
+ is rescued and execution continues.
535
+ - Tested with ImageMagick 6.2.7
536
+
537
+ ## RMagick 1.10.1
538
+
539
+ - Fix bug #3437, memory leak in ImageList#to_blob
540
+ - Fix bug #3363, Image#composite doesn't work when the source image
541
+ is bigger than the destination
542
+ - Fix bug #3635, Image#import_pixels doesn't accept FloatPixel or DoublePixel
543
+ storage types
544
+ - Feature #3597, add border_color attribute to the Draw class
545
+
546
+ ## RMagick 1.10.0
547
+
548
+ - Added add_noise_channel method to Image class (available with ImageMagick 6.2.5)
549
+ - Added vignette method to the Image class (available with ImageMagick 6.2.6)
550
+ - Added crop_resize method to the Image class (thanks to Jerret Taylor for
551
+ the suggestion and original code)
552
+ - Added export_pixels_to_str method to the Image class
553
+ - Provided default arguments to Image#export_pixels
554
+ - Added "order" option to Image#ordered_dither
555
+ - Added cyan, magenta, yellow, and black attribute accessors to the Pixel class
556
+ - Added CineonLogRGBColorspace, LABColorspace, Rec601LumaColorspace,
557
+ Rec601YCbCrColorspace, Rec709LumaColorspace, Rec709YCbCrColorspace,
558
+ LogColorspace enumerators to the ColorspaceType enumeration class.
559
+ - Fixed bug #2844, Image#to_blob exits if the image is a 0x0 JPEG
560
+ - Fixed bug #2688, Image#annotate, Draw#get_multiline_type_metrics handle
561
+ newline characters properly
562
+ - Tested with ImageMagick 6.2.6
563
+ - Removed support for all versions of ImageMagick prior to 6.0.0
564
+
565
+ ## RMagick 1.9.3
566
+
567
+ - Feature #2521, add Image#distortion_channel method
568
+ - Fixed bug #2546, ImageList#to_blob builds multi-image blobs again. (ImageMagick 6.2.0
569
+ silently broke the ImageToBlob method.) Thanks to Tom Werner for reporting this bug.
570
+ - Test with GraphicsMagick 1.1.7
571
+
572
+ ## RMagick 1.9.2
573
+
574
+ - Feature #2412, add the virtual_pixel_method attribute and the VirtualPixelMethod
575
+ enumeration
576
+ - Feature #2462, add the ticks_per_second attribute
577
+
578
+ ## RMagick 1.9.1
579
+
580
+ - Fixed bug #2157, Image#total_colors is now an alias of Image#number_colors
581
+ - Fixed bug #2155, Image#dispose= now accepts a DisposeType enum, #dispose
582
+ now returns a DisposeType enum.
583
+ - Fixed bug #2156, Image#properties no longer returns garbage for the property
584
+ name and value.
585
+ - Fixed bug #2190, Image#compose now returns a CompositeOperator
586
+ - Fixed bug #2191, Image#composite no longer abends when called with 0 arguments
587
+ - Fixed bug #2213, ImageList#montage method no longer leaves the imagelist corrupt
588
+ after raising an ImageMagickError
589
+ - Feature #2159, added GrayChannel ChannelType enum value, BlendCompositeOp and
590
+ ColorBurnCompositeOp CompositeOperator enum values, RLECompression CompressionType
591
+ enum value, deprecate RunlengthCompression
592
+ - Feature #2172, added optional argument to crop and crop! to reset the saved
593
+ page offsets after cropping
594
+ - Deprecated Image#channel_threshold. This method is deprecated in ImageMagick.
595
+ - Feature #2373, change Image#import_pixels to accept a pixel data buffer as well
596
+ as a pixel data array. (Thanks to Ara T. Howard for this suggestion!)
597
+ - Fixed to compile without errors with ImageMagick 6.2.4-4.
598
+
599
+ ## RMagick 1.9.0
600
+
601
+ - Added Image#monitor=, Image::Info#monitor=. Deprecated Magick.set_monitor.
602
+ - Fixed bug #2070, support color names with embedded spaces
603
+ - Fixed bug #2109, properly scope Magick constants in RVG
604
+
605
+ ## RMagick 1.8.3
606
+
607
+ - Tested with ImageMagick 6.2.3-2
608
+ - Added comment, delay, dispose, fill, gravity, and label attributes to
609
+ Image::Info
610
+
611
+ ## RMagick 1.8.2
612
+
613
+ - Fix bug #1983, potential buffer overflow in version_constants
614
+ - Added feature #2015, support the pointsize, authenticate,
615
+ and sampling_factor attributes in Image::Info
616
+
617
+ ## RMagick 1.8.1
618
+
619
+ - Fix bugs #1876, #1888, #1919
620
+ - Added feature #1941, RVG's polyline, polygon accept array arguments
621
+ - Numerous fixes to the RVG documentation
622
+
623
+ ## RMagick 1.8.0
624
+
625
+ - Added Image#shadow (ImageMagick 6.1.7)
626
+ - Added Image::Info#undefine, #[], #[]=
627
+ - Added sigmoidal_contrast_channel, sepiatone to Image class (ImageMagick 6.2.1)
628
+ - Added JPEG2000Compression constant (ImageMagick 6.2.2)
629
+ - Incorporated RVG classes
630
+ - Added RVG documentation, examples, updated installer
631
+ - Tested with ImageMagick 6.2.2-0, latest GraphicsMagick 1.2
632
+
633
+ ## RMagick 1.7.4
634
+
635
+ - Fix bug #1727
636
+ - Fix affine_transform.rb
637
+ - Tested with ImageMagick 6.2.1
638
+
639
+ ## RMagick 1.7.3
640
+
641
+ - Fix bug #1553, a build issue with ImageMagick 6.0.x
642
+
643
+ ## RMagick 1.7.2
644
+
645
+ - Fix bugs #1308, #1310, #1314, #1533
646
+
647
+ ## RMagick 1.7.1
648
+
649
+ - Fix bugs #1250, #1253
650
+ - Tested with ImageMagick 6.1.7, Ruby 1.8.2
651
+
652
+ ## RMagick 1.7.0
653
+
654
+ - Added splice, set_channel_depth to Image class (ImageMagick 6.0.0)
655
+ - Added sharpen_channel, blur_channel to Image class (ImageMagick 6.0.1)
656
+ - Added get_multiline_type_metrics to Draw class (ImageMagick 6.1.5),
657
+ added new example scripts and images
658
+ - Added normalize_channel, unsharp_mask_channel to Image class
659
+ (ImageMagick 6.1.0)
660
+ - Added read_inline to Image class
661
+ - Renamed channel_compare to compare_channel, retained old name as an alias
662
+ for backward compatibility.
663
+ - Added default values for unsharp_mask arguments
664
+ - Fixed bug #1193
665
+ - Fixed segfault in destroy_Draw when Ruby gc'd the temp file name
666
+ array before calling destroy_Draw
667
+ - Tested with ImageMagick 6.1.6, GraphicsMagick 1.1.4, Ruby 1.8.2preview3.
668
+
669
+ ## RMagick 1.6.2
670
+
671
+ - Fixed ImageList#deconstruct to return an imagelist
672
+ - Fixed installation procedure to propagate user's CFLAGS, CPPFLAGS,
673
+ and LDFLAGS through to the low-level Makefile
674
+ - Fixed bugs #1048, #1127
675
+
676
+ ## RMagick 1.6.1
677
+
678
+ - Changed to match changes in ImageMagick 6.1.4 API
679
+ - Fixed bug #950
680
+
681
+ ## RMagick 1.6.0
682
+
683
+ - Added posterize, gaussian_blur_channel, convolve_channel methods to Image class
684
+ (ImageMagick 6.0.0)
685
+ - Added new CompositeOperator constants (ImageMagick 6.0.0)
686
+ - Added trim and trim! methods to Image class
687
+ - Added each method to Enum subclasses
688
+ - Added stroke_width= attribute to the Draw class
689
+ - Fixed bugs #624, #642, #716, applied patch #819 (thanks to Daniel Quimper)
690
+ - Tested with ImageMagick 6.0.5-2, GraphicsMagick 1.1.3, Ruby 1.8.2
691
+
692
+ ## RMagick 1.5.0
693
+
694
+ - Added meaningful implementations of dup and clone to the Image and Draw
695
+ classes. Clarified the documentation.
696
+ - Do not allow changes to frozen Image, ImageList, and Draw objects.
697
+ - Raise TypeError if freeze method sent to Image::Info or ImageList::Montage
698
+ object.
699
+ - Added view method to Image, Image::View class (thanks to Ara T. Howard and
700
+ Charles Comstock on c.l.r for the discussion which prompted me to add this class)
701
+ - Added grayscale_pseudo_class method to Image class (GraphicsMagick 1.1)
702
+ - Added radial_blur, random_threshold_channel methods to Image class
703
+ (ImageMagick 6.0.0)
704
+ - Added quantum_operator method to Image class (GraphicsMagick 1.1, ImageMagick 6.0.0)
705
+ - Added statistics method to Image class (GraphicsMagick 1.1)
706
+ - Support channel_extrema, channel_mean with GraphicsMagick 1.1
707
+ - Added endian attribute to Image class
708
+ - Added composite! method to Image class
709
+ - Deprecated random_channel_threshold method when linked with ImageMagick 6.0.0.
710
+
711
+ ## RMagick 1.4.0
712
+
713
+ - Revised and updated documentation
714
+ - Implemented enumeration values as instances of an Enum
715
+ class. Based on a description by Paul Brannon in ruby-talk 79041.
716
+ - Added HSLColorspace, HWBColorspace constants (ImageMagick 5.5.7,
717
+ GraphicsMagick 1.0.2)
718
+ - Added CopyCyanCompositeOp, CopyMagentaCompositeOp,
719
+ CopyYellowCompositeOp, CopyBlackCompositeOp constants (ImageMagick 5.5.7,
720
+ GraphicsMagick 1.1)
721
+ - Added ReplaceCompositeOp. CopyCompositeOp constants (ImageMagick 6.0.0)
722
+ - Added color_histogram to Image class. (ImageMagick 6.0.0, GraphicsMagick 1.1)
723
+ - Added define method to Image::Info class (ImageMagick 6.0.0, GraphicsMagick 1.1)
724
+ - Added tint, each_profile, channel_extrema, channel_compare,
725
+ channel_depth, channel_mean, quantum_depth, preview, gamma_channel,
726
+ negate_channel, bilevel_channel methods to Image class (ImageMagick 6.0.0)
727
+ - Added get_exif_by_entry, get_exif_by_tag to Image class
728
+ - Added border! method to Image class
729
+ - Added fcmp, intensity methods to Pixel class
730
+ - Added Version_long constant
731
+ - The 'fuzz' attribute in the Image and ImageInfo classes now
732
+ accepts a percentage value as well as a numeric value.
733
+ - Added Geometry class and changed all methods that accept a geometry
734
+ string to accept a Geometry object as well
735
+ - Added dup and clone methods to the ImageList, Image, and Draw
736
+ classes (Fix for bug #254.)
737
+ - Tested with latest ImageMagick 6.0.0 beta and GraphicsMagick 1.1 snapshot
738
+
739
+ ## RMagick 1.3.2
740
+
741
+ - Fix profile! to require only 2 arguments, as documented.
742
+ - Correct spelling of 'transparent' in text_antialias.rb example.
743
+ - Add output of `Magick-config --libs` to LIBS variable in configure
744
+ - Minor fixes in documentation
745
+ - Test with GraphicsMagick 1.0.4
746
+ - Test with latest ImageMagick 5.5.8 beta
747
+
748
+ ## RMagick 1.3.1
749
+
750
+ - Fixed default base URI in the links to the installed xMagick doc
751
+ - Applied the patch for bug #76 that caused the rubyname.rb example
752
+ to hang when installing on FreeBSD.
753
+ - Fixed the <=> method in Image to return nil when the class of the
754
+ other object is not Image
755
+ - Added code to ensure that the `text' argument to Draw#text is not
756
+ nil or empty
757
+ - Fixed the handle_error function to re-initialize the exception
758
+ structure after destroying its contents.
759
+
760
+ ## RMagick 1.3.0
761
+
762
+ - Added strip!, import_pixels, export_pixels, random_channel_threshold
763
+ to the Image class. (Available only with ImageMagick 5.5.8, which
764
+ is still in beta.)
765
+ - Added black_threshold and white_threshold to the Image class.
766
+ - Added format= attribute writer to the Image class
767
+ - Added monochrome= attribute writer to the Image::Info class
768
+ - Added annotate to the Image class.
769
+ - Made the image argument to get_type_metrics optional. (Thanks to
770
+ Hal Fulton for suggesting this change and the annotate change!)
771
+ - Enhance the read, write, and ping methods in both the Image
772
+ class and the ImageList class to accept an open File object as
773
+ well as a filename argument.
774
+ - Added change_geometry to the Image class
775
+ - Changed configure to generate top-level Makefile with install
776
+ and uninstall targets. (Thanks to Bob Friesenhahn for the
777
+ suggestion and the the Makefile!)
778
+ - Incorporated 1.2.2.1 patch to correct problems when building
779
+ with Ruby 1.6.7.
780
+ - Added "magick_location" attribute to the ImageMagickError
781
+ class. (Available only with GraphicsMagick 1.1, not yet released.)
782
+ - Tested with ImageMagick 5.5.8 beta
783
+ - Tested with GraphicsMagick 1.0.2 and 1.1 snapshot
784
+ - Tested with Ruby 1.8.0
785
+ - Changed to MIT license
786
+
787
+ ## RMagick 1.2.2
788
+
789
+ - Fixed many bugs in configuration script
790
+ - Added support for GraphicsMagick 1.0 (with assistance from Bob Friesenhahn)
791
+ - Changed default documentation directory (--doc-dir option default) to
792
+ $prefix/share/RMagick
793
+ - Added "examples" directory to contain example programs that aren't
794
+ referenced by the documentation
795
+
796
+ ## RMagick 1.2.1
797
+
798
+ - Yet another fix to the Cygwin installation procedure
799
+
800
+ ## RMagick 1.2.0
801
+
802
+ - Changed install to work correctly on Cygwin
803
+ (Cygwin testing by Yuki Hirakawa and David Martinez Garcia.)
804
+ - Changed install to support Gentoo ebuild
805
+ (Gentoo support provided by Tom Payne.)
806
+ - Changed configure script to find IM doc in IM 5.5.7
807
+ - Added Image#capture
808
+ - Added optional matte_pct argument to Image#colorize
809
+ - Add default argument values to Image#gaussian_blur
810
+ - Fix bug in Image#store_pixels that prevented it from working with
811
+ GIF and other PseudoClass image formats
812
+ - Changed Image#crop and Image#crop! to accept a GravityType constant
813
+ as the first argument, instead of the x- and y-offset arguments.
814
+ (Suggested by Robert Wagner.)
815
+ - Added Image::Info#filename=, image_type=
816
+ - Added ImageList#__map__ as an alias for Enumerable#map
817
+ - Added fetch, insert, select, reject methods to ImageList class for
818
+ Ruby 1.8.0
819
+ - Undefined zip and transpose methods in ImageList class for Ruby 1.8.0
820
+ - ImageMagick 5.5.7 supported
821
+
822
+ ## RMagick 1.1.0
823
+
824
+ - Fixed bug in handle_error that caused an abend when linked with IM 5.5.6
825
+ - Added RMAGICK image "format". When read, returns 252x108 RMagick logo
826
+ in PNG format.
827
+ - Changed examples to give all floating point constants a leading digit.
828
+ - Added Image#rotate!
829
+ - Tested with Ruby 1.8.0preview2
830
+ - Added Image#extract_info, Image::Info#extract=, Image::Info#scene=,
831
+ Image::Info#number_scenes=, Image::Info#tile=
832
+ - Added Draw#text_align, Draw#text_anchor, Draw#text_undercolor
833
+ - ImageMagick 5.5.6 supported
834
+
835
+ ## RMagick 1.0.0
836
+
837
+ - Fixed warnings when compiling with Ruby 1.8.0
838
+ - Added Draw#rotation=, rotated_text.rb
839
+ - Fixed temp image files in Montage_texture and Draw_composite
840
+ - ImageMagick 5.5.5 supported
841
+
842
+ ## RMagick 0.9.5
843
+
844
+ - Added channel.rb example
845
+ - Fixed install problems with IM 5.5.1
846
+
847
+ ## RMagick 0.9.4
848
+
849
+ - Cleaned up documentation.
850
+ - Added logging methods Magick.set_log_event_mask and Magick.set_log_format
851
+ - Added Magick.set_monitor
852
+ - Added custom serialization methods _dump and _load to Image class.
853
+ Added marshaling section to usage doc.
854
+ - Added Image#mime_type
855
+ - Changed install to use autoconf-generated configure script
856
+ - Replaced makedoc.rb with post-install.rb hook
857
+ - Added rmconst.rb utility script
858
+ - ImageMagick 5.5.4 supported
859
+
860
+ ## RMagick 0.9.3
861
+
862
+ - Changed ImageList#<=> to use same algorithm as Array#<=>
863
+ - Changed Draw class variables to class constants
864
+ - Fixed bug in Magick::colors method that caused some colors
865
+ to be repeated or missed when the optional block is used
866
+ - Changed fill classes to not inherit from common Fill class.
867
+ Removed Fill class.
868
+ - Improved usage documentation
869
+ - Added Image#level_channel, introduced with IM 5.5.3
870
+ - ImageMagick 5.5.3 supported
871
+ - Ruby 1.6.8, 1.8.0preview1 supported
872
+
873
+ ## RMagick 0.9.2
874
+
875
+ - Added crop!, flip!, flop!, magnify!, minify!, resize!, sample!,
876
+ scale!, shave!, channel_threshold methods to Image class
877
+ - Documented DisposeType, ColorSeparationMatteType and OptimizeType
878
+ constants
879
+ - Changed Image#<=>, ImageList#<=> to raise TypeError if the other
880
+ argument is not in the same class
881
+ - Deleted Image#==, ImageList#==, include Comparable in both classes
882
+ - Added Image#thumbnail, thumbnail!, adaptive_threshold for 5.5.2 & later
883
+ - Used image list functions in 5.5.2 & later
884
+ - ImageMagick 5.5.2 supported
885
+ - Removed last vestiges of 5.4.9 support
886
+
887
+ ## RMagick 0.9.1
888
+
889
+ - Added -Wl,rpath option to $LDFLAGS in extconf.rb
890
+ - #include <sys/types.h> in rmagick.h
891
+ - Changed set_cache_threshold to call SetMagickResourceLimit instead of SetCacheThreshold
892
+ - Changed Image_texture_flood_fill to clone texture image instead of adding a reference
893
+ - Many fixes to the Array methods in ImageList
894
+ - Defined Image#<=>, defined Image#== in terms of Image#<=>
895
+ - Defined ImageList#<=> in terms of Image#<=>
896
+
897
+ ## RMagick 0.9.0
898
+
899
+ 1st beta