Skip to content

Commit

Permalink
解决V2.0.1版本引入的问题
Browse files Browse the repository at this point in the history
1、循环测试无法点击"停止"
  • Loading branch information
WilliamYinwei committed Dec 18, 2020
1 parent 908105b commit 5fd5e37
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
2、登录TreeATE的默认用户名/密码: admin/123
3、加载Example中的测试工程,点击Play(测试)

V2.0.2
-------------------
1、解决V2.0.1版本引入的问题:循环测试无法点击"停止"

V2.0.1
-------------------
1、解决并行执行时总状态显示问题
Expand Down
2 changes: 1 addition & 1 deletion Setup/setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "TreeATE"
#define MyAppVersion "2.0.1"
#define MyAppVersion "2.0.2"
#define MyAppPublisher "David Yin"
#define MyAppURL "https://blog.csdn.net/vivasoft/column/info/31202"
#define MyAppExeName "TreeATE.exe"
Expand Down
2 changes: 1 addition & 1 deletion Src/TreeATE/aboutdialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<item>
<widget class="QLabel" name="label_3">
<property name="text">
<string notr="true">Version: 2.0.1</string>
<string notr="true">Version: 2.0.2</string>
</property>
</widget>
</item>
Expand Down
8 changes: 4 additions & 4 deletions Src/TreeATE/ate.rc
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ IDI_ICON1 ICON DISCARDABLE "ATE.ico"
#endif

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,1,1
PRODUCTVERSION 2,0,1,1
FILEVERSION 2,0,2,1
PRODUCTVERSION 2,0,2,1
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS VS_FF_DEBUG
Expand All @@ -25,8 +25,8 @@ VS_VERSION_INFO VERSIONINFO
BEGIN
VALUE "CompanyName", "David Yin\0"
VALUE "FileDescription", "TreeATE for manufactory automatic testing\0"
VALUE "FileVersion", "2,0,1,1"
VALUE "ProductVersion", "2,0,1,1"
VALUE "FileVersion", "2,0,2,1"
VALUE "ProductVersion", "2,0,2,1"
VALUE "LegalCopyright", "Copyright 2020(C) David Yin\0"
VALUE "LegalTrademarks", "TreeATE\0"
VALUE "OriginalFilename", "TreeATE.exe\0"
Expand Down
4 changes: 2 additions & 2 deletions Src/TreeATE/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -435,12 +435,12 @@ void MainWindow::on_updateTotalStatus(eTestStatus eStatus, int n)
ui->progressBar->setValue(n);
}

enableForStatus(eStatus);

if(eStatus < m_totalStatus)
return;
m_totalStatus = eStatus;

enableForStatus(eStatus);

QString strStatus;
QString strStyle;
switch(eStatus)
Expand Down

0 comments on commit 5fd5e37

Please sign in to comment.