mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-03 05:34:21 -04:00
* Added a new field to Library for showing Last Scan time for a library. Manage library page now shows last scan for each library. Tweaked the websocket code to make scan progress a bit more reliable. * Updated docnet to provide ARM support from our recent PR. Pi users can now have a version for PDF support out of the box. * Parser is now culture invariant to hopefully fix an issue on Italian systems not detecting . correctly * Added the ability for the collection detail page to update when a new series is added. * Fixed an issue where multiple chapters stacked in a volume and reading in incognito, wouldn't sort the chapters and would open the wrong one. * Code smell
16 lines
646 B
C#
16 lines
646 B
C#
namespace API.SignalR
|
|
{
|
|
public static class SignalREvents
|
|
{
|
|
public const string UpdateVersion = "UpdateVersion";
|
|
public const string ScanSeries = "ScanSeries";
|
|
public const string RefreshMetadata = "RefreshMetadata";
|
|
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";
|
|
}
|
|
}
|