Skip to content

Commit 31aee41

Browse files
committed
Removed polyfill dependency
1 parent 6675795 commit 31aee41

File tree

6 files changed

+8
-14
lines changed

6 files changed

+8
-14
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@
1919
## Overview
2020
The simple-web-notification is a web notifications API which provides simplified API with automatic permission handling.
2121

22-
It is using the HTML5-Desktop-Notifications library which provides a unified API for all browsers.
23-
24-
See [W3 Specification](https://dvcs.w3.org/hg/notifications/raw-file/tip/Overview.html) and [HTML5-Desktop-Notifications](https://github.com/ttsvetko/HTML5-Desktop-Notifications) for more information.
22+
See [W3 Specification](https://dvcs.w3.org/hg/notifications/raw-file/tip/Overview.html) for more information.
2523

2624
## Demo
2725
[Live Demo](https://sagiegurari.github.io/simple-web-notification/)
@@ -31,7 +29,6 @@ See [W3 Specification](https://dvcs.w3.org/hg/notifications/raw-file/tip/Overvie
3129
In order to use the simplified web notification API you first must add the relevant dependencies:
3230

3331
```html
34-
<script type="text/javascript" src="html5-desktop-notifications2/dist/Notification.js"></script>
3532
<script type="text/javascript" src="web-notification.js"></script>
3633
```
3734

@@ -94,6 +91,7 @@ See [contributing guide](.github/CONTRIBUTING.md)
9491

9592
| Date | Version | Description |
9693
| ----------- | ------- | ----------- |
94+
| 2017-01-31 | v1.0.3 | Removed polyfill dependency |
9795
| 2017-01-22 | v1.0.2 | Maintenance |
9896
| 2017-01-22 | v1.0.0 | Official release |
9997
| 2017-01-22 | v0.0.2 | Initial release |

bower.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "simple-web-notification",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "Web Notifications made easy.",
55
"authors": [
66
"Sagie Gur-Ari <[email protected]>"
@@ -22,7 +22,6 @@
2222
"example",
2323
"target"
2424
],
25-
"dependencies": {
26-
"html5-desktop-notifications2": "~3"
27-
}
25+
"dependencies": {},
26+
"devDependencies": {}
2827
}

docs/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
| Date | Version | Description |
22
| ----------- | ------- | ----------- |
3+
| 2017-01-31 | v1.0.3 | Removed polyfill dependency |
34
| 2017-01-22 | v1.0.2 | Maintenance |
45
| 2017-01-22 | v1.0.0 | Official release |
56
| 2017-01-22 | v0.0.2 | Initial release |

docs/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<head>
44
<title>Web Notification Example</title>
55
<script type="text/javascript" src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
6-
<script type="text/javascript" src="https://rawgit.com/ttsvetko/HTML5-Desktop-Notifications/master/dist/Notification.js"></script>
76
<script type="text/javascript" src="https://rawgit.com/sagiegurari/simple-web-notification/master/web-notification.js"></script>
87
<script type="text/javascript" src="example/example.js"></script>
98

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "simple-web-notification",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "Web Notifications made easy.",
55
"author": {
66
"name": "Sagie Gur-Ari",

project/config/README-template.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@
1919
## Overview
2020
The {"gitdown": "gitinfo", "name": "name"} is a web notifications API which provides simplified API with automatic permission handling.
2121

22-
It is using the HTML5-Desktop-Notifications library which provides a unified API for all browsers.
23-
24-
See [W3 Specification](https://dvcs.w3.org/hg/notifications/raw-file/tip/Overview.html) and [HTML5-Desktop-Notifications](https://github.com/ttsvetko/HTML5-Desktop-Notifications) for more information.
22+
See [W3 Specification](https://dvcs.w3.org/hg/notifications/raw-file/tip/Overview.html) for more information.
2523

2624
## Demo
2725
[Live Demo](https://sagiegurari.github.io/simple-web-notification/)
@@ -31,7 +29,6 @@ See [W3 Specification](https://dvcs.w3.org/hg/notifications/raw-file/tip/Overvie
3129
In order to use the simplified web notification API you first must add the relevant dependencies:
3230

3331
```html
34-
<script type="text/javascript" src="html5-desktop-notifications2/dist/Notification.js"></script>
3532
<script type="text/javascript" src="web-notification.js"></script>
3633
```
3734

0 commit comments

Comments
 (0)