Compare commits

..

No commits in common. "68a7117a97f0f7aeb9e4b8bf7c33a5b5d8deae5d" and "8ab668dcd6757c76845152f5aec083a15cad961b" have entirely different histories.

5 changed files with 290 additions and 1102 deletions

View file

@ -67,10 +67,7 @@ export const EpisodeSelector = (props: {
enabled: true,
sensitivity: 4,
}}
scrollbar={{
enabled: true,
draggable: true,
}}
scrollbar={true}
allowTouchMove={true}
style={
{
@ -82,7 +79,6 @@ export const EpisodeSelector = (props: {
<SwiperSlide
key={`episode_${episode.position}`}
style={{ maxWidth: "fit-content" }}
className="pb-2"
>
<Button
color={

View file

@ -314,12 +314,9 @@ export const ReleasePlayer = (props: { id: number }) => {
direction={"horizontal"}
mousewheel={{
enabled: true,
sensitivity: 4,
}}
scrollbar={{
enabled: true,
draggable: true,
sensitivity: 2,
}}
scrollbar={true}
allowTouchMove={true}
style={
{
@ -331,7 +328,6 @@ export const ReleasePlayer = (props: { id: number }) => {
<SwiperSlide
key={`episode_${episode.position}`}
style={{ maxWidth: "fit-content" }}
className="pb-2"
>
<Button
color={

View file

@ -433,7 +433,7 @@ export const ReleasePlayerCustom = (props: {
}
</div>
: <iframe src={playerProps.src} className="w-full aspect-video" allowFullScreen={true} />}
: <iframe src={playerProps.src} className="w-full aspect-video" />}
</div>
<div>

1374
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -16,7 +16,7 @@
"hls-video-element": "^1.5.0",
"markdown-to-jsx": "^7.4.7",
"media-chrome": "^4.8.0",
"next": "^14.2.26",
"next": "^14.2.13",
"next-plausible": "^3.12.1",
"react": "^18",
"react-cropper": "^2.3.3",