Skip to content
This repository has been archived by the owner on Mar 23, 2023. It is now read-only.

hotfix: release 1.8.1 #624

Merged
merged 4 commits into from
May 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install --ignore-scripts
- name: Pre Test
run: npx webdriver-manager update --versions.chrome=80.0.3987.106
- name: Test
run: npm run test:e2e -- --prod
run: npm run test:e2e -- --prod --webdriver-update false
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<widget id="io.ark.wallet.mobile" version="1.8.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<widget id="io.ark.wallet.mobile" version="1.8.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Ark Mobile</name>
<description>ARK</description>
<author email="[email protected]" href="http://ark.io/">Ark Ecosystem</author>
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ark-mobile",
"version": "1.8.0",
"version": "1.8.1",
"author": "Ark Ecosystem <[email protected]>",
"homepage": "https://github.com/ArkEcosystem/mobile-wallet#readme",
"scripts": {
Expand Down
52 changes: 27 additions & 25 deletions src/app/pages/profiles/profile-signin/profile-signin.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,33 +7,35 @@
</ion-toolbar>
</ion-header>

<ion-content>
<ion-fab slot="fixed" vertical="bottom" horizontal="end" *ngIf="!isEmpty()">
<ion-fab-button color="primary" (click)="openProfileCreate()">
<ion-icon name="add"></ion-icon>
</ion-fab-button>
</ion-fab>
<ion-content fullscreen>
<empty-list
message="PROFILES_PAGE.ADD_PROFILE_TEXT"
(clickButton)="openProfileCreate()"
*ngIf="isEmpty(); else content"
></empty-list>

<ion-grid class="ion-no-padding">
<empty-list
message="PROFILES_PAGE.ADD_PROFILE_TEXT"
(clickButton)="openProfileCreate()"
*ngIf="isEmpty()"
></empty-list>
<ng-template #content>
<ion-fab slot="fixed" vertical="bottom" horizontal="end">
<ion-fab-button color="primary" (click)="openProfileCreate()">
<ion-icon name="add"></ion-icon>
</ion-fab-button>
</ion-fab>

<ion-row *ngIf="!isEmpty()">
<ion-col>
<address-list
[map]="addresses"
icon="ellipsis-vertical"
circleProperty="value"
(tapItem)="verify($event)"
(pressItem)="presentProfileActionSheet($event)"
(more)="presentProfileActionSheet($event)"
></address-list>
</ion-col>
</ion-row>
</ion-grid>
<ion-grid class="ion-no-padding h-full">
<ion-row>
<ion-col>
<address-list
[map]="addresses"
icon="ellipsis-vertical"
circleProperty="value"
(tapItem)="verify($event)"
(pressItem)="presentProfileActionSheet($event)"
(more)="presentProfileActionSheet($event)"
></address-list>
</ion-col>
</ion-row>
</ion-grid>
</ng-template>
</ion-content>

<pin-code #pinCode (success)="signin()" (wrong)="error()"></pin-code>