Skip to content

Commit

Permalink
build: release 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fengyuanchen committed Apr 16, 2019
1 parent 96b065a commit c23b3e7
Show file tree
Hide file tree
Showing 9 changed files with 310 additions and 199 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.1.2 (Apr 16, 2019)

- Add missing properties for the `progress` event (#34).

## 1.1.1 (Apr 5, 2019)

- Use `requestAnimationFrame` instead of `setTimeout` for better performance (#33).
Expand Down
8 changes: 5 additions & 3 deletions dist/vue-countdown.common.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*!
* vue-countdown v1.1.1
* vue-countdown v1.1.2
* https://fengyuanchen.github.io/vue-countdown
*
* Copyright 2018-present Chen Fengyuan
* Released under the MIT license
*
* Date: 2019-04-05T14:29:42.461Z
* Date: 2019-04-16T11:53:29.768Z
*/

'use strict';
Expand Down Expand Up @@ -308,10 +308,12 @@ var index = {
hours: this.hours,
minutes: this.minutes,
seconds: this.seconds,
milliseconds: this.milliseconds,
totalDays: this.totalDays,
totalHours: this.totalHours,
totalMinutes: this.totalMinutes,
totalSeconds: this.totalSeconds
totalSeconds: this.totalSeconds,
totalMilliseconds: this.totalMilliseconds
});
}

Expand Down
8 changes: 5 additions & 3 deletions dist/vue-countdown.esm.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*!
* vue-countdown v1.1.1
* vue-countdown v1.1.2
* https://fengyuanchen.github.io/vue-countdown
*
* Copyright 2018-present Chen Fengyuan
* Released under the MIT license
*
* Date: 2019-04-05T14:29:42.461Z
* Date: 2019-04-16T11:53:29.768Z
*/

var MILLISECONDS_SECOND = 1000;
Expand Down Expand Up @@ -306,10 +306,12 @@ var index = {
hours: this.hours,
minutes: this.minutes,
seconds: this.seconds,
milliseconds: this.milliseconds,
totalDays: this.totalDays,
totalHours: this.totalHours,
totalMinutes: this.totalMinutes,
totalSeconds: this.totalSeconds
totalSeconds: this.totalSeconds,
totalMilliseconds: this.totalMilliseconds
});
}

Expand Down
8 changes: 5 additions & 3 deletions dist/vue-countdown.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*!
* vue-countdown v1.1.1
* vue-countdown v1.1.2
* https://fengyuanchen.github.io/vue-countdown
*
* Copyright 2018-present Chen Fengyuan
* Released under the MIT license
*
* Date: 2019-04-05T14:29:42.461Z
* Date: 2019-04-16T11:53:29.768Z
*/

(function (global, factory) {
Expand Down Expand Up @@ -312,10 +312,12 @@
hours: this.hours,
minutes: this.minutes,
seconds: this.seconds,
milliseconds: this.milliseconds,
totalDays: this.totalDays,
totalHours: this.totalHours,
totalMinutes: this.totalMinutes,
totalSeconds: this.totalSeconds
totalSeconds: this.totalSeconds,
totalMilliseconds: this.totalMilliseconds
});
}

Expand Down
6 changes: 3 additions & 3 deletions dist/vue-countdown.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<div class="container">
<div class="row">
<div class="col-md">
<h1>vue-countdown <small class="h6">v1.1.1</small></h1>
<h1>vue-countdown <small class="h6">v1.1.2</small></h1>
<p class="lead">Countdown component for Vue.js.</p>
</div>
<div class="col-md">
Expand Down
8 changes: 5 additions & 3 deletions docs/js/vue-countdown.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*!
* vue-countdown v1.1.1
* vue-countdown v1.1.2
* https://fengyuanchen.github.io/vue-countdown
*
* Copyright 2018-present Chen Fengyuan
* Released under the MIT license
*
* Date: 2019-04-05T14:29:42.461Z
* Date: 2019-04-16T11:53:29.768Z
*/

(function (global, factory) {
Expand Down Expand Up @@ -312,10 +312,12 @@
hours: this.hours,
minutes: this.minutes,
seconds: this.seconds,
milliseconds: this.milliseconds,
totalDays: this.totalDays,
totalHours: this.totalHours,
totalMinutes: this.totalMinutes,
totalSeconds: this.totalSeconds
totalSeconds: this.totalSeconds,
totalMilliseconds: this.totalMilliseconds
});
}

Expand Down
Loading

0 comments on commit c23b3e7

Please sign in to comment.