mirror of
https://gitlab.com/RemixDev/deemix-webui.git
synced 2025-01-01 12:26:01 +00:00
Added overwriteFile and saveDownloadQueue options
This commit is contained in:
parent
1bd7104c79
commit
5cf6c3a628
|
@ -730,6 +730,15 @@
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="input_group">
|
||||||
|
<p class="input_group_text">Should I overwrite the files?</p>
|
||||||
|
<select v-model="settings.overwriteFile">
|
||||||
|
<option value="y">Yes, overwrite the file</option>
|
||||||
|
<option value="n">No, don't overwrite the file</option>
|
||||||
|
<option value="t">Overwrite only the tags</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="settings-container">
|
<div class="settings-container">
|
||||||
<div class="settings-container__third settings-container__third--only-checkbox">
|
<div class="settings-container__third settings-container__third--only-checkbox">
|
||||||
<label class="with_checkbox">
|
<label class="with_checkbox">
|
||||||
|
@ -765,6 +774,10 @@
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<label class="with_checkbox">
|
||||||
|
<input type="checkbox" v-model="settings.saveDownloadQueue">
|
||||||
|
<span class="checkbox_text">Save download queue when closing the app</span>
|
||||||
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="settings-group">
|
<div class="settings-group">
|
||||||
|
@ -1206,4 +1219,4 @@
|
||||||
|
|
||||||
<script src="/public/js/bundle.js"></script>
|
<script src="/public/js/bundle.js"></script>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue