diff --git a/CHANGELOG.md b/CHANGELOG.md index a3a88376f..97d9f06fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,15 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Changed + +- Refreshed the cryptocurrencies list + +## 1.277.0 - 2023-06-07 + ### Added - Added the investment streaks to the analysis page - Added support for a unit in the value component +- Added a semantic list structure to the header navigation - Added a default value for the `includeHistoricalData` attribute in the symbol data endpoint -### Changed +### Fixed -- Refreshed the cryptocurrencies list +- Fixed an issue with the date format parsing in the activities import ## 1.276.0 - 2023-06-03 diff --git a/apps/client/src/app/components/header/header.component.html b/apps/client/src/app/components/header/header.component.html index 2d3b1aee3..16ee7f62c 100644 --- a/apps/client/src/app/components/header/header.component.html +++ b/apps/client/src/app/components/header/header.component.html @@ -8,216 +8,238 @@ - Overview - Portfolio - Accounts - Admin Control - Resources - Pricing - About - - - - - -
-
- Overview - Portfolio - Accounts - My Ghostfolio - Admin Control -
- Resources - +
  • + Portfolio +
  • +
  • + Accounts +
  • +
  • + Admin Control +
  • +
  • + Resources +
  • +
  • Pricing - About Ghostfolio -
    - - + Pricing +
  • +
  • + About +
  • +
  • + + + + + +
    +
    + Overview + Portfolio + Accounts + My Ghostfolio + Admin Control +
    + Resources + Pricing + About Ghostfolio +
    + +
    +
  • + - Features - About - Pricing - Markets - - - Get started - + diff --git a/apps/client/src/app/services/import-activities.service.ts b/apps/client/src/app/services/import-activities.service.ts index 21ee38274..8e4d93342 100644 --- a/apps/client/src/app/services/import-activities.service.ts +++ b/apps/client/src/app/services/import-activities.service.ts @@ -223,16 +223,16 @@ export class ImportActivitiesService { for (const key of ImportActivitiesService.DATE_KEYS) { if (item[key]) { - if (isMatch(item[key], 'dd-MM-yyyy') && item[key].length === '10') { + if (isMatch(item[key], 'dd-MM-yyyy') && item[key].length === 10) { // Check length to only match yyyy (and not yy) date = parse(item[key], 'dd-MM-yyyy', new Date()).toISOString(); } else if ( isMatch(item[key], 'dd/MM/yyyy') && - item[key].length === '10' + item[key].length === 10 ) { // Check length to only match yyyy (and not yy) date = parse(item[key], 'dd/MM/yyyy', new Date()).toISOString(); - } else if (isMatch(item[key], 'yyyyMMdd') && item[key].length === '8') { + } else if (isMatch(item[key], 'yyyyMMdd') && item[key].length === 8) { // Check length to only match yyyy (and not yy) date = parse(item[key], 'yyyyMMdd', new Date()).toISOString(); } else { diff --git a/package.json b/package.json index 6bcb17f08..45e317528 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ghostfolio", - "version": "1.276.0", + "version": "1.277.0", "homepage": "https://ghostfol.io", "license": "AGPL-3.0", "scripts": {