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", "windowsAppId": "804636ee-b017-4cad-8719-e58ac97ffa5c",
"pushSenderId": "1036948132229", "pushSenderId": "1036948132229",
"description": "A Secure Bitcoin Wallet", "description": "A Secure Bitcoin Wallet",
"version": "4.10.1", "version": "4.11.0",
"androidVersion": "410100", "fullVersion": "4.11-rc1",
"androidVersion": "411000",
"_extraCSS": "", "_extraCSS": "",
"_enabledExtensions": { "_enabledExtensions": {
"coinbase": false, "coinbase": false,

View file

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

View file

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

View file

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