From dfa6c72d4a6f0cfa67b50aa7bc30687026a874d2 Mon Sep 17 00:00:00 2001
From: ShH Y <74806550+1208nn@users.noreply.github.com>
Date: Thu, 28 Dec 2023 10:52:44 +0000
Subject: [PATCH 1/2] update customcontextmenu
---
components/CustomContextMenu.js | 2 ++
1 file changed, 2 insertions(+)
diff --git a/components/CustomContextMenu.js b/components/CustomContextMenu.js
index 3a6d2d4a..06c5e7b8 100644
--- a/components/CustomContextMenu.js
+++ b/components/CustomContextMenu.js
@@ -162,10 +162,12 @@ export default function CustomContextMenu(props) {
{isDarkMode ? : }
{isDarkMode ? locale.MENU.LIGHT_MODE : locale.MENU.DARK_MODE}
+ {siteConfig('THEME_SWITCH') && (
{locale.MENU.THEME_SWITCH}
+ )}
From daf57bcadff75240e3a454f396836e324d37c2cd Mon Sep 17 00:00:00 2001
From: ShH Y <74806550+1208nn@users.noreply.github.com>
Date: Sat, 13 Jan 2024 09:21:22 +0800
Subject: [PATCH 2/2] =?UTF-8?q?=E5=8D=95=E7=8B=AC=E7=9A=84=E7=AB=99?=
=?UTF-8?q?=E7=82=B9=E9=85=8D=E7=BD=AE?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
blog.config.js | 1 +
components/CustomContextMenu.js | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/blog.config.js b/blog.config.js
index 11a7cf52..4e874cac 100644
--- a/blog.config.js
+++ b/blog.config.js
@@ -90,6 +90,7 @@ const BLOG = {
// END ************网站字体*****************
CAN_COPY: process.env.NEXT_PUBLIC_CAN_COPY || true, // 是否允许复制页面内容 默认允许,如果设置为false、则全栈禁止复制内容。
CUSTOM_RIGHT_CLICK_CONTEXT_MENU: process.env.NEXT_PUBLIC_CUSTOM_RIGHT_CLICK_CONTEXT_MENU || true, // 自定义右键菜单,覆盖系统菜单
+ CUSTOM_RIGHT_CLICK_CONTEXT_MENU_THEME_SWITCH: process.env.NEXT_PUBLIC_CUSTOM_RIGHT_CLICK_CONTEXT_MENU_THEME_SWITCH || true,
// 自定义外部脚本,外部样式
CUSTOM_EXTERNAL_JS: [''], // e.g. ['http://xx.com/script.js','http://xx.com/script.js']
diff --git a/components/CustomContextMenu.js b/components/CustomContextMenu.js
index 06c5e7b8..bf396d39 100644
--- a/components/CustomContextMenu.js
+++ b/components/CustomContextMenu.js
@@ -162,7 +162,7 @@ export default function CustomContextMenu(props) {
{isDarkMode ? : }
{isDarkMode ? locale.MENU.LIGHT_MODE : locale.MENU.DARK_MODE}
- {siteConfig('THEME_SWITCH') && (
+ {siteConfig('CUSTOM_RIGHT_CLICK_CONTEXT_MENU_THEME_SWITCH') && (
{locale.MENU.THEME_SWITCH}