diff --git a/WSJT-X_Users_Guide.docx b/WSJT-X_Users_Guide.docx index 590c3b0db..ad282c0a6 100644 Binary files a/WSJT-X_Users_Guide.docx and b/WSJT-X_Users_Guide.docx differ diff --git a/mainwindow.cpp b/mainwindow.cpp index 8b3cb3196..d33bbfe5e 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -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) { diff --git a/wsjtx.iss b/wsjtx.iss index 25e73e763..7f8a671f0 100644 --- a/wsjtx.iss +++ b/wsjtx.iss @@ -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 diff --git a/wsjtx_changelog.txt b/wsjtx_changelog.txt index a9ab23f48..ea05cf75e 100644 --- a/wsjtx_changelog.txt +++ b/wsjtx_changelog.txt @@ -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 --------------------------