Browse Source

Merge branch 'main' into feature/extend-activities-import-by-tags

pull/5287/head
Attila Cseh 2 weeks ago
committed by GitHub
parent
commit
999077e9c9
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 9
      CHANGELOG.md
  2. 2
      DEVELOPMENT.md
  3. 4
      apps/client/src/app/components/header/header.component.html
  4. 14
      apps/client/src/index.html
  5. 6
      package-lock.json
  6. 6
      package.json

9
CHANGELOG.md

@ -10,7 +10,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Extended the import functionality by tags
## 2.189.0 - 2025-08-05
### Changed
- Improved the meta data in `html` files
- Removed `ts-node` from the database seeding process
- Improved the language localization for Catalan (`ca`)
- Improved the language localization for German (`de`)
- Upgraded the `Node.js` engine from version `>=22` to `>=22.18.0` (`package.json`)
## 2.188.0 - 2025-08-02

2
DEVELOPMENT.md

@ -5,7 +5,7 @@
### Prerequisites
- [Docker](https://www.docker.com/products/docker-desktop)
- [Node.js](https://nodejs.org/en/download) (version 22+)
- [Node.js](https://nodejs.org/en/download) (version `>=22.18.0`)
- Create a local copy of this Git repository (clone)
- Copy the file `.env.dev` to `.env` and populate it with your data (`cp .env.dev .env`)

4
apps/client/src/app/components/header/header.component.html

@ -12,7 +12,7 @@
</a>
</div>
<span class="gf-spacer"></span>
<ul class="alig-items-center d-flex list-inline m-0 px-2">
<ul class="align-items-center d-flex list-inline m-0 px-2">
<li class="list-inline-item">
<a
class="d-none d-sm-block"
@ -347,7 +347,7 @@
</a>
</div>
<span class="gf-spacer"></span>
<ul class="alig-items-center d-flex list-inline m-0 px-2">
<ul class="align-items-center d-flex list-inline m-0 px-2">
<li class="list-inline-item">
<a
class="d-none d-sm-block"

14
apps/client/src/index.html

@ -9,10 +9,7 @@
<meta content="${keywords}" name="keywords" />
<meta content="yes" name="mobile-web-app-capable" />
<meta content="summary_large_image" name="twitter:card" />
<meta
content="Ghostfolio is a personal finance dashboard to keep track of your assets like stocks, ETFs or cryptocurrencies"
name="twitter:description"
/>
<meta content="${description}" name="twitter:description" />
<meta content="${rootUrl}/${featureGraphicPath}" name="twitter:image" />
<meta content="${title}" name="twitter:title" />
<meta
@ -20,13 +17,14 @@
name="viewport"
/>
<meta content="#FFFFFF" name="theme-color" />
<meta content="" property="og:description" />
<meta content="${description}" property="og:description" />
<meta content="${rootUrl}/${featureGraphicPath}" property="og:image" />
<meta content="${languageCode}" property="og:locale" />
<meta content="${title}" property="og:site_name" />
<meta content="${title}" property="og:title" />
<meta content="website" property="og:type" />
<meta content="${rootUrl}${path}" property="og:url" />
<meta content="${rootUrl}/${featureGraphicPath}" property="og:image" />
<meta content="${currentDate}T00:00:00+00:00" property="og:updated_time" />
<meta content="${title}" property="og:site_name" />
<meta content="${rootUrl}${path}" property="og:url" />
<link
href="../assets/apple-touch-icon.png"

6
package-lock.json

@ -1,12 +1,12 @@
{
"name": "ghostfolio",
"version": "2.188.0",
"version": "2.189.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "ghostfolio",
"version": "2.188.0",
"version": "2.189.0",
"hasInstallScript": true,
"license": "AGPL-3.0",
"dependencies": {
@ -163,7 +163,7 @@
"webpack-bundle-analyzer": "4.10.2"
},
"engines": {
"node": ">=22"
"node": ">=22.18.0"
}
},
"node_modules/@adobe/css-tools": {

6
package.json

@ -1,6 +1,6 @@
{
"name": "ghostfolio",
"version": "2.188.0",
"version": "2.189.0",
"homepage": "https://ghostfol.io",
"license": "AGPL-3.0",
"repository": "https://github.com/ghostfolio/ghostfolio",
@ -209,9 +209,9 @@
"webpack-bundle-analyzer": "4.10.2"
},
"engines": {
"node": ">=22"
"node": ">=22.18.0"
},
"prisma": {
"seed": "npx ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
"seed": "node prisma/seed.ts"
}
}

Loading…
Cancel
Save