Browse Source

Merge branch 'main' into feature/improve-meta-data-in-index.html

pull/5318/head
Thomas Kaul 3 weeks ago
committed by GitHub
parent
commit
1d6b118ed6
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 3
      CHANGELOG.md
  2. 2
      DEVELOPMENT.md
  3. 4
      apps/client/src/app/components/header/header.component.html
  4. 2
      package-lock.json
  5. 4
      package.json

3
CHANGELOG.md

@ -10,7 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### Changed
- Improved the meta data in `html` files - 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 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.188.0 - 2025-08-02

2
DEVELOPMENT.md

@ -5,7 +5,7 @@
### Prerequisites ### Prerequisites
- [Docker](https://www.docker.com/products/docker-desktop) - [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) - 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`) - 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> </a>
</div> </div>
<span class="gf-spacer"></span> <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"> <li class="list-inline-item">
<a <a
class="d-none d-sm-block" class="d-none d-sm-block"
@ -347,7 +347,7 @@
</a> </a>
</div> </div>
<span class="gf-spacer"></span> <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"> <li class="list-inline-item">
<a <a
class="d-none d-sm-block" class="d-none d-sm-block"

2
package-lock.json

@ -163,7 +163,7 @@
"webpack-bundle-analyzer": "4.10.2" "webpack-bundle-analyzer": "4.10.2"
}, },
"engines": { "engines": {
"node": ">=22" "node": ">=22.18.0"
} }
}, },
"node_modules/@adobe/css-tools": { "node_modules/@adobe/css-tools": {

4
package.json

@ -209,9 +209,9 @@
"webpack-bundle-analyzer": "4.10.2" "webpack-bundle-analyzer": "4.10.2"
}, },
"engines": { "engines": {
"node": ">=22" "node": ">=22.18.0"
}, },
"prisma": { "prisma": {
"seed": "npx ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts" "seed": "node prisma/seed.ts"
} }
} }

Loading…
Cancel
Save