Merge branch 'development' into feat/stream-converted-source

This commit is contained in:
Lachezar Lechev 2025-09-04 18:26:53 +03:00
commit 672dbdeb28
No known key found for this signature in database
GPG key ID: FDC9325CE311E8A4
7 changed files with 12 additions and 9 deletions

View file

@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup node
uses: actions/setup-node@v4
with:

View file

@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: gh-pages
fetch-depth: 0

View file

@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install NPM dependencies
run: npm install
- name: Build

View file

@ -65,7 +65,6 @@
padding: 0 1rem;
.icon-container {
height: 2rem;
width: 2rem;
}
}

View file

@ -240,6 +240,10 @@
border-radius: 2rem;
}
}
.ratings {
margin-right: 0;
}
}
}

View file

@ -102,8 +102,8 @@ const usePlayer = (urlParams) => {
args: {
action: 'TimeChanged',
args: {
time: Math.round(time),
duration,
time: Math.max(0, Math.round(time)),
duration: Math.max(0, Math.round(duration)),
device,
}
}
@ -118,8 +118,8 @@ const usePlayer = (urlParams) => {
args: {
action: 'Seek',
args: {
time: Math.round(time),
duration,
time: Math.max(0, Math.round(time)),
duration: Math.max(0, Math.round(duration)),
device,
}
}

View file

@ -12,7 +12,7 @@
}
.search-container {
height: 100%;
height: calc(100% - var(--safe-area-inset-bottom));
width: 100%;
background-color: transparent;