diff --git a/currentVersion.md b/currentVersion.md index 8a24c69c..4b25fbb1 100644 --- a/currentVersion.md +++ b/currentVersion.md @@ -11,6 +11,7 @@ - 添加了上传API服务的最大上传并发数和上传间隔设置项,避免并发上传过多导致服务器压力过大或被图床服务商限制访问 - 云端页面的SM.MS迁移至S.EE平台 - 云端页面WebDAV平台现在打开官网时会优先使用当前图床配置的endpoint作为链接地址 +- 插件页面现在会显示插件的最后更新时间,方便用户了解插件的维护状态 - 优化了本地文件的扩展名获取逻辑,提升了对特殊文件名的兼容性 - 更新了linux下的剪贴板图片获取脚本 - 现在支持在拷贝文件时监听系统剪贴板的变化 diff --git a/currentVersion_en.md b/currentVersion_en.md index 72352871..cbad8489 100644 --- a/currentVersion_en.md +++ b/currentVersion_en.md @@ -11,6 +11,7 @@ - Added settings for maximum upload concurrency and upload interval for the Upload API service to prevent excessive concurrent uploads that could put too much pressure on the server or lead to access restrictions by image bed providers. - The cloud page's SM.MS has migrated to the S.EE platform. - The cloud page WebDAV platform now prioritizes using the current image bed configuration's endpoint as the link address when opening the official website. +- Plugin pages now display the last update time of the plugin, making it easier for users to understand the maintenance status of the plugin. - Optimized the logic for obtaining local file extensions, improving compatibility with special file names. - Updated the clipboard image acquisition script for Linux. - Now supports monitoring system clipboard changes when copying files. diff --git a/src/renderer/i18n/locales/en.json b/src/renderer/i18n/locales/en.json index ea18da5d..f259e859 100644 --- a/src/renderer/i18n/locales/en.json +++ b/src/renderer/i18n/locales/en.json @@ -692,6 +692,7 @@ "installed": "Installed", "installing": "Installing...", "installPluginsToGetStarted": "Please install plugins to get started", + "lastUpdated": "Last Updated", "list": "Plugin List", "loading": "Loading...", "loadingPlugins": "Loading plugins...", diff --git a/src/renderer/i18n/locales/zh-CN.json b/src/renderer/i18n/locales/zh-CN.json index e669b06a..829c3232 100644 --- a/src/renderer/i18n/locales/zh-CN.json +++ b/src/renderer/i18n/locales/zh-CN.json @@ -692,6 +692,7 @@ "installed": "已安装", "installing": "安装中", "installPluginsToGetStarted": "请先安装插件以开始使用", + "lastUpdated": "最后更新", "list": "插件列表", "loading": "加载中...", "loadingPlugins": "正在加载插件...", diff --git a/src/renderer/i18n/locales/zh-TW.json b/src/renderer/i18n/locales/zh-TW.json index 02b38664..95aae035 100644 --- a/src/renderer/i18n/locales/zh-TW.json +++ b/src/renderer/i18n/locales/zh-TW.json @@ -692,6 +692,7 @@ "installed": "已安裝", "installing": "安裝中", "installPluginsToGetStarted": "請先安裝插件以開始使用", + "lastUpdated": "最後更新", "list": "插件列表", "loading": "載入中...", "loadingPlugins": "正在加載插件...", diff --git a/src/renderer/pages/Plugin.vue b/src/renderer/pages/Plugin.vue index 93c569e1..9cae446e 100644 --- a/src/renderer/pages/Plugin.vue +++ b/src/renderer/pages/Plugin.vue @@ -133,7 +133,7 @@ -
- {{ item.author.replace(/<.*>/, '') }} -
++ {{ item.author.replace(/<.*>/, '') }} +
+ +{{ item.author }}
+
+