From 1319bbcdc376e2bf77dd0c10397e975ad66998bb Mon Sep 17 00:00:00 2001 From: hanqiangqiang <1364346467@qq.com> Date: Wed, 17 Apr 2024 14:40:31 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E7=89=88=E6=9C=AC=E5=8F=B7=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E8=87=B3##=20Version=201.3.1.40417?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SicRT/Properties/AssemblyInfo.cs | 2 +- SicRT/ReleaseNotes.md | 2 +- SicUI/Properties/AssemblyInfo.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/SicRT/Properties/AssemblyInfo.cs b/SicRT/Properties/AssemblyInfo.cs index 24e3f70..0efe900 100644 --- a/SicRT/Properties/AssemblyInfo.cs +++ b/SicRT/Properties/AssemblyInfo.cs @@ -51,7 +51,7 @@ using System.Windows; // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号 // 方法是按如下所示使用“*”: : -[assembly: AssemblyVersion("1.3.1.40325")] +[assembly: AssemblyVersion("1.3.1.40417")] [assembly: AssemblyInformationalVersion("手动通用版(无EFEM)")] diff --git a/SicRT/ReleaseNotes.md b/SicRT/ReleaseNotes.md index f26e2b1..a3d2c9b 100644 --- a/SicRT/ReleaseNotes.md +++ b/SicRT/ReleaseNotes.md @@ -3,7 +3,7 @@ Manual-GE 手动通用版(适用无EFEM设备) ------ -## 下次发行备忘 +## Version 1.3.1.40417 - Bug修复 - - 新特性 diff --git a/SicUI/Properties/AssemblyInfo.cs b/SicUI/Properties/AssemblyInfo.cs index 91c5b83..be6f948 100644 --- a/SicUI/Properties/AssemblyInfo.cs +++ b/SicUI/Properties/AssemblyInfo.cs @@ -55,6 +55,6 @@ using System.Windows; // by using the '*' as shown below: -[assembly: AssemblyVersion("1.3.0.40326")] +[assembly: AssemblyVersion("1.3.0.40417")] [assembly: AssemblyInformationalVersion("手动通用版(无EFEM)")] From 5bdf50622f8073016fcf3809d08897dd8fa3bd80 Mon Sep 17 00:00:00 2001 From: HCL <1625932291@qq.com> Date: Mon, 22 Apr 2024 10:48:17 +0800 Subject: [PATCH 2/2] =?UTF-8?q?1.=E4=BF=AE=E6=AD=A3PM=20Clean=E5=92=8CPurg?= =?UTF-8?q?e=E6=B5=81=E7=A8=8B=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Modules/SicModules/PMs/Routines/Base/PMBaseRoutine.cs | 2 +- SicRT/ReleaseNotes.md | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Modules/SicModules/PMs/Routines/Base/PMBaseRoutine.cs b/Modules/SicModules/PMs/Routines/Base/PMBaseRoutine.cs index d6900e8..dbbd73b 100644 --- a/Modules/SicModules/PMs/Routines/Base/PMBaseRoutine.cs +++ b/Modules/SicModules/PMs/Routines/Base/PMBaseRoutine.cs @@ -1770,7 +1770,7 @@ namespace SicModules.PMs.Routines.Base () => { SetMfcRampByGroupAndPressureAlways(currentPressureUpOrDown); - return _IoThrottle.PressureFeedback <= pressure; + return _IoThrottle.PressureFeedback >= pressure; }, timeout * 1000); diff --git a/SicRT/ReleaseNotes.md b/SicRT/ReleaseNotes.md index a3d2c9b..9d2d5d8 100644 --- a/SicRT/ReleaseNotes.md +++ b/SicRT/ReleaseNotes.md @@ -3,6 +3,12 @@ Manual-GE 手动通用版(适用无EFEM设备) ------ +## 下次发行备忘 +- Bug修复 + -修正PM Clean和Purge流程问题 +- 新特性 + - + ## Version 1.3.1.40417 - Bug修复 -