Difference between revisions of "Release Notes"

From Win-Test Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 +
==Release information (4.2.0) (October 21, 2009)==
 +
 +
This has not escaped the attention of some of you, Win-Test v4.2.0 has
 +
been released.
 +
 +
  http://download.win-test.com/v4/bin/wt-4.2.0.exe [Full, 14MB]
 +
  http://download.win-test.com/v4/bin/wt-4.2.0-update.exe [Update, 6.1 MB]
 +
 +
You will need your login/password to access these files on the server
 +
 +
===Bugfixes===
 +
* Bugfix: Conversion of binary file containing QTC from v3 to v4. Tks DJ4MZ.
 +
 +
* Better support of Win7 and Wine/Linux.
 +
 +
* Bugfix (#258): Failure of swap radio key to switch rx focus for the MK2R+ as long as one not manually changed the rx focus to stereo or transmitted anything in CW. Tks GW3NJW, OH1JT, OM7ZZ, W4TV.
 +
 +
* Cosmetic: avoid rx focus leds flickering when switching tx focus. Tks OM7ZZ.
 +
 +
* Bugfix (#187): Ctrl-Shift-Tab doesn't appear to toggle RUN / S&P in Secondary radio window. Tks N6TV, GW3NJW.
 +
 +
* Bugfix : K3 serial port default setup modified : The number of stop bits was wrong - It is now set to one stop bit, according to the K3 users manual. Tnx N6TV.
 +
 +
* ON Winter and Spring contests : Sections list updated. Tnx F5IN and ON5GQ.
 +
 +
* Bugfix (#257) : CQWW DX RTTY : Cabrillo template modified to match the specs. Tnx N6TV.
 +
 +
* Bugfix : CQWW DX RTTY : Allowed band changes modified to 8 in MS and M2 categories (rules 2009). Tnx F5JY.
 +
 +
* Bugfix (#164): TI5/NP3D is now parsed as TI. Tnx JE2UFF/W2UFF.
 +
 +
* CTY files : 4U30VIC now considered as 4U1V in an appropriate way. Tnx DL6LAU.
 +
 +
* Bugfix : After reloading a WAE log, the QTC count in the Summary window was wrong. Tnx DK1AX.
 +
 +
===New Features===
 +
 +
* Scripting: wtQso:GetModeId() and wtKeyer:GrabHighlightedCallsign() function added. Note that wtKeyer:GrabHighlightedCallsign() works only in RTTY, and relies on the INSERT key option set in the RTTY setup dialog.
 +
 +
* New option in the Clock wnd to "wizz" this window a la MSN at rounded hours, to draw attention of the op (useful in multi-op configurations).
 +
 +
* New feature in Tools / Scripts manager... : Allows to edit, create, delete or rename scripts. It's also used to assign a key and/or an argument to a script (its value will be available in the wtArgument global variable).
 +
 +
* Scripts called by an assigned key can return +1 to be called again *after* the WT key processing ooccured. A new API wtApp:IsPostKeyProcess() is introduced to distinguish the "pre"- process from the "post"-process.
 +
 +
Example:
 +
 +
RunSPSwitch.wts  (assigned to Ctrl-Tab) :
 +
 +
  if (wtApp:IsPostKeyProcess()) then
 +
    if (wtQso:IsOperatingModeRun()) then
 +
      wtApp:SetWindowColor(-1, 0, 165, 165);
 +
    else
 +
      wtApp:SetWindowColor(-1, 128,128,128);
 +
    end;
 +
  else
 +
    return 1; -- Triggers a post key process call
 +
  end;
 +
 +
Note : This feature works only for users scripts called with an assigned key (and *not* with embedded overriden scripts).
 +
 +
* Scripts can now be called from a CW or a RTTY message. You must use the #SCRIPTNAME(ARGUMENT) notation. The argument (and parenthesis) are optional. The script will be called synchroneously, but is executed in the main thread, meaning that it is not blocking the CW/RTTY stream.
 +
 +
* New feature in Options / Script Editor configuration : Allows to use any external text editor to edit scripts. The default text editor is a custom package of SciTE (Scintilla Text Editor - free and open source) available on our repository
 +
 +
http://download.win-test.com/utils/SciTE_for_Win-Test.zip
 +
 +
Unzip the package and move the entire SciTE folder in the Win-Test installation directory.
 +
 +
* YO DX Contest : Rules 2009 : In mixed mode, a station can be worked in both modes. Tnx N2YO.
 +
 +
* Tools / Check log for possible bad exchanges : When the contest do not use serial numbers, use the QSO index in the report remarks. Tnx F1HAR @ TM0HQ.
 +
 +
* Keys redefinitions : The Pause and Scroll-Lock keys can now be used. Be warned that Ctrl-Scroll-Lock and Ctrl-Pause (that are considered as "identical" by the system) are used by Windows to cancel dialogs. Thus, it is advisable to not use them for key redefinition.
 +
 +
 +
 
==Release information (4.1.0) (August 8, 2009)==
 
==Release information (4.1.0) (August 8, 2009)==
  

Revision as of 10:02, 31 October 2009

Release information (4.2.0) (October 21, 2009)

This has not escaped the attention of some of you, Win-Test v4.2.0 has been released.

 http://download.win-test.com/v4/bin/wt-4.2.0.exe [Full, 14MB]
 http://download.win-test.com/v4/bin/wt-4.2.0-update.exe [Update, 6.1 MB]

You will need your login/password to access these files on the server

Bugfixes

  • Bugfix: Conversion of binary file containing QTC from v3 to v4. Tks DJ4MZ.
  • Better support of Win7 and Wine/Linux.
  • Bugfix (#258): Failure of swap radio key to switch rx focus for the MK2R+ as long as one not manually changed the rx focus to stereo or transmitted anything in CW. Tks GW3NJW, OH1JT, OM7ZZ, W4TV.
  • Cosmetic: avoid rx focus leds flickering when switching tx focus. Tks OM7ZZ.
  • Bugfix (#187): Ctrl-Shift-Tab doesn't appear to toggle RUN / S&P in Secondary radio window. Tks N6TV, GW3NJW.
  • Bugfix : K3 serial port default setup modified : The number of stop bits was wrong - It is now set to one stop bit, according to the K3 users manual. Tnx N6TV.
  • ON Winter and Spring contests : Sections list updated. Tnx F5IN and ON5GQ.
  • Bugfix (#257) : CQWW DX RTTY : Cabrillo template modified to match the specs. Tnx N6TV.
  • Bugfix : CQWW DX RTTY : Allowed band changes modified to 8 in MS and M2 categories (rules 2009). Tnx F5JY.
  • Bugfix (#164): TI5/NP3D is now parsed as TI. Tnx JE2UFF/W2UFF.
  • CTY files : 4U30VIC now considered as 4U1V in an appropriate way. Tnx DL6LAU.
  • Bugfix : After reloading a WAE log, the QTC count in the Summary window was wrong. Tnx DK1AX.

New Features

  • Scripting: wtQso:GetModeId() and wtKeyer:GrabHighlightedCallsign() function added. Note that wtKeyer:GrabHighlightedCallsign() works only in RTTY, and relies on the INSERT key option set in the RTTY setup dialog.
  • New option in the Clock wnd to "wizz" this window a la MSN at rounded hours, to draw attention of the op (useful in multi-op configurations).
  • New feature in Tools / Scripts manager... : Allows to edit, create, delete or rename scripts. It's also used to assign a key and/or an argument to a script (its value will be available in the wtArgument global variable).
  • Scripts called by an assigned key can return +1 to be called again *after* the WT key processing ooccured. A new API wtApp:IsPostKeyProcess() is introduced to distinguish the "pre"- process from the "post"-process.

Example:

RunSPSwitch.wts (assigned to Ctrl-Tab) :

  if (wtApp:IsPostKeyProcess()) then
    if (wtQso:IsOperatingModeRun()) then
      wtApp:SetWindowColor(-1, 0, 165, 165);
    else
      wtApp:SetWindowColor(-1, 128,128,128);
    end;
  else
    return 1; -- Triggers a post key process call
  end;

Note : This feature works only for users scripts called with an assigned key (and *not* with embedded overriden scripts).

  • Scripts can now be called from a CW or a RTTY message. You must use the #SCRIPTNAME(ARGUMENT) notation. The argument (and parenthesis) are optional. The script will be called synchroneously, but is executed in the main thread, meaning that it is not blocking the CW/RTTY stream.
  • New feature in Options / Script Editor configuration : Allows to use any external text editor to edit scripts. The default text editor is a custom package of SciTE (Scintilla Text Editor - free and open source) available on our repository

http://download.win-test.com/utils/SciTE_for_Win-Test.zip

Unzip the package and move the entire SciTE folder in the Win-Test installation directory.

  • YO DX Contest : Rules 2009 : In mixed mode, a station can be worked in both modes. Tnx N2YO.
  • Tools / Check log for possible bad exchanges : When the contest do not use serial numbers, use the QSO index in the report remarks. Tnx F1HAR @ TM0HQ.
  • Keys redefinitions : The Pause and Scroll-Lock keys can now be used. Be warned that Ctrl-Scroll-Lock and Ctrl-Pause (that are considered as "identical" by the system) are used by Windows to cancel dialogs. Thus, it is advisable to not use them for key redefinition.


Release information (4.1.0) (August 8, 2009)

Download here:

http://download.win-test.com/v4/bin/wt-4.1.0.exe [full, 10.6 MB]
http://download.win-test.com/v4/bin/wt-4.1.0-update.exe [update, 2.7 MB]

(you will need your login/password to access these files on the server)

New Features

  • IOTA contest: "Search for possible bad exchanges" (tools menu) implemented.
  • Rotator Azimuth orders are now based on the locator instead of the DXCC on 50 MHz and above. On 50 MHz and 70 MHz, if the locator field is empty in the log, then the azimuth is computed against the DXCC prefix.
  • New text commands RUNSP/NORUNSP and RUNSPON/RUNSPOFF to enable or not the RUN/S&P switching. Tnx N6TV.
  • New contest files : You can now customize the file name and sub dir formats. See Options / Log / New contest files properties... Tnx N6TV.
  • IOTA contest : Default IOTA reference is now guessed, according to the new CTY_IOTA.DAT file (must be in the countryFiles directory). This file is based on DXCC countries, callsign prefixes, call areas and oblasts.
  • IOTA contest : Check mult wnd (F10) : IOTA references are now autocompleted for check during QSO entry.
  • New File menu items to explore more easily several WT-related directories. Tnx F5VIH/SV3SJ and N6TV.
  • DX Window (Alt-A) : Spot can be now passed to the secondary radio or the non-active radio. Tnx DL8WAA.
  • M2/Orion rotators added in wtRotators. Tks IK0HBN.
  • The RRTC Cabrillo files are now following the version 3 specs. And the contest name is modified as "OZCHR". Tnx F5VIH/SV3SJ.
  • CW and RTTY msgs enlarged to 120 characters.
  • Extra information files : Multiple spaces or tabs can now separate the callsign from the data. Tnx G0ORH.
  • New File dialog : Ensures the validity of the entered file name. Tnx DJ7MGQ.
  • ESM : S&P : When the entered callsign is a dupe, WT now blocks call. To override this behaviour, use F4 to call and F2 to send exchange (by default). Tnx GW3NJW.
  • VHF+ contests : Mode is now displayed in the main log wnd if the contest has been set to handle several modes (Mixed or All modes). Tnx DK2ZF and DL5NAH.

Bugfixes

  • The displayed azimuth in the Rotator Window could be wrong in the "Stacks" and "Rotors" tabs.
  • EUHF : Statistics window (Ctrl-F9) limited to one day. Tnx F5VIH/SV3SJ.
  • IOTA contest : When an invalid IOTA was entered, clearing the field afterwards wasn't clearing the '?' flag.
  • Contest Recorder:
    • Infinite loop in MP3 file rotations. Tks DD5FZ.
    • Memory Leak using LAME encoder.
    • MP3 Codec enumeration in the player. WT was not always detecting the appropriate Codec.
    • Playback with Windows VISTA. Note that the LAME Codec is an Encoder Codec only.
  • When radios were swapped (*), the ESM QSO status was somewhat messy.
  • For some contests, the letters for cut numbers were inappropriately translated.
  • After a WT v3 file conversion, the main window caption was not updated.
  • MP3 files information : The file date was off by one month. Tnx F5VIH/SV3SJ.
  • Cabrillo Import : The station name for all worked QSO was CABRILLO. Now, it uses the name entered in the Contest Settings dialog. Tnx F5VIH/SV3SJ.
  • Callsign text color wasn't reset after F11 or empty callsign if the callsign check wasn't automatic. Tnx DJ0ZY.
  • Delete QSO : Several structures inconstancies fixed when a Q was deleted in the middle of the log.
  • In REG1TEST exports (European Standard File for V/UHF Contests), QSO logged in mode different than CW or SSB was not well formatted. Tks DL5NAH.
  • Options / Log / Colors... menu was broken. Tnx F5LIW.
  • Check Country wnd (F10) : Sun status bars now display "NO DATA" when SS and SR are not computed (JW, JX etc.). Tnx DJ0ZY.
  • (Task #245) Network advanced settings : The Bridgehead setting was not saved. Tnx KL7RA and N6TV.
  • Opening a .wtb file in the command line, by drag'n'drop or a double-click on it was starting an infinite loop. Tnx N6TV.

Release information (4.0.1) (June 30, 2009)

Bugfixes

  • Options / Toolbar setting was ignored on startup. Tnx N6TV.
  • ESM was broken. Tnx F1HAR.
  • Registration Key was broken.

Release information (4.0.0) (June 26, 2009)

First release of Win-Test version 4

Minimum requirements : WinXP (2k not tested but may mork - feedbacks welcome). PIII 500 MHz - 64 MB RAM - 800 x 600 screen res.

New Features

Summary of the new features:

  • Rotators Controls
  • Integrated MP3 contest recorder and player: Use the Options / MP3 configuration to set the audo device that will record and play the file, the various sampling and bit rate settings. You can also set a maximum filesize. Over this limit, additional files will be automatically created. To start recording click on the record button of the window (a blinking red square will be displayed in the clock window too). Once the contest is over, click on the record button again to stop recording. Now, you can browse your log with usual arrow keys and to listen to a specific Q but clicking the Play button or use the AltGr-Enter combination (some keyboard do not have an AltGr key, so use Ctrl+Alt instead). You can also go back and forward with the adapted buttons or use AltGr-Left and Right. To pause/play, you can use the AltGr-Space combination.
  • ESM (Enter Sends Message): Enabled/Disabled by the Tools/Data entry/ESM Enabled menu. You can also use the ESM/NOESM or ESMON/ESMOFF text commmands. It relies on the following messages assignation :
 F1 : CQ
 F2 : Sent report
 F4 : Mycall
 F5 : Logged callsign ($LOGGED)
 F7 : ? (or "Again ?" in phone)
 INSERT : Callsign + sent report
 PLUS : TU + enter Q

When the ESM is enabled, as the return key *can't* be used anymore to log silently a QSO, the key combination Ctrl+Plus has been introduced and added for this purpose.

  • Variable speed for the integrated voice keyer : An exclusive Win-Test feature! You can play your voice files at a different speed (between -20% and +70%) from the original recording speed. Record your voice files at normal speed, and use Alt-F9/F10 (as in CW mode) to play them at a different speed. The speed in displayed at the bottom of the (Rate) Alt-R window.
  • On the fly callsign pattern check based on the K1TTT callsign.pat file (over 400 rules applied today). Use the Tools / Data entry / Callsign check menu option. You are encouraged to report the author any mistakes or improvements of this file (k1ttt@arrl.net). The file is located in the cfg directory (see below).
  • Improved F10 window with graphical indication of the sun status on both sides of the QSO.
  • Keyboard mode (Alt-K) enhanced. The backspace is not supported yet and replaced by "E E " like you do when you use a regular key.
  • Data (.wt4) and notes (.not) files can be transferred thru the WT network without needing any file or directory sharing. Very convenient to gather all logs in a multi-stations environment once the contest is over. Use the Tools / Download thru the network... menu.
  • Enhanced compatibility with Vista and Seven (Auxiliary and ini files are now stored in directories these OS accept with no additional rights:
 Windows XP : Documents and Settings\All users\Application Data\Win-Test\
 Windows Vista : ProgramData\Win-Test\

Note that these directories may be hidden by Windows Explorer. Check the Folders Options of Windows Explorer.

Several sub-directories are created and used by Win-Test. Their names are self-explanatory.