Skip to content

Commit

Permalink
- Revert file to currencies lookup (need for new account wizard) - Fix
Browse files Browse the repository at this point in the history
… #66

 - prepare release 0.1.17
  • Loading branch information
blavenie committed Jun 14, 2016
1 parent 3a33810 commit ce43155
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 5 deletions.
4 changes: 2 additions & 2 deletions config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
xmlns="http://www.w3.org/ns/widgets"
xmlns:cdv="http://cordova.apache.org/ns/1.0"
id="fr.duniter.cesium"
version="0.1.17"
android-versionCode="5"
version="0.1.18"
android-versionCode="6"
>
<name>Cesium</name>
<description>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cesium",
"version": "0.1.17",
"version": "0.1.18",
"description": "A webapp client for Duniter network",
"dependencies": {
"delete-empty": "^0.1.3",
Expand Down
4 changes: 2 additions & 2 deletions www/js/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ angular.module("cesium.config", [])
"NEW_ISSUE_LINK": "https://github.com/duniter/cesium/issues/new?labels=bug",
"TIMEOUT": 4000,
"DEBUG": false,
"VERSION": "0.1.16",
"BUILD_DATE": "2016-06-13T13:50:48.101Z"
"VERSION": "0.1.17",
"BUILD_DATE": "2016-06-14T06:50:51.864Z"
})

;
7 changes: 7 additions & 0 deletions www/templates/currency/lookup.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<ion-view view-title="{{'CURRENCY.SELECT.TITLE' | translate}}">
<ion-content class="padding no-padding-xs">
<h4 class="content double-padding-x" translate>CURRENCY.SELECT.CURRENCIES</h4>

<ng-include src="'templates/currency/lookup_form.html'"/>
</ion-content>
</ion-view>
20 changes: 20 additions & 0 deletions www/templates/currency/lookup_form.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<ion-list>

<div class="item center" ng-if="search.looking">
<ion-spinner icon="android"></ion-spinner>
</div>

<div ng-repeat="currency in knownCurrencies"
ng-class="{ selected: selectedCurrency == currency }">
<a class="item hidden-xs hidden-sm ink" ng-click="selectCurrency(currency.name, true)"
ng-class="{ selected: selectedCurrency == currency }">
<h3>{{currency.name}}</h3>
<h4 class="gray">{{currency.peer}}</h4>
</a>
<a class="item item-text-wrap visible-xs visible-sm ink" ng-click="selectCurrency(currency.name, false)"
ng-class="{ selected: selectedCurrency == currency }">
<h3>{{::currency.name}}</h3>
<h4 class="gray">{{::currency.peer}}</h4>
</a>
</div>
</ion-list>

0 comments on commit ce43155

Please sign in to comment.