Skip to content

Commit

Permalink
Updates to release v4.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-v committed May 20, 2021
1 parent aa22130 commit 1b4e93e
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 13 deletions.
6 changes: 6 additions & 0 deletions CHANGE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Change Log: `bootstrap-star-rating`
===================================

## Version 4.0.9

**Date:** 21-May-2021

- Correct `minThreshold` default value.

## Version 4.0.8

**Date:** 21-May-2021
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,20 +115,20 @@ Step 1: Load the following assets in your header.
```html
<!-- default styles -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link href="https://cdn.jsdelivr.net/gh/kartik-v/[email protected].8/css/star-rating.min.css" media="all" rel="stylesheet" type="text/css" />
<link href="https://cdn.jsdelivr.net/gh/kartik-v/[email protected].9/css/star-rating.min.css" media="all" rel="stylesheet" type="text/css" />

<!-- optionally if you need to use a theme, then include the theme CSS file as mentioned below -->
<link href="https://cdn.jsdelivr.net/gh/kartik-v/[email protected].8/themes/krajee-svg/theme.css" media="all" rel="stylesheet" type="text/css" />
<link href="https://cdn.jsdelivr.net/gh/kartik-v/[email protected].9/themes/krajee-svg/theme.css" media="all" rel="stylesheet" type="text/css" />

<!-- important mandatory libraries -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kartik-v/[email protected].8/js/star-rating.min.js" type="text/javascript"></script>
<script src="https://cdn.jsdelivr.net/gh/kartik-v/[email protected].9/js/star-rating.min.js" type="text/javascript"></script>

<!-- optionally if you need to use a theme, then include the theme JS file as mentioned below -->
<script src="https://cdn.jsdelivr.net/gh/kartik-v/[email protected].8/themes/krajee-svg/theme.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kartik-v/[email protected].9/themes/krajee-svg/theme.js"></script>

<!-- optionally if you need translation for your language then include locale file as mentioned below (replace LANG.js with your own locale file) -->
<script src="https://cdn.jsdelivr.net/gh/kartik-v/[email protected].8/js/locales/LANG.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kartik-v/[email protected].9/js/locales/LANG.js"></script>
```

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
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": "bootstrap-star-rating",
"version": "4.0.8",
"version": "4.0.9",
"homepage": "https://github.com/kartik-v/bootstrap-star-rating",
"authors": [
"Kartik Visweswaran <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion css/star-rating.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* bootstrap-star-rating v4.0.8
* bootstrap-star-rating v4.0.9
* http://plugins.krajee.com/star-rating
*
* Author: Kartik Visweswaran
Expand Down
2 changes: 1 addition & 1 deletion css/star-rating.min.css

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

3 changes: 1 addition & 2 deletions js/star-rating.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* bootstrap-star-rating v4.0.8
* bootstrap-star-rating v4.0.9
* http://plugins.krajee.com/star-rating
*
* Author: Kartik Visweswaran
Expand Down Expand Up @@ -636,7 +636,6 @@
language: 'en',
stars: 5,
tabindex: 0,
minThreshold: 1,
keyboardEnabled: true,
mouseEnabled: true,
filledStar: '<i class="glyphicon glyphicon-star"></i>',
Expand Down
4 changes: 2 additions & 2 deletions js/star-rating.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bootstrap-star-rating",
"version": "4.0.8",
"version": "4.0.9",
"homepage": "https://github.com/kartik-v/bootstrap-star-rating",
"author": "Kartik Visweswaran <[email protected]>",
"description": "A simple yet powerful JQuery star rating plugin for Bootstrap.",
Expand Down

0 comments on commit 1b4e93e

Please sign in to comment.