Compare commits

...

2 commits

Author SHA1 Message Date
adefcafae6
Copyright update 2023-01-09 10:45:23 -06:00
07765ea87b
Update copyright 2023-01-09 10:39:15 -06:00
4 changed files with 18 additions and 5 deletions

View file

@ -3,7 +3,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.4.0]
## [1.4.1] - 2023-01-09
### Added
- Display app version
### Changed
- Copyright year
### Fixed
- Remove unnecessary logging in `fullnode.service.ts`.
## [1.4.0] - 2023-01-09
### Added

View file

@ -1,6 +1,6 @@
{
"name": "zgo",
"version": "1.4.0",
"version": "1.4.1",
"scripts": {
"ng": "ng",
"start": "ng serve",

View file

@ -3,6 +3,7 @@
</main>
<mat-divider></mat-divider>
<div class="footer" align="center">
<p>&copy; 2022 Vergara Technologies LLC</p>
<p>&copy; 2023 Vergara Technologies LLC</p>
<p class="tiny">Version 1.4.0</p>
<p class="tiny">Price data provided by CoinGecko API</p>
</div>

View file

@ -54,9 +54,7 @@ export class FullnodeService{
constructor(private http: HttpClient, public userService: UserService){
var auth = 'Basic ' + Buffer.from(ConfigData.UsrPwd).toString('base64');
console.log('auth: ' + auth);
this.reqHeaders = new HttpHeaders().set('Authorization', auth);
console.log(this.reqHeaders);
this.ownerUpdate = userService.ownerUpdate;
this.getAddr();
this.getHeight();