Skip to content

Commit

Permalink
Version 2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
gamesun committed Mar 7, 2022
1 parent 96a90ed commit fd08e6a
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 8 deletions.
Binary file modified doc/main_window.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions readme.htm
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,21 @@

<div><span class="head2">Version history (What's new?)</span></div>

<p><a name="2.5"></a><span class="ver">2.5 </span><span class="date">(2022-03-07)</span></p>
<ul>
<li>Optimize the process of receiving.</li>
<li>UI fine tuning.</li>
<li>Add: resize the form by dragging window borders.</li>
<li>Add: Rx Tx counters.</li>
<li>Add: rename QuickSend button dailog(by right-click).</li>
<li>Add: select file buttons in QuickSend table.</li>
<li>Add: timestamp, send mode, loop time status save in settings file.</li>
<li>Add: detect busy state of ports</li>
<li>Fix: sometimes open port button keep active when port closed.</li>
<li>Fix: lost output when decode exception happened in ASCII mode.</li>
<li>Fix: port select combobox become empty after refreshing</li>
</ul>

<p><a name="2.4"></a><span class="ver">2.4 </span><span class="date">(2021-06-06)</span></p>
<ul>
<li>MyTerm was renamed to <tt>UartVide</tt></li>
Expand Down
2 changes: 1 addition & 1 deletion src/appInfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@


title = 'UartVide'
version = '2.4'
version = '2.5'
url = 'http://sourceforge.net/projects/myterm/'
author = 'gamesun'
copyright = 'Copyright (C) 2013-2022, gamesun'
Expand Down
2 changes: 1 addition & 1 deletion tools/conv_res_pyside2.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@echo off
D:\Python\Python38-32\Scripts\pyside2-rcc.exe ../res/resources.qrc -o ../src/resources_pyside2.py
D:\Python\Python38\Scripts\pyside2-rcc.exe ../res/resources.qrc -o ../src/resources_pyside2.py

rem pause
2 changes: 1 addition & 1 deletion tools/uartvide.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
;

#define AppName "UartVide"
#define AppVersion "2.4"
#define AppVersion "2.5"

[Setup]
AppName={#AppName} {#AppVersion}
Expand Down
8 changes: 4 additions & 4 deletions tools/version_info.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ VSVersionInfo(
ffi=FixedFileInfo(
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
# Set not needed items to zero 0.
filevers=(2, 4, 1, 0),
prodvers=(2, 4, 1, 0),
filevers=(2, 5, 0, 0),
prodvers=(2, 5, 0, 0),
# Contains a bitmask that specifies the valid bits 'flags'r
mask=0x3f,
# Contains a bitmask that specifies the Boolean attributes of the file.
Expand All @@ -31,12 +31,12 @@ VSVersionInfo(
u'040904b0',
[StringStruct(u'CompanyName', u''),
StringStruct(u'FileDescription', u'uartvide'),
StringStruct(u'FileVersion', u'2.4.1.0'),
StringStruct(u'FileVersion', u'2.5.0.0'),
StringStruct(u'InternalName', u'uartvide'),
StringStruct(u'LegalCopyright', u'Copyright © 2013-2022 gamesun'),
StringStruct(u'OriginalFilename', u'uartvide.exe'),
StringStruct(u'ProductName', u'uartvide'),
StringStruct(u'ProductVersion', u'2.4.1.0')])
StringStruct(u'ProductVersion', u'2.5.0.0')])
]),
VarFileInfo([VarStruct(u'Translation', [1033, 1200])])
]
Expand Down
2 changes: 1 addition & 1 deletion ui/conv_ui_main_pyside2.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@echo off
D:\Python\Python38-32\Scripts\pyside2-uic.exe ./mainwindow.ui -o ../src/ui_mainwindow_pyside2.py
D:\Python\Python38\Scripts\pyside2-uic.exe ./mainwindow.ui -o ../src/ui_mainwindow_pyside2.py

rem pause

0 comments on commit fd08e6a

Please sign in to comment.