File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 10
10
11
11
#define C2P_PROTOCOL_MAJOR_VERSION 0
12
12
#define C2P_PROTOCOL_MINOR_VERSION 6
13
- #define C2P_NODE_VERSION 676
13
+ #define C2P_NODE_VERSION 757
14
14
#define C2P_VERSION CP2P__STR__(C2P_PROTOCOL_MAJOR_VERSION) "." CP2P__STR__(C2P_PROTOCOL_MINOR_VERSION) "." CP2P__STR__(C2P_NODE_VERSION)
15
15
/**
16
16
* .. c:macro:: C2P_PROTOCOL_MAJOR_VERSION
Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ Your page will look something like:
8
8
.. code-block :: html
9
9
10
10
<head >
11
- <script type =" text/javascript" src =" ./build/browser-min/js2p-browser-0.6.676 -base.min.js" ></script >
11
+ <script type =" text/javascript" src =" ./build/browser-min/js2p-browser-0.6.757 -base.min.js" ></script >
12
12
<!-- Other js2p loaders here -->
13
- <script type =" text/javascript" src =" ./build/browser-min/js2p-browser-0.6.676 .min.js" ></script >
13
+ <script type =" text/javascript" src =" ./build/browser-min/js2p-browser-0.6.757 .min.js" ></script >
14
14
</head >
15
15
16
16
The two scripts shown are the only required. The library will automatically load any other provided components.
@@ -41,10 +41,10 @@ This example shows the simple construction of a :js:class:`js2p.sync.SyncSocket`
41
41
<!doctype html>
42
42
<html >
43
43
<head >
44
- <script type =" text/javascript" src =" ./build/browser/js2p-browser-0.6.676 -base.js" ></script >
45
- <script type =" text/javascript" src =" ./build/browser/js2p-browser-0.6.676 -mesh.js" ></script >
46
- <script type =" text/javascript" src =" ./build/browser/js2p-browser-0.6.676 -sync.js" ></script >
47
- <script type =" text/javascript" src =" ./build/browser/js2p-browser-0.6.676 .js" ></script >
44
+ <script type =" text/javascript" src =" ./build/browser/js2p-browser-0.6.757 -base.js" ></script >
45
+ <script type =" text/javascript" src =" ./build/browser/js2p-browser-0.6.757 -mesh.js" ></script >
46
+ <script type =" text/javascript" src =" ./build/browser/js2p-browser-0.6.757 -sync.js" ></script >
47
+ <script type =" text/javascript" src =" ./build/browser/js2p-browser-0.6.757 .js" ></script >
48
48
</head >
49
49
<body >
50
50
<script type =" text/javascript" >
Original file line number Diff line number Diff line change 63
63
* This is :js:data:`~js2p.base.version_info` joined in the format ``'a.b.c'``
64
64
*/
65
65
66
- base . version_info = [ 0 , 6 , 676 ] ;
66
+ base . version_info = [ 0 , 6 , 757 ] ;
67
67
base . node_policy_version = base . version_info [ 2 ] . toString ( ) ;
68
68
base . protocol_version = base . version_info . slice ( 0 , 2 ) . join ( "." ) ;
69
69
base . version = base . version_info . join ( '.' ) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " js2p" ,
3
3
"main" : " js_src/js2p.js" ,
4
- "version" : " 0.6.676 " ,
4
+ "version" : " 0.6.757 " ,
5
5
"license" : " LGPL-3.0" ,
6
6
"repository" : {
7
7
"type" : " git" ,
Original file line number Diff line number Diff line change 32
32
Dict [str , _MsgPackable ]]
33
33
34
34
protocol_version = "0.6"
35
- node_policy_version = "676 "
35
+ node_policy_version = "757 "
36
36
37
37
version = '.' .join ((protocol_version , node_policy_version ))
38
38
You can’t perform that action at this time.
0 commit comments