From 72b7251adf95af87191f078ae27e58785f00ccb0 Mon Sep 17 00:00:00 2001 From: dingjiahuichina Date: Fri, 20 Jun 2025 15:48:20 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=8F=92=E4=BB=B6=E6=BA=90=E7=B4=A2?= =?UTF-8?q?=E5=BC=95=E6=96=87=E4=BB=B6=E4=B8=AD=E6=8F=92=E4=BB=B6=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E7=BC=BA=E5=B0=91=E9=BB=98=E8=AE=A4=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tools/make_repo_index/make_repo_index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/make_repo_index/make_repo_index.py b/tools/make_repo_index/make_repo_index.py index c73e40b..6e5f806 100644 --- a/tools/make_repo_index/make_repo_index.py +++ b/tools/make_repo_index/make_repo_index.py @@ -56,7 +56,7 @@ def validate_and_extract_plugin_info(tar_path): # 获取基本信息 info = { 'name': base_name, # name字段与插件文件名保持一致 - 'version': main_content.get('version', ''), + 'version': main_content.get('version', '1.0.0'), 'updated': main_content.get('updated', ''), 'description': main_content.get('description', ''), 'icon': main_content.get('icon', ''), -- Gitee