Skip to content

Commit cb44927

Browse files
committed
Update to release v4.0.6
1 parent d106858 commit cb44927

File tree

10 files changed

+34
-24
lines changed

10 files changed

+34
-24
lines changed

CHANGE.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
Change Log: `bootstrap-star-rating`
22
===================================
33

4-
## Version 4.0.5
4+
## Version 4.0.6
5+
6+
**Date:** 25-May-2019
7+
8+
- (enh #195): Update Bootstrap dependency.
9+
- (enh #194, enh #180): Allow StarCaptionClasses CSS classes to also be set by Percentage width.
10+
- (enh #190): Update German Translations.
11+
- Implement stale bot.
12+
13+
## Version 4.0.6
514

615
**Date:** 04-Oct-2018
716

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2013 - 2018, Kartik Visweswaran
1+
Copyright (c) 2013 - 2019, Kartik Visweswaran
22
Krajee.com
33
All rights reserved.
44

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -114,21 +114,21 @@ Step 1: Load the following assets in your header.
114114

115115
```html
116116
<!-- default styles -->
117-
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.css" rel="stylesheet">
118-
<link href="path/to/css/star-rating.css" media="all" rel="stylesheet" type="text/css" />
117+
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" rel="stylesheet">
118+
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-star-rating/4.0.6/css/star-rating.min.css" media="all" rel="stylesheet" type="text/css" />
119119

120120
<!-- optionally if you need to use a theme, then include the theme CSS file as mentioned below -->
121-
<link href="path/to/themes/krajee-svg/theme.css" media="all" rel="stylesheet" type="text/css" />
121+
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-star-rating/4.0.6/themes/krajee-svg/theme.css" media="all" rel="stylesheet" type="text/css" />
122122

123123
<!-- important mandatory libraries -->
124-
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.js"></script>
125-
<script src="path/to/js/star-rating.js" type="text/javascript"></script>
124+
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
125+
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-star-rating/4.0.6/js/star-rating.min.js" type="text/javascript"></script>
126126

127127
<!-- optionally if you need to use a theme, then include the theme JS file as mentioned below -->
128-
<script src="path/to/themes/krajee-svg/theme.js"></script>
128+
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-star-rating/4.0.6/themes/krajee-svg/theme.js"></script>
129129

130130
<!-- optionally if you need translation for your language then include locale file as mentioned below -->
131-
<script src="path/to/js/locales/<lang>.js"></script>
131+
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-star-rating/4.0.6/js/locales/<lang>.js"></script>
132132
```
133133

134134
If you noticed, you need to load the `jquery.min.js` and `bootstrap.min.css` in addition to the `star-rating.min.css` and `star-rating.min.js` for

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-star-rating",
3-
"version": "4.0.5",
3+
"version": "4.0.6",
44
"homepage": "https://github.com/kartik-v/bootstrap-star-rating",
55
"authors": [
66
"Kartik Visweswaran <kartikv2@gmail.com>"
@@ -21,7 +21,7 @@
2121
],
2222
"dependencies": {
2323
"jquery": ">= 1.9.0",
24-
"bootstrap": "~3"
24+
"bootstrap": ">= 3.0.0"
2525
},
2626
"ignore": [
2727
"**/.*",

css/star-rating.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*!
2-
* bootstrap-star-rating v4.0.5
2+
* bootstrap-star-rating v4.0.6
33
* http://plugins.krajee.com/star-rating
44
*
55
* Author: Kartik Visweswaran
6-
* Copyright: 2013 - 2018, Kartik Visweswaran, Krajee.com
6+
* Copyright: 2013 - 2019, Kartik Visweswaran, Krajee.com
77
*
88
* Licensed under the BSD 3-Clause
99
* https://github.com/kartik-v/bootstrap-star-rating/blob/master/LICENSE.md

css/star-rating.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8"/>
55
<title>Krajee JQuery Plugins - &copy; Kartik</title>
6-
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
6+
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" rel="stylesheet">
77
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
88
<link href="../css/star-rating.css" media="all" rel="stylesheet" type="text/css"/>
99
<!--suppress JSUnresolvedLibraryURL -->

js/star-rating.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*!
2-
* bootstrap-star-rating v4.0.5
2+
* bootstrap-star-rating v4.0.6
33
* http://plugins.krajee.com/star-rating
44
*
55
* Author: Kartik Visweswaran
6-
* Copyright: 2013 - 2018, Kartik Visweswaran, Krajee.com
6+
* Copyright: 2013 - 2019, Kartik Visweswaran, Krajee.com
77
*
88
* Licensed under the BSD 3-Clause
99
* https://github.com/kartik-v/bootstrap-star-rating/blob/master/LICENSE.md

js/star-rating.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-star-rating",
3-
"version": "4.0.5",
3+
"version": "4.0.6",
44
"homepage": "https://github.com/kartik-v/bootstrap-star-rating",
55
"author": "Kartik Visweswaran <kartikv2@gmail.com>",
66
"description": "A simple yet powerful JQuery star rating plugin for Bootstrap.",
@@ -11,7 +11,6 @@
1111
"type": "git",
1212
"url": "https://github.com/kartik-v/bootstrap-star-rating.git"
1313
},
14-
"main": "js/star-rating.min.js",
1514
"keywords": [
1615
"bootstrap",
1716
"star",
@@ -21,9 +20,11 @@
2120
"glyphicon",
2221
"svg"
2322
],
23+
"main": "./js/star-rating.js",
24+
"style": "./css/star-rating.css",
2425
"peerDependencies": {
2526
"jquery": ">= 1.9.0",
26-
"bootstrap": "~3"
27+
"bootstrap": ">= 3.0.0"
2728
},
2829
"license": "BSD-3-Clause"
2930
}

0 commit comments

Comments
 (0)