Update version and show rc-beta

This commit is contained in:
Jean-Baptiste Dominguez 2018-05-25 18:15:02 +09:00
commit 63c76fe13e
4 changed files with 6 additions and 3 deletions

View file

@ -24,8 +24,9 @@
"windowsAppId": "804636ee-b017-4cad-8719-e58ac97ffa5c",
"pushSenderId": "1036948132229",
"description": "A Secure Bitcoin Wallet",
"version": "4.10.1",
"androidVersion": "410100",
"version": "4.11.0",
"fullVersion": "4.11-rc1",
"androidVersion": "411000",
"_extraCSS": "",
"_enabledExtensions": {
"coinbase": false,

View file

@ -3,6 +3,7 @@
"description": "*DESCRIPTION*",
"author": "BitPay",
"version": "*VERSION*",
"fullVersion": "*FULLVERSION*",
"keywords": [
"bitcoin",
"wallet",

View file

@ -4,7 +4,7 @@ angular.module('copayApp.controllers').controller('preferencesAbout',
function($scope, $window, appConfigService, gettextCatalog, externalLinkService, $ionicNavBarDelegate) {
$scope.title = gettextCatalog.getString('About') + ' ' + appConfigService.nameCase;
$scope.version = $window.version;
$scope.version = $window.fullVersion;
$scope.commitHash = $window.commitHash;
$scope.openExternalLink = function() {

View file

@ -26,6 +26,7 @@ console.log('v' + pkg.version + ' #' + commitHash + ' App:' + appConfig.name);
var content = 'window.version="' + pkg.version + '";';
content = content + '\nwindow.commitHash="' + commitHash + '";';
content = content + '\nwindow.fullVersion="' + pkg.fullVersion + '";';
content = content + '\nwindow.appConfig=' + JSON.stringify(appConfig) + ';';
fs.writeFileSync("./src/js/appConfig.js", content);