Merge branch 'develop' into feature/high-performance-data-collector

This commit is contained in:
Liang Su 2024-01-09 10:43:18 +08:00
commit 0917f747f7
5 changed files with 27 additions and 4 deletions

View File

@ -2356,7 +2356,9 @@ namespace SicRT.Modules
&& _load.IsReadyForPlace(ModuleName.TMRobot, 0)
&& _load.NoTray(0)
&& _load.HasWafer(0)
&& _load.CheckWaferNeedProcess(0, ModuleName.PM1);
&& _load.CheckWaferNeedProcess(0, ModuleName.PM1)
&& _buffer.HasTrayAndNotExceedProcessCount(0)
&& _buffer.NoWafer(0);
if (canPick)
{
if (_buffer.IsReadyForPick(ModuleName.TMRobot, 0))
@ -2410,7 +2412,7 @@ namespace SicRT.Modules
//第二种情况:工艺开始时,如果Buffer中有Tray时,优先取Buffer中的Tray,而不是Cassette中Tray
canPick = _tmRobot.NoTray(0)
&& _buffer.HasTray(1)
&& _buffer.HasTrayAndNotExceedProcessCount(1)
&& _buffer.NoWafer(1)
&& _load.IsAvailable
&& _load.IsReadyForPlace(ModuleName.TMRobot, 0)

View File

@ -51,5 +51,5 @@ using System.Windows;
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
// 方法是按如下所示使用“*”: :
[assembly: AssemblyVersion("1.1.4.13")]
[assembly: AssemblyVersion("1.1.4.15")]
[assembly: AssemblyInformationalVersion("自动通用版有EFEM")]

View File

@ -4,6 +4,25 @@ Auto-GE 自动通用版适用有EFEM设备
----
## Version 1.1.4.15
**2024-01-09**
- Bug修复
- 修正多次Logout、Login操作后UI会变卡顿的问题
- 新特性
- 无
## Version 1.1.4.14
**2024-01-05**
- Bug修复
- 修改TMRobot Pick Buffer1层条件判断的BUG
- 新特性
- ReturnAll里Unload冷却时间定为300s
## Version 1.1.4.13
**2023-12-28**

View File

@ -809,6 +809,8 @@ namespace SicUI.Client
LOG.Info(
$"{BaseApp.Instance.UserContext.LoginName} logoff as {BaseApp.Instance.UserContext.Role.RoleName}");
BaseApp.Instance.UserContext.Clear();
ClearItems();
}
catch (Exception exp)
{

View File

@ -54,5 +54,5 @@ using System.Windows;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.1.4.13")]
[assembly: AssemblyVersion("1.1.4.15")]
[assembly: AssemblyInformationalVersion("自动通用版有EFEM")]