diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 74fd6a328a..f4b9384682 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,6 +6,7 @@ on: # The branch where the project source code resides # 项目源代码所在的分支 - main + - dev paths-ignore: # Changes involving the following path files will not trigger the workflow # 涉及以下路径文件的更改不会触发工作流 diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 2dad684a8b..cd51d0ba1a 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -21,3 +21,4 @@ jobs: release-as: 0.16.5 signoff: 'github-actions <41898282+github-actions[bot]@users.noreply.github.com>' changelog-types: '[{"type":"types","section":"Types","hidden":false},{"type":"revert","section":"Reverts","hidden":false},{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"improvement","section":"Feature Improvements","hidden":false},{"type":"docs","section":"Docs","hidden":false},{"type":"i18n","section":"I18n","hidden":true},{"type":"style","section":"Style Changes","hidden":false},{"type":"ci","section":"CI","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":true},{"type":"contributor","section":"New Contributors","hidden":false},{"type":"notice","section":"Notices","hidden":false}]' + default-branch: main diff --git a/src/components/TopBar/components/FavoritesPop.vue b/src/components/TopBar/components/FavoritesPop.vue index 691315eeb8..71be44343a 100644 --- a/src/components/TopBar/components/FavoritesPop.vue +++ b/src/components/TopBar/components/FavoritesPop.vue @@ -123,6 +123,10 @@ function changeCategory(categoryItem: FavoriteCategory) { activatedFavoriteTitle.value = categoryItem.title } +function isMusic(item: FavoriteResource) { + return item.link.includes('bilibili://music') +} + defineExpose({ refreshFavoriteResources, }) @@ -224,7 +228,8 @@ defineExpose({