mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-09-01 05:02:36 +00:00
NEW - [Settings/Modules] Add an information/help button with module descriptions and links TWEAKS - [Radarr] Always show the amount of days content will be available instead of limiting it to only content in the next 30 days - [Settings] Moved "Backup & Restore" and "Logs" to "System" section - [Settings] Merged "Customization" and "Modules" sections into "Configuration" - [Settings/Sonarr] Removed the need to enable Sonarr to test the connection - [Settings/Tautulli] Removed the need to enable Tautulli to test the connection FIXES - [IAPs] Ensure all IAPs are marked as "consumed" - [Flutter] Updated packages - [Logging] Updated Sentry to v4 framework to improve capturing fatal/crashing bugs - [Settings/Logs] Hide exception and stack trace buttons when an error is not available - [Sonarr/History] Fixed history fetching the oldest entries, not the newest - [State] Correctly clear state when clearing LunaSea's configuration - [Tautulli/Activity] Fixed consistency of hardware transcoding indicator compared to the web UI - [UI/Divider] Fix consistency of divider width across regular and AMOLED dark theme
14 lines
430 B
Dart
14 lines
430 B
Dart
abstract class LunaModuleDatabase {
|
|
/// Register all adapters necessary for this module
|
|
void registerAdapters();
|
|
|
|
/// Export the current module's database into a [Map] object
|
|
Map<String, dynamic> export();
|
|
|
|
/// Receiving a map object, import a configuration
|
|
void import(Map<String, dynamic> config);
|
|
|
|
/// Return the Database enumerator value given the key
|
|
dynamic valueFromKey(String value);
|
|
}
|