public
Description: A lightweight and opinionated but hackable library for attaching images to ActiveRecord models.
Homepage:
Clone URL: git://github.com/norman/has_image.git
has_image / CHANGELOG
100644 37 lines (27 sloc) 1.474 kb
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
2008-08-19 Norman Clarke <norman@randomba.org>
  * Made storage work more correctly with tempfiles.
  
2008-08-18 Norman Clarke <norman@randomba.org>
  * Fixed ability to set the path for storing image files.
 
2008-08-1 Adrian Mugnolo <adrian@randomba.org>
  * Improved partitioned path handling to avoid collisions when the id is
    very high, which can happen if you use db:fixtures:load.
 
2008-08-1 Norman Clarke <norman@randomba.org>
  * Fixed a bug where overwriting a previous image triggered callbacks more
    than once, causing errors.
 
2008-07-29 Norman Clarke <norman@randomba.org>
 
  * Downcased generated file names to avoid potential issues on
    case-insensitive filesystems.
  * Added "absolute path" method to model instances.
  * Made image deletion nullify the "has_image_file" field.
  * Added "has_image?" method to model instances.
  * Fixed ENONENT error with record update when there are no images yet.
  * Reverted thumbnail sorting feature - it's fast but makes terrible quality
    thumbnails. It's just not worth it.
 
2008-07-28 Norman Clarke <norman@randomba.org>
 
  * Added sorted thumbnail processing. This improves thumbnail generation
    speed by about 25% for 4.5 meg jpegs with 5 thumbnails.
  * Fixed broken resize for non-fixed-width thumbnails.
  * Added check for bad geometry strings.
  * Added dependencies and Rubyforge project to gemspec, updated docs.
 
2008-07-25 Norman Clarke <norman@randomba.org>
 
* First public release.