Polish 6 - The last Polish (#3591)

This commit is contained in:
Joe Milazzo 2025-03-05 17:23:19 -06:00 committed by GitHub
parent 4a4d59bc90
commit 9ad394c43a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 264 additions and 101 deletions

View file

@ -18,6 +18,7 @@ export interface UpdateVersionEvent {
developer: Array<string>;
api: Array<string>;
featureRequests: Array<string>;
knownIssues: Array<string>;
/**
* The part above the changelog part
*/

View file

@ -16,6 +16,7 @@
<app-update-section [items]="update.removed" [title]="t('removed')"></app-update-section>
<app-update-section [items]="update.api" [title]="t('api')"></app-update-section>
<app-update-section [items]="update.featureRequests" [title]="t('feature-requests')"></app-update-section>
<app-update-section [items]="update.knownIssues" [title]="t('known-issues')"></app-update-section>
</div>
@if (showExtras) {

View file

@ -11,6 +11,8 @@
<div class="modal-footer">
<a class="btn btn-icon" [href]="updateUrl" target="_blank" rel="noopener noreferrer">{{t('help')}}</a>
<button type="button" class="btn {{updateData.isDocker ? 'btn-primary' : 'btn-secondary'}}" (click)="close()">{{t('close')}}</button>
<a *ngIf="!updateData.isDocker" href="{{updateData.updateUrl}}" class="btn btn-primary" target="_blank" rel="noopener noreferrer" (click)="close()">{{t('download')}}</a>
@if(!updateData.isDocker) {
<a href="{{updateData.updateUrl}}" class="btn btn-primary" target="_blank" rel="noopener noreferrer" (click)="close()">{{t('download')}}</a>
}
</div>
</ng-container>

View file

@ -657,7 +657,8 @@
"api": "API",
"published-label": "Published: ",
"installed": "{{changelog.installed}}",
"feature-requests": "Feature Requests"
"feature-requests": "Feature Requests",
"known-issues": "Known Issues"
},
"new-version-modal": {
@ -669,6 +670,7 @@
"developer": "{{changelog.developer}}",
"theme": "{{changelog.theme}}",
"removed": "{{changelog.removed}}",
"known-issues": "{{changelog.known-issues}}",
"api": "{{changelog.api}}",
"close": "{{common.close}}",
"refresh": "Refresh"