mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
* 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
73 lines
2.9 KiB
C#
73 lines
2.9 KiB
C#
using API.Entities.Enums;
|
|
|
|
namespace API.Entities
|
|
{
|
|
public class AppUserPreferences
|
|
{
|
|
public int Id { get; set; }
|
|
/// <summary>
|
|
/// Manga Reader Option: What direction should the next/prev page buttons go
|
|
/// </summary>
|
|
public ReadingDirection ReadingDirection { get; set; } = ReadingDirection.LeftToRight;
|
|
/// <summary>
|
|
/// Manga Reader Option: How should the image be scaled to screen
|
|
/// </summary>
|
|
public ScalingOption ScalingOption { get; set; } = ScalingOption.Automatic;
|
|
/// <summary>
|
|
/// Manga Reader Option: Which side of a split image should we show first
|
|
/// </summary>
|
|
public PageSplitOption PageSplitOption { get; set; } = PageSplitOption.FitSplit;
|
|
/// <summary>
|
|
/// Manga Reader Option: How the manga reader should perform paging or reading of the file
|
|
/// <example>
|
|
/// Webtoon uses scrolling to page, MANGA_LR uses paging by clicking left/right side of reader, MANGA_UD uses paging
|
|
/// by clicking top/bottom sides of reader.
|
|
/// </example>
|
|
/// </summary>
|
|
public ReaderMode ReaderMode { get; set; }
|
|
|
|
/// <summary>
|
|
/// Manga Reader Option: Allow the menu to close after 6 seconds without interaction
|
|
/// </summary>
|
|
public bool AutoCloseMenu { get; set; } = true;
|
|
/// <summary>
|
|
/// Book Reader Option: Should the background color be dark
|
|
/// </summary>
|
|
public bool BookReaderDarkMode { get; set; } = true;
|
|
/// <summary>
|
|
/// Book Reader Option: Override extra Margin
|
|
/// </summary>
|
|
public int BookReaderMargin { get; set; } = 15;
|
|
/// <summary>
|
|
/// Book Reader Option: Override line-height
|
|
/// </summary>
|
|
public int BookReaderLineSpacing { get; set; } = 100;
|
|
/// <summary>
|
|
/// Book Reader Option: Override font size
|
|
/// </summary>
|
|
public int BookReaderFontSize { get; set; } = 100;
|
|
/// <summary>
|
|
/// Book Reader Option: Maps to the default Kavita font-family (inherit) or an override
|
|
/// </summary>
|
|
public string BookReaderFontFamily { get; set; } = "default";
|
|
/// <summary>
|
|
/// Book Reader Option: Allows tapping on side of screens to paginate
|
|
/// </summary>
|
|
public bool BookReaderTapToPaginate { get; set; } = false;
|
|
/// <summary>
|
|
/// Book Reader Option: What direction should the next/prev page buttons go
|
|
/// </summary>
|
|
public ReadingDirection BookReaderReadingDirection { get; set; } = ReadingDirection.LeftToRight;
|
|
|
|
/// <summary>
|
|
/// UI Site Global Setting: Whether the UI should render in Dark mode or not.
|
|
/// </summary>
|
|
public bool SiteDarkMode { get; set; } = true;
|
|
|
|
|
|
|
|
public AppUser AppUser { get; set; }
|
|
public int AppUserId { get; set; }
|
|
}
|
|
}
|