Browse Source
Merge branch 'main' into task/improve-account-name-display-in-accounts-table
pull/7044/head
Thomas Kaul
3 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with
12 additions and
12 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/about/overview/about-overview-page.html
-
apps/client/src/app/pages/faq/overview/faq-overview-page.html
-
apps/client/src/app/pages/faq/saas/saas-page.html
-
apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html
-
apps/client/src/locales/messages.de.xlf
-
libs/ui/src/lib/activities-table/activities-table.component.html
|
|
|
@ -11,7 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Improved the styling of the checkboxes to consistently use the primary color in their states |
|
|
|
- Improved the account name display in the accounts table |
|
|
|
- Improved the name display in the activities table |
|
|
|
- Improved the user id display in the users table of the admin control panel |
|
|
|
- Improved the language localization for German (`de`) |
|
|
|
|
|
|
|
## 3.11.0 - 2026-06-14 |
|
|
|
|
|
|
|
|
|
|
|
@ -94,7 +94,7 @@ |
|
|
|
<ng-container i18n>or start a discussion at</ng-container> |
|
|
|
<ng-container> </ng-container> |
|
|
|
<a |
|
|
|
href="https://github.com/ghostfolio/ghostfolio" |
|
|
|
href="https://github.com/ghostfolio/ghostfolio/discussions" |
|
|
|
i18n-title |
|
|
|
title="Find Ghostfolio on GitHub" |
|
|
|
>GitHub</a |
|
|
|
|
|
|
|
@ -193,7 +193,7 @@ |
|
|
|
} |
|
|
|
or start a discussion at |
|
|
|
<a |
|
|
|
href="https://github.com/ghostfolio/ghostfolio" |
|
|
|
href="https://github.com/ghostfolio/ghostfolio/discussions" |
|
|
|
title="Find Ghostfolio on GitHub" |
|
|
|
>GitHub</a |
|
|
|
>.</mat-card-content |
|
|
|
|
|
|
|
@ -186,7 +186,7 @@ |
|
|
|
} |
|
|
|
or start a discussion at |
|
|
|
<a |
|
|
|
href="https://github.com/ghostfolio/ghostfolio" |
|
|
|
href="https://github.com/ghostfolio/ghostfolio/discussions" |
|
|
|
title="Find Ghostfolio on GitHub" |
|
|
|
>GitHub</a |
|
|
|
>.</mat-card-content |
|
|
|
|
|
|
|
@ -294,7 +294,7 @@ |
|
|
|
> |
|
|
|
or start a discussion at |
|
|
|
<a |
|
|
|
href="https://github.com/ghostfolio/ghostfolio" |
|
|
|
href="https://github.com/ghostfolio/ghostfolio/discussions" |
|
|
|
title="Find Ghostfolio on GitHub" |
|
|
|
>GitHub</a |
|
|
|
>.</mat-card-content |
|
|
|
|
|
|
|
@ -2143,7 +2143,7 @@ |
|
|
|
</trans-unit> |
|
|
|
<trans-unit id="7500665368930738879" datatype="html"> |
|
|
|
<source>or start a discussion at</source> |
|
|
|
<target state="translated">oder beginne eine Diskussion unter</target> |
|
|
|
<target state="translated">oder beginne eine Diskussion bei</target> |
|
|
|
<context-group purpose="location"> |
|
|
|
<context context-type="sourcefile">apps/client/src/app/pages/about/overview/about-overview-page.html</context> |
|
|
|
<context context-type="linenumber">94</context> |
|
|
|
|
|
|
|
@ -161,13 +161,11 @@ |
|
|
|
<ng-container i18n>Name</ng-container> |
|
|
|
</th> |
|
|
|
<td *matCellDef="let element" class="px-1" mat-cell> |
|
|
|
<div class="align-items-center d-flex line-height-1"> |
|
|
|
<div> |
|
|
|
<span class="text-truncate">{{ element.SymbolProfile?.name }}</span> |
|
|
|
@if (element.isDraft) { |
|
|
|
<span class="badge badge-secondary ml-1" i18n>Draft</span> |
|
|
|
} |
|
|
|
</div> |
|
|
|
<div class="align-items-center d-flex line-height-1 text-nowrap"> |
|
|
|
<span class="text-truncate">{{ element.SymbolProfile?.name }}</span> |
|
|
|
@if (element.isDraft) { |
|
|
|
<span class="badge badge-secondary ml-1" i18n>Draft</span> |
|
|
|
} |
|
|
|
</div> |
|
|
|
@if ( |
|
|
|
element.SymbolProfile?.dataSource !== 'MANUAL' && |
|
|
|
|