Skip to content

Commit

Permalink
updated to version 1.4.0, added configure flag to mute console errors…
Browse files Browse the repository at this point in the history
…, added allowance for some pseudo-elements grammar, fixed resolver for single char attributes
  • Loading branch information
dperini committed May 21, 2017
1 parent efd910e commit 4dcaa77
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nwmatcher",
"version": "1.4.0beta",
"version": "1.4.0",
"homepage": "https://github.com/dperini/nwmatcher",
"authors": [
"Diego Perini <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion build/HEADER
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* NWMatcher 1.4.0beta - Fast CSS3 Selector Engine
* NWMatcher 1.4.0 - Fast CSS3 Selector Engine
* Copyright (C) 2007-2017 Diego Perini
* See http://nwbox.com/license
*/
2 changes: 1 addition & 1 deletion build/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.0beta
1.4.0
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nwmatcher",
"version": "1.4.0beta",
"version": "1.4.0",
"description": "A CSS3-compliant JavaScript selector engine.",
"homepage": "http://javascript.nwbox.com/NWMatcher/",
"main": "./src/nwmatcher",
Expand Down
6 changes: 3 additions & 3 deletions src/nwmatcher-base.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
* nwmatcher-base.js - A fast CSS selector engine and matcher
*
* Author: Diego Perini <diego.perini at gmail com>
* Version: 1.4.0beta
* Version: 1.4.0
* Created: 20070722
* Release: 20170320
* Release: 20170520
*
* License:
* http://javascript.nwbox.com/NWMatcher/MIT-LICENSE
Expand All @@ -28,7 +28,7 @@

})(this, function(global) {

var version = 'nwmatcher-1.4.0beta',
var version = 'nwmatcher-1.4.0',

doc = global.document,
root = doc.documentElement,
Expand Down
6 changes: 3 additions & 3 deletions src/nwmatcher-noqsa.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
* nwmatcher-noqsa.js - A fast CSS selector engine and matcher
*
* Author: Diego Perini <diego.perini at gmail com>
* Version: 1.4.0beta
* Version: 1.4.0
* Created: 20070722
* Release: 20170320
* Release: 20170520
*
* License:
* http://javascript.nwbox.com/NWMatcher/MIT-LICENSE
Expand All @@ -28,7 +28,7 @@

})(this, function(global) {

var version = 'nwmatcher-1.4.0beta',
var version = 'nwmatcher-1.4.0',

doc = global.document,
root = doc.documentElement,
Expand Down
6 changes: 3 additions & 3 deletions src/nwmatcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
* nwmatcher.js - A fast CSS selector engine and matcher
*
* Author: Diego Perini <diego.perini at gmail com>
* Version: 1.4.0beta
* Version: 1.4.0
* Created: 20070722
* Release: 20170320
* Release: 20170520
*
* License:
* http://javascript.nwbox.com/NWMatcher/MIT-LICENSE
Expand All @@ -28,7 +28,7 @@

})(this, function(global) {

var version = 'nwmatcher-1.4.0beta',
var version = 'nwmatcher-1.4.0',

// processing context & root element
doc = global.document,
Expand Down
2 changes: 1 addition & 1 deletion test/css3-compat/css3-compat.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var CDN = 'http://ajax.googleapis.com/ajax/libs/',
engines = {
'querySelectorAll': [ 'document.querySelectorAll(s)', '' ],

'nwmatcher-1.4.0beta': [ 'NW.Dom.select(s)', '../../src/nwmatcher-noqsa.js' ]
'nwmatcher-1.4.0': [ 'NW.Dom.select(s)', '../../src/nwmatcher-noqsa.js' ]

// 'base2-2.0alpha1': [ 'base2.dom.querySelectorAll(c,s)', 'lib/base2+dom.js' ],
// 'prototype-1.6.1': [ '$$(s)', CDN + 'prototype/1.6.1.0/prototype.js' ],
Expand Down

0 comments on commit 4dcaa77

Please sign in to comment.