You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
2.5 KiB
HTML
32 lines
2.5 KiB
HTML
<h4 style="position: relative" mat-dialog-title><ng-container i18n="About dialog title">About YoutubeDL-Material</ng-container>
|
|
<span class="logo-image">
|
|
<a [href]="projectLink" target="_blank">
|
|
<img style="width: 32px;" src="assets/images/GitHub-64px.png">
|
|
</a>
|
|
<img style="width: 32px; margin-left: 15px;" src="assets/images/logo_128px.png">
|
|
</span>
|
|
</h4>
|
|
<mat-dialog-content>
|
|
<div style="margin-bottom: 5px;">
|
|
<p>
|
|
<i>YoutubeDL-Material</i> <ng-container i18n="About first paragraph">is an open-source YouTube downloader built under Google's Material Design specifications. You can seamlessly download your favorite videos as video or audio files, and even subscribe to your favorite channels and playlists to keep updated with their new videos.</ng-container>
|
|
</p>
|
|
<p>
|
|
<i>YoutubeDL-Material</i> <ng-container i18n="About second paragraph">has some awesome features included! An extensive API, Docker support, and localization (translation) support. Read up on all the supported features by clicking on the GitHub icon above.</ng-container>
|
|
</p>
|
|
<mat-divider></mat-divider>
|
|
<h5 style="margin-top: 10px;">Installation details:</h5>
|
|
<p>
|
|
<ng-container i18n="Version label">Installed version:</ng-container> {{current_version_tag}} - <span style="display: inline-block" *ngIf="checking_for_updates"><mat-spinner class="version-spinner" [diameter]="22"></mat-spinner> <ng-container i18n="Checking for updates text">Checking for updates...</ng-container></span>
|
|
<mat-icon *ngIf="!checking_for_updates" class="version-checked-icon">done</mat-icon> <a *ngIf="!checking_for_updates && latestGithubRelease['tag_name'] !== current_version_tag" [href]="latestUpdateLink" target="_blank"><ng-container i18n="View latest update">Update available</ng-container> - {{latestGithubRelease['tag_name']}}</a>
|
|
<span *ngIf="!checking_for_updates && latestGithubRelease['tag_name'] === current_version_tag">You are up to date.</span>
|
|
</p>
|
|
<p>
|
|
<ng-container i18n="About bug prefix">Found a bug or have a suggestion?</ng-container> <a [href]="issuesLink" target="_blank"><ng-container i18n="About bug click here">Click here</ng-container></a> <ng-container i18n="About bug suffix">to create an issue!</ng-container>
|
|
</p>
|
|
</div>
|
|
</mat-dialog-content>
|
|
|
|
<mat-dialog-actions>
|
|
<button style="margin-bottom: 5px;" mat-stroked-button mat-dialog-close>Close</button>
|
|
</mat-dialog-actions> |