mirror of
https://gitlab.com/RemixDev/deemix-webui.git
synced 2025-01-04 05:46:00 +00:00
Implemented the new options:
playlistFilenameTemplate removeDuplicateArtists albumVariousArtists
This commit is contained in:
parent
9cdad5d13d
commit
d3d9d7e2e2
1544
public/css/style.css
1544
public/css/style.css
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -858,17 +858,23 @@
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="settings-container__third settings-container__third--only-checkbox">
|
<div class="settings-container__third settings-container__third--only-checkbox">
|
||||||
<label class="with_checkbox">
|
|
||||||
<input type="checkbox" v-model="settings.createM3U8File">
|
|
||||||
<span class="checkbox_text">Create playlist file</span>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<label class="with_checkbox">
|
<label class="with_checkbox">
|
||||||
<input type="checkbox" v-model="settings.syncedLyrics">
|
<input type="checkbox" v-model="settings.syncedLyrics">
|
||||||
<span class="checkbox_text">Create .lyr files (Sync Lyrics)</span>
|
<span class="checkbox_text">Create .lyr files (Sync Lyrics)</span>
|
||||||
</label>
|
</label>
|
||||||
|
|
||||||
|
<label class="with_checkbox">
|
||||||
|
<input type="checkbox" v-model="settings.createM3U8File">
|
||||||
|
<span class="checkbox_text">Create playlist file</span>
|
||||||
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="input_group" v-if="settings.createM3U8File">
|
||||||
|
<p class="input_group_text">Playlist filename template</p>
|
||||||
|
<input type="text" v-model="settings.playlistFilenameTemplate">
|
||||||
|
</div>
|
||||||
|
|
||||||
<label class="with_checkbox">
|
<label class="with_checkbox">
|
||||||
<input type="checkbox" v-model="settings.saveDownloadQueue">
|
<input type="checkbox" v-model="settings.saveDownloadQueue">
|
||||||
<span class="checkbox_text">Save download queue when closing the app</span>
|
<span class="checkbox_text">Save download queue when closing the app</span>
|
||||||
|
@ -1062,9 +1068,19 @@
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<label class="with_checkbox">
|
||||||
|
<input type="checkbox" v-model="settings.albumVariousArtists">
|
||||||
|
<span class="checkbox_text">Keep "Various Artists" in the Album Artists</span>
|
||||||
|
</label>
|
||||||
|
|
||||||
<label class="with_checkbox">
|
<label class="with_checkbox">
|
||||||
<input type="checkbox" v-model="settings.removeAlbumVersion">
|
<input type="checkbox" v-model="settings.removeAlbumVersion">
|
||||||
<span class="checkbox_text">Remove album version from track title</span>
|
<span class="checkbox_text">Remove "album version" from track title</span>
|
||||||
|
</label>
|
||||||
|
|
||||||
|
<label class="with_checkbox">
|
||||||
|
<input type="checkbox" v-model="settings.removeDuplicateArtists">
|
||||||
|
<span class="checkbox_text">Remove combinations of artists</span>
|
||||||
</label>
|
</label>
|
||||||
|
|
||||||
<div class="input_group">
|
<div class="input_group">
|
||||||
|
|
28216
public/js/bundle.js
28216
public/js/bundle.js
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue