mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-03 05:34:21 -04:00
* Implemented ability to see downloads users are performing on the events widget. * Fixed a bug where version update task was calling wrong code * Fixed a bug where when checking for updates, the event wouldn't be pushed to server with correct name. Added update check to the event widget rather than opening a modal on the user. * Relaxed password requirements to only be 6-32 characters and inform user on register form about the requirements * Removed a ton of duplicate logic for series cards where the logic was already defined in action service * Fixed OPDS total items giving a rounded number rather than total items. * Fixed off by one issue on OPDS pagination
37 lines
1.5 KiB
C#
37 lines
1.5 KiB
C#
namespace API.SignalR
|
|
{
|
|
public static class SignalREvents
|
|
{
|
|
public const string UpdateAvailable = "UpdateAvailable";
|
|
public const string ScanSeries = "ScanSeries";
|
|
/// <summary>
|
|
/// Event during Refresh Metadata for cover image change
|
|
/// </summary>
|
|
public const string RefreshMetadata = "RefreshMetadata";
|
|
/// <summary>
|
|
/// Event sent out during Refresh Metadata for progress tracking
|
|
/// </summary>
|
|
public const string RefreshMetadataProgress = "RefreshMetadataProgress";
|
|
public const string ScanLibrary = "ScanLibrary";
|
|
public const string SeriesAdded = "SeriesAdded";
|
|
public const string SeriesRemoved = "SeriesRemoved";
|
|
public const string ScanLibraryProgress = "ScanLibraryProgress";
|
|
public const string OnlineUsers = "OnlineUsers";
|
|
public const string SeriesAddedToCollection = "SeriesAddedToCollection";
|
|
public const string ScanLibraryError = "ScanLibraryError";
|
|
/// <summary>
|
|
/// Event sent out during backing up the database
|
|
/// </summary>
|
|
public const string BackupDatabaseProgress = "BackupDatabaseProgress";
|
|
/// <summary>
|
|
/// Event sent out during cleaning up temp and cache folders
|
|
/// </summary>
|
|
public const string CleanupProgress = "CleanupProgress";
|
|
/// <summary>
|
|
/// Event sent out during downloading of files
|
|
/// </summary>
|
|
public const string DownloadProgress = "DownloadProgress";
|
|
|
|
}
|
|
}
|