Implemented the new options:

playlistFilenameTemplate
removeDuplicateArtists
albumVariousArtists
This commit is contained in:
RemixDev 2020-06-10 22:14:02 +02:00
parent 9cdad5d13d
commit d3d9d7e2e2
5 changed files with 28 additions and 29762 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -858,17 +858,23 @@ <h3 class="settings-group__header settings-group__header--with-icon">
</label>
</div>
<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">
<input type="checkbox" v-model="settings.syncedLyrics">
<span class="checkbox_text">Create .lyr files (Sync Lyrics)</span>
</label>
<label class="with_checkbox">
<input type="checkbox" v-model="settings.createM3U8File">
<span class="checkbox_text">Create playlist file</span>
</label>
</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">
<input type="checkbox" v-model="settings.saveDownloadQueue">
<span class="checkbox_text">Save download queue when closing the app</span>
@ -1062,9 +1068,19 @@ <h3 class="settings-group__header settings-group__header--with-icon">
</select>
</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">
<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>
<div class="input_group">

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long