Browse Source

Merge branch 'main' into feature/increase-number-of-attempts-of-queue-jobs

pull/3376/head
Thomas Kaul 1 year ago
committed by GitHub
parent
commit
13fdc1bccc
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 2
      README.md
  3. 2
      apps/api/src/events/portfolio-changed.listener.ts
  4. 2
      apps/client/src/app/pages/about/overview/about-overview-page.html
  5. 6
      apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html
  6. 2
      package.json
  7. 8
      yarn.lock

1
CHANGELOG.md

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### Changed
- Increased the number of attempts of queue jobs from `10` to `12` (fail later) - Increased the number of attempts of queue jobs from `10` to `12` (fail later)
- Upgraded `ionicons` from version `7.3.0` to `7.4.0`
### Fixed ### Fixed

2
README.md

@ -142,7 +142,7 @@ docker compose --env-file ./.env -f docker/docker-compose.build.yml up -d
### Home Server Systems (Community) ### Home Server Systems (Community)
Ghostfolio is available for various home server systems, including [CasaOS](https://github.com/bigbeartechworld/big-bear-casaos), Home Assistant, [Runtipi](https://www.runtipi.io/docs/apps-available), [TrueCharts](https://truecharts.org/charts/stable/ghostfolio), [Umbrel](https://apps.umbrel.com/app/ghostfolio), and [Unraid](https://unraid.net/community/apps?q=ghostfolio). Ghostfolio is available for various home server systems, including [CasaOS](https://github.com/bigbeartechworld/big-bear-casaos), [Home Assistant](https://github.com/lildude/ha-addon-ghostfolio), [Runtipi](https://www.runtipi.io/docs/apps-available), [TrueCharts](https://truecharts.org/charts/stable/ghostfolio), [Umbrel](https://apps.umbrel.com/app/ghostfolio), and [Unraid](https://unraid.net/community/apps?q=ghostfolio).
## Development ## Development

2
apps/api/src/events/portfolio-changed.listener.ts

@ -12,7 +12,7 @@ export class PortfolioChangedListener {
@OnEvent(PortfolioChangedEvent.getName()) @OnEvent(PortfolioChangedEvent.getName())
handlePortfolioChangedEvent(event: PortfolioChangedEvent) { handlePortfolioChangedEvent(event: PortfolioChangedEvent) {
Logger.log( Logger.log(
`Portfolio of user with id ${event.getUserId()} has changed`, `Portfolio of user '${event.getUserId()}' has changed`,
'PortfolioChangedListener' 'PortfolioChangedListener'
); );

2
apps/client/src/app/pages/about/overview/about-overview-page.html

@ -77,7 +77,7 @@
mat-icon-button mat-icon-button
title="Follow Ghostfolio on X (formerly Twitter)" title="Follow Ghostfolio on X (formerly Twitter)"
> >
<span class="line-height-1 text-center w-100">𝕏</span> <ion-icon name="logo-x" />
</a> </a>
<a <a
*ngIf="user?.subscription?.type === 'Premium'" *ngIf="user?.subscription?.type === 'Premium'"

6
apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html

@ -30,8 +30,10 @@
systems, including systems, including
<a href="https://github.com/bigbeartechworld/big-bear-casaos" <a href="https://github.com/bigbeartechworld/big-bear-casaos"
>CasaOS</a >CasaOS</a
>, Home Assistant, >,
<a href="https://www.runtipi.io/docs/apps-available">Runtipi</a>, <a href="https://github.com/lildude/ha-addon-ghostfolio"
>Home Assistant</a
>, <a href="https://www.runtipi.io/docs/apps-available">Runtipi</a>,
<a href="https://truecharts.org/charts/stable/ghostfolio" <a href="https://truecharts.org/charts/stable/ghostfolio"
>TrueCharts</a >TrueCharts</a
>, <a href="https://apps.umbrel.com/app/ghostfolio">Umbrel</a>, and >, <a href="https://apps.umbrel.com/app/ghostfolio">Umbrel</a>, and

2
package.json

@ -112,7 +112,7 @@
"got": "11.8.6", "got": "11.8.6",
"helmet": "7.0.0", "helmet": "7.0.0",
"http-status-codes": "2.3.0", "http-status-codes": "2.3.0",
"ionicons": "7.3.0", "ionicons": "7.4.0",
"jsonpath": "1.1.1", "jsonpath": "1.1.1",
"lodash": "4.17.21", "lodash": "4.17.21",
"marked": "9.1.6", "marked": "9.1.6",

8
yarn.lock

@ -13104,10 +13104,10 @@ invariant@^2.2.4:
dependencies: dependencies:
loose-envify "^1.0.0" loose-envify "^1.0.0"
ionicons@7.3.0: ionicons@7.4.0:
version "7.3.0" version "7.4.0"
resolved "https://registry.yarnpkg.com/ionicons/-/ionicons-7.3.0.tgz#d2385e87dbe6a8c79fd44fb2e7c87b0de4a2cbcb" resolved "https://registry.yarnpkg.com/ionicons/-/ionicons-7.4.0.tgz#9c285aaa8089befbd6c5a89ae13292d364cd9ace"
integrity sha512-l9quySYi+o4T6mFzhKRyU/1nKc2Zs0zxs7jWcq9iVRhRPQondV11jYqLTed0lVVXHfGrBCfnedKl9D6BCnA1UQ== integrity sha512-ZK94MMqgzMCPPMhmk8Ouu6goyVHFIlw/ACP6oe3FrikcI0N7CX0xcwVaEbUc0G/v3W0shI93vo+9ve/KpvcNhQ==
dependencies: dependencies:
"@stencil/core" "^4.0.3" "@stencil/core" "^4.0.3"

Loading…
Cancel
Save