Polish 6 - The last Polish (#3591)
This commit is contained in:
parent
4a4d59bc90
commit
9ad394c43a
13 changed files with 264 additions and 101 deletions
|
|
@ -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
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue