Browse Source
Merge branch 'main' into feature/extend-x-ray-page-by-summary
pull/4107/head
Thomas Kaul
9 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with
5 additions and
4 deletions
-
CHANGELOG.md
-
apps/api/src/app/portfolio/calculator/portfolio-calculator.ts
-
package-lock.json
-
package.json
|
@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
- Extended the _X-ray_ page by a summary |
|
|
- Extended the _X-ray_ page by a summary |
|
|
|
|
|
|
|
|
## 2.126.0 - 2024-12-07 |
|
|
## 2.126.1 - 2024-12-07 |
|
|
|
|
|
|
|
|
### Added |
|
|
### Added |
|
|
|
|
|
|
|
|
|
@ -176,6 +176,7 @@ export abstract class PortfolioCalculator { |
|
|
if (!transactionPoints.length) { |
|
|
if (!transactionPoints.length) { |
|
|
return { |
|
|
return { |
|
|
currentValueInBaseCurrency: new Big(0), |
|
|
currentValueInBaseCurrency: new Big(0), |
|
|
|
|
|
errors: [], |
|
|
hasErrors: false, |
|
|
hasErrors: false, |
|
|
historicalData: [], |
|
|
historicalData: [], |
|
|
positions: [], |
|
|
positions: [], |
|
|
|
@ -1,12 +1,12 @@ |
|
|
{ |
|
|
{ |
|
|
"name": "ghostfolio", |
|
|
"name": "ghostfolio", |
|
|
"version": "2.126.0", |
|
|
"version": "2.126.1", |
|
|
"lockfileVersion": 3, |
|
|
"lockfileVersion": 3, |
|
|
"requires": true, |
|
|
"requires": true, |
|
|
"packages": { |
|
|
"packages": { |
|
|
"": { |
|
|
"": { |
|
|
"name": "ghostfolio", |
|
|
"name": "ghostfolio", |
|
|
"version": "2.126.0", |
|
|
"version": "2.126.1", |
|
|
"hasInstallScript": true, |
|
|
"hasInstallScript": true, |
|
|
"license": "AGPL-3.0", |
|
|
"license": "AGPL-3.0", |
|
|
"dependencies": { |
|
|
"dependencies": { |
|
|
|
@ -1,6 +1,6 @@ |
|
|
{ |
|
|
{ |
|
|
"name": "ghostfolio", |
|
|
"name": "ghostfolio", |
|
|
"version": "2.126.0", |
|
|
"version": "2.126.1", |
|
|
"homepage": "https://ghostfol.io", |
|
|
"homepage": "https://ghostfol.io", |
|
|
"license": "AGPL-3.0", |
|
|
"license": "AGPL-3.0", |
|
|
"repository": "https://github.com/ghostfolio/ghostfolio", |
|
|
"repository": "https://github.com/ghostfolio/ghostfolio", |
|
|