Copyright update
This commit is contained in:
parent
07765ea87b
commit
8949001306
4 changed files with 17 additions and 5 deletions
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -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
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "zgo",
|
||||
"version": "1.4.0",
|
||||
"version": "1.4.1",
|
||||
"scripts": {
|
||||
"ng": "ng",
|
||||
"start": "ng serve",
|
||||
|
|
|
@ -4,6 +4,6 @@
|
|||
<mat-divider></mat-divider>
|
||||
<div class="footer" align="center">
|
||||
<p>© 2023 Vergara Technologies LLC</p>
|
||||
<p class="tiny">Version 1.4.0</p>
|
||||
<p class="tiny">Version 1.4.1</p>
|
||||
<p class="tiny">Price data provided by CoinGecko API</p>
|
||||
</div>
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue