diff --git a/.github/workflows/electron_beta.yml b/.github/workflows/electron_beta.yml index 3c815c7c..0a37b24c 100644 --- a/.github/workflows/electron_beta.yml +++ b/.github/workflows/electron_beta.yml @@ -6,7 +6,7 @@ on: jobs: mac_x86_develop: - runs-on: macos-latest + runs-on: macos-13 defaults: run: diff --git a/CHANGELOG_CN.md b/CHANGELOG_CN.md index 2d56efa5..1cbcf661 100644 --- a/CHANGELOG_CN.md +++ b/CHANGELOG_CN.md @@ -1,3 +1,12 @@ +## v3.0.0-beta.7 25/02 2024 + +1. 修复:侧边栏激活背景颜色。 +2. 修复:侧边栏计数 Bug。 +3. 修复:扩展设置页面的 UI Bug。 +4. 修复:缓存 Bug。 +5. 修复:过滤器 Bug。 +6. 对插件开发者:提高了一些钩子的超时时间。 + ## v3.0.0-beta.6 23/02 2024 1. 对中国大陆地区用户使用国内镜像站加速插件下载。 diff --git a/CHANGELOG_EN.md b/CHANGELOG_EN.md index cdc3c281..e3f69242 100644 --- a/CHANGELOG_EN.md +++ b/CHANGELOG_EN.md @@ -1,3 +1,12 @@ +## v3.0.0-beta.7 25/02 2024 + +1. Fix: The sidebar activation background color. +2. Fix: The sidebar count bug. +3. Fix: A UI bug in the extension setting page. +4. Fix: A cache bug. +5. Fix: A filter bug. +6. For extension developers: increased some hook points' timeout. + ## v3.0.0-beta.6 23/02 2024 1. For users in mainland China, the extensions downloading is accelerated by using a NPM mirror. diff --git a/app/renderer/ui/preference-view/components/toggle.vue b/app/renderer/ui/preference-view/components/toggle.vue index 016d71dc..883642b5 100644 --- a/app/renderer/ui/preference-view/components/toggle.vue +++ b/app/renderer/ui/preference-view/components/toggle.vue @@ -44,7 +44,7 @@ watch(props, (value) => { ? 'bg-neutral-500 dark:bg-neutral-400' : 'bg-neutral-300 dark:bg-neutral-700' " - class="my-auto relative inline-flex h-5 w-10 items-center rounded-full" + class="my-auto relative inline-flex h-5 w-10 items-center rounded-full min-w-10" @update:model-value="emits('event:change', enabled)" > ", diff --git a/release-notes.md b/release-notes.md index 9b9119ed..3d2d3559 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1 +1,6 @@ -1. For users in mainland China, the extensions downloading is accelerated by using a NPM mirror. +1. Fix: The sidebar activation background color. +2. Fix: The sidebar count bug. +3. Fix: A UI bug in the extension setting page. +4. Fix: A cache bug. +5. Fix: A filter bug. +6. For extension developers: increased some hook points' timeout.