Skip to content

Commit

Permalink
Bumped version to 1.1.2
Browse files Browse the repository at this point in the history
Updated Gulp, added CHANGELOG.md
  • Loading branch information
gjunge committed Mar 28, 2019
1 parent 1d25576 commit 43750e8
Show file tree
Hide file tree
Showing 9 changed files with 3,907 additions and 13 deletions.
56 changes: 56 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Change Log

## 1.1.2 (03/28/2019)
- Bug Fix: #22 tabindex on readonly is not good for accessibility (Thanks to @MPolleke)
- Project: updated Gulp script, added this Change Log.

## 1.1.1
- Fix looks of icon font reset button.

## 1.1.0
- Feature: finally arrived - support for icon fonts! Now your RateIt controls can be any size you want!

## 1.0.25
- Feature: ability to set value source of SELECT backing field. Either by value (option[value], how it currently works), or by index (selectedIndex, ew). Thanks to @maurojs10.
- Project: Added gulp task for minifying and sourcemapping.

## 1.0.23
- Move to GitHub.

## 1.0.22
- Bug fix: #1859 RateIt Stars disappear when clicking into another form field and pressing return

## 1.0.21
- Bug fix: #1828 Progressive enhancement (using select) displays incorrect amount of stars
- Bug fix: #1829 Use UNIX-style (LF-only) line endings

## 1.0.20
- Bug fix: #1817 Trigger change event on backingfield.

## 1.0.19
- Feature: #1801 Added cancellable beforereset and beforerated events.
- Misc: added example showcasing use of SVG instead of GIF image.

## 1.0.18
- Bug fix: #1747 Continuation...

## 1.0.17
- Bug fix: #1747 Initialization fail with data-rateit-value=0

## 1.0.16
- Bug fix: #1741 Using arrow keys after a rating changes rating.

## 1.0.15
- Bug fix: #1728 Compatibility with jQuery mobile

## 1.0.14
- Feature: #1712 Added a programmatic reset method which reverts to initial settings.
- Bug fix: #1711 On changing starheight/width some artifacts show up. (Thanks to JoeyBradshaw)

## 1.0.13
- Bug fix: #1648 Removed console.log

## 1.0.12
- Feature: ARIA support. Added basic ARIA support including keyboard navigation.
- Feature: Suggestion: use span instead of div.
- Bug fix: #1639 Firefox showing too many stars
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016 Gidon Junge
Copyright (c) 2019 Gidon Junge

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ gulp.task('default', function () {
return gulp.src('scripts/jquery.rateit.js')
.pipe(sourcemaps.init())
.pipe(plumber())
.pipe(uglify({ preserveComments: 'license' }))
.pipe(uglify({ output: { comments: '/\/\*!/'} }))
.pipe(rename({ extname: '.min.js' }))
.pipe(sourcemaps.write(''))
.pipe(gulp.dest('scripts')) // save .min.js
Expand Down
Loading

0 comments on commit 43750e8

Please sign in to comment.