This repository has been archived by the owner on Nov 24, 2023. It is now read-only.
forked from assembler/attachinary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
66 lines (52 loc) · 2.25 KB
/
CHANGELOG
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
= Version 1.3.0
* Added support for Rails 4 (thanks @rochers)
* Use resource type when building cloudinary urls
* Make deletion of remote resources configurable
* Add some optional convenience configurations to attachinary.js
= Version 1.2.7 (wip)
* Implemented raw file type handling (roomthirteen)
= Version 1.2.6
* Added "attachinary:fileadded" and "attachinary:fileremoved" js events
= Version 1.2.5
* BUG FIX: Default jQuery plugin options mutation
= Version 1.2.4
* Ability to specify custom dropzone via config (drewmca)
* BUG FIX: Bad browsers (IE) can put '[null]' into the attachinary hash (Yan Pritzker)
* BUG FIX: Ensuring tags are unique (Yan Pritzker)
= Version 1.2.3
* Fixed bug with multiple submit buttons in one form (Benjamin Seibert)
* IE content-type fix (Yan Pritzker)
= Version 1.2.2
* Ability to cleanup unused files:
files are automatically tagged with `attachinary_tmp` during upload, and
untagged when saved in local database.
= Version 1.2.1
* bugfix: already uploaded image gets deleted from cloudinary when updating model [#29]
= Version 1.2.0
* Drag and drop support (on supported browsers)
* Selecting multiple files (on supported browsers)
* Upload progress indicator (prepended on submit button)
* Rake task for fetching assets (`rake attachinary:fetch_fileupload`)
* Ability to assing image urls (e.g. `user.avatar_url = 'http://..'`)
* Ability to assign IO objects (e.g. `user.avatar = File.open(...)`)
* No-JS support
= Version 1.1.0
* BUG FIX: disabling submit key (thanks @drewmca)
* BUG FIX: models attachments are now removed from cloudinary
after model is destoyed [mongoid]
* ability to use form builder (`f.attachinary_file_field :avatar`)
* BUG FIX: proper field names and ids are generated [simple_form]
= Version 1.0.1
* bug fix release
= Version 1.0.0
* Support for Mongoid added. You need to specify which ORM you want
to use by explicitly requiring it.
* No backward compatibility.
* Changed database schema (from N-N to 1-N). Assoc preloading made easier.
= Version 0.0.8
* no explicit require of cloudinary assets
= Version 0.0.7
* BUG FIX: removing single attachment
= Version 0.0.6
* attachment lazy loading
* removed copies of cloudinary javascript files