A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: seek bar flash

+3 -7
+2 -4
src/facets/themes/blur/artwork-controller/element.js
··· 486 486 <!-- PROGRESS --> 487 487 488 488 <div class="progress" @click="${this.seek}"> 489 - <progress max="100" value="${(this.audio()?.loadingState() === 490 - "loaded" 491 - ? (this.audio()?.progress() ?? 0) 492 - : 0) * 100}"></progress> 489 + <progress max="100" value="${(this.audio()?.progress() ?? 0) * 490 + 100}"></progress> 493 491 <div class="timestamps"> 494 492 <time datetime="${this.#time.value}">${this.#time.value}</time> 495 493 <time datetime="${this.#time.value}">${this.#duration
+1 -3
src/facets/themes/winamp/winamp/element.js
··· 2032 2032 max="100" 2033 2033 .value="${(this.#seekingProgress.value !== null 2034 2034 ? this.#seekingProgress.value 2035 - : this.audio()?.loadingState() === "loaded" 2036 - ? (this.audio()?.progress() ?? 0) 2037 - : 0) * 100}" 2035 + : (this.audio()?.progress() ?? 0)) * 100}" 2038 2036 @input="${this.#onPositionInput}" 2039 2037 @change="${this.#onPositionChange}" 2040 2038 >