Skip to content

Commit 50091b2

Browse files
committed
minor changes
1 parent 9334212 commit 50091b2

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='utf-8'?>
2-
<widget android-versionCode="102004" id="fr.duniter.cesium" version="1.2.4" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
2+
<widget android-versionCode="102005" id="fr.duniter.cesium" version="1.2.5" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
33
<name>Cesium</name>
44
<description>
55
An simple App for Duniter wallet

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 "v1.2.4" #lastest
18+
echo "v1.2.5" #lastest
1919
}
2020

2121
api_release_url() {

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cesium",
3-
"version": "1.2.4",
3+
"version": "1.2.5",
44
"description": "Unhosted webapp client for Duniter network",
55
"repository": {
66
"type": "git",
@@ -96,7 +96,8 @@
9696
"mv": "^2.1.1",
9797
"playup": "^1.0.2",
9898
"shelljs": "^0.3.0",
99-
"yargs": "^4.3.1"
99+
"yargs": "^4.3.1",
100+
"event-stream": "3.3.4"
100101
},
101102
"cordovaPlugins": [
102103
"cordova-plugin-whitelist",

www/js/services/http-services.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ angular.module('cesium.http.services', ['cesium.cache.services'])
166166
}
167167

168168
if (self.waitDuration >= timeout) {
169-
console.debug("[http] Will retry openning websocket later...");
169+
console.debug("[http] Will retry opening websocket later...");
170170
self.waitRetryDelay = 2000; // 2 seconds
171171
}
172172
else {

www/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"short_name": "Cesium",
33
"name": "Cesium",
44
"manifest_version": 1,
5-
"version": "1.2.4",
5+
"version": "1.2.5",
66
"default_locale": "fr",
77
"description": "Manage your Duniter Wallet on a libre currency, like Ğ1",
88
"icons": [

www/plugins/es/js/services/geo-services.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ angular.module('cesium.es.geo.services', ['cesium.services', 'cesium.es.http.ser
2929
search: csHttp.get('maps.google.com', 443, '/maps/api/geocode/json')
3030
},
3131
freegeoip: {
32+
//search: csHttp.get('localhost', 8080, '/json/:ip'),
3233
search: csHttp.get('freegeoip.net', 443, '/json/:ip'),
3334
license: {
3435
name: 'freegeoip',

0 commit comments

Comments
 (0)