Skip to content

Commit bdb5954

Browse files
committed
Version 3.3.0.
1 parent 067af1e commit bdb5954

File tree

7 files changed

+26
-26
lines changed

7 files changed

+26
-26
lines changed

bower.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,22 @@
11
{
22
"name": "evol-colorpicker",
3-
"version": "3.2.6",
3+
"version": "3.3.0",
44
"description": "jQuery UI widget for web color picking which looks like the one in Microsoft Office 2010.",
55
"homepage": "http://evoluteur.github.io/colorpicker/",
66
"main": "js/evol-colorpicker.min.js",
7-
"authors": [
8-
{ "name": "Olivier Giulieri", "homepage": "https://github.com/evoluteur" }
9-
],
7+
"authors": "Olivier Giulieri (https://evoluteur.github.io/)",
108
"license": "MIT",
119
"keywords": [
1210
"colorpicker",
1311
"color",
1412
"picker",
1513
"palette",
16-
"input",
1714
"jquery",
1815
"jquery-ui",
19-
"widget",
2016
"ui",
21-
"web"
17+
"widget",
18+
"web",
19+
"input",
20+
"form"
2221
]
2322
}

css/demo.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
evol-colorpicker 3.2.6
3-
(c) 2016 Olivier Giulieri
2+
evol-colorpicker 3.3.0
3+
(c) 2017 Olivier Giulieri
44
http://evoluteur.github.io/colorpicker/
55
*/
66
body {

css/evol-colorpicker.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
evol-colorpicker 3.2.6
3-
(c) 2016 Olivier Giulieri
2+
evol-colorpicker 3.3.0
3+
(c) 2017 Olivier Giulieri
44
http://evoluteur.github.io/colorpicker/
55
*/
66
.evo-pop {

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ <h2 id="github">
1818
<a href="https://github.com/evoluteur/colorpicker">GitHub</a>
1919
</h2>
2020

21-
<p><strong>evol-colorpicker</strong> (currently v3.2.6) is a web color picker which looks like the one in Microsoft Office 2010.
21+
<p><strong>evol-colorpicker</strong> (currently v3.3.0) is a web color picker which looks like the one in Microsoft Office 2010.
2222
It can be used inline or as a popup bound to a text box.
2323
It is a full jQuery UI widget, supporting various configurations and themes.
2424
</p>
@@ -222,7 +222,7 @@ <h2 id="github">
222222
<p><br/><a href="https://github.com/evoluteur/colorpicker/archive/master.zip">Download</a>, documentation, and source code are available at <a href="https://github.com/evoluteur/colorpicker" target="download">GitHub</a> under the <a href="http://github.com/evoluteur/colorpicker/raw/master/LICENSE.md">MIT license</a>.</p>
223223

224224
<br/><br/>
225-
<div class="footer">&#169; 2016 Olivier Giulieri</div>
225+
<div class="footer">&#169; 2017 <a href="https://evoluteur.github.io/">Olivier Giulieri</a></div>
226226

227227
</body>
228228

js/evol-colorpicker.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
evol-colorpicker 3.2.6
2+
evol-colorpicker 3.3.0
33
ColorPicker widget for jQuery UI
44
55
https://github.com/evoluteur/colorpicker
6-
(c) 2016 Olivier Giulieri
6+
(c) 2017 Olivier Giulieri
77
88
* Depends:
99
* jquery.ui.core.js
@@ -68,7 +68,7 @@ var _idx=0,
6868

6969
$.widget( "evol.colorpicker", {
7070

71-
version: '3.2.6',
71+
version: '3.3.0',
7272

7373
options: {
7474
color: null, // example:'#31859B'

js/evol-colorpicker.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: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "evol-colorpicker",
3-
"version": "3.2.6",
3+
"version": "3.3.0",
44
"description": "jQuery UI widget for web color picking which looks like the one in Microsoft Office 2010.",
55
"copyright": "(c) 2017 Olivier Giulieri",
66
"homepage": "http://evoluteur.github.io/colorpicker/",
7-
"author": "Olivier Giulieri (https://github.com/evoluteur)",
7+
"author": "Olivier Giulieri (https://evoluteur.github.io/)",
88
"license": "MIT",
99
"repository": {
1010
"type": "git",
@@ -18,10 +18,10 @@
1818
"jquery-ui": "~1.10.5"
1919
},
2020
"devDependencies": {
21-
"grunt": "~0.4.5",
22-
"grunt-contrib-jshint": "~0.11.0",
23-
"grunt-contrib-uglify": "~0.7.0",
24-
"grunt-contrib-less": "~1.0.0"
21+
"grunt": "~1.0.1",
22+
"grunt-contrib-jshint": "~1.1.0",
23+
"grunt-contrib-uglify": "~2.0.0",
24+
"grunt-contrib-less": "~1.4.0"
2525
},
2626
"keywords": [
2727
"colorpicker",
@@ -33,7 +33,8 @@
3333
"jquery",
3434
"jquery-ui",
3535
"ui",
36-
"web"
36+
"web",
37+
"office"
3738
],
3839
"main": "js/evol-colorpicker.js"
3940
}

0 commit comments

Comments
 (0)