Skip to content

Commit

Permalink
Release v1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasbeauvais committed Jan 8, 2021
1 parent ea2da1d commit 422167f
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 15 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<a name="1.0.7"></a>
# [1.0.7](https://github.com/nicolasbeauvais/vue-add-to-calendar/compare/1.0.6..1.0.7) (2020-05-13)
- Fix Google calendar link

<a name="1.0.6"></a>
# [1.0.6](https://github.com/nicolasbeauvais/vue-add-to-calendar/compare/1.0.5..1.0.6) (2020-05-13)
- Add Office 365 calendar
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-add-to-calendar",
"version": "1.0.6",
"version": "1.0.7",
"homepage": "https://github.com/nicolasbeauvais/vue-add-to-calendar",
"authors": [
"nicolasbeauvais <nicolasbeauvais1@gmail.com>"
Expand Down
8 changes: 4 additions & 4 deletions dist/vue-add-to-calendar.common.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* vue-add-to-calendar v1.0.6
* (c) 2020 nicolasbeauvais
* vue-add-to-calendar v1.0.7
* (c) 2021 nicolasbeauvais
* Released under the MIT License.
*/
'use strict';
Expand All @@ -17,7 +17,7 @@ var AddToCalendarMixin = {

var calendars = {
google: {
url: 'http://www.google.com/calendar/event?action=TEMPLATE&trp=false',
url: 'http://www.google.com/calendar/render?action=TEMPLATE&trp=false',
parameters: function parameters (title, location, details, start, end) {
var parameters = {
text: title,
Expand Down Expand Up @@ -175,7 +175,7 @@ var AddToCalendar = {
}
};

AddToCalendar.version = '1.0.6';
AddToCalendar.version = '1.0.7';

AddToCalendar.install = function (Vue) {
Vue.component('add-to-calendar', AddToCalendar);
Expand Down
8 changes: 4 additions & 4 deletions dist/vue-add-to-calendar.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* vue-add-to-calendar v1.0.6
* (c) 2020 nicolasbeauvais
* vue-add-to-calendar v1.0.7
* (c) 2021 nicolasbeauvais
* Released under the MIT License.
*/
(function (global, factory) {
Expand All @@ -21,7 +21,7 @@ var AddToCalendarMixin = {

var calendars = {
google: {
url: 'http://www.google.com/calendar/event?action=TEMPLATE&trp=false',
url: 'http://www.google.com/calendar/render?action=TEMPLATE&trp=false',
parameters: function parameters (title, location, details, start, end) {
var parameters = {
text: title,
Expand Down Expand Up @@ -179,7 +179,7 @@ var AddToCalendar = {
}
};

AddToCalendar.version = '1.0.6';
AddToCalendar.version = '1.0.7';

AddToCalendar.install = function (Vue) {
Vue.component('add-to-calendar', AddToCalendar);
Expand Down
6 changes: 3 additions & 3 deletions dist/vue-add-to-calendar.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 package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vue-add-to-calendar",
"description": "A Vue.js component providing 'Add to Calendar' functionality",
"version": "1.0.6",
"version": "1.0.7",
"author": {
"name": "nicolasbeauvais",
"email": "nicolasbeauvais1@gmail.com"
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import AddToCalendar from './add-to-calendar';

AddToCalendar.version = '1.0.6';
AddToCalendar.version = '1.0.7';

AddToCalendar.install = (Vue) => {
Vue.component('add-to-calendar', AddToCalendar);
Expand Down

0 comments on commit 422167f

Please sign in to comment.