Skip to content

Commit

Permalink
Updated version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
prof1983 committed Dec 26, 2018
1 parent 3237262 commit 4c14a75
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions js/mir.js
Original file line number Diff line number Diff line change
Expand Up @@ -112634,8 +112634,7 @@ var OrderPrice = (function () {
home.featureUnderDevelopment = featureUnderDevelopment;
home.logout = logout;

var titlePrefix = utilsService.isTestnet() ? 'TESTNET ' : '';
home.title = titlePrefix + 'Mir Blockchain';
home.title = utilsService.isTestnet() ? 'TESTNET ' : '';
home.version = applicationConstants.CLIENT_VERSION;

$scope.$on(events.SPLASH_COMPLETED, function () {
Expand Down Expand Up @@ -112921,7 +112920,7 @@ var OrderPrice = (function () {
(function () {
'use strict';

var prefix = 'Mir Blockchain';
var prefix = 'Mir';

angular
.module('app.shared')
Expand Down Expand Up @@ -121764,7 +121763,7 @@ function AngularApplicationConfig($provide, $compileProvider, $validatorProvider
}));
$provide.constant(applicationSettings,
angular.extend(applicationSettings, {
CLIENT_VERSION: '0.5.22a',
CLIENT_VERSION: '1.0.0', // W0.5.22a
NODE_ADDRESS: 'https://node.mir.dei.su',
COINOMAT_ADDRESS: 'https://coinomat.com',
MATCHER_ADDRESS: 'http://185.181.164.136:6886',
Expand Down Expand Up @@ -121863,10 +121862,6 @@ function AngularApplicationRun(rest, applicationConstants, notificationService,
timeout: 10000 // milliseconds
});
var url = applicationConstants.NODE_ADDRESS;
//var url = 'http://52.28.66.217:6869';
//var url = 'http://52.77.111.219:6869';
//var url = 'http://127.0.0.1:6869';
//var url = 'http://127.0.0.1:8089';
rest.setBaseUrl(url);

// override mock methods cos in config phase services are not available yet
Expand Down

0 comments on commit 4c14a75

Please sign in to comment.