Browse Source

Merge branch 'main' into feature/add-platforms-concept-to-faq-page

pull/3549/head
Thomas Kaul 1 year ago
committed by GitHub
parent
commit
295d7a9b73
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 1110
      apps/api/src/assets/cryptocurrencies/cryptocurrencies.json
  3. 36
      apps/client/src/app/pages/resources/resources-page.html
  4. 1
      docker/docker-compose.build.yml
  5. 1
      docker/docker-compose.dev.yml
  6. 1
      docker/docker-compose.yml

4
CHANGELOG.md

@ -9,13 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added ### Added
- Added the _Crypto Coins Heatmap_ to the resources section
- Added the _Stock Heatmap_ to the resources section
- Extended the content of the _Self-Hosting_ section by the platforms concept on the Frequently Asked Questions (FAQ) page - Extended the content of the _Self-Hosting_ section by the platforms concept on the Frequently Asked Questions (FAQ) page
### Changed ### Changed
- Improved the allocations by ETF holding on the allocations page for the impersonation mode (experimental) - Improved the allocations by ETF holding on the allocations page for the impersonation mode (experimental)
- Improved the detection of REST APIs (`JSON`) used via the scraper configuration - Improved the detection of REST APIs (`JSON`) used via the scraper configuration
- Refreshed the cryptocurrencies list
- Refactored the thresholds of the rules in the _X-ray_ section - Refactored the thresholds of the rules in the _X-ray_ section
- Removed the obsolete `version` from the `docker-compose` files
- Upgraded `Nx` from version `19.2.2` to `19.4.0` - Upgraded `Nx` from version `19.2.2` to `19.4.0`
## 2.92.0 - 2024-06-30 ## 2.92.0 - 2024-06-30

1110
apps/api/src/assets/cryptocurrencies/cryptocurrencies.json

File diff suppressed because it is too large

36
apps/client/src/app/pages/resources/resources-page.html

@ -55,6 +55,22 @@
</div> </div>
<h2 class="h4 mb-3" i18n>Markets</h2> <h2 class="h4 mb-3" i18n>Markets</h2>
<div class="mb-5"> <div class="mb-5">
<div class="mb-4 media">
<div class="media-body">
<h3 class="h5 mt-0">Crypto Coins Heatmap</h3>
<div class="mb-1">
With the <i>Crypto Coins Heatmap</i> you can track the daily
market movements of cryptocurrencies as a visual snapshot.
</div>
<div>
<a
href="https://www.tradingview.com/heatmap/crypto"
target="_blank"
>Crypto Coins Heatmap →</a
>
</div>
</div>
</div>
<div class="mb-4 media"> <div class="mb-4 media">
<div class="media-body"> <div class="media-body">
<h3 class="h5 mt-0">Fear & Greed Index</h3> <h3 class="h5 mt-0">Fear & Greed Index</h3>
@ -73,10 +89,10 @@
</div> </div>
</div> </div>
<div class="media"> <div class="media">
<div class="media-body"> <div class="mb-4 media">
<h3 class="h5 mt-0">Inflation Chart</h3> <h3 class="h5 mt-0">Inflation Chart</h3>
<div class="mb-1"> <div class="mb-1">
Inflation Chart helps you find the intrinsic value of stock <i>Inflation Chart</i> helps you find the intrinsic value of stock
markets, stock prices, goods and services by adjusting them to the markets, stock prices, goods and services by adjusting them to the
amount of the money supply (M0, M1, M2) or price of other goods amount of the money supply (M0, M1, M2) or price of other goods
(food or oil). (food or oil).
@ -88,6 +104,22 @@
</div> </div>
</div> </div>
</div> </div>
<div class="media">
<div class="media-body">
<h3 class="h5 mt-0">Stock Heatmap</h3>
<div class="mb-1">
With the <i>Stock Heatmap</i> you can track the daily market
movements of stocks as a visual snapshot.
</div>
<div>
<a
href="https://www.tradingview.com/heatmap/stock"
target="_blank"
>Stock Heatmap →</a
>
</div>
</div>
</div>
</div> </div>
<h2 class="h4 mb-3" i18n>Glossary</h2> <h2 class="h4 mb-3" i18n>Glossary</h2>
<div> <div>

1
docker/docker-compose.build.yml

@ -1,4 +1,3 @@
version: '3.9'
services: services:
ghostfolio: ghostfolio:
build: ../ build: ../

1
docker/docker-compose.dev.yml

@ -1,4 +1,3 @@
version: '3.9'
services: services:
postgres: postgres:
image: postgres:15 image: postgres:15

1
docker/docker-compose.yml

@ -1,4 +1,3 @@
version: '3.9'
services: services:
ghostfolio: ghostfolio:
image: ghostfolio/ghostfolio:latest image: ghostfolio/ghostfolio:latest

Loading…
Cancel
Save