Skip to content

Commit

Permalink
Version 1.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
safrazik committed Nov 27, 2019
1 parent 28ddfce commit d26936a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

### 1.3.5

- Fixed removal of same file selection in single mode #29
- Improved progress UI with `full` (100% uploaded) and `done` (server returned a response) status.
- Improved upload error handling.
- Added support to dismiss error messages by clicking on them.
- Added support for update/rename upload with `PUT` request, with updated server examples. (Thanks to @codeflorist) #23

### 1.3.4

- Fixed image thumbnails with wrong orientation (rotation) #28
Expand Down
8 changes: 4 additions & 4 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@
{% if layout.external_urls %}
<link rel="stylesheet" href="https://safrazik.github.io/vue-file-agent/website/assets/styles.css">
<link rel="stylesheet" href="https://safrazik.github.io/vue-file-agent/website/assets/github-markdown.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].4/dist/vue-file-agent.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].5/dist/vue-file-agent.css">
{% else %}
<link rel="stylesheet" href="{{ "/website/assets/styles.css" | prepend: site.baseurl }}">
<link rel="stylesheet" href="{{ "/website/assets/github-markdown.css" | prepend: site.baseurl }}">
<link rel="stylesheet" href="{{ "/vue-file-agent.css?v=1.3.4" | prepend: site.dist_baseurl }}">
<link rel="stylesheet" href="{{ "/vue-file-agent.css?v=1.3.5" | prepend: site.dist_baseurl }}">
{% endif %}

{% if site.google_analytics %}
Expand Down Expand Up @@ -88,9 +88,9 @@
<script src="https://cdnjs.cloudflare.com/ajax/libs/es6-promise/4.1.1/es6-promise.auto.js" integrity="sha256-qq7wfY6gQJldAy+TGLT7UF/TqnfV4XFzGF/RzrVXq24=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
{% if layout.external_urls %}
<script src="https://cdn.jsdelivr.net/npm/[email protected].4/dist/vue-file-agent.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].5/dist/vue-file-agent.umd.js"></script>
{% else %}
<script src='{{ "/vue-file-agent.umd.js?v=1.3.4" | prepend: site.dist_baseurl }}'></script>
<script src='{{ "/vue-file-agent.umd.js?v=1.3.5" | prepend: site.dist_baseurl }}'></script>
{% endif %}
{{ content }}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-file-agent",
"version": "1.3.4",
"version": "1.3.5",
"description": "High performant Vue file upload component with elegant and distinguishable previews for every file type and support for drag and drop, validations, default uploader with progress support and externally customizable in the \"vue way\"",
"main": "dist/vue-file-agent.umd.js",
"types": "src/index.d.ts",
Expand Down

0 comments on commit d26936a

Please sign in to comment.