更新版本号。

This commit is contained in:
DESKTOP-1N1NK8A\auvkk 2023-04-19 15:58:46 +08:00
parent 4c9f22851a
commit d09c049725
7 changed files with 44 additions and 5 deletions

View File

@ -14,4 +14,4 @@ using log4net.Config;
[assembly: ComVisible(false)]
[assembly: Guid("6E6A3BE1-681F-49BE-982E-29C4C1D08D49")]
[assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)]
[assembly: AssemblyVersion("2.0.1.1")]
[assembly: AssemblyVersion("2.0.2.2")]

View File

@ -0,0 +1,13 @@
# 同时应用于RT和UI端的对象以及WCF通讯使用的对象
## Version 2.0.2.2
***2023-04-19***
- Bug
- 无
- 新特性
- 优化BaseDevice对象新增用于解析Xml配置的构造函数修正其子类的ScBasePath中如果定义了{module}没有自动替换为Module名称的问题。
- 移除ErrorDetectableBaseDevice构造函数中解析Xml并初始化相关属性的代码。
- 新增SicMath命名空间并新增时域信号算数平均滤波器。

View File

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyVersion("2.0.1.1")]
//[assembly: AssemblyFileVersion("1.0.0.0")]

View File

@ -1,3 +1,16 @@

# 各种电子元器件,接口定义 和具体 实现
各种电子元器件,接口定义 和具体 实现
## Version 2.0.1.1
***2023-04-19***
- Bug
- 无
- 新特性
- 新增IoSensorAnalog对象用于监测模拟信号并产生警告和报警事件。
- 新增IoSensorWaterFlowTemp对象用于自动监测水温并输出用于互锁的DO信号。
- 移除IoInterLock对象中监测水温并设置相关DO的代码。
- 移除IoSensor构造函数中解析Xml并初始化相关属性的代码。
- 移除IoPressureMeter构造函数中解析Xml并初始化相关属性的代码。

View File

@ -829,6 +829,7 @@
<Resource Include="Resources\Images\units\rfback.png" />
<Resource Include="Resources\Images\units\rfOff.png" />
<Resource Include="Resources\Images\units\rfOn.png" />
<Content Include="ReleaseNotes.txt" />
<Content Include="Resources\Images\foupTopView3.png" />
<Resource Include="Resources\Images\units\chiller_right_error.png" />
<Resource Include="Resources\Images\units\chiller_right_off.png" />

View File

@ -35,7 +35,7 @@ using System.Windows.Markup;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.1.1")]
[assembly: AssemblyVersion("2.0.2.2")]
//[assembly: AssemblyFileVersion("1.0.0.0")]

View File

@ -0,0 +1,12 @@
# 用户界面相关的控件、样式等
## Version 2.0.2.2
***2023-04-19***
- Bug
- 修正主窗体中LOG下拉框可能被撑的很大的问题
- 新特性
- 无