* Updated readme with new host information and new feature site. * Implemented basic fit to screen splitting option for manga reader such that the reader will try to fit the whole cover on the screen via scaling it. Updated a bunch of defaults in the preferences to give a better experience for first installs. * Refactored the stat scheduling code slightly to clean it up and have better logging. * Replaced @import with @use to lower css bundling. * Changed up the defaults for the reading preferences to give a better experience. Fixed a duplicate render on automatic scaling due to emitting a valuechange with automatic scaling changing fit. Implemented basic form of fit to screen. Still needs some tweaking and optimization. * Update link to new feature server and update kavita homepage to use www. * Updated the serverInfo to match backend. Tweaked some of the css for the changelog * Added publish date for changelog * First page works except for tablet * I'm stumped, taking a break * Hide the arrow for nav events * Ensure specials in reading lists don't have their extensions visible * Testing out removing no-connection * Fixed a bug in infinite scroller where next chapter spacer when clicked would emit for prev chapter load. Fixed an issue where next/prev chapter loaders would execute when they shouldn't. * Fit Split is working in all cases as of this code. New optimization is still needed. * Fit to screen is now working well * Updated the bookmark effect to look much better * Updated new issue template to inform users to request features on our site. * Removed an empty migration
68 lines
No EOL
2.8 KiB
HTML
68 lines
No EOL
2.8 KiB
HTML
<div class="container-fluid">
|
|
|
|
<div class="float-right">
|
|
<div class="d-inline-block" ngbDropdown #myDrop="ngbDropdown">
|
|
<button class="btn btn-outline-primary mr-2" id="dropdownManual" ngbDropdownToggle>
|
|
<ng-container *ngIf="backupDBInProgress || clearCacheInProgress || isCheckingForUpdate || downloadLogsInProgress">
|
|
<span class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span>
|
|
<span class="sr-only">Loading...</span>
|
|
</ng-container>
|
|
Actions
|
|
</button>
|
|
<div ngbDropdownMenu aria-labelledby="dropdownManual">
|
|
<button ngbDropdownItem (click)="backupDB()" [disabled]="backupDBInProgress">
|
|
Backup Database
|
|
</button>
|
|
<button ngbDropdownItem (click)="clearCache()" [disabled]="clearCacheInProgress">
|
|
Clear Cache
|
|
</button>
|
|
<button ngbDropdownItem (click)="downloadLogs()" [disabled]="downloadLogsInProgress">
|
|
Download Logs
|
|
</button>
|
|
<button ngbDropdownItem (click)="checkForUpdates()">
|
|
Check for Updates
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<h3>About System</h3>
|
|
<hr/>
|
|
<div class="form-group" *ngIf="serverInfo">
|
|
<dl>
|
|
<dt>Version</dt>
|
|
<dd>{{serverInfo.kavitaVersion}}</dd>
|
|
|
|
<dt>Install ID</dt>
|
|
<dd>{{serverInfo.installId}}</dd>
|
|
</dl>
|
|
</div>
|
|
|
|
<h3>More Info</h3>
|
|
<hr/>
|
|
<div>
|
|
<div class="row">
|
|
<div class="col-4">Home page:</div>
|
|
<div class="col"><a href="https://www.kavitareader.com" target="_blank">kavitareader.com</a></div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-4">Wiki:</div>
|
|
<div class="col"><a href="https://wiki.kavitareader.com" target="_blank">wiki.kavitareader.com</a></div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-4">Discord:</div>
|
|
<div class="col"><a href="https://discord.gg/b52wT37kt7" target="_blank">discord.gg/b52wT37kt7</a></div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-4">Donations:</div>
|
|
<div class="col"><a href="https://opencollective.com/kavita" target="_blank">opencollective.com/kavita</a></div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-4">Source:</div>
|
|
<div class="col"><a href="https://github.com/Kareadita/Kavita" target="_blank">github.com/Kareadita/Kavita</a></div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-4">Feature Requests:</div>
|
|
<div class="col"><a href="https://feats.kavitareader.com" target="_blank">https://feats.kavitareader.com</a><br/>
|
|
</div>
|
|
</div> |