File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " qz-tray" ,
3
- "version" : " 2.2.4-SNAPSHOT " ,
3
+ "version" : " 2.2.4" ,
4
4
"description" : " Connects a web client to the QZ Tray software. Enables printing and device communication from javascript. " ,
5
5
"main" : " qz-tray.js" ,
6
6
"browser" : {
Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
3
3
/**
4
- * @version 2.2.4-SNAPSHOT
4
+ * @version 2.2.4
5
5
* @overview QZ Tray Connector
6
6
* @license LGPL-2.1-only
7
7
* <p/>
@@ -27,7 +27,7 @@ var qz = (function() {
27
27
///// PRIVATE METHODS /////
28
28
29
29
var _qz = {
30
- VERSION : "2.2.4-SNAPSHOT " , //must match @version above
30
+ VERSION : "2.2.4" , //must match @version above
31
31
DEBUG : false ,
32
32
33
33
log : {
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public class Constants {
14
14
public static final String HEXES = "0123456789ABCDEF" ;
15
15
public static final char [] HEXES_ARRAY = HEXES .toCharArray ();
16
16
public static final int BYTE_BUFFER_SIZE = 8192 ;
17
- public static final Version VERSION = Version .valueOf ("2.2.4-SNAPSHOT " );
17
+ public static final Version VERSION = Version .valueOf ("2.2.4" );
18
18
public static final Version JAVA_VERSION = SystemUtilities .getJavaVersion ();
19
19
public static final String JAVA_VENDOR = System .getProperty ("java.vendor" );
20
20
You can’t perform that action at this time.
0 commit comments