From 3c2914aca22f568ce176b7e6f766b97dc824d1f8 Mon Sep 17 00:00:00 2001 From: Lachezar Lechev Date: Tue, 15 Jul 2025 21:58:17 +0300 Subject: [PATCH 1/5] fix: Player - TimeChanged & Seek time now has Math.max(0, x) Signed-off-by: Lachezar Lechev --- src/routes/Player/usePlayer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/Player/usePlayer.js b/src/routes/Player/usePlayer.js index 05036f220..1e04af2cd 100644 --- a/src/routes/Player/usePlayer.js +++ b/src/routes/Player/usePlayer.js @@ -102,7 +102,7 @@ const usePlayer = (urlParams) => { args: { action: 'TimeChanged', args: { - time: Math.round(time), + time: Math.max(0, Math.round(time)), duration, device, } @@ -118,7 +118,7 @@ const usePlayer = (urlParams) => { args: { action: 'Seek', args: { - time: Math.round(time), + time: Math.max(0, Math.round(time)), duration, device, } From 20bbe12a8a951839ad4979882bdd61bad8810e50 Mon Sep 17 00:00:00 2001 From: Lachezar Lechev Date: Tue, 15 Jul 2025 22:04:57 +0300 Subject: [PATCH 2/5] fix: Player - TimeChanged & Seek duration now has Math.max(0, x) Signed-off-by: Lachezar Lechev --- src/routes/Player/usePlayer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/Player/usePlayer.js b/src/routes/Player/usePlayer.js index 1e04af2cd..4ca2574ba 100644 --- a/src/routes/Player/usePlayer.js +++ b/src/routes/Player/usePlayer.js @@ -103,7 +103,7 @@ const usePlayer = (urlParams) => { action: 'TimeChanged', args: { time: Math.max(0, Math.round(time)), - duration, + duration: Math.max(0, Math.round(duration)), device, } } @@ -119,7 +119,7 @@ const usePlayer = (urlParams) => { action: 'Seek', args: { time: Math.max(0, Math.round(time)), - duration, + duration: Math.max(0, Math.round(duration)), device, } } From 178974ddfdbc7c52ff1cf201fca1820fe886043b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 05:09:18 +0000 Subject: [PATCH 3/5] chore(deps): bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- .github/workflows/pages_cleanup.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 973b6a625..a20479339 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: diff --git a/.github/workflows/pages_cleanup.yml b/.github/workflows/pages_cleanup.yml index 2ee3a32c8..58ba548a7 100644 --- a/.github/workflows/pages_cleanup.yml +++ b/.github/workflows/pages_cleanup.yml @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2cdd60e4a..5c27de22d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 From 36721b40f15fd607c5ebcfb6784d58a4b58810bf Mon Sep 17 00:00:00 2001 From: "Timothy Z." Date: Mon, 25 Aug 2025 14:56:23 +0300 Subject: [PATCH 4/5] fix(MetaPreview): button positioning --- src/components/MetaPreview/ActionButton/styles.less | 1 - src/components/MetaPreview/styles.less | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/MetaPreview/ActionButton/styles.less b/src/components/MetaPreview/ActionButton/styles.less index d7a7c5f25..5382c26af 100644 --- a/src/components/MetaPreview/ActionButton/styles.less +++ b/src/components/MetaPreview/ActionButton/styles.less @@ -65,7 +65,6 @@ padding: 0 1rem; .icon-container { - height: 2rem; width: 2rem; } } diff --git a/src/components/MetaPreview/styles.less b/src/components/MetaPreview/styles.less index a614acf25..3fea95a5f 100644 --- a/src/components/MetaPreview/styles.less +++ b/src/components/MetaPreview/styles.less @@ -240,6 +240,10 @@ border-radius: 2rem; } } + + .ratings { + margin-right: 0; + } } } From 8000a7089a7f96175f5a74b85a8606882637b44e Mon Sep 17 00:00:00 2001 From: "Timothy Z." Date: Mon, 25 Aug 2025 17:23:48 +0300 Subject: [PATCH 5/5] fix(Search): dynamic view calc --- src/routes/Search/styles.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/Search/styles.less b/src/routes/Search/styles.less index 278d65693..e9ccc067f 100644 --- a/src/routes/Search/styles.less +++ b/src/routes/Search/styles.less @@ -12,7 +12,7 @@ } .search-container { - height: 100%; + height: calc(100% - var(--safe-area-inset-bottom)); width: 100%; background-color: transparent;