image_optim_pack 0.12.0-arm64-darwin
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.dockerignore +10 -0
- data/.github/dependabot.yml +6 -0
- data/.github/workflows/build.yml +47 -0
- data/.github/workflows/check.yml +33 -0
- data/.github/workflows/docker-build.yml +29 -0
- data/.github/workflows/livecheck.yml +35 -0
- data/.github/workflows/rubocop.yml +16 -0
- data/.gitignore +7 -0
- data/.rubocop.yml +97 -0
- data/CHANGELOG.markdown +546 -0
- data/Dockerfile +184 -0
- data/Dockerfile.debian +184 -0
- data/Gemfile +10 -0
- data/LICENSE.txt +27 -0
- data/Makefile +543 -0
- data/README.markdown +121 -0
- data/acknowledgements/7z.txt +56 -0
- data/acknowledgements/advancecomp.txt +674 -0
- data/acknowledgements/bmp2png.txt +8 -0
- data/acknowledgements/cexcept.txt +8 -0
- data/acknowledgements/gifread.txt +14 -0
- data/acknowledgements/gifsicle.txt +343 -0
- data/acknowledgements/iqa.txt +30 -0
- data/acknowledgements/jhead.txt +12 -0
- data/acknowledgements/jpeg-archive.txt +20 -0
- data/acknowledgements/jpegoptim.txt +339 -0
- data/acknowledgements/libjpeg-turbo.txt +27 -0
- data/acknowledgements/libjpeg-x86-simd.txt +17 -0
- data/acknowledgements/libjpeg.txt +64 -0
- data/acknowledgements/liblcms2.txt +21 -0
- data/acknowledgements/libpng.txt +90 -0
- data/acknowledgements/mozjpeg.txt +7 -0
- data/acknowledgements/optipng-authors.txt +26 -0
- data/acknowledgements/optipng.txt +21 -0
- data/acknowledgements/oxipng.txt +20 -0
- data/acknowledgements/pngcrush.txt +35 -0
- data/acknowledgements/pngout.txt +9 -0
- data/acknowledgements/pngquant.txt +56 -0
- data/acknowledgements/smallfry.txt +13 -0
- data/acknowledgements/zlib.txt +34 -0
- data/acknowledgements/zopfli-contributors.txt +6 -0
- data/acknowledgements/zopfli.txt +201 -0
- data/checksums.mk +17 -0
- data/image_optim_pack-darwin-arm64.gemspec +3 -0
- data/image_optim_pack-darwin-x86_64.gemspec +3 -0
- data/image_optim_pack-linux-x86_64.gemspec +3 -0
- data/image_optim_pack.gemspec +62 -0
- data/lib/image_optim/pack.rb +119 -0
- data/lib/image_optim_pack.rb +3 -0
- data/patches/pngcrush.patch +15 -0
- data/script/extract +19 -0
- data/script/livecheck +263 -0
- data/script/platform_downloads +59 -0
- data/script/run +131 -0
- data/spec/image_optim/pack_spec.rb +116 -0
- data/spec/image_optim_spec.rb +42 -0
- data/spec/spec_helper.rb +10 -0
- data/vendor/darwin-arm64/advpng +0 -0
- data/vendor/darwin-arm64/gifsicle +0 -0
- data/vendor/darwin-arm64/jhead +0 -0
- data/vendor/darwin-arm64/jpeg-recompress +0 -0
- data/vendor/darwin-arm64/jpegoptim +0 -0
- data/vendor/darwin-arm64/jpegtran +0 -0
- data/vendor/darwin-arm64/libjpeg.dylib +0 -0
- data/vendor/darwin-arm64/liblcms2.dylib +0 -0
- data/vendor/darwin-arm64/libpng.dylib +0 -0
- data/vendor/darwin-arm64/libz.dylib +0 -0
- data/vendor/darwin-arm64/optipng +0 -0
- data/vendor/darwin-arm64/oxipng +0 -0
- data/vendor/darwin-arm64/pngcrush +0 -0
- data/vendor/darwin-arm64/pngout +0 -0
- data/vendor/darwin-arm64/pngquant +0 -0
- metadata +199 -0
data/CHANGELOG.markdown
ADDED
@@ -0,0 +1,546 @@
|
|
1
|
+
# ChangeLog
|
2
|
+
|
3
|
+
## unreleased
|
4
|
+
|
5
|
+
## v0.12.0 (2025-02-23)
|
6
|
+
|
7
|
+
* Add darwin-arm64/Apple silicon platform [@toy](https://github.com/toy)
|
8
|
+
* Switch to rust version of pngquant updating to 3.0.3 [#27](https://github.com/toy/image_optim_pack/issues/27) [@toy](https://github.com/toy)
|
9
|
+
* pngout 20230322 (only for darwin) for arm64 [@toy](https://github.com/toy)
|
10
|
+
* Set darwin deployment target to 10.12 [@toy](https://github.com/toy)
|
11
|
+
* liblcms 2.17, libpng 1.6.47 and oxipng 9.1.4 [@toy](https://github.com/toy)
|
12
|
+
|
13
|
+
## v0.11.2 (2025-01-31)
|
14
|
+
|
15
|
+
* Ensure linux binaries built in container have mode `755` instead of `700` [#28](https://github.com/toy/image_optim_pack/issues/28) [#29](https://github.com/toy/image_optim_pack/issues/29) [@toy](https://github.com/toy)
|
16
|
+
|
17
|
+
## v0.11.1.20250125 (2025-01-25)
|
18
|
+
|
19
|
+
* libpng 1.6.46 [@toy](https://github.com/toy)
|
20
|
+
|
21
|
+
## v0.11.1.20250108 (2025-01-08)
|
22
|
+
|
23
|
+
* libpng 1.6.45 [@toy](https://github.com/toy)
|
24
|
+
|
25
|
+
## v0.11.1.20241130 (2024-11-30)
|
26
|
+
|
27
|
+
* oxipng 9.1.3 [@toy](https://github.com/toy)
|
28
|
+
|
29
|
+
## v0.11.1.20240914 (2024-09-14)
|
30
|
+
|
31
|
+
* libpng 1.6.44 [@toy](https://github.com/toy)
|
32
|
+
|
33
|
+
## v0.11.1.20240713 (2024-07-13)
|
34
|
+
|
35
|
+
* oxipng 9.1.2 [@toy](https://github.com/toy)
|
36
|
+
|
37
|
+
## v0.11.1 (2024-05-09)
|
38
|
+
|
39
|
+
* Use oldest maintained debian buster instead of newest bookworm for building linux binaries [@toy](https://github.com/toy)
|
40
|
+
|
41
|
+
## v0.11.0 (2024-05-05)
|
42
|
+
|
43
|
+
* Use container instead of vagrant to build linux binaries [@toy](https://github.com/toy)
|
44
|
+
* oxipng 9.1.1 [@toy](https://github.com/toy)
|
45
|
+
|
46
|
+
## v0.10.1.20240317 (2024-03-17)
|
47
|
+
|
48
|
+
* gifsicle 1.95 [@toy](https://github.com/toy)
|
49
|
+
* libpng 1.6.43, patching pngcrush to be compatible [@toy](https://github.com/toy)
|
50
|
+
* libjpeg 9f [@toy](https://github.com/toy)
|
51
|
+
|
52
|
+
## v0.10.1 (2023-12-05)
|
53
|
+
|
54
|
+
* liblcms 2.16 [@toy](https://github.com/toy)
|
55
|
+
|
56
|
+
## v0.10.0.20231105 (2023-11-05)
|
57
|
+
|
58
|
+
* optipng 0.7.8 [@toy](https://github.com/toy)
|
59
|
+
|
60
|
+
## v0.10.0.20231014 (2023-10-14)
|
61
|
+
|
62
|
+
* libmozjpeg 4.1.5 [@toy](https://github.com/toy)
|
63
|
+
|
64
|
+
## v0.10.0 (2023-10-11)
|
65
|
+
|
66
|
+
* advancecomp 2.6 and oxipng 9.0.0 [@toy](https://github.com/toy)
|
67
|
+
* Remove 32 bit (i686) linux binaries/platform [@toy](https://github.com/toy)
|
68
|
+
|
69
|
+
## v0.9.1.20230828 (2023-08-28)
|
70
|
+
|
71
|
+
* libmozjpeg 4.1.4 [@toy](https://github.com/toy)
|
72
|
+
|
73
|
+
## v0.9.1.20230814 (2023-08-14)
|
74
|
+
|
75
|
+
* jpegoptim 1.5.5 [@toy](https://github.com/toy)
|
76
|
+
|
77
|
+
## v0.9.1.20230625 (2023-06-25)
|
78
|
+
|
79
|
+
* gifsicle 1.94 [@toy](https://github.com/toy)
|
80
|
+
|
81
|
+
## v0.9.1.20230622 (2023-06-22)
|
82
|
+
|
83
|
+
* libpng 1.6.40 [@toy](https://github.com/toy)
|
84
|
+
|
85
|
+
## v0.9.1.20230526 (2023-05-26)
|
86
|
+
|
87
|
+
* libmozjpeg 4.1.3 [@toy](https://github.com/toy)
|
88
|
+
|
89
|
+
## v0.9.1.20230515 (2023-05-15)
|
90
|
+
|
91
|
+
* jpegoptim 1.5.4 [@toy](https://github.com/toy)
|
92
|
+
|
93
|
+
## v0.9.1.20230325 (2023-03-25)
|
94
|
+
|
95
|
+
* jpegoptim 1.5.3 [@toy](https://github.com/toy)
|
96
|
+
|
97
|
+
## v0.9.1.20230304 (2023-03-04)
|
98
|
+
|
99
|
+
* liblcms 2.15 [@toy](https://github.com/toy)
|
100
|
+
|
101
|
+
## v0.9.1.20230212 (2023-02-12)
|
102
|
+
|
103
|
+
* jpegoptim 1.5.2 [@toy](https://github.com/toy)
|
104
|
+
|
105
|
+
## v0.9.1.20230129 (2023-01-29)
|
106
|
+
|
107
|
+
* pngquant 2.18.0 [@toy](https://github.com/toy)
|
108
|
+
|
109
|
+
## v0.9.1.20230127 (2023-01-27)
|
110
|
+
|
111
|
+
* advancecomp 2.5 [@toy](https://github.com/toy)
|
112
|
+
|
113
|
+
## v0.9.1.20230107 (2023-01-07)
|
114
|
+
|
115
|
+
* jpegoptim 1.5.1 [@toy](https://github.com/toy)
|
116
|
+
|
117
|
+
## v0.9.1.20221226 (2022-12-26)
|
118
|
+
|
119
|
+
* oxipng 8.0.0 [@toy](https://github.com/toy)
|
120
|
+
|
121
|
+
## v0.9.1.20221210 (2022-12-10)
|
122
|
+
|
123
|
+
* oxipng 7.0.0 [@toy](https://github.com/toy)
|
124
|
+
|
125
|
+
## v0.9.1.20221127 (2022-11-27)
|
126
|
+
|
127
|
+
* advancecomp 2.4 and libpng 1.6.39 [@toy](https://github.com/toy)
|
128
|
+
|
129
|
+
## v0.9.1.20221104 (2022-11-04)
|
130
|
+
|
131
|
+
* liblcms 2.14 [@toy](https://github.com/toy)
|
132
|
+
|
133
|
+
## v0.9.1.20220917 (2022-09-17)
|
134
|
+
|
135
|
+
* jpegoptim 1.5.0 and libpng 1.6.38 [@toy](https://github.com/toy)
|
136
|
+
|
137
|
+
## v0.9.1.20220909 (2022-09-09)
|
138
|
+
|
139
|
+
* oxipng 6.0.1 [@toy](https://github.com/toy)
|
140
|
+
|
141
|
+
## v0.9.1.20220907 (2022-09-07)
|
142
|
+
|
143
|
+
* oxipng 6.0.0 [@toy](https://github.com/toy)
|
144
|
+
|
145
|
+
## v0.9.1 (2022-08-29)
|
146
|
+
|
147
|
+
* libmozjpeg 4.1.1, updrade 32 bit ubuntu to bionic [@toy](https://github.com/toy)
|
148
|
+
|
149
|
+
## v0.9.0 (2022-06-11)
|
150
|
+
|
151
|
+
* Add [pngout](http://advsys.net/ken/utils.htm) (since January 2021 license allows redistrubition for freely distributed non-commercial projects) [#24](https://github.com/toy/image_optim_pack/issues/24) [@toy](https://github.com/toy)
|
152
|
+
|
153
|
+
## v0.8.0.20220418 (2022-04-18)
|
154
|
+
|
155
|
+
* advancecomp 2.3 and jpegoptim 1.4.7 [@toy](https://github.com/toy)
|
156
|
+
|
157
|
+
## v0.8.0.20220131 (2022-01-31)
|
158
|
+
|
159
|
+
* liblcms 2.13 [@toy](https://github.com/toy)
|
160
|
+
|
161
|
+
## v0.8.0.20220117 (2022-01-17)
|
162
|
+
|
163
|
+
* libjpeg 9e and pngquant 2.17.0 [@toy](https://github.com/toy)
|
164
|
+
|
165
|
+
## v0.8.0.20211116 (2021-11-16)
|
166
|
+
|
167
|
+
* oxipng 5.0.1 [@toy](https://github.com/toy)
|
168
|
+
|
169
|
+
## v0.8.0 (2021-10-20)
|
170
|
+
|
171
|
+
* Add [lcms2](https://littlecms.com) colour management library for pngquant [@toy](https://github.com/toy)
|
172
|
+
* Add [oxipng](https://github.com/shssoichiro/oxipng) (v5.0.0), switch to ubuntu/xenial32 for 32 bit [@toy](https://github.com/toy)
|
173
|
+
|
174
|
+
## v0.7.0.20211002 (2021-10-02)
|
175
|
+
|
176
|
+
* pngquant 2.16.0 [@toy](https://github.com/toy)
|
177
|
+
* gifsicle 1.93 [@toy](https://github.com/toy)
|
178
|
+
* pngquant 2.15.1 [@toy](https://github.com/toy)
|
179
|
+
|
180
|
+
## v0.7.0.20210511 (2021-05-11)
|
181
|
+
|
182
|
+
* pngquant 2.15.0 [@toy](https://github.com/toy)
|
183
|
+
|
184
|
+
## v0.7.0.20210430 (2021-04-30)
|
185
|
+
|
186
|
+
* pngquant 2.14.1 [@toy](https://github.com/toy)
|
187
|
+
* libmozjpeg 4.0.3 [@toy](https://github.com/toy)
|
188
|
+
|
189
|
+
## v0.7.0.20210206 (2021-02-06)
|
190
|
+
|
191
|
+
* libmozjpeg 4.0.2 [@toy](https://github.com/toy)
|
192
|
+
|
193
|
+
## v0.7.0 (2020-12-05)
|
194
|
+
|
195
|
+
* libmozjpeg 4.0.0 [@toy](https://github.com/toy)
|
196
|
+
* Set darwin deployment target to 10.9 [@toy](https://github.com/toy)
|
197
|
+
* Remove 32 bit (i386) binaries/platform on darwin [@toy](https://github.com/toy)
|
198
|
+
* Switch to centos 7 for linux builds as 6.9 is outdated [@toy](https://github.com/toy)
|
199
|
+
* pngquant 2.13.1 [@toy](https://github.com/toy)
|
200
|
+
|
201
|
+
## v0.6.0.20201024 (2020-10-24)
|
202
|
+
|
203
|
+
* pngquant 2.13.0 [@toy](https://github.com/toy)
|
204
|
+
|
205
|
+
## v0.6.0.20200215 (2020-02-15)
|
206
|
+
|
207
|
+
* jpegarchive 2.2.0 and libmozjpeg 3.3.1 [@toy](https://github.com/toy)
|
208
|
+
|
209
|
+
## v0.6.0.20200116 (2020-01-16)
|
210
|
+
|
211
|
+
* libjpeg 9d [@toy](https://github.com/toy)
|
212
|
+
|
213
|
+
## v0.6.0.20191208 (2019-12-08)
|
214
|
+
|
215
|
+
* jhead 3.04 [@toy](https://github.com/toy)
|
216
|
+
* Update jhead source and use https where possible [@toy](https://github.com/toy)
|
217
|
+
|
218
|
+
## v0.6.0 (2019-08-15)
|
219
|
+
|
220
|
+
* Remove FreeBSD and OpenBSD binaries/platforms [#16](https://github.com/toy/image_optim_pack/issues/16) [@toy](https://github.com/toy)
|
221
|
+
|
222
|
+
## v0.5.6.20190728 (2019-07-28)
|
223
|
+
|
224
|
+
* pngquant 2.12.5 [@toy](https://github.com/toy)
|
225
|
+
|
226
|
+
## v0.5.6 (2019-07-18)
|
227
|
+
|
228
|
+
* Ignore dotfiles alongside libraries when selecting path with compatible binaries [@toy](https://github.com/toy)
|
229
|
+
|
230
|
+
## v0.5.5 (2019-07-14)
|
231
|
+
|
232
|
+
* Fix specifying platform in gemspec for platform specific gems [@toy](https://github.com/toy)
|
233
|
+
|
234
|
+
## v0.5.4 (2019-07-14)
|
235
|
+
|
236
|
+
* Remove deprecated `rubyforge_project` attribute from gemspec [rubygems/rubygems#2436](https://github.com/rubygems/rubygems/pull/2436) [@toy](https://github.com/toy)
|
237
|
+
|
238
|
+
## v0.5.3 (2019-05-25)
|
239
|
+
|
240
|
+
* pngquant 2.12.3 [@toy](https://github.com/toy)
|
241
|
+
* Enable frozen string literals [@toy](https://github.com/toy)
|
242
|
+
|
243
|
+
## v0.5.2.20190428 (2019-04-28)
|
244
|
+
|
245
|
+
* gifsicle 1.92 and libpng 1.6.37 [@toy](https://github.com/toy)
|
246
|
+
|
247
|
+
## v0.5.2 (2019-04-10)
|
248
|
+
|
249
|
+
* Use libc++ instead of libstdc++ on darwin and set deployment target to 10.7 [#15](https://github.com/toy/image_optim_pack/issues/15) [@toy](https://github.com/toy)
|
250
|
+
* Switch to openbsd 5.9 [@toy](https://github.com/toy)
|
251
|
+
|
252
|
+
## v0.5.1.20190105 (2019-01-05)
|
253
|
+
|
254
|
+
* jhead 3.03 [@toy](https://github.com/toy)
|
255
|
+
|
256
|
+
## v0.5.1.20181213 (2018-12-13)
|
257
|
+
|
258
|
+
* jhead 3.02 [@toy](https://github.com/toy)
|
259
|
+
|
260
|
+
## v0.5.1.20181208 (2018-12-08)
|
261
|
+
|
262
|
+
* libpng 1.6.36 [@toy](https://github.com/toy)
|
263
|
+
* pngquant 2.12.2 [@toy](https://github.com/toy)
|
264
|
+
* libpng 1.6.35 [@toy](https://github.com/toy)
|
265
|
+
|
266
|
+
## v0.5.1 (2018-06-10)
|
267
|
+
|
268
|
+
* Switching back to centos (6.9) for linux to use more widely compatible glibc during compilation [#12](https://github.com/toy/image_optim_pack/issues/12) [@toy](https://github.com/toy)
|
269
|
+
* Add archive checksum verification [#10](https://github.com/toy/image_optim_pack/issues/10) [@toy](https://github.com/toy)
|
270
|
+
|
271
|
+
## v0.5.0.20180605 (2018-06-05)
|
272
|
+
|
273
|
+
* pngquant 2.12.0 [@toy](https://github.com/toy)
|
274
|
+
|
275
|
+
## v0.5.0.20180419 (2018-04-19)
|
276
|
+
|
277
|
+
* jpegoptim 1.4.6 [@toy](https://github.com/toy)
|
278
|
+
|
279
|
+
## v0.5.0.20180401 (2018-04-01)
|
280
|
+
|
281
|
+
* jpegoptim 1.4.5 [@toy](https://github.com/toy)
|
282
|
+
* advancecomp 2.1 [@toy](https://github.com/toy)
|
283
|
+
|
284
|
+
## v0.5.0.20180124 (2018-01-24)
|
285
|
+
|
286
|
+
* libjpeg 9c and pngquant 2.11.7 [@toy](https://github.com/toy)
|
287
|
+
|
288
|
+
## v0.5.0.20180108 (2018-01-08)
|
289
|
+
|
290
|
+
* gifsicle 1.91 [@toy](https://github.com/toy)
|
291
|
+
|
292
|
+
## v0.5.0.20180103 (2018-01-03)
|
293
|
+
|
294
|
+
* optipng 0.7.7 [@toy](https://github.com/toy)
|
295
|
+
|
296
|
+
## v0.5.0.20171208 (2017-12-08)
|
297
|
+
|
298
|
+
* Ensure unused libgcc is not dynamically linked with pngquant [@toy](https://github.com/toy)
|
299
|
+
* Don’t use lcms (colour profiles) in pngquant [@toy](https://github.com/toy)
|
300
|
+
* pngquant 2.11.2 [@toy](https://github.com/toy)
|
301
|
+
* pngquant 2.11.1 [@toy](https://github.com/toy)
|
302
|
+
|
303
|
+
## v0.5.0.20171101 (2017-11-01)
|
304
|
+
|
305
|
+
* pngquant 2.11.0 [@toy](https://github.com/toy)
|
306
|
+
|
307
|
+
## v0.5.0.20171001 (2017-10-01)
|
308
|
+
|
309
|
+
* libpng 1.6.34 [@toy](https://github.com/toy)
|
310
|
+
|
311
|
+
## v0.5.0.20170831 (2017-08-31)
|
312
|
+
|
313
|
+
* pngcrush 1.8.13 [@toy](https://github.com/toy)
|
314
|
+
|
315
|
+
## v0.5.0.20170830 (2017-08-30)
|
316
|
+
|
317
|
+
* libpng 1.6.32 [@toy](https://github.com/toy)
|
318
|
+
|
319
|
+
## v0.5.0.20170815 (2017-08-15)
|
320
|
+
|
321
|
+
* gifsicle 1.90 [@toy](https://github.com/toy)
|
322
|
+
* pngquant 2.10.2 [@toy](https://github.com/toy)
|
323
|
+
|
324
|
+
## v0.5.0.20170803 (2017-08-03)
|
325
|
+
|
326
|
+
* libpng 1.6.31 and pngcrush 1.8.12 [@toy](https://github.com/toy)
|
327
|
+
|
328
|
+
## v0.5.0.20170712 (2017-07-12)
|
329
|
+
|
330
|
+
* gifsicle 1.89 [@toy](https://github.com/toy)
|
331
|
+
* pngquant 2.10.1 [@toy](https://github.com/toy)
|
332
|
+
|
333
|
+
## v0.5.0.20170701 (2017-07-01)
|
334
|
+
|
335
|
+
* libpng 1.6.30 [@toy](https://github.com/toy)
|
336
|
+
|
337
|
+
## v0.5.0.20170609 (2017-06-09)
|
338
|
+
|
339
|
+
* advpng 2.0 [@toy](https://github.com/toy)
|
340
|
+
|
341
|
+
## v0.5.0 (2017-05-06)
|
342
|
+
|
343
|
+
* Add gemspec for each platform to also release per platform gems [@toy](https://github.com/toy)
|
344
|
+
|
345
|
+
## v0.4.0 (2017-04-26)
|
346
|
+
|
347
|
+
* pngquant 2.9.1 [@toy](https://github.com/toy)
|
348
|
+
* Rebuild all binaries [@toy](https://github.com/toy)
|
349
|
+
* Update freebsd box definition to 10.3 [@toy](https://github.com/toy)
|
350
|
+
* Switching to ubuntu for linux as centos has outdated gcc, remove centos boxes definitions [@toy](https://github.com/toy)
|
351
|
+
* Fix pngcrush makefile variable overrides [@toy](https://github.com/toy)
|
352
|
+
* Allow custom structure of projects in Makefile which doesn't allow to put resulting binary in the root folder [@toy](https://github.com/toy)
|
353
|
+
|
354
|
+
## v0.3.1.20170318 (2017-03-18)
|
355
|
+
|
356
|
+
* libpng 1.6.29 [@toy](https://github.com/toy)
|
357
|
+
|
358
|
+
## v0.3.1.20170311 (2017-03-11)
|
359
|
+
|
360
|
+
* pngquant 2.9.0 [@toy](https://github.com/toy)
|
361
|
+
|
362
|
+
## v0.3.1.20170121 (2017-01-21)
|
363
|
+
|
364
|
+
* libpng 1.6.28, libz 1.2.11 and pngcrush 1.8.11 [@toy](https://github.com/toy)
|
365
|
+
|
366
|
+
## v0.3.1 (2016-12-30)
|
367
|
+
|
368
|
+
* libpng 1.6.27 and pngquant 2.8.2 [@toy](https://github.com/toy)
|
369
|
+
* Makefile cleanup [@toy](https://github.com/toy)
|
370
|
+
|
371
|
+
## v0.3.0.20161206 (2016-12-06)
|
372
|
+
|
373
|
+
* pngquant 2.8.1 (resort to cloning due to submodule not in archive) [@toy](https://github.com/toy)
|
374
|
+
* advpng 1.23 [@toy](https://github.com/toy)
|
375
|
+
* advpng 1.22 (windows related change) [@toy](https://github.com/toy)
|
376
|
+
|
377
|
+
## v0.3.0.20161108 (2016-11-08)
|
378
|
+
|
379
|
+
* advpng 1.21 [@toy](https://github.com/toy)
|
380
|
+
* pngcrush 1.8.10 [@toy](https://github.com/toy)
|
381
|
+
|
382
|
+
## v0.3.0.20161021 (2016-10-21)
|
383
|
+
|
384
|
+
* libpng 1.6.26 [@toy](https://github.com/toy)
|
385
|
+
* pngcrush 1.8.8 [@toy](https://github.com/toy)
|
386
|
+
|
387
|
+
## v0.3.0.20160927 (2016-09-27)
|
388
|
+
|
389
|
+
* pngcrush 1.8.7 [@toy](https://github.com/toy)
|
390
|
+
|
391
|
+
## v0.3.0.20160905 (2016-09-05)
|
392
|
+
|
393
|
+
* libpng 1.6.25 and pngcrush 1.8.6 [@toy](https://github.com/toy)
|
394
|
+
* jpegoptim 1.4.4 [@toy](https://github.com/toy)
|
395
|
+
|
396
|
+
## v0.3.0.20160812 (2016-08-12)
|
397
|
+
|
398
|
+
* pngcrush 1.8.4 [@toy](https://github.com/toy)
|
399
|
+
|
400
|
+
## v0.3.0.20160806 (2016-08-06)
|
401
|
+
|
402
|
+
* libpng 1.6.24 [@toy](https://github.com/toy)
|
403
|
+
|
404
|
+
## v0.3.0 (2016-07-27)
|
405
|
+
|
406
|
+
* Add FreeBSD and OpenBSD binaries [toy/image_optim#89](https://github.com/toy/image_optim/issues/89) [toy/image_optim#90](https://github.com/toy/image_optim/issues/90) [@toy](https://github.com/toy)
|
407
|
+
* Flatten vendor paths from os/arch to os-arch [@toy](https://github.com/toy)
|
408
|
+
* Add script for build build boxes using veewee [@toy](https://github.com/toy)
|
409
|
+
* pngcrush 1.8.2 [@toy](https://github.com/toy)
|
410
|
+
|
411
|
+
## v0.2.3 (2016-07-09)
|
412
|
+
|
413
|
+
* Change dependency on fspath to allow versions 2.1...4 [@toy](https://github.com/toy)
|
414
|
+
|
415
|
+
## v0.2.2 (2016-07-09)
|
416
|
+
|
417
|
+
* advancecomp 1.20 [@toy](https://github.com/toy)
|
418
|
+
* Rescue `Errno::ENOENT` on load when uname is not available [@toy](https://github.com/toy)
|
419
|
+
|
420
|
+
## v0.2.1.20160610 (2016-06-10)
|
421
|
+
|
422
|
+
* libpng 1.6.23 and pngquant 2.7.1 [@toy](https://github.com/toy)
|
423
|
+
|
424
|
+
## v0.2.1.20160510 (2016-05-10)
|
425
|
+
|
426
|
+
* pngquant 2.7.0 [@toy](https://github.com/toy)
|
427
|
+
|
428
|
+
## v0.2.1.20160413 (2016-04-13)
|
429
|
+
|
430
|
+
* pngcrush 1.8.1 [@toy](https://github.com/toy)
|
431
|
+
|
432
|
+
## v0.2.1.20160406 (2016-04-06)
|
433
|
+
|
434
|
+
* optipng 0.7.6 [@toy](https://github.com/toy)
|
435
|
+
|
436
|
+
## v0.2.1.20160221 (2016-02-21)
|
437
|
+
|
438
|
+
* pngquant 2.6.0 [@toy](https://github.com/toy)
|
439
|
+
|
440
|
+
## v0.2.1.20160119 (2016-01-19)
|
441
|
+
|
442
|
+
* libjpeg 9b [@toy](https://github.com/toy)
|
443
|
+
|
444
|
+
## v0.2.1.20160117 (2016-01-17)
|
445
|
+
|
446
|
+
* pngcrush 1.8.0 [@toy](https://github.com/toy)
|
447
|
+
* libpng 1.6.21 [@toy](https://github.com/toy)
|
448
|
+
|
449
|
+
## v0.2.1.20160103 (2016-01-03)
|
450
|
+
|
451
|
+
* libpng 1.6.20 and pngcrush 1.7.92 [@toy](https://github.com/toy)
|
452
|
+
|
453
|
+
## v0.2.1.20151113 (2015-11-13)
|
454
|
+
|
455
|
+
* libpng 1.6.19 and pngcrush 1.7.88 [@toy](https://github.com/toy)
|
456
|
+
|
457
|
+
## v0.2.1.20151012 (2015-10-12)
|
458
|
+
|
459
|
+
* pngcrush 1.7.87 [@toy](https://github.com/toy)
|
460
|
+
|
461
|
+
## v0.2.1.20151002 (2015-10-02)
|
462
|
+
|
463
|
+
* pngquant 2.5.2 [@toy](https://github.com/toy)
|
464
|
+
|
465
|
+
## v0.2.1.20150808 (2015-08-08)
|
466
|
+
|
467
|
+
* pngquant 2.5.1 [@toy](https://github.com/toy)
|
468
|
+
|
469
|
+
## v0.2.1.20150802 (2015-08-02)
|
470
|
+
|
471
|
+
* libpng 1.6.18 and pngcrush 1.7.86 [@toy](https://github.com/toy)
|
472
|
+
|
473
|
+
## v0.2.1.20150702 (2015-07-02)
|
474
|
+
|
475
|
+
* gifsicle 1.88 and pngquant 2.5.0 [@toy](https://github.com/toy)
|
476
|
+
|
477
|
+
## v0.2.1.20150525 (2015-05-25)
|
478
|
+
|
479
|
+
* jpegoptim 1.4.2 and libmozjpeg 3.1 [@toy](https://github.com/toy)
|
480
|
+
|
481
|
+
## v0.2.1.20150422 (2015-04-22)
|
482
|
+
|
483
|
+
* jpegarchive 2.1.1 [@toy](https://github.com/toy)
|
484
|
+
* pngquant 2.4.1 [@toy](https://github.com/toy)
|
485
|
+
|
486
|
+
## v0.2.1.20150411 (2015-04-11)
|
487
|
+
|
488
|
+
* jpegarchive 2.1.0 using libmozjpeg 3.0 [@toy](https://github.com/toy)
|
489
|
+
|
490
|
+
## v0.2.1.20150407 (2015-04-07)
|
491
|
+
|
492
|
+
* pngquant 2.3.6 [@toy](https://github.com/toy)
|
493
|
+
|
494
|
+
## v0.2.1.20150327 (2015-03-27)
|
495
|
+
|
496
|
+
* libpng 1.6.17 [@toy](https://github.com/toy)
|
497
|
+
|
498
|
+
## v0.2.1.20150310 (2015-03-10)
|
499
|
+
|
500
|
+
* pngcrush 1.7.85 and pngquant 2.3.5 [@toy](https://github.com/toy)
|
501
|
+
|
502
|
+
## v0.2.1.20150305 (2015-03-05)
|
503
|
+
|
504
|
+
* pngcrush 1.7.84 [@toy](https://github.com/toy)
|
505
|
+
|
506
|
+
## v0.2.1.20150203 (2015-02-03)
|
507
|
+
|
508
|
+
* jhead 3.00 [@toy](https://github.com/toy)
|
509
|
+
|
510
|
+
## v0.2.1.20150201 (2015-02-01)
|
511
|
+
|
512
|
+
* pngquant 2.3.4 [@toy](https://github.com/toy)
|
513
|
+
|
514
|
+
## v0.2.1.20150129 (2015-01-29)
|
515
|
+
|
516
|
+
* pngcrush 1.7.83 [@toy](https://github.com/toy)
|
517
|
+
|
518
|
+
## v0.2.1.20150107 (2015-01-07)
|
519
|
+
|
520
|
+
* pngquant 2.3.3 (2.3.2 skipped due to [pornel/pngquant#133](https://github.com/pornel/pngquant/issues/133)) [@toy](https://github.com/toy)
|
521
|
+
|
522
|
+
## v0.2.1 (2014-12-23)
|
523
|
+
|
524
|
+
* jpegoptim 1.4.1, libpng 1.6.16, pngcrush 1.7.82 [@toy](https://github.com/toy)
|
525
|
+
|
526
|
+
## v0.2.0.20141210 (2014-12-10)
|
527
|
+
|
528
|
+
* gifsicle 1.87 [@toy](https://github.com/toy)
|
529
|
+
|
530
|
+
## v0.2.0.20141122 (2014-11-22)
|
531
|
+
|
532
|
+
* libpng 1.6.15 [@toy](https://github.com/toy)
|
533
|
+
* pngcrush 1.7.81 [@toy](https://github.com/toy)
|
534
|
+
* pngcrush 1.7.80 [@toy](https://github.com/toy)
|
535
|
+
|
536
|
+
## v0.2.0 (2014-11-08)
|
537
|
+
|
538
|
+
* Add `jpeg-recompress` from [jpeg-archive](https://github.com/danielgtaylor/jpeg-archive) [@toy](https://github.com/toy)
|
539
|
+
|
540
|
+
## v0.1.0.20141104 (2014-11-04)
|
541
|
+
|
542
|
+
* pngcrush 1.7.79 [@toy](https://github.com/toy)
|
543
|
+
|
544
|
+
## v0.1.0 (2014-11-01)
|
545
|
+
|
546
|
+
* Initial release [@toy](https://github.com/toy)
|