diff --git a/config.xml b/config.xml index 925603b913633455b181773baabf8d9ca1a44400..cd287aaa897619f23e91f30d2533f8d068120402 100644 --- a/config.xml +++ b/config.xml @@ -1,5 +1,5 @@ <?xml version='1.0' encoding='utf-8'?> -<widget android-versionCode="18300" id="fr.duniter.cesium" version="0.18.3" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> +<widget android-versionCode="19000" id="fr.duniter.cesium" version="0.19.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> <name>Cesium</name> <description> An simple App for Duniter wallet diff --git a/install.sh b/install.sh index 0c044ff90bc77ca0a3ba888464edbb94a8bb4e5c..6a93cb3b43ec975fdbf680f5a85d3f3e53a6c7e4 100755 --- a/install.sh +++ b/install.sh @@ -15,7 +15,7 @@ if [ "_$CESIUM_DIR" = "_" ]; then fi latest_version() { - echo "v0.18.3" #lastest + echo "v0.19.0" #lastest } api_release_url() { diff --git a/package.json b/package.json index ee62f9338a1646074451a6dcca3e2d38bf7fc6fb..083ebd501d7eef6b6db7435557c73f1cf0b65d3d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cesium", - "version": "0.18.3", + "version": "0.19.0", "description": "Unhosted webapp client for Duniter network", "repository": { "type": "git", diff --git a/www/js/config.js b/www/js/config.js index 5ac4c7248765fc17e2189238b1e9bb93a22e147e..0899861842dc1bbcb1af809ac5435e161f53d3b9 100644 --- a/www/js/config.js +++ b/www/js/config.js @@ -10,49 +10,56 @@ angular.module("cesium.config", []) .constant("csConfig", { "cacheTimeMs": 300000, - "fallbackLanguage": "fr-FR", - "defaultLanguage": "fr-FR", + "fallbackLanguage": "en", "rememberMe": true, "showUDHistory": true, - "timeout": 300000, + "timeout": 30000, "timeWarningExpireMembership": 5184000, "timeWarningExpire": 7776000, + "keepAuthIlde": 600, "useLocalStorage": true, - "useRelative": true, - "expertMode": true, + "useRelative": false, + "expertMode": false, "decimalCount": 2, + "httpsMode": false, + "shareBaseUrl": "https://g1.duniter.fr", "helptip": { - "enable": false, + "enable": true, "installDocUrl": { "fr-FR": "https://duniter.org/fr/wiki/duniter/installer/", "en": "https://duniter.org/en/wiki/duniter/install/" } }, "license": { - "fr-FR": "license/license_g1-fr-FR.txt", - "en": "license/license_g1-en.txt" + "fr-FR": "license/license_g1-fr-FR", + "en": "license/license_g1-en" }, "node": { - "host": "localhost", - "port": 9600 + "host": "g1.duniter.org", + "port": "443" }, "fallbackNodes": [ { - "host": "g1.duniter.org", + "host": "g1.duniter.fr", "port": "443" }, { - "host": "g1.duniter.fr", + "host": "g1.duniter.org", "port": "443" } ], + "developers": [ + { + "name": "Benoit Lavenier", + "pubkey": "38MEAZN68Pz1DTvT3tqgxx4yQP6snJCQhPqEFxbDk4aE" + } + ], "plugins": { "es": { - "enable": false, - "askEnable": false, - "host": "localhost", - "port": 9200, - "wsPort": 9400, + "enable": true, + "askEnable": true, + "host": "g1.data.duniter.fr", + "port": "443", "fallbackNodes": [ { "host": "g1.data.le-sou.org", @@ -70,19 +77,10 @@ angular.module("cesium.config", []) "certReceived": true }, "defaultCountry": "France" - }, - "graph": { - "enable": true - }, - "neo4j": { - "enable": true - }, - "rml9": { - "enable": true } }, - "version": "0.18.3", - "build": "2017-10-27T17:48:55.410Z", + "version": "0.19.0", + "build": "2017-10-27T18:10:53.795Z", "newIssueUrl": "https://github.com/duniter/cesium/issues/new?labels=bug" })