feat: added filename template option in settings

This commit is contained in:
2025-10-06 22:50:05 +05:30
parent 7193083b6b
commit e59a85d2b3
4 changed files with 75 additions and 5 deletions

View File

@@ -43,6 +43,7 @@ export interface Settings {
force_internet_protocol: string;
use_custom_commands: boolean;
custom_commands: CustomCommand[];
filename_template: string;
// extension settings
websocket_port: number;
}
@@ -52,4 +53,4 @@ export interface DownloadConfiguration {
embed_metadata: boolean | null;
embed_thumbnail: boolean | null;
custom_command: string | null;
}
}