anaconda 0.9.6 → 0.9.7
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 +4 -4
- data/README.markdown +2 -0
- data/app/assets/javascripts/anaconda_uploader.js.coffee +1 -1
- data/lib/anaconda/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 663eda1a92d9c737c550bb80b4dbe0635be9c76f
|
|
4
|
+
data.tar.gz: f84f4bb950d328fc9de359ca67e5089cd5659c3b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f94bcab3e2bbcd472e26c273d9da195727fac3f8c58ad69b41650048b50fd617fe7665f1fe7d1cba8f08cba101a8e6c92a9d930c8676a8345379a7036ecc0445
|
|
7
|
+
data.tar.gz: 8b32f114820d488f6bb1d5953dbff223b702c2d40a729180af1df2ac3033e0bcaf61be8451d7bc3c096dacf9369b34d5085a83fde3944dc64090f900999be89d
|
data/README.markdown
CHANGED
|
@@ -151,6 +151,8 @@ We highly recommend the `figaro` gem [https://github.com/laserlemon/figaro](http
|
|
|
151
151
|
The magic method is asset_url which will return a signed S3 URL if the file is stored with an ACL of `private` and will return a non-signed URL if the file is stored with public access.
|
|
152
152
|
|
|
153
153
|
## Changelog
|
|
154
|
+
* 0.9.7
|
|
155
|
+
* Add percent sign to progress-percent div
|
|
154
156
|
* 0.9.6
|
|
155
157
|
* Fix `auto_upload` and `auto_submit` options.
|
|
156
158
|
|
|
@@ -209,7 +209,7 @@ class @AnacondaUploadField
|
|
|
209
209
|
Math.max(fileSizeInBytes, 0.1).toFixed(1) + byteUnits[i];
|
|
210
210
|
|
|
211
211
|
update_progress_to: (progress) ->
|
|
212
|
-
@upload_details_container.find(".progress-percent").html progress
|
|
212
|
+
@upload_details_container.find(".progress-percent").html progress + '%'
|
|
213
213
|
@upload_details_container.find('.progress-bar').css('width', progress + '%')
|
|
214
214
|
|
|
215
215
|
file_completed_upload: (data) ->
|
data/lib/anaconda/version.rb
CHANGED