Skip to content

Commit

Permalink
Fix tsla split
Browse files Browse the repository at this point in the history
  • Loading branch information
igorshelkovenkov committed Aug 25, 2022
1 parent 1667d91 commit c2ea4d5
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"email": "[email protected]",
"url": "https://www.defichain-income.com"
},
"version": "9.6.0",
"version": "9.6.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"package": {
"productName": "DefiChain-Income",
"version": "9.6.0"
"version": "9.6.1"
},
"build": {
"distDir": "../dist/defichain-income",
Expand Down
2 changes: 1 addition & 1 deletion src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2043,7 +2043,7 @@ export class AppComponent implements OnInit {
this.poolUsdUsdc = this.setFromPoolPair('102');
this.poolUsdUsdt = this.setFromPoolPair('101');

this.poolTsla = this.setFromPoolPair('18');
this.poolTsla = this.setFromPoolPair('114');
this.poolQqq = this.setFromPoolPair('39');
this.poolSpy = this.setFromPoolPair('38');
this.poolPltr = this.setFromPoolPair('35');
Expand Down
2 changes: 1 addition & 1 deletion src/environments/environment.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const environment = {
mamon_account: 'https://sync.defichain-masternode-monitor.com/v1/KEY/masternodes',
mamon_account_node: 'https://api.defichain-masternode-monitor.com/v1/masternodes/info/',
burninfo: 'https://api.mydefichain.com/v1/getburninfo/',
version: '9.6.0',
version: '9.6.1',
bittrex: 'https://api.bittrex.com/v3/currencies/DFI',
kucoin: 'https://api.kucoin.com/api/v1/currencies/DFI',
graphql: 'https://next.graphql.defichain-income.com/graphql',
Expand Down
2 changes: 1 addition & 1 deletion src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const environment = {
mamon_account: 'https://sync.defichain-masternode-monitor.com/v1/KEY/masternodes',
mamon_account_node: 'https://api.defichain-masternode-monitor.com/v1/masternodes/info/',
burninfo: 'https://api.mydefichain.com/v1/getburninfo/',
version: '9.6.0',
version: '9.6.1',
graphql: 'https://next.graphql.defichain-income.com/graphql',
// Matomo
// No tracking for local -> wrong id
Expand Down
5 changes: 5 additions & 0 deletions src/interface/Changelog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ export class Changelog {

this.logs = new Array<Log>();

this.log = new Log();
this.log.version = '9.6.1 - 25.8.2022';
this.log.comment = 'Tsla split';
this.logs.push(this.log);

this.log = new Log();
this.log.version = '9.6.0 - 25.8.2022';
this.log.comment = 'Checkbox in settings whether freezer value is calculated in total value';
Expand Down

0 comments on commit c2ea4d5

Please sign in to comment.