Browse Source

Merge remote-tracking branch 'origin/main' into feature/extend-holdings-endpoint-for-cash

pull/5650/head
KenTandrian 1 day ago
parent
commit
3a2cf765cd
  1. 5
      CHANGELOG.md
  2. 362
      apps/api/src/assets/cryptocurrencies/cryptocurrencies.json
  3. 40
      apps/client/src/app/pages/about/overview/about-overview-page.html
  4. 12
      apps/client/src/assets/oss-friends.json
  5. 2
      libs/ui/src/lib/activities-table/activities-table.component.html
  6. 8
      libs/ui/src/lib/activities-table/activities-table.component.ts

5
CHANGELOG.md

@ -11,6 +11,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Extended the holdings endpoint to include the performance with currency effect for cash
### Changed
- Improved the icon of the _View Holding_ menu item in the activities table
- Refreshed the cryptocurrencies list
## 2.213.0 - 2025-10-30
### Added

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

File diff suppressed because it is too large

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

@ -202,25 +202,27 @@
}
</div>
<div class="row">
<div class="col-12">
<h2 class="h4 mb-3">Sponsors</h2>
<div class="text-center">
<small>Browser testing via</small>
<br />
<a
href="https://www.lambdatest.com?utm_medium=sponsor&utm_source=ghostfolio"
target="_blank"
title="LambdaTest - AI Powered Testing Tool"
>
<img
alt="LambdaTest Logo"
height="45"
src="../assets/images/sponsors/logo-lambdatest.png"
width="250"
/>
</a>
@if (user?.subscription?.type !== 'Premium') {
<div class="row">
<div class="col-12">
<h2 class="h4 mb-3">Sponsors</h2>
<div class="text-center">
<small>Browser testing via</small>
<br />
<a
href="https://www.lambdatest.com?utm_medium=sponsor&utm_source=ghostfolio"
target="_blank"
title="LambdaTest - AI Powered Testing Tool"
>
<img
alt="LambdaTest Logo"
height="45"
src="../assets/images/sponsors/logo-lambdatest.png"
width="250"
/>
</a>
</div>
</div>
</div>
</div>
}
</div>

12
apps/client/src/assets/oss-friends.json

@ -1,5 +1,5 @@
{
"createdAt": "2025-09-17T00:00:00.000Z",
"createdAt": "2025-10-31T00:00:00.000Z",
"data": [
{
"name": "Activepieces",
@ -16,6 +16,11 @@
"description": "Argos provides the developer tools to debug tests and detect visual regressions.",
"href": "https://argos-ci.com"
},
{
"name": "Bifrost",
"description": "Fastest LLM gateway with adaptive load balancer, cluster mode, guardrails, 1000+ models support & <100 µs overhead at 5k RPS.",
"href": "https://www.getmaxim.ai/bifrost"
},
{
"name": "Cal.com",
"description": "Cal.com is a scheduling tool that helps you schedule meetings without the back-and-forth emails.",
@ -56,11 +61,6 @@
"description": "Inbox Zero makes it easy to clean up your inbox and reach inbox zero fast. It provides bulk newsletter unsubscribe, cold email blocking, email analytics, and AI automations.",
"href": "https://getinboxzero.com"
},
{
"name": "Infisical",
"description": "Open source, end-to-end encrypted platform that lets you securely manage secrets and configs across your team, devices, and infrastructure.",
"href": "https://infisical.com"
},
{
"name": "KeepHQ",
"description": "Keep is an open-source AIOps (AI for IT operations) platform",

2
libs/ui/src/lib/activities-table/activities-table.component.html

@ -440,7 +440,7 @@
@if (canClickActivity(element)) {
<button mat-menu-item (click)="onClickActivity(element)">
<span class="align-items-center d-flex">
<ion-icon class="mr-2" name="wallet-outline" />
<ion-icon class="mr-2" name="tablet-landscape-outline" />
<span i18n>View Holding</span>
</span>
</button>

8
libs/ui/src/lib/activities-table/activities-table.component.ts

@ -56,8 +56,8 @@ import {
documentTextOutline,
ellipsisHorizontal,
ellipsisVertical,
trashOutline,
walletOutline
tabletLandscapeOutline,
trashOutline
} from 'ionicons/icons';
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader';
import { Subject, Subscription, takeUntil } from 'rxjs';
@ -154,8 +154,8 @@ export class GfActivitiesTableComponent
documentTextOutline,
ellipsisHorizontal,
ellipsisVertical,
trashOutline,
walletOutline
tabletLandscapeOutline,
trashOutline
});
}

Loading…
Cancel
Save