
* Updated some signatures to avoid a ToArray() within a loop. * Use UpdateSeries directly when adding new series, rather than a modified version for new series only. * Refactored some messages for scanner loop to reduce duplicate code and write messages more clear. Hooked in a RefreshMetadataProgress event (no UI changes). * Fixed a bug on docker where backup service was using different logic than non-docker, which isn't needed after config change last release. * Allow user to make more than 1 backup per day * Implemented a select all checkbox for library access modal
23 lines
1,022 B
C#
23 lines
1,022 B
C#
namespace API.SignalR
|
|
{
|
|
public static class SignalREvents
|
|
{
|
|
public const string UpdateVersion = "UpdateVersion";
|
|
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";
|
|
}
|
|
}
|