mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 12:42:34 +00:00
NEW - [Home/Calendar] New "schedule" view to view all days as one list - [Home/Modules] Option to use module "brand" colours or the LunaSea list colours - [Search] Option to hide adult categories - [-arr/Catalogue] Ability to sort by date added - [-arr/Search] Show the indexer/tracker on the collapsed tile TWEAKS - [Development] Updated Flutter packages FIXES - Multiple smaller crash/error fixes Thanks to @lightglitch on GitHub for implementing the schedule calendar mode!
17 lines
389 B
Dart
17 lines
389 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:lunasea/core.dart';
|
|
|
|
class NZBGetConstants {
|
|
NZBGetConstants._();
|
|
|
|
static const String MODULE_KEY = 'nzbget';
|
|
|
|
static const Map MODULE_MAP = {
|
|
'name': 'NZBGet',
|
|
'desc': 'Manage Usenet Downloads',
|
|
'icon': CustomIcons.nzbget,
|
|
'route': '/nzbget',
|
|
'color': Color(0xFF42D535),
|
|
};
|
|
}
|