mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 13:17:46 +00:00
feat: 支持Hi-Res (#1585)
This commit is contained in:
parent
5dd00bec87
commit
93c7ba2fd8
3 changed files with 15 additions and 10 deletions
|
|
@ -86,9 +86,10 @@
|
|||
<option value="320000">
|
||||
{{ $t('settings.musicQuality.high') }} - 320Kbps
|
||||
</option>
|
||||
<option value="999000">
|
||||
<option value="flac">
|
||||
{{ $t('settings.musicQuality.lossless') }} - FLAC
|
||||
</option>
|
||||
<option value="999000">Hi-Res</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -815,8 +816,7 @@ export default {
|
|||
},
|
||||
musicQuality: {
|
||||
get() {
|
||||
if (this.settings.musicQuality === undefined) return 320000;
|
||||
return this.settings.musicQuality;
|
||||
return this.settings.musicQuality ?? 320000;
|
||||
},
|
||||
set(value) {
|
||||
if (value === this.settings.musicQuality) return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue