Skip to content

Commit 52cf703

Browse files
committed
v0.9.6
1 parent ec7d11c commit 52cf703

File tree

4 files changed

+20
-23
lines changed

4 files changed

+20
-23
lines changed

config.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
xmlns="http://www.w3.org/ns/widgets"
44
xmlns:cdv="http://cordova.apache.org/ns/1.0"
55
id="fr.duniter.cesium"
6-
version="0.9.5"
7-
android-versionCode="905"
6+
version="0.9.6"
7+
android-versionCode="906"
88
>
99
<name>Cesium</name>
1010
<description>

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if [ "_$CESIUM_DIR" = "_" ]; then
1515
fi
1616

1717
latest_version() {
18-
echo "v0.9.5" #lastest
18+
echo "v0.9.6" #lastest
1919
}
2020

2121
api_release_url() {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cesium",
3-
"version": "0.9.5",
3+
"version": "0.9.6",
44
"description": "Unhosted webapp client for Duniter network",
55
"repository": {
66
"type": "git",

www/js/config.js

Lines changed: 16 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -10,35 +10,32 @@ angular.module("cesium.config", [])
1010

1111
.constant("csConfig", {
1212
"cacheTimeMs": 60000,
13-
"fallbackLanguage": "fr-FR",
14-
"defaultLanguage": "fr-FR",
15-
"rememberMe": true,
13+
"fallbackLanguage": "en",
14+
"rememberMe": false,
1615
"showUDHistory": false,
17-
"timeout": 6000,
16+
"timeout": 10000,
1817
"timeWarningExpireMembership": 5184000,
1918
"timeWarningExpire": 7776000,
2019
"useLocalStorage": true,
2120
"useRelative": true,
22-
"initPhase": true,
23-
"expertMode": true,
21+
"initPhase": false,
22+
"expertMode": false,
23+
"decimalCount": 4,
24+
"compatProtocol_0_80": true,
2425
"helptip": {
25-
"enable": false,
26-
"installDocUrl": {
27-
"fr-FR": "http://www.le-sou.org/devenir-noeud/",
28-
"en": "https://github.com/duniter/duniter/blob/master/doc/install-a-node.md"
29-
}
26+
"enable": true,
27+
"installDocUrl": "https://github.com/duniter/duniter/blob/master/doc/install-a-node.md"
3028
},
3129
"node": {
32-
"host": "fakenet.cgeek.fr",
33-
"port": "10900"
30+
"host": "cgeek.fr",
31+
"port": "9330"
3432
},
3533
"plugins": {
3634
"es": {
37-
"enable": false,
35+
"enable": true,
3836
"askEnable": false,
39-
"host": "localhost",
40-
"port": 9200,
41-
"wsPort": 9400,
37+
"host": "data.duniter.fr",
38+
"port": "80",
4239
"notifications": {
4340
"txSent": true,
4441
"txReceived": true,
@@ -47,8 +44,8 @@ angular.module("cesium.config", [])
4744
}
4845
}
4946
},
50-
"version": "0.9.5",
51-
"build": "2017-01-16T12:53:56.991Z",
47+
"version": "0.9.6",
48+
"build": "2017-01-16T19:38:18.137Z",
5249
"newIssueUrl": "https://github.com/duniter/cesium/issues/new?labels=bug"
5350
})
5451

0 commit comments

Comments
 (0)