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

Commit

Permalink
hotfix: release 1.8.1 (#624)
Browse files Browse the repository at this point in the history
* fix: profile signin page height

* chore: bump version to 1.8.1

* test: fix webdriver

* test: add webdriver-manager script
  • Loading branch information
luciorubeens authored May 28, 2020
1 parent 6a91f81 commit 8c7ecb2
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 29 deletions.
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>

0 comments on commit 8c7ecb2

Please sign in to comment.