Skip to content

Commit 1b4e93e

Browse files
committed
Updates to release v4.0.9
1 parent aa22130 commit 1b4e93e

File tree

8 files changed

+18
-13
lines changed

8 files changed

+18
-13
lines changed

CHANGE.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Change Log: `bootstrap-star-rating`
22
===================================
33

4+
## Version 4.0.9
5+
6+
**Date:** 21-May-2021
7+
8+
- Correct `minThreshold` default value.
9+
410
## Version 4.0.8
511

612
**Date:** 21-May-2021

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,20 +115,20 @@ Step 1: Load the following assets in your header.
115115
```html
116116
<!-- default styles -->
117117
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css">
118-
<link href="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-star-rating@4.0.8/css/star-rating.min.css" media="all" rel="stylesheet" type="text/css" />
118+
<link href="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-star-rating@4.0.9/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="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-star-rating@4.0.8/themes/krajee-svg/theme.css" media="all" rel="stylesheet" type="text/css" />
121+
<link href="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-star-rating@4.0.9/themes/krajee-svg/theme.css" media="all" rel="stylesheet" type="text/css" />
122122

123123
<!-- important mandatory libraries -->
124124
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
125-
<script src="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-star-rating@4.0.8/js/star-rating.min.js" type="text/javascript"></script>
125+
<script src="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-star-rating@4.0.9/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="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-star-rating@4.0.8/themes/krajee-svg/theme.js"></script>
128+
<script src="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-star-rating@4.0.9/themes/krajee-svg/theme.js"></script>
129129

130130
<!-- optionally if you need translation for your language then include locale file as mentioned below (replace LANG.js with your own locale file) -->
131-
<script src="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-star-rating@4.0.8/js/locales/LANG.js"></script>
131+
<script src="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-star-rating@4.0.9/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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-star-rating",
3-
"version": "4.0.8",
3+
"version": "4.0.9",
44
"homepage": "https://github.com/kartik-v/bootstrap-star-rating",
55
"authors": [
66
"Kartik Visweswaran <kartikv2@gmail.com>"

css/star-rating.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* bootstrap-star-rating v4.0.8
2+
* bootstrap-star-rating v4.0.9
33
* http://plugins.krajee.com/star-rating
44
*
55
* Author: Kartik Visweswaran

css/star-rating.min.css

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

js/star-rating.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* bootstrap-star-rating v4.0.8
2+
* bootstrap-star-rating v4.0.9
33
* http://plugins.krajee.com/star-rating
44
*
55
* Author: Kartik Visweswaran
@@ -636,7 +636,6 @@
636636
language: 'en',
637637
stars: 5,
638638
tabindex: 0,
639-
minThreshold: 1,
640639
keyboardEnabled: true,
641640
mouseEnabled: true,
642641
filledStar: '<i class="glyphicon glyphicon-star"></i>',

js/star-rating.min.js

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-star-rating",
3-
"version": "4.0.8",
3+
"version": "4.0.9",
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.",

0 commit comments

Comments
 (0)