From 9ea8b639f0033346741f9b5b672c8d1cbe63e5a5 Mon Sep 17 00:00:00 2001 From: arabcoders Date: Sat, 15 Nov 2025 22:04:45 +0300 Subject: [PATCH] Refactor: Add --no-continue as toggle option --- ui/app/components/NewDownload.vue | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/ui/app/components/NewDownload.vue b/ui/app/components/NewDownload.vue index a66afaf7..17c7377e 100644 --- a/ui/app/components/NewDownload.vue +++ b/ui/app/components/NewDownload.vue @@ -88,20 +88,24 @@
-
- +
+
-
+
+ :disabled="!socket.isConnected || addInProgress" description="Download automatically." /> +
+ +
+
- @@ -284,7 +288,7 @@ const showFields = ref(false) const showOptions = ref(false) const showTestResults = ref(false) const testResultsData = ref(null) -const dlFieldsExtra = ['--no-download-archive'] +const dlFieldsExtra = ['--no-download-archive', '--no-continue'] const ytDlpOpt = ref([]) const cookiesDropzoneRef = ref | null>(null)