Skip to content

Commit 16347b8

Browse files
committed
update version to 1.0.0-BETA
1 parent dfd33be commit 16347b8

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

README.md

+10-7
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,15 @@ bin/runtime
6666
```
6767
##### Output
6868
```
69+
jed@jed:~/kev1.0.0/# bin/runtime
6970
INFO: Kevoree Start event : node name = node0
71+
INFO: TODO Model Checker
72+
Downloading File => http://maven.reacloud.com/repository/reacloud/release/org/kevoree/library/CPPNodeType/1.0.0/CPPNodeType-1.0.0.so
7073
INFO: PreCompare BootStraping
7174
INFO: Adaptation model size 2
72-
INFO: Adaptation time delta (ms) = 4
73-
INFO: Update sucessfully completed
75+
Downloading File => http://maven.reacloud.com/repository/reacloud/release/org/kevoree/library/kevoree-group-websocket/1.0.0/kevoree-group-websocket-1.0.0.so
76+
INFO: Adaptation time delta (ms) = 8
77+
INFO: Update sucessfully completed.
7478
```
7579

7680
### Kevoree Runtime options :
@@ -84,10 +88,8 @@ INFO: Update sucessfully completed
8488

8589
### Kevoree Editor:
8690

87-
The kevC++ platform bootstrap by default with a group which listen on port 9000 you can pull the model with the great web editor :
88-
```
89-
http://editor.kevoree.org/
90-
```
91+
The kevC++ platform bootstrap by default with a group which listen on port 9000 you can pull the model with the awesome web editor :
92+
http://editor.kevoree.org
9193
For more information => https://github.com/kevoree/kevoree-web-editor
9294

9395

@@ -269,11 +271,12 @@ make install
269271
```
270272

271273
FAQ:
274+
```
272275
bin/runtime: error while loading shared libraries: libkevoree-model-dynamic.so: cannot open shared object file: No such file or directory
273276
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$KEVORE_CPP_FOLDER/lib
274277
275278
export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:$KEVORE_CPP_FOLDER/lib
276-
279+
```
277280

278281

279282

kevoree-platform/standalone/main.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ KevoreeBootStrap *kb=NULL;
2727
/* configuration */
2828
const string log_file ="kevoree.log";
2929
const std::string name = "Kevoree Platform";
30-
const std::string version = "BETA 1.0.0";
30+
const std::string version = "1.0.0-BETA";
3131
std::string path_bootstrap_model = "";
3232
std::string nodename = "node0";
3333

@@ -198,7 +198,7 @@ void defaultbootstrapmodel(std::string nodename){
198198
TypeDefinition *grouptype = factory.createGroupType();
199199
grouptype->abstract= false;
200200
grouptype->name ="WebSocketGroup";
201-
grouptype->version = "1.0";
201+
grouptype->version = "1.0.0";
202202

203203
DictionaryType *typegroup= factory.createDictionaryType();
204204
DictionaryAttribute *attport = factory.createDictionaryAttribute();

0 commit comments

Comments
 (0)