Bugfix/misc cleanup (#745)
* Change update check to be between noon and 6pm. * Added a UI change that was missed * Fixed an issue on register user where input boxes were not styled correctly * Fixed renaming a series to an existing series name of a different format. * Change webtoon reader debug mode
This commit is contained in:
parent
46b2bebeb6
commit
dd4aedc323
10 changed files with 60 additions and 12 deletions
|
@ -4,26 +4,61 @@ namespace API.Entities.Enums
|
|||
{
|
||||
public enum ServerSettingKey
|
||||
{
|
||||
/// <summary>
|
||||
/// Cron format for how often full library scans are performed.
|
||||
/// </summary>
|
||||
[Description("TaskScan")]
|
||||
TaskScan = 0,
|
||||
/// <summary>
|
||||
/// Where files are cached. Not currently used.
|
||||
/// </summary>
|
||||
[Description("CacheDirectory")]
|
||||
CacheDirectory = 1,
|
||||
/// <summary>
|
||||
/// Cron format for how often backups are taken.
|
||||
/// </summary>
|
||||
[Description("TaskBackup")]
|
||||
TaskBackup = 2,
|
||||
/// <summary>
|
||||
/// Logging level for Server. Not managed in DB. Managed in appsettings.json and synced to DB.
|
||||
/// </summary>
|
||||
[Description("LoggingLevel")]
|
||||
LoggingLevel = 3,
|
||||
/// <summary>
|
||||
/// Port server listens on. Not managed in DB. Managed in appsettings.json and synced to DB.
|
||||
/// </summary>
|
||||
[Description("Port")]
|
||||
Port = 4,
|
||||
/// <summary>
|
||||
/// Where the backups are stored.
|
||||
/// </summary>
|
||||
[Description("BackupDirectory")]
|
||||
BackupDirectory = 5,
|
||||
/// <summary>
|
||||
/// Allow anonymous data to be reported to KavitaStats
|
||||
/// </summary>
|
||||
[Description("AllowStatCollection")]
|
||||
AllowStatCollection = 6,
|
||||
/// <summary>
|
||||
/// Is OPDS enabled for the server
|
||||
/// </summary>
|
||||
[Description("EnableOpds")]
|
||||
EnableOpds = 7,
|
||||
/// <summary>
|
||||
/// Is Authentication needed for non-admin accounts
|
||||
/// </summary>
|
||||
[Description("EnableAuthentication")]
|
||||
EnableAuthentication = 8,
|
||||
/// <summary>
|
||||
/// Base Url for the server. Not Implemented.
|
||||
/// </summary>
|
||||
[Description("BaseUrl")]
|
||||
BaseUrl = 9
|
||||
BaseUrl = 9,
|
||||
/// <summary>
|
||||
/// Represents this installation of Kavita. Is tied to Stat reporting but has no information about user or files.
|
||||
/// </summary>
|
||||
[Description("InstallId")]
|
||||
InstallId = 10
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@ namespace API.Entities
|
|||
/// </summary>
|
||||
public string SortName { get; set; }
|
||||
/// <summary>
|
||||
/// Name in Japanese. By default, will be same as Name.
|
||||
/// Name in original language (Japanese for Manga). By default, will be same as Name.
|
||||
/// </summary>
|
||||
public string LocalizedName { get; set; }
|
||||
/// <summary>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue