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:
Joe Taylor 2013-06-05 18:42:55 +00:00
parent 1f86d76eca
commit 0ab75f203b
4 changed files with 28 additions and 7 deletions

Binary file not shown.

View File

@ -1383,7 +1383,8 @@ void MainWindow::readFromStdout() //readFromStdout
bool b=stdmsg_(msg.mid(0,22).toLatin1().constData(),22);
QStringList w=msg.split(" ",QString::SkipEmptyParts);
if(b and w[0]==m_myCall) {
QString tt=w[2];
QString tt="";
if(w.length()>=3) tt=w[2];
bool ok;
i1=tt.toInt(&ok);
if(ok and i1>=-50 and i1<50) {

View File

@ -1,6 +1,6 @@
[Setup]
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
DefaultDirName=c:\wsjtx
DefaultGroupName=wsjtx

View File

@ -1,12 +1,32 @@
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
--------------------------