Skip to content
This repository was archived by the owner on Oct 21, 2020. It is now read-only.

Commit e46afdf

Browse files
author
Russel Waters
committed
update announcement verbiage
create second button class to make announcement link more prominent open announcement externally sass version bump unfreeze lockfile during yarn
1 parent a0cff31 commit e46afdf

File tree

6 files changed

+30
-11
lines changed

6 files changed

+30
-11
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ before_install:
4141
- export PATH="$HOME/.yarn/bin:$PATH"
4242

4343
install:
44-
- yarn install --frozen-lockfile --non-interactive
44+
- yarn install --non-interactive
4545

4646
script:
4747
- yarn lint

app/components/navigation-bar/component.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ export default class NavigationBarComponent extends Component {
1515

1616
onChangePassword = null;
1717

18+
announcementLink = 'https://nanowalletcompany.com';
19+
1820
@action
1921
toggleShow() {
2022
this.toggleProperty('show');

app/components/navigation-bar/styles.scss

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,14 @@
1515
border: none;
1616
outline: none;
1717
}
18+
19+
.button2 {
20+
border: none;
21+
border-radius: 5px;
22+
background-color: white;
23+
padding: 5px 4px;
24+
text-align: center;
25+
text-decoration: none;
26+
display: inline-block;
27+
cursor: pointer;
28+
}

app/components/navigation-bar/template.hbs

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,25 @@
11
<div class="alert alert-kiwi" role="alert">
22
<div class="d-flex flex-row justify-content-between">
33
<a data-toggle="collapse" href="#collapseBanner" {{action toggleShowBanner}} role="button"
4-
aria-expanded="false" aria-controls="collapseBanner" aria-label="toggleShowBanner">
5-
This app will not be fully functional after [server shutdown date].
4+
aria-expanded="false" aria-controls="collapseBanner" aria-label="{{t 'toggleShowBanner'}}">
5+
{{"This app will not be fully functional after February 10, 2020"}}
66
</a>
7+
{{#let (component 'external-link' text="View Announcement" href=announcementLink) as |label|}}
8+
{{label class="button2"}}
9+
{{/let}}
710
<a data-toggle="collapse" href="#collapseBanner" {{action toggleShowBanner}} role="button"
8-
aria-expanded="false" aria-controls="collapseBanner" aria-label="toggleShowBanner">
9-
<img src="images/arrow-down.png" />
11+
aria-expanded="false" aria-controls="collapseBanner" aria-label="{{t 'toggleShowBanner'}}">
12+
<img src="images/arrow-down.png" alt="{{"show More"}}">
1013
</a>
1114
</div>
1215
<div class="mt-3 {{if showBanner 'in' 'collapse'}}" id="collapseBanner">
13-
The Nano Wallet Company (NWC) is discontinuing this mobile wallet in favor of other superior wallets developed
14-
by the Nano community. On [server shutdown date] the servers will be turned off and this app will no longer be able to send or receive Nano.
15-
<b>Please securely copy and store your seed which will keep your Nano safe and allow you to use other wallets to send and receive.</b> Instructions and more details can be found
16-
in our official announcement.
16+
{{"The Nano Wallet Company (NWC) is discontinuing this wallet in favor of other superior wallets developed by the Nano community. Although the desktop app may continue to function as long as nodes on the network are peering with node V19.0 (protocol V17), it will take longer to sync a new install over time and we will no longer provide support for the application. As a result, we recommend another wallet option is used."}}
17+
<b>{{"On February 10, 2020 the downloads that allow fast-syncing of the ledger will be turned off, resulting in even slower and longer bootstrapping times."}} </b>
18+
{{"Please securely copy and store your seed which will keep your Nano safe and allow you to use other wallets to send and receive. Instructions for saving your seed, information on finding a new wallet and other details can be found in our official announcement at "}}
19+
{{#let (component 'external-link' text=announcementLink href=announcementLink) as |label|}}
20+
{{label}}
21+
{{/let}}
22+
1723
</div>
1824
</div>
1925
<nav class="navbar navbar-expand-lg navbar-dark">

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ install:
2525
- appveyor-retry cinst yarn -iy --no-progress
2626
- node --version
2727
- yarn --version
28-
- appveyor-retry yarn --frozen-lockfile --non-interactive
28+
- appveyor-retry yarn --non-interactive
2929

3030
build: off
3131

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@
252252
"postinstall-postinstall": "^2.0.0",
253253
"prettier": "^1.18.2",
254254
"rimraf": "^2.6.3",
255-
"sass": "^1.22.8",
255+
"sass": "^1.22.9",
256256
"speedometer": "^1.1.0",
257257
"standard-version": "^6.0.1"
258258
},

0 commit comments

Comments
 (0)