Skip to content

Commit e734652

Browse files
committed
Minor documentation fixes
1 parent 95ad38a commit e734652

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

.github/CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,11 @@ included in the project:
9898

9999
```bash
100100
# Clone your fork of the repo into the current directory
101-
git clone https://github.com/<your-username>/php-microsite-boilerplate.git
101+
git clone https://github.com/<your-username>/add-to-calendar-button.git
102102
# Navigate to the newly cloned directory
103-
cd php-microsite-boilerplate
103+
cd add-to-calendar-button
104104
# Assign the original repo to a remote called "upstream"
105-
git remote add upstream https://github.com/jekuer/php-microsite-boilerplate.git
105+
git remote add upstream https://github.com/jekuer/add-to-calendar-button.git
106106
```
107107

108108
2. If you cloned a while ago, get the latest changes from upstream:
@@ -141,4 +141,4 @@ included in the project:
141141
with a clear title and description.
142142
143143
**IMPORTANT**: By submitting a patch, you agree to allow the project
144-
owners to license your work under the terms of the [GPU 3.0 license](LICENSE.txt).
144+
owners to license your work under the terms of the [MIT license (with “Commons Clause” License Condition v1.0)](LICENSE.txt).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ Anyone is welcome to contribute, but mind the [guidelines](.github/CONTRIBUTING.
194194

195195
## License
196196

197-
The code is available under the [GPU 3.0 license](LICENSE.txt).
197+
The code is available under the [MIT license (with “Commons Clause” License Condition v1.0)](LICENSE.txt).
198198

199199

200200
## Changelog (without bug fixes)

assets/css/atcb.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Add-to-Calendar Button
44
* ++++++++++++++++++++++
55
*
6-
* Version: 1.4.0
6+
* Version: 1.4.1
77
* Creator: Jens Kuerschner (https://jenskuerschner.de)
88
* Project: https://github.com/jekuer/add-to-calendar-button
99
* License: MIT with “Commons Clause” License Condition v1.0

assets/js/atcb.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Add-to-Calendar Button
44
* ++++++++++++++++++++++
55
*/
6-
const atcbVersion = '1.4.0';
6+
const atcbVersion = '1.4.1';
77
/* Creator: Jens Kuerschner (https://jenskuerschner.de)
88
* Project: https://github.com/jekuer/add-to-calendar-button
99
* License: MIT with “Commons Clause” License Condition v1.0

assets/js/atcb.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
<body>
122122
<div class="container">
123123

124-
<h1>Add-to-Calendar Button <span id="tinyVersion">v1.4.0</span></h1>
124+
<h1>Add-to-Calendar Button <span id="tinyVersion">v1.4.1</span></h1>
125125
<h2>A convenient JavaScript snippet, which lets you create beautiful buttons, where people can add events to their calendars.</h2>
126126
<p class="github">
127127
<a target="_blank" href="https://github.com/jekuer/add-to-calendar-button">
@@ -513,7 +513,7 @@ <h3>Example 7: Schema.org Event Markup</h3>
513513

514514

515515
<!-- load the button js -->
516-
<script src="./assets/js/atcb.min.js?v=1.4.0" defer></script>
516+
<script src="./assets/js/atcb.min.js?v=1.4.1" defer></script>
517517

518518

519519
</body>

npm_dist/atcb_npm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Add-to-Calendar Button
44
* ++++++++++++++++++++++
55
*/
6-
const atcbVersion = '1.4.0';
6+
const atcbVersion = '1.4.1';
77
/* Creator: Jens Kuerschner (https://jenskuerschner.de)
88
* Project: https://github.com/jekuer/add-to-calendar-button
99
* License: MIT with “Commons Clause” License Condition v1.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "add-to-calendar-button",
3-
"version": "1.4.0",
3+
"version": "1.4.1",
44
"description": "A convenient JavaScript snippet, which lets you create beautiful buttons, where people can add events to their calendars.",
55
"main": "npm_dist/atcb_npm.js",
66
"types": "index.d.ts",

0 commit comments

Comments
 (0)