Skip to content

Commit df0e297

Browse files
committed
v0.1.8
1 parent 392571a commit df0e297

File tree

14 files changed

+62
-18
lines changed

14 files changed

+62
-18
lines changed

CHANGELOG

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
July 23, 2012 - v0.1.8
2+
3+
* Merge branch 'master' of github.com:nzakas/parser-lib (Nicholas C. Zakas)
4+
* Add travis CI config file (Nicholas C. Zakas)
5+
* Merge pull request #27 from ztest/master (Nicholas C. Zakas)
6+
* Add "pointer-events" as a known property. (ztest)
7+
* Release 0.1.7 (Nicholas C. Zakas)
8+
* Added text-rendering (Nicholas C. Zakas)
9+
* A little cleanup for validation with hacks (Nicholas C. Zakas)
10+
* Merge pull request #26 from moddular/webkit-gradient (Nicholas C. Zakas)
11+
* Updated <gradient> regex to allow -webkit-gradient (Andrew Walker)
12+
* Add 'behavior' as known property (fixes #25) (Nicholas C. Zakas)
13+
* Fix bug where star and underscore hacks interfered with validation (fixes #24) (Nicholas C. Zakas)
14+
* Merge pull request #22 from madr/patch-1 (Nicholas C. Zakas)
15+
* Update CHANGELOG: "-ms-" instead of "-moz-" (Anders Ytterström)
16+
17+
118
May 4, 2012 - v0.1.7
219

320
* Added text-rendering (Nicholas C. Zakas)
@@ -235,3 +252,5 @@ November 28, 2011 - v0.1.0
235252

236253

237254

255+
256+

build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project name="parserlib" default="build.all">
22

33
<!-- version number -->
4-
<property name="parserlib.version" value="0.1.7" />
4+
<property name="parserlib.version" value="0.1.8" />
55

66
<!-- the directories containing the source files -->
77
<property name="src.dir" value="./src" />

build/node-parserlib.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
THE SOFTWARE.
2222
2323
*/
24-
/* Version v@VERSION@, Build time: 20-May-2012 01:46:33 */
24+
/* Version v@VERSION@, Build time: 23-July-2012 09:55:09 */
2525
var parserlib = {};
2626
(function(){
2727

@@ -931,7 +931,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
931931
THE SOFTWARE.
932932
933933
*/
934-
/* Version v@VERSION@, Build time: 20-May-2012 01:46:33 */
934+
/* Version v@VERSION@, Build time: 23-July-2012 09:55:09 */
935935
(function(){
936936
var EventTarget = parserlib.util.EventTarget,
937937
TokenStreamBase = parserlib.util.TokenStreamBase,

build/npm/lib/node-parserlib.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
THE SOFTWARE.
2222
2323
*/
24-
/* Version v@VERSION@, Build time: 20-May-2012 01:46:33 */
24+
/* Version v@VERSION@, Build time: 23-July-2012 09:55:09 */
2525
var parserlib = {};
2626
(function(){
2727

@@ -931,7 +931,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
931931
THE SOFTWARE.
932932
933933
*/
934-
/* Version v@VERSION@, Build time: 20-May-2012 01:46:33 */
934+
/* Version v@VERSION@, Build time: 23-July-2012 09:55:09 */
935935
(function(){
936936
var EventTarget = parserlib.util.EventTarget,
937937
TokenStreamBase = parserlib.util.TokenStreamBase,

build/parserlib-core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
THE SOFTWARE.
2222
2323
*/
24-
/* Version v@VERSION@, Build time: 20-May-2012 01:46:33 */
24+
/* Version v@VERSION@, Build time: 23-July-2012 09:55:09 */
2525
var parserlib = {};
2626
(function(){
2727

build/parserlib-css.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
THE SOFTWARE.
2222
2323
*/
24-
/* Version v@VERSION@, Build time: 20-May-2012 01:46:33 */
24+
/* Version v@VERSION@, Build time: 23-July-2012 09:55:09 */
2525
(function(){
2626
var EventTarget = parserlib.util.EventTarget,
2727
TokenStreamBase = parserlib.util.TokenStreamBase,

build/parserlib.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
THE SOFTWARE.
2222
2323
*/
24-
/* Version v@VERSION@, Build time: 20-May-2012 01:46:33 */
24+
/* Version v@VERSION@, Build time: 23-July-2012 09:55:09 */
2525
var parserlib = {};
2626
(function(){
2727

@@ -931,7 +931,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
931931
THE SOFTWARE.
932932
933933
*/
934-
/* Version v@VERSION@, Build time: 20-May-2012 01:46:33 */
934+
/* Version v@VERSION@, Build time: 23-July-2012 09:55:09 */
935935
(function(){
936936
var EventTarget = parserlib.util.EventTarget,
937937
TokenStreamBase = parserlib.util.TokenStreamBase,

release/node-parserlib.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
THE SOFTWARE.
2222
2323
*/
24-
/* Version v0.1.7, Build time: 4-May-2012 03:57:04 */
24+
/* Version v0.1.8, Build time: 23-July-2012 09:55:09 */
2525
var parserlib = {};
2626
(function(){
2727

@@ -931,7 +931,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
931931
THE SOFTWARE.
932932
933933
*/
934-
/* Version v0.1.7, Build time: 4-May-2012 03:57:04 */
934+
/* Version v0.1.8, Build time: 23-July-2012 09:55:09 */
935935
(function(){
936936
var EventTarget = parserlib.util.EventTarget,
937937
TokenStreamBase = parserlib.util.TokenStreamBase,
@@ -3811,6 +3811,7 @@ var Properties = {
38113811
"pitch" : 1,
38123812
"pitch-range" : 1,
38133813
"play-during" : 1,
3814+
"pointer-events" : "auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit",
38143815
"position" : "static | relative | absolute | fixed | inherit",
38153816
"presentation-level" : 1,
38163817
"punctuation-trim" : 1,

release/npm/lib/node-parserlib.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
THE SOFTWARE.
2222
2323
*/
24-
/* Version v0.1.7, Build time: 4-May-2012 03:57:04 */
24+
/* Version v0.1.8, Build time: 23-July-2012 09:55:09 */
2525
var parserlib = {};
2626
(function(){
2727

@@ -931,7 +931,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
931931
THE SOFTWARE.
932932
933933
*/
934-
/* Version v0.1.7, Build time: 4-May-2012 03:57:04 */
934+
/* Version v0.1.8, Build time: 23-July-2012 09:55:09 */
935935
(function(){
936936
var EventTarget = parserlib.util.EventTarget,
937937
TokenStreamBase = parserlib.util.TokenStreamBase,
@@ -3811,6 +3811,7 @@ var Properties = {
38113811
"pitch" : 1,
38123812
"pitch-range" : 1,
38133813
"play-during" : 1,
3814+
"pointer-events" : "auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit",
38143815
"position" : "static | relative | absolute | fixed | inherit",
38153816
"presentation-level" : 1,
38163817
"punctuation-trim" : 1,

release/npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parserlib",
3-
"version": "0.1.7",
3+
"version": "0.1.8",
44
"description": "CSSLint",
55
"author": "Nicholas C. Zakas",
66
"os": ["darwin", "linux"],

0 commit comments

Comments
 (0)