mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-16 00:51:56 -05:00
1. Fix occasional program crash caused by receiving a message in the
form "call1 call2" (no grid, report, etc.). 2. Updated docs git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3336 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
ede2d8bd3b
commit
ef281b8281
Binary file not shown.
@ -1383,7 +1383,8 @@ void MainWindow::readFromStdout() //readFromStdout
|
|||||||
bool b=stdmsg_(msg.mid(0,22).toLatin1().constData(),22);
|
bool b=stdmsg_(msg.mid(0,22).toLatin1().constData(),22);
|
||||||
QStringList w=msg.split(" ",QString::SkipEmptyParts);
|
QStringList w=msg.split(" ",QString::SkipEmptyParts);
|
||||||
if(b and w[0]==m_myCall) {
|
if(b and w[0]==m_myCall) {
|
||||||
QString tt=w[2];
|
QString tt="";
|
||||||
|
if(w.length()>=3) tt=w[2];
|
||||||
bool ok;
|
bool ok;
|
||||||
i1=tt.toInt(&ok);
|
i1=tt.toInt(&ok);
|
||||||
if(ok and i1>=-50 and i1<50) {
|
if(ok and i1>=-50 and i1<50) {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[Setup]
|
[Setup]
|
||||||
AppName=wsjtx
|
AppName=wsjtx
|
||||||
AppVerName=wsjtx Version 1.0.0 r3320
|
AppVerName=wsjtx Version 1.0.0 r3323
|
||||||
AppCopyright=Copyright (C) 2001-2013 by Joe Taylor, K1JT
|
AppCopyright=Copyright (C) 2001-2013 by Joe Taylor, K1JT
|
||||||
DefaultDirName=c:\wsjtx
|
DefaultDirName=c:\wsjtx
|
||||||
DefaultGroupName=wsjtx
|
DefaultGroupName=wsjtx
|
||||||
|
@ -1,12 +1,32 @@
|
|||||||
WSJT-X ChangeLog
|
WSJT-X ChangeLog
|
||||||
------------------------------------------------------------------
|
------------------------------------------------------------------
|
||||||
|
|
||||||
We are getting VERY close to a stable "Version 1.0" release of WSJT-X.
|
May 30, 2013: Version 1.0, r3323
|
||||||
|
--------------------------------
|
||||||
|
|
||||||
|
With this release of WSJT-X Version 1.0 we include a few (relatively
|
||||||
|
minor) enhancements in response to user requests, as well as some
|
||||||
|
program polishing and cleanup. Active program development will
|
||||||
|
continue, but new releases will become less frequent.
|
||||||
|
|
||||||
|
1. New option on the Setup menu: "Tx freq locked to Rx freq".
|
||||||
|
|
||||||
|
2. Double-click on a decoded "73" message now sets Tx5, rather than Tx6.
|
||||||
|
|
||||||
|
3. New keyboard shortcuts: Alt+1 through Alt+6 set the next Tx message
|
||||||
|
at the corresponding number.
|
||||||
|
|
||||||
|
4. PTT control via Ham Radio Deluxe has been imnplemented and tested.
|
||||||
|
|
||||||
|
5. "Tool Tips" are now provided for most on-screen controls.
|
||||||
|
|
||||||
|
6. Under Linux and OS X, listings of available audio devices and APIs
|
||||||
|
have been corrected.
|
||||||
|
|
||||||
|
7. Tab order among GUI controls has been cleaned up.
|
||||||
|
|
||||||
|
8. Updates to the WSJT-X User's Guide.
|
||||||
|
|
||||||
At that point program features will be frozen temporarily while we
|
|
||||||
concentrate on any necessary bug fixes. If you have bug reports on
|
|
||||||
version 0.99 r3295, please send them to us at
|
|
||||||
wsjtgroup@yahoogroups.com as soon as possible!
|
|
||||||
|
|
||||||
May 22, 2013: v0.99, r3297
|
May 22, 2013: v0.99, r3297
|
||||||
--------------------------
|
--------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user