* Fixed an issue where when falling back to folder parsing, sometimes the folder name wouldn't parse well, like "Foo 50" which parses as "Foo". Now the fallback will check if we have a solid series parsed from filename before we attempt to parse a folder. * Ensure SortName is set during a scan loop even if locked and it's empty string. * Added some null checks for metadata update * Fixed a bug where Updating a series name with a name of an existing series wouldn't properly check for existing series. * Tweaked the logic of OnDeck to consider LastChapterCreated from all chapters in a series, not just those with progress. * Fixed a bug where the hamburger menu was still visible on login/registration page despite not functioning * Tweaked the logic of OnDeck to consider LastChapterCreated from all chapters in a series, not just those with progress. * Removed 2 unused packages from ui * Fixed some bugs around determining what the current installed version is in Announcements * Use AnyAsync for a query to improve performance * Fixed up some fallback code * Tests are finally fixed
26 lines
1.5 KiB
HTML
26 lines
1.5 KiB
HTML
<div class="changelog">
|
|
<p class="pb-2">If you do not see an <span class="badge bg-secondary">Installed</span> tag, you are on a nightly release. Only major versions will show as available.</p>
|
|
<ng-container *ngFor="let update of updates; let indx = index;">
|
|
<div class="card w-100 mb-2" style="width: 18rem;">
|
|
<div class="card-body">
|
|
<h4 class="card-title">{{update.updateTitle}}
|
|
<span class="badge bg-secondary" *ngIf="update.updateVersion === update.currentVersion">Installed</span>
|
|
<span class="badge bg-secondary" *ngIf="update.updateVersion > update.currentVersion">Available</span>
|
|
</h4>
|
|
<h6 class="card-subtitle mb-1 mt-1 text-muted">Published: {{update.publishDate | date: 'short'}}</h6>
|
|
|
|
|
|
<pre class="card-text update-body">
|
|
<app-read-more [text]="update.updateBody" [maxLength]="500"></app-read-more>
|
|
</pre>
|
|
<a *ngIf="!update.isDocker && update.updateVersion === update.currentVersion" href="{{update.updateUrl}}" class="btn disabled btn-{{indx === 0 ? 'primary' : 'secondary'}} float-end" target="_blank">Installed</a>
|
|
<a *ngIf="!update.isDocker && update.updateVersion !== update.currentVersion" href="{{update.updateUrl}}" class="btn btn-{{indx === 0 ? 'primary' : 'secondary'}} float-end" target="_blank">Download</a>
|
|
</div>
|
|
</div>
|
|
</ng-container>
|
|
</div>
|
|
|
|
|
|
<div class="spinner-border text-secondary" *ngIf="isLoading" role="status">
|
|
<span class="invisible">Loading...</span>
|
|
</div>
|