cleanup 2

This commit is contained in:
2025-10-05 22:22:04 +02:00
parent fe2df1514c
commit 85f2d2c6f7
32 changed files with 10140 additions and 11824 deletions

BIN
data/aniworld.db Normal file

Binary file not shown.

BIN
data/cache.db Normal file

Binary file not shown.

49
data/config.json Normal file
View File

@@ -0,0 +1,49 @@
{
"security": {
"master_password_hash": "1353f6d9db7090c302864c2d6437dc11cc96cd66d59d7737d1b345603fdbdfda",
"salt": "a25e23440d681cef2d75c0adb6de0913359a1d8b9f98f9747fc75f53c79c4bd4",
"session_timeout_hours": 24,
"max_failed_attempts": 5,
"lockout_duration_minutes": 30
},
"anime": {
"directory": "\\\\sshfs.r\\ubuntu@192.168.178.43\\media\\serien\\Serien",
"download_threads": 3,
"download_speed_limit": null,
"auto_rescan_time": "03:00",
"auto_download_after_rescan": false
},
"logging": {
"level": "INFO",
"enable_console_logging": true,
"enable_console_progress": false,
"enable_fail2ban_logging": true,
"log_file": "aniworld.log",
"max_log_size_mb": 10,
"log_backup_count": 5
},
"providers": {
"default_provider": "aniworld.to",
"preferred_language": "German Dub",
"fallback_providers": [
"aniworld.to"
],
"provider_timeout": 30,
"retry_attempts": 3,
"provider_settings": {
"aniworld.to": {
"enabled": true,
"priority": 1,
"quality_preference": "720p"
}
}
},
"advanced": {
"max_concurrent_downloads": 3,
"download_buffer_size": 8192,
"connection_timeout": 30,
"read_timeout": 300,
"enable_debug_mode": false,
"cache_duration_minutes": 60
}
}

View File

@@ -0,0 +1,48 @@
{
"ui": {
"theme": "auto",
"density": "comfortable",
"language": "en",
"animations_enabled": true,
"sidebar_collapsed": false,
"grid_view": true,
"items_per_page": 20
},
"downloads": {
"auto_download": false,
"download_quality": "best",
"concurrent_downloads": 3,
"retry_failed": true,
"notification_sound": true,
"auto_organize": true
},
"notifications": {
"browser_notifications": true,
"email_notifications": false,
"webhook_notifications": false,
"notification_types": {
"download_complete": true,
"download_error": true,
"series_updated": false,
"system_alerts": true
}
},
"keyboard_shortcuts": {
"enabled": true,
"shortcuts": {
"search": "ctrl+f",
"download": "ctrl+d",
"refresh": "f5",
"select_all": "ctrl+a",
"help": "f1",
"settings": "ctrl+comma"
}
},
"advanced": {
"debug_mode": false,
"performance_mode": false,
"cache_enabled": true,
"auto_backup": true,
"log_level": "info"
}
}