From 9ffc54b1ec73acf780f81d554facac7af170ade9 Mon Sep 17 00:00:00 2001 From: liujiangbin11 Date: Sun, 27 Apr 2025 14:39:40 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=9B=B4=E6=94=B9=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E5=8F=B7=EF=BC=8C1.0.2-1=20->=201.1.0-1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- oedp/build/constants.sh | 2 +- oedp/build/oedp.spec | 7 ++++++- oedp/build/static/oeDeploy.desktop | 2 +- oedp/src/constants/const.py | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/oedp/build/constants.sh b/oedp/build/constants.sh index 94ae21f..529ef5f 100644 --- a/oedp/build/constants.sh +++ b/oedp/build/constants.sh @@ -26,5 +26,5 @@ BUILD_SCRIPT_DIR="${PROJECT_DIR}"/build # 存放构建中间产物的暂存目录 TEMP_DIR="${PROJECT_DIR}"/temp # 打包目录 -PACKING_DIR_NAME=oedp-1.0.2 +PACKING_DIR_NAME=oedp-1.1.0 PACKING_DIR="${TEMP_DIR}/${PACKING_DIR_NAME}" \ No newline at end of file diff --git a/oedp/build/oedp.spec b/oedp/build/oedp.spec index 047ab87..2110a7f 100644 --- a/oedp/build/oedp.spec +++ b/oedp/build/oedp.spec @@ -1,6 +1,6 @@ %define _python_bytecompile_errors_terminate_build 0 Name: oedp -Version: 1.0.2 +Version: 1.1.0 Release: release_number Summary: openEuler deploy tool License: MulanPSL-2.0 @@ -69,6 +69,11 @@ fi %changelog +* Sun Apr 27 2025 Liu Jiangbin - 1.1.0-1 +- Support configurable plugin sources +- Support one-click initialization +- Fix the log permission bug + * Mon Mar 31 2025 Liu Jiangbin - 1.0.2-1 - Fix the issue where non-root users cannot execute diff --git a/oedp/build/static/oeDeploy.desktop b/oedp/build/static/oeDeploy.desktop index 136c05c..3f68a3e 100644 --- a/oedp/build/static/oeDeploy.desktop +++ b/oedp/build/static/oeDeploy.desktop @@ -1,5 +1,5 @@ [Desktop Entry] -Version=1.0.2 +Version=1.1.0 Type=Application Name=oeDeploy Exec=xdg-open /usr/share/applications/oeDeploy.html diff --git a/oedp/src/constants/const.py b/oedp/src/constants/const.py index 67dbe63..e02313a 100644 --- a/oedp/src/constants/const.py +++ b/oedp/src/constants/const.py @@ -15,7 +15,7 @@ import stat # oedp 版本信息 -VERSION = "1.0.2-1" +VERSION = "1.1.0-1" OK = 0 FAILED = 1 -- Gitee