File: History.txt

package info (click to toggle)
ruby-image-science 1.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 192 kB
  • sloc: ruby: 497; makefile: 9
file content (129 lines) | stat: -rw-r--r-- 3,003 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
=== 1.3.1 / 2019-12-14

* 1 bug fix:

  * Added noreturn attribute to raise_error since it always calls rb_raise.

=== 1.3.0 / 2016-05-16

* 1 minor enhancement:

  * Add rotate method. (bhenderson)

* 1 bug fix:

  * Fixed error-raising behaviour. (omp)

=== 1.2.6 / 2014-01-15

* 1 bug fix:

  * Defer raising exception until wrapped by rb_ensure. (nocode)

=== 1.2.5 / 2013-06-20

* 1 bug fix:

  * Fixed memory leak in the ReOrient function. (Blargel/abnerqian)

=== 1.2.4 / 2012-11-23

* 1 minor enhancement:

  * Extract out orientation logic and add it to with_image_from_memory. (bhenderson)

=== 1.2.3 / 2012-05-07

* 2 bug fixes:

  * Fixed thumbnail float imprecision errors. (jdelStrother)
  * Switched to using tmpdir for INLINEDIR to avoid failures in CI environments w/o homedirs

=== 1.2.2 / 2012-03-13

* 1 minor enhancement:

  * Extended build to look for homebrew setup (hcatlin)

* 2 bug fixes:

  * Fixed 1.9 warnings, clang warnings, etc...
  * Fixed compilation error when ruby's config mandates C89 style decls. (nocode)

=== 1.2.1 / 2009-08-14

* 2 minor enhancements:

  * Added luis' patches to make it build properly on windows.
  * with_image now raises on missing/bad files.

=== 1.2.0 / 2009-06-23

* 7 minor enhancements:

  * Moved quick_thumb to bin/image_science_thumb and properly added.
  * Added -s (square) flag to bin/image_science_thumb
  * Added autorotating on image load. (choonkeat)
  * Added ruby_inline to clean globs
  * Added with_image_from_memory. (sumbach)
  * Switched to minitest.
  * Updated rakefile for now hoe capabilities.

* 3 bug fixes:

  * Check and convert to 24 BPP if save type is jpg. Caused by 32bpp png to jpg.
  * Fixed 1.9isms
  * Fixed BMP support. Tweaked whitespace.

=== 1.1.3 / 2007-05-30

* 2 minor enhancements:

  * Added quick_thumb as an example to look at.
  * Error handler doesn't raise by default. Raises if $DEBUG==true.

=== 1.1.2 / 2007-04-18

* 2 bug fixes:

  * reports bad height/width values for resize
  * explicitly removes ICC color profiles from PNGs (bug in freeimage).

=== 1.1.1 / 2007-03-08

* 5 minor enhancements:

  * Added error handler that raises with information about what went wrong.
  * thumbnail is now pure ruby, everything now uses resize.
  * Produces cleaner JPEG files, with a small cost to file size/speed.
  * resize now uses Catmull-Rom spline filter for better quality.
  * resize copies existing ICC Profile to thumbnail, producing better color.
  * ICC Profile NOT copied for PNG as it seems to be buggy.

* 1 bug fix:

  * Fixed rdoc

=== 1.1.0 / 2007-01-05

* 3 major enhancements:

  * Added resize(width, height)
  * Added save(path)
  * All thumbnail and resize methods yield instead of saving directly.

* 1 minor enhancement:

  * Will now try to use FreeImage from ports if /opt/local exists.

* 2 bug fixes:

  * Fixed the linker issue on PPC.
  * Rakefile will now clean the image files created by bench.rb

=== 1.0.0 / 2006-12-01

* 1 major enhancement

  * Birthday!