From 2f2aeddc119128f8176371876eb6a6f61a116fa1 Mon Sep 17 00:00:00 2001 From: Paul Herbert Date: Tue, 14 Aug 2018 11:04:20 +0100 Subject: [PATCH] Bumped version --- Breeze.UI/package.json | 2 +- Breeze.UI/src/app/app.component.ts | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Breeze.UI/package.json b/Breeze.UI/package.json index af7b16c..ebc9264 100644 --- a/Breeze.UI/package.json +++ b/Breeze.UI/package.json @@ -1,7 +1,7 @@ { "name": "BreezeWallet", "description": "Breeze Wallet: Stratis' dual-currency full block light wallet with a strong focus on privacy.", - "version": "0.3.0", + "version": "1.0.0", "author": { "name": "Stratis Group", "email": "info@stratisplatform.com" diff --git a/Breeze.UI/src/app/app.component.ts b/Breeze.UI/src/app/app.component.ts index ea82221..35ecd7e 100644 --- a/Breeze.UI/src/app/app.component.ts +++ b/Breeze.UI/src/app/app.component.ts @@ -36,10 +36,8 @@ export class AppComponent implements OnInit { } private setTitle() { - let applicationName = "Breeze Wallet"; - let applicationVersion = remote.app.getVersion(); - let releaseCycle = "beta"; - let newTitle = applicationName + " v" + applicationVersion + " " + releaseCycle; + const applicationName = "Stratis Breeze Wallet"; + const newTitle = applicationName + " v" + remote.app.getVersion(); this.titleService.setTitle(newTitle); } }