Update version and show rc-beta
This commit is contained in:
parent
e9e3ee7ddc
commit
63c76fe13e
4 changed files with 6 additions and 3 deletions
|
|
@ -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,
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
"description": "*DESCRIPTION*",
|
"description": "*DESCRIPTION*",
|
||||||
"author": "BitPay",
|
"author": "BitPay",
|
||||||
"version": "*VERSION*",
|
"version": "*VERSION*",
|
||||||
|
"fullVersion": "*FULLVERSION*",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"bitcoin",
|
"bitcoin",
|
||||||
"wallet",
|
"wallet",
|
||||||
|
|
|
||||||
|
|
@ -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() {
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue