Skip to content

Commit 0522cf3

Browse files
committed
Bump to 1.1.0.
1 parent b9b8d1f commit 0522cf3

File tree

3 files changed

+21
-24
lines changed

3 files changed

+21
-24
lines changed

readme.txt

+19-16
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: johnjamesjacoby, stuttter
33
Tags: jquery, select, chosen
44
Requires at least: 4.6
55
Tested up to: 4.7
6-
Stable tag: 1.0.0
6+
Stable tag: 1.1.0
77
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9Q4F4EL5YJ62J
88

99
Make long, unwieldy select boxes much more user-friendly.
@@ -61,50 +61,53 @@ http://github.com/stuttter/wp-chosen/
6161

6262
== Changelog ==
6363

64-
= 1.0.0 =
64+
= 1.1.0 - 2016/09/10 =
65+
* Remove "Open Sans" font styling rules for WordPress 4.6 support
66+
67+
= 1.0.0 - 2016/09/08 =
6568
* First pass outline styling support for improved accessibility
6669

67-
= 0.7.0 =
70+
= 0.7.0 - 2016/04/20 =
6871
* Target `form-wrap` select elements, for taxonomies and such
6972

70-
= 0.6.0 =
73+
= 0.6.0 - 2016/04/06 =
7174
* Provide filter to override Chosen enqueue handle
7275

73-
= 0.5.0 =
76+
= 0.5.0 - 2016/04/06 =
7477
* Improved compatibility with third party plugins and themes
7578

76-
= 0.4.0 =
79+
= 0.4.0 - 2016/02/23 =
7780
* Fix options-reading.php front page incompatibility
7881

79-
= 0.3.2 =
82+
= 0.3.2 - 2016/02/23 =
8083
* Override retina sprite support
8184

82-
= 0.3.1 =
85+
= 0.3.1 - 2016/02/23 =
8386
* Simplify dependency tree
8487

85-
= 0.3.0 =
88+
= 0.3.0 - 2016/02/23 =
8689
* Bump Chosen to 1.5.1
8790
* Rename enqueue ID to 'jquery-chosen'
8891

89-
= 0.2.1 =
92+
= 0.2.1 - 2016/02/05 =
9093
* Only search when there are more than 10 items
9194

92-
= 0.2.0 =
95+
= 0.2.0 - 2016/01/04 =
9396
* Add multiple support
9497

95-
= 0.1.4 =
98+
= 0.1.4 - 2015/11/15 =
9699
* Add customizer support
97100

98-
= 0.1.3 =
101+
= 0.1.3 - 2015/10/28 =
99102
* Version JS
100103
* Add support for media
101104

102-
= 0.1.2 =
105+
= 0.1.2 - 2015/10/22 =
103106
* Update styling
104107
* Target media library
105108

106-
= 0.1.1 =
109+
= 0.1.1 - 2015/10/06 =
107110
* Fix drop-down search input styling
108111

109-
= 0.1.0 =
112+
= 0.1.0 - 2015/10/01 =
110113
* Initial release

wp-chosen.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Plugin URI: http://wordpress.org/plugins/wp-chosen/
66
* Author: John James Jacoby
77
* Author URI: http://jjj.me
8-
* Version: 1.0.0
8+
* Version: 1.1.0
99
* Description: Makes long, unwieldy select boxes much more user-friendly.
1010
* License: GPLv2 or later
1111
*/
@@ -45,5 +45,5 @@ function wp_chosen_get_plugin_url() {
4545
* @return int
4646
*/
4747
function wp_chosen_get_asset_version() {
48-
return 201609080001;
48+
return 201609110001;
4949
}

wp-chosen/assets/css/wp-chosen.css

-6
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
.chosen-container {
2020
font-size: 14px;
21-
font-family: "Open Sans", sans-serif;
2221
}
2322

2423
.chosen-container-single .chosen-single div b {
@@ -123,15 +122,10 @@
123122
border: 1px solid #ddd;
124123
border-radius: 0;
125124
font-size: 13px;
126-
font-family: "Open Sans";
127125
line-height: normal;
128126
box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 );
129127
}
130128

131-
.chosen-container-multi .chosen-choices li.search-field input[type=text] {
132-
font-family: "Open Sans";
133-
}
134-
135129
.chosen-container .chosen-results {
136130
color: #444;
137131
position: relative;

0 commit comments

Comments
 (0)