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

Commit 8c7ecb2

Browse files
authored
hotfix: release 1.8.1 (#624)
* fix: profile signin page height * chore: bump version to 1.8.1 * test: fix webdriver * test: add webdriver-manager script
1 parent 6a91f81 commit 8c7ecb2

File tree

5 files changed

+33
-29
lines changed

5 files changed

+33
-29
lines changed

.github/workflows/test.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,7 @@ jobs:
4545
node-version: ${{ matrix.node-version }}
4646
- name: Install
4747
run: npm install --ignore-scripts
48+
- name: Pre Test
49+
run: npx webdriver-manager update --versions.chrome=80.0.3987.106
4850
- name: Test
49-
run: npm run test:e2e -- --prod
51+
run: npm run test:e2e -- --prod --webdriver-update false

config.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='utf-8'?>
2-
<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">
2+
<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">
33
<name>Ark Mobile</name>
44
<description>ARK</description>
55
<author email="[email protected]" href="http://ark.io/">Ark Ecosystem</author>

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ark-mobile",
3-
"version": "1.8.0",
3+
"version": "1.8.1",
44
"author": "Ark Ecosystem <[email protected]>",
55
"homepage": "https://github.com/ArkEcosystem/mobile-wallet#readme",
66
"scripts": {

src/app/pages/profiles/profile-signin/profile-signin.html

+27-25
Original file line numberDiff line numberDiff line change
@@ -7,33 +7,35 @@
77
</ion-toolbar>
88
</ion-header>
99

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

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

24-
<ion-row *ngIf="!isEmpty()">
25-
<ion-col>
26-
<address-list
27-
[map]="addresses"
28-
icon="ellipsis-vertical"
29-
circleProperty="value"
30-
(tapItem)="verify($event)"
31-
(pressItem)="presentProfileActionSheet($event)"
32-
(more)="presentProfileActionSheet($event)"
33-
></address-list>
34-
</ion-col>
35-
</ion-row>
36-
</ion-grid>
24+
<ion-grid class="ion-no-padding h-full">
25+
<ion-row>
26+
<ion-col>
27+
<address-list
28+
[map]="addresses"
29+
icon="ellipsis-vertical"
30+
circleProperty="value"
31+
(tapItem)="verify($event)"
32+
(pressItem)="presentProfileActionSheet($event)"
33+
(more)="presentProfileActionSheet($event)"
34+
></address-list>
35+
</ion-col>
36+
</ion-row>
37+
</ion-grid>
38+
</ng-template>
3739
</ion-content>
3840

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

0 commit comments

Comments
 (0)