Too much space wasted

This commit is contained in:
maikirakiwi 2022-05-21 21:11:12 -07:00
parent 65eeffac49
commit 90a0e8c6f8
6 changed files with 0 additions and 51 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 139 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 186 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 138 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 184 KiB

View file

@ -98,7 +98,6 @@ const CiderAudio = {
"name": "Maikiwi",
"description": "",
"gainComp": "1.3381352151540196",
"img": "./assets/audiolabs/focused.png",
},
{
"id": "71_420maikiwi",
@ -106,7 +105,6 @@ const CiderAudio = {
"name": "Soundstage",
"description": "",
"gainComp": "1.3963683610559376",
"img": "./assets/audiolabs/expansive.png",
},
{
"id": "70_422maikiwi",
@ -114,7 +112,6 @@ const CiderAudio = {
"name": "Separation",
"description": "",
"gainComp": "1.30767553892022",
"img": "./assets/audiolabs/classic.png",
},
{
"id": "standard",
@ -122,7 +119,6 @@ const CiderAudio = {
"name": "Minimal",
"description": "",
"gainComp": "1.2647363474711515",
"img": "./assets/audiolabs/minimal.png",
}
],
atmosphereRealizerProfiles: [

View file

@ -118,20 +118,6 @@
</select>
</div>
</div>
<div class="spprofile-line" v-show="app.cfg.audio.maikiwiAudio.spatial === true">
<div class="spprofile-viewport">
<button class="spprev" @click="profilePrev"></button>
<button class="nextprev" @click="profileNext"></button>
<template v-for="profile in spprofiles" v-if="$root.cfg.audio.maikiwiAudio.spatialProfile == profile.id">
<transition name="spfade">
<div class="spslide" :key="profile.id">
<img v-if="profile.img" loading="eager" decoding="async" :src="profile.img" alt="">
<h1 class="sptitle">{{ profile.name }}</h1>
</div>
</transition>
</template>
</div>
</div>
<div style="opacity: 0.5; pointer-events: none">
<div class="md-option-header">
<span>{{$root.getLz('settings.header.unfinished')}}</span>
@ -212,39 +198,6 @@
return name;
}
},
profileNext() {
var next = this.spprofiles.find(function (profile) {
return profile.id === this.$root.cfg.audio.maikiwiAudio.spatialProfile;
}.bind(this));
if (next) {
next = this.spprofiles[this.spprofiles.indexOf(next) + 1];
if (next) {
this.$root.cfg.audio.maikiwiAudio.spatialProfile = next.id;
} else {
this.$root.cfg.audio.maikiwiAudio.spatialProfile = this.spprofiles[0].id;
}
} else {
this.$root.cfg.audio.maikiwiAudio.spatialProfile = this.spprofiles[0].id;
}
this.toggleMaikiwiSpatial()
},
profilePrev() {
// select the previous profile based on $root.cfg.audio.maikiwiAudio.spatialProfile
var prev = this.spprofiles.find(function (profile) {
return profile.id === this.$root.cfg.audio.maikiwiAudio.spatialProfile;
}.bind(this));
if (prev) {
prev = this.spprofiles[this.spprofiles.indexOf(prev) - 1];
if (prev) {
this.$root.cfg.audio.maikiwiAudio.spatialProfile = prev.id;
} else {
this.$root.cfg.audio.maikiwiAudio.spatialProfile = this.spprofiles[this.spprofiles.length - 1].id;
}
} else {
this.$root.cfg.audio.maikiwiAudio.spatialProfile = this.spprofiles[this.spprofiles.length - 1].id;
}
this.toggleMaikiwiSpatial()
},
toggleSpatial: function () {
if (app.cfg.audio.maikiwiAudio.spatial) {
CiderAudio.spatialOn()