Browse Source

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

pull/5650/head
KenTandrian 2 days ago
parent
commit
3a2cf765cd
  1. 5
      CHANGELOG.md
  2. 362
      apps/api/src/assets/cryptocurrencies/cryptocurrencies.json
  3. 2
      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 - 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 ## 2.213.0 - 2025-10-30
### Added ### Added

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

File diff suppressed because it is too large

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

@ -202,6 +202,7 @@
} }
</div> </div>
@if (user?.subscription?.type !== 'Premium') {
<div class="row"> <div class="row">
<div class="col-12"> <div class="col-12">
<h2 class="h4 mb-3">Sponsors</h2> <h2 class="h4 mb-3">Sponsors</h2>
@ -223,4 +224,5 @@
</div> </div>
</div> </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": [ "data": [
{ {
"name": "Activepieces", "name": "Activepieces",
@ -16,6 +16,11 @@
"description": "Argos provides the developer tools to debug tests and detect visual regressions.", "description": "Argos provides the developer tools to debug tests and detect visual regressions.",
"href": "https://argos-ci.com" "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", "name": "Cal.com",
"description": "Cal.com is a scheduling tool that helps you schedule meetings without the back-and-forth emails.", "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.", "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" "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", "name": "KeepHQ",
"description": "Keep is an open-source AIOps (AI for IT operations) platform", "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)) { @if (canClickActivity(element)) {
<button mat-menu-item (click)="onClickActivity(element)"> <button mat-menu-item (click)="onClickActivity(element)">
<span class="align-items-center d-flex"> <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 i18n>View Holding</span>
</span> </span>
</button> </button>

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

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

Loading…
Cancel
Save