1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053
|
=2.49α=
=2.48=
2011-04-05
* renamed debian to debian.unofficial
* removed -lusb, tnx to EA4TV
* hamlib rotator fix, tnx to OK1HRA
* fixed slow chart redraw without qsos
* fixed soundwrapper argc bug, tnx to DL1JBE
* fixed possible pointer shot of '\0' behind last_screen
=2.47=
2011-02-16
* fixed names after Alt+C, tnx to OK1MZM/YL
* exact qrg in cabrillo, tnx to OK2CQR
* fixed rig qrg set after band switch
* fixed band LO freq
* debian/ updates for Jaime EA4TV
=2.46=
2011-01-18
* set default rst-s after band change
* accpet portaudio options in tucnakrc
* accept subwin KST(15) as Shell in tucnakrc
* fixed race condition in eventpipe mutex create
=2.45=
2011-10-12
* fixed map for photo feature
* strip binaries in deb package
* fixed sconn free bug
* support for libpng 1.5, tnx to DL1JBE
* fixed chart file not found message
=2.44=
2011-07-29
* hdkeyb is started only with rotar(s)
* removed dump on Ctrl+L
* fixed sdev error messages handling
* fixed lockfile delete after keying device close
* fixed crossmode warning in qso check
* show wkd info from qrv list
* fixed chart.c compile under msvc
* fixed bug in CW speed using winkey. TNX to DL5YBZ
* fixed font draw with height!=16 under graphic windows
=2.43=
2011-06-28
* wkd, qrv in qso info
* alt+k accepts usernames like call-2 and call/p
* ctrl+k does not add (CALL)
* rst in edit qso saved as uppercase
* network info for -i
* actual band selected in band menu
* show more chars of cw cq in menu
* fixed minor bug in wiki and html export
* fixed crash in wiki export without sdl
* fixed crash in macro $B without contest
=2.42=
2011-05-31
* fixed crash in contest close
=2.41=
2011-05-25
* released as tribute to Douglas Adams. Don't panic!
* fixed trace_sock
* fixed udev script - usb_device -> usb
* fixed some gcc warnings
* html/http/wiki exports map and chart as png
* http server for contest progress presentation
* changed fifo time format to HH:MM
* fixed wiki map description
* fixed volume indicator flicker
* fixed trace condition
* show chart files without sdl
* fixed grid & boundaries in map, tnx to DG6MAN
* libgpm is disabled by default
* fixed player and chart windows add
* fixed network interfaces detect
* ignored duplicate $GLIB_CFLAGS, $GLIB_LIBS in configure.in
* new macros in tucnak -s
=2.40=
2011-04-05
* added _cv_ in autoconf cached variables
* updated missing script
* fixed iconv detection
* fixed tucnakrc load under WIN32
* sdev trace
* trace rewrite
* split master db into more strings
* rewritten cbr items choice for OKOM DX
* compile under msvc and ming but unusable at this time
* fixed qrv edit/insert (should overwrite another item)
* added player (and chart) window types in Add subwin
* removed testing code for Ctrl+P in main inputline
* experiments with waterfall palette and filtering
* frequency axis in fft scope
* frequency argument in soundwrapper for testing
* tab complete file in file import
* chart subwin
* fixed cursor position in inputline history alt+h
* degree sign in C_W quick search
* fixed alt+letter in qrv search
* rig error code instead of qrg
* changed rig debug level
* fixed rigs with unsupported rig_get_vfo()
* +1/-1 alloc bugs detection with --enable-leak-debug
* fixed qrv insert from keyboard
* fixed text upcase in qrv insert/edit
=2.39=
2011-02-25
* fixed ftdi_context portability between libftdi versions
* qso gain diagram
* qrv gain diagram respects worked count
* qrv item insert
* qrv item edit
* new contest loads ~/tucnak/qrv
* fixed qrv points drawing when mouse move
=2.38=
2011-02-20
* fixed bug in map window during contest load
* fixed memory alloc problem in master db
* degree sign as hexa constant 0xb0
* rewritten qrv database
* fixed master database comment filter
* increased length of contest option numbers, tnx to RU2FM
* calls from master database are never deleted
* fixed contest date in contest options
* qso check warning if exists remark
* fixed qsonr in cabrillo output, tnx to OK1HRA
* fixed avg unit pts/km in wiki and html output
* fixed compile without various --without combinations
* removed forgotten font13x24.png create
* QRG in edit QSO
* correct size of screenshots in HTML export
* fixed runmode CQ without hamlib, tnx to DL1JBE
* fixed Ctrl+3 to Ctrl+9 under SDL
* wav player seems to be usable
=2.37=
2010-10-27
* two letters input moved to unresolved area
* fixed some minors in runmode, tnx to OK3MAD
* fixed soundwrapper sound frequency
* rewritten runmode for A1/MMC
* fixed runmode CQ only in CW mode (TNX to OK1HRA/TC03W)
* fixed runmode TU
* skeleton for wiki publish
* fixed TU give in run mode
* > for qrb>average in qsocheck
* changed delay between hamlib rig calls for slow radios
* fixed string truncate in inputline insert
* rig freq read reads from actual VFO
* rig mode change keeps bandwidth
* fixed autogive=0
* expedition mode
=2.36=
2010-09-27
* fixed rig ID choose
* fixed segv in loading of contest with HF window and > 6 active bands
* do not add 'similar call' to qsocheck when this call is also worked
* set rig handshake to none (default for TS850 is CTS/RTS)
* set rig timeout to 500ms (480s is unusable)
* gdb and rigctl under cygwin
* fixed cygncurses-9 dependency for sh.exe under cygwin
* updated tucnakdw (4X, ZC4, many UA)
* improved edit qso time parsing
* autogive mode after some typed chars
* macro $B
* bell sign for character 7 under sdl
* in macro $I dots are replaced by question marks
* added baudrate for rig control
* fixed R9SA parsing as report (tnx to OK1HRA)
* WAZ and ITU in HF window
* rewritten exc list in HF window
* master call database
* fixed SFI parse
* "live" QSO list in HF window
* enlarged layout of HF window
* updated UA wwls in tucnakdw
* fixed missing excs display
* argument -m sets time from master PC
* 'c' key for center screen to QTH
* 'p' key for photo in map
* fixed second part of CQSOs for method 16
* summery table with links to bands in html export
* fixed buffer and period time to ms (was us)
* similar calls are computed using Levenshtein distance
* cleared qso check message
* fixed top10 formatting for qrb>=1000 km
* reverted to old udev rule style (for lenny)
* fixed memory leaks in dwdb.c, rotar.c
=2.35=
2010-06-30
* fixed crash in fft calculation
* support for Championnat de France THF
* alt-j: short access for A/C and M/S cq
* qrv list save
* configure checks for make
* fixed large qso number display in global QSO mode, tnx to DL5YBZ
* support for prefixes with slash (3D2/C)
* fixed crash after IT9x call (* in prefix in cty.dat), tnx to DL5YBZ
* fixed $MN macro, tnx to OK1HRA (GL in WPX!)
* send CW2 and save QSO also after QSONR
* list import
* support for odd/even/1st/2nd TX (A/C, M/S)
* fixed suid of soundwrapper
* updated cty.dat
* SYSFS{} changed to ATTR{} for new udev versions
=2.34=
2010-04-26
* changed time separator from . to :
* four digits are QSO number, not month and day of month
* deb package uses suided soundwrapper
* macro $I
* fixed statistics calculation after loading of contest
* added frequency to adif export
* fixed exchange output in cabrillo and adif export
* changed format of ChangeLog to Mediawiki source format
* get back generated debian/changelog, it seems we have no DEB maintainer
=2.33=
2010-02-18
* fixed usaca multiple names
* rit clear after qso save in run mode
* support for ARRL International DX Contest
* fixed ARRL VHF scoring
* turned off cq repeat for cwdaemon
* rig changes: poll interval, mode and band transfer
20100213: 2.32
cabrillo export for ARRL VHF contests
fixed leak debug on AMD64
fixed double rig_cleanup()
fixed using of non-serial ports in hamlib (f.e. rpc.rigd, type 1901)
rover (/R) are not dupe when are in different big wwl
fixed EDI properties dialog
script for Asus EEE binary and optimized configuration
updated tucnakrc (HF bands, windows)
20100101; 2.31
fixed crash if mode is changed without FFT window. TNX to DF4OR
crossmode test in QSO check
20091130: 2.30
fixed device locking under cygwin, tnx to G1OGY
20091103: 2.29
fixed corrupted contest date display in Open contest from net
fixed tucnakdw; JN89 is in OM
fixed cwdaemon and sdev double freeing
recording level has filtered DC
CW window holds PTT all time it is opened
removed debugging show of 1's under volume indicator
fixed (null) display in empty qrv list
speeded up sdl key repeat
removed delayed screen redraw
fixed KST new call upcase
DX network command sends only valid spots, no KST or other garbage
fixed rig qrg display (mode switch worked)
fixed ebw db import error message
20090921: 2.28
added font scale, height 16 to 32 pixels
removed double font support
updated display format of sked
sked popup window
updated German translation, tnx to DK1HJ
directories are created with rights 0777 (& umask)
frequency spectrum display (depends on libfftw3)
20090809: 2.27
changed GHz bands 120->122, 144->134. You need to change it in your tucnakrc!
created local svn repository
added 4O-YU and HV boundaries to map
qsocheck checks unknown DXCC prefix
cor is calculated in thread
updated tucnakdw, synced with lx 1.36
automatic spacing of windows titles to fit screen
fixed timeout in sconn_ftdi_read
fixed bug in free_ssbd (cwda keeps not null but freed)
optimized screen redraw on slow computers
ptt lead-in delay for winkey
qrv list
20090423: 2.26
castellano translation, tnx to LU9JMG!
changed cw weight sense from obscure cwdaemon type to logical winkey type (30..70)
fixed operator handling via network, causes bad operator name in Network monitor
dxc shows only unmaked qsos
configurable band switching
rig freq can be entered by .300 (means 300 kHz, MHz are unchanged)
new macro $e ('code' string when contest code was entered during file recording)
rewritten parts of sdev stuff (rotator)
rewritten rig control to threads
fixed long delay at program exit (caused by rotator ttys)
fixed DX cluster spot handling when no zulu time is present on the end. Tnx to DK2ZO
support for winkey+davac4 at same time (experimental)
fixed negative number read from tucnakrc*. Affected are ssbd_plev and ssbd_rlev
fixed davac4 opening when an error occur
ssbd use threads instead of processes
scope subwin
fixed rig_ssbcw_shift, was constant value 660 Hz
fixed buggy usb_info(), tnx to OK1CED
fixed missing ftdi_usb_get_strings() in libftdi 0.7, tnx to OK1CED
fixed bug in menu_rotar_delete
20090222: 2.25
fixed compile bug without SDL (rotar.c sw_map_update_rotar)
fixed minor bug in sndfile configuration
20090212: 2.24
removed unused experimental sdldyn code
updated tucnakdw, tnx to OM4AA!
data/sortdw.pl
show rotar azimuth on map
support for ftdi and remote rotator
fixed '59001' input. Bad regexp. Tnx to G1OGY!
fixed rotator serial port setup, tnx to hamlib
RSGB variants M1-M4 in tucakwiz, tnx to G1OGY!
20081221: 2.23
changed RSGB contest scoring (dxcmult=1, total_method=2)
fixed EDI export (EXC count)
first support of rotator options dialog (not done!)
first support for global QSO NR
fixed bug in clear_tmpqsos, can cause segfault
fixed compilation problem without hamlib, tnx to DL1JBE
added new easier way to create dialogs
contest name, qsos, qsop, total pts in statistics window
total method 3 for cq ww dx contest, counts al bands together
fixed defrstr at dialog load
cq ww dx contest scoring
show band name in meters for hf bands
tucnakwiz fixes
20081213: 2.22
reworked tucnakwiz format to have same items as data files
removed gen-conly, automatized intl creation
rsts entered as 59, or 599,
rstr entered as 59' or 599'
qsonrr entered as 001;
rewritten parts of exc
qso inputline restricted only to valid chars
fixed old (<abt 2.14) contest files loading
20081205: 2.21
first implementation of RSGB DC multipliers finished
exc stats in stats window
verified exchange (but not waz/itu) can be entered directly without .
added operator to html export
20081203: 2.20
next part of work on optional exchange
search for wwl/exc ony when is used
possibility must not to confirm wwl/exc
mixer volume settings for playback and recording
fixed record bar removing after record end
update excdb from contest/band
option for disabling screensaver
optimized screensaver turn-off
cancel button was interpretted as ok in some dialogs
added range checks for numeric inputlines in dialogs
ctrl+shift+k changed to ctrl+k
rig configuration dialog
winkey configuration dialog
fixed winkey paddle break-in
davac4 ftdi_state locking
ptt lead in delay
minimal and maximal cw speed
extended band configuration dialog, covers all config items
initial support for per-band rig_lo
20081112: 2.19
fixed 599EXC entry, enabled only in contests without qsonr
fixed exctype=unused in contest options
support for winkey2 pushbuttons
rig, ttys and winkey locking
fixed fhs_lock
under sdl languange chage changes also charset
graphics use "virtual" terminal type named sdl
fixed ctrl+V conflict between special inputline char and band change
fixed bug when band is switched to read-write and cursor is not left
fixed wrong inputline focus by mouse hover, tnx to OK1NP
bitmap in html export files linked to tucnak.nagano.cz
repeat of winkey cq
rewritten initialisation of winkey
support for backspace in cwwindow
cwwindow accept only keystrokes without Ctrl or Alt
minor changes in memory info dialog
Makefiles also in subdirs intl, pkg and win32
improved dynamic SDL loading but still not work
removed debugging qrg from trig.c
20081030: 2.18
saving and loading highlighted callsign list - file hicalls
KST /CQ command with new callsign
disabled ntpq under cygwin
fixed bad cwwindow characters routing for winkey
send uppercase chars to winkey
winkey hostmode (blind)
tmpqso entry will start recording if was previously interrupted by timeout
arguments --without-XXX in configure.in, tnx to DL1JBE
removed unmaintained Gentoo ebuild files
20081027: 2.17
edit->fix QRG
first blind support of winkey
vhf database is also loaded from ~/tucnak/vhf.dbf
time is running when dialogs are opened
tab closes cw window
fixed cw window cursor
delete old characters in cw window
fixed break of played characters in cw window
20081013: 2.16
hotfix for segfault after network problem
20081002: 2.15
slash can be mapped to other character and vice versa
double size of font
fixed "bug that cannot happen" - crash when TCP connection is closed and
more lines is in input buffer (rdbuf). Happens mostly on slow
computers and/or under heavy load.
first support for dynamic load of libsdl
fixed frequency display > 2^31Hz
removed forgotten debug sleep(10) after sigpipe
20080904: 2.14
probably fixed alsa bug (EINTR instead EPIPE)
limited alsa recovery to 5 times
band limitations in wizzard
fill rst-r
exc database
reworked optional exchange types
limited display of OE to 4 chars. stored size is unlimited
AVG statistics moved right to Total-Points
found bug in rc loading - can cause crash with new items in tucnakrc
simplyfied rotator code using process
removed thread-unsafe getpwuid
rig control using hamlib
skeds are sepparated by band. Removed sked file, data is in txt files
ntp synchronization check and warnings
ggsend band equipment for active contest over net
kill subwin shells with SIGKILL under cygwin
remember spypeers in spy file
remember file:line of last mutex locks (for deadlock debug)
fixed DXC crash when bandchars are not consequent
spy peers are showed on all bands
spy can spy all read-write bands
sent RST doesn't change to default after mode change when it was entered by operator
trace_xxx's write only to debug log and log files, not to screen
text QRV on is showed red
QRV bands in call info
shift+arrows and zoom keys do fine zoom/shift
alt+k in shell inputlines fill /CQ CALL command for ON4KST chat
talk works across different contests or without contest
20080713: 2.13
fixed crash in alt+i without contest
runtime glibc version in settings and tucnak -i
removed spaces from variables bellow
CFLAGS, LDFLAGS and LIBS in settings
ld -z now when supported
fixed crash in cwdaemon_send_defaults(), tnx to OK1HRA
fixed overwriting of edi when ok_section_* is no set
fixed compiler warning in free_keymaps()
fixed !rotars crash after SIGTERM
added share/tac2tuc.pl by G1OGY
fixed loading of ~/tucnak/tucnakdw and ~/tucnak/cty.dat, tnx to G1OGY
fixed optimalisation show in settings
fill sked QRG when target band is changed
ppdev present in settings
data sizes and endianity in settings
qrv on bands are taken from all bands, not only from higher bands
qrv on bands doesn't show already worked stations
tucnak -i shows program version
contest close breaks recording
handled select() EINTR in cwdaemon thread
cygwin version in settings
updated E7 and CN in tucnakdw (G1OGY)
in qsocheck/call info all qsos has "call is without /p" flag
snapshot has bandchar in filename
html image uses bandchar in image links
html exports shows own locator
libgpmg1 is showed in settings as optional
20080703: 2.12
removed uname.exe from NSI
alsa recording continue after buffer overrun
removed KST "watchdog"
64px startup icon
removed defrc.c replaced by data/tucnakrc
configure shows library versions
fixed some gcc-4.3 warnings
fixed CT3, added CN and E7 in tucnakdw, tnx to G1OGY
updated share/applications/tucnak2.desktop
20080620: 2.11
actual cty.dat
externa cwdaemon support again
qso check compares exact callsigns (/p) and locators on other bands
statistics window shows odx per hours
fixed screenshot in 8 and 16 bpp, tnx to OK2FUG
PA tune function Alt+T in CW mode
fixed bandchars beginning with "W" (lost item in arrays)
fixed possibly ambiguous parentheses in ADDQSO
20080605: 2.10
fixed "59," crash, tnx G1OGY for inspiration
removed gmtime(), replaced with gmtime_r()
qsocheck.txt is ignoring older C_W items than 2 years for /P and similar checks
time of qso in qsocheck.txt
fixed missing newline in qsocheck.txt
QSO mode in TOP10
columns titles for hours part in stats window
fixed macro $V - it was same as $C
increased length of screen resolution textboxes in misc options
fixed reversed polarity of ssbway signal in davac4
20080502: 2.09
hotplug scripts for davac4 usb device
support for davac4 by using libftdi
wildcard '?' same as '.'
support for parallel port under cygwin using inpout32.dll
20080227: 2.08
install script for NSIS
support for cygwin
reworked SSBD dialog, changed to Audio
menu.c section in header.h split to menu1..menu5
scandir taked from glibc because of ambiguous prototype
shift+backspace is same as backspace
updated debian/*, tnx PG4I
QSO check sets suspicous callsign (?/! as next to locator)
QSO check in menu
call information dialog Alt+I
added highlight regexps for DX cluster
fixed accidental band activating with Alt+letter
map zoom by keys +/- has center in map center not mouse cursor
new hotkey Ctrl+P for playing last recorded sample
fixed recording when CW macro is undefined or SSB wav file is not found
fixed quicksearch drawing without contest
disabled first rotator in defrc
fixed gses inputline position when resized in contest
added penguin icon 64x64
updated cty.dat to 1710
new statistics qso points and qso count by hours
wwl and dxc statistics show qso points and qso count
new statistics qso/hour, points/hour, points/50 qso
text wwl 'maps' showed only when scoring is 4
added 'watchdog' for PTT keying
improved suspicious callsign indication
removed bandchar from screenshot filenames
updated make deb
highlighting in KST shell uses dark yellow when call is already worked
initialized 4th argument of snd_pcm_hw_params_set_buffer_time_near
Special SEGV handling with minimal memory access
Fixed recording of prepared contest
20071102: 2.07
fixed sw->minq after band change
screenshot on key F1, Alt+F1
updated portuguese translation
watchdog for shell inputlines
20071003: 2.06
fixed qsonrs replication in spy
fixed insane chars in DXC window
fixed dialog Contest options 1
20070830: 2.05
fixed boundary drawing in map
new cty.dat
fixed ttyS lockfile problem
verbose DSP errors
colorized call highlighting
20070808: 2.04
dialog misc options
contest defaults stored in uppercase
operator is sent over network when no contest is active
added operator to tucnakrc(.local)
handled unicode keyboard events, respect keyboard layout
20070706: 2.03
improved library detection
debian package tips in configure
basic alsa support
fixed qsos on map logged when map inactive
playing last recorded sample
disabling compile optimalisation as configure option
fixed name for second tmpqso call
added km unit for tmpqso qrb
added degrees sign in graphics mode
fixed negative rotar address
close fds 3-1023 before executing shell
Fill operators moved to menu Contest
Fill operators saves all bands
20070531: 2.02
removed debug line in qso replication - bad arguments
leak debug only on configure demand - probably fails on AMD64
20070517: 2.01
released especially for Micinka & Lizinka
probably fixed alt+letter with capslock
new option Max fragment count
20070422: 2.00
independency on external files - only one binary is sufficient for running contest
better handling of arguments on non-32bit architectures
integrated functionality of cwdaemon, ssbd and ssbm
subwins are functional without contest
many many work
forked branch 2
20061002: 1.30
fixed open mode for txt and edi files (CRCRLF under windoze)
fixed makecol error without HAVE_SDL
fixed minor bugs in Mark as error and Save as dupe
added takeoff saving into tucnakrc
fixed inputline position after new spy adding
20060829: 1.29
takeoff profile to map
updated cty.dat
added operator call peer selection dialog (C_W and cfg over net)
added operator call to network info dialog
rewritten qso spy
removed cwdaemon_g.c
added copyright information to source files
portuguese translation, tnx to CT1DRB
found allowC1Printable feature in xterm, disabling was useless
don't show characters 127-159 (control chars for xterm)
higlighting of raw call (without /P etc)
QRV info showed in quicksearch
improved QRV info about station
improved regexp for WWC highlight
info about same contest in network info dialog
20060623: 1.28
fixed buggy ptrarray alocation, tnx to OK1HRA
removed cwdb hash hack
added title page export
20060612: 1.27
fixed star drawing in map
fixed border drawing in map
fixed font to be iso8859-2
new spy mode shows full inputline
fixed band loading from multiple rc files
delay to rotar communication to prevent high cpu load
fixed "(null)" write to tucnakrc
default band in contest
fixed bug in rel_write_almost_all - if (conn_prod_state)
fixed signed/unsigned chars for gcc-4.0
Unfinished QSO add informations from tmpqso
Fixed QRV station on new contest (!ctest->tdate)
Resets cwdaemon and ssbd after SIGSEGV
20060503: 1.26
Fixed key P in map
Key T in map
Fixed bug in main loop - timers and jobs were affected
Show seconds
Help for map hotkeys
Call highlighting for WWC and WWC via KST
QRV stations in polar map
Beamwidth of antenna in polar map
Fixes satisfies -Wpointer-arith and -Wstrict-prototypes
20060427: 1.25
Removing of expired DXC spots every 5 minutes
Rotator dialog
Fixed timers
Fixed ESC in polar map
Extended callsign regexps
Fill operators back in menu
Mark qso as not confirmed when qso with same call arrives from net
Fixed desc file after contest options
Fixed shell chars 0x84 and 0x85
WM icon
Fixed map title
Support for GPM
20060205: 1.24
Show RUN's TX state and call on S&P and vice versa
Rotator fixes
TOP 10 and statistics export by OM4AA
20050828: 1.23
RUN can TX (no CQ) when passed band control (to say QRL)
time of stored qso cannot be older than last qso on band
basic mouse support
RUN+S&P together on one band
fixed edi import
fixed libpng detection
sked QRG definition using Alt+F
variable count of status lines
fixed sked time and added configuration option for sked tikme shift
change in statistics causes dirty band for saving
removed saving .txt files after amount of qsos. Files are saved immediatelly.
qso replication fixes
20050630: 1.22
removed DARC contest from tucnakwiz because of bad calculation method
added ser_id to txt file
fixed next bug in QSO replication
20050626: 1.21
fixed CRITICAL bug in QSO replication
search for locator on other bands
QRB rounding bug, thanks to OM4AA
EDI import fixed, reported by OM4AA
Gentoo ebuild files by Florian Evers <florian-evers@gmx.de>
Subwin configuration (not in menu yet)
Fixed ssb_repeat
20050523: 1.20
Improved QRV message
Bug in updating stats over net. Thanks to Stefan DL1ELY
Exotic callsign entry with trailing slash
Updates mode of QSO if report(s) edited
Quicksearch shown regardless active subwin (tab)
Recalculation of tmpqsos when locator is changed
Bug in intl files (time skew net.c). THX2OM4AA
II.subregional
20050313: 1.19
fixes for cygwin
possibility to enter call like IW3RUA/IV3
fixed optional exchange display
20050311: 1.18
unwanted release of 1.18 :-)
optional exchange by Marco IW3IKN
fixed QRV bands
Warning if received unknown callsign
Changed saving to ~/tucnak/$T/log
ADIF import, fixes in export
20050304: 1.17
I.subregional tomorrow...
libpng for snapshots
Fixes for AMD64
Fixes for -ansi
Unused code clean
Band character in snapshot filename
Propagation modes in ADIF export
Experimental rotator control, show direction in map
Show date of latest C_W item in Memory info
Remark and operator in tmpqsos
Corrected QSO plotting in map
DARC VHF/UHF/SHF contest. Thanks to DF1MA
fixed some bugs in CW & SSB CQs
200411xx: 1.16
MMC
after contest probably fixed very old bug with empty default RS&RST
at IARU UHF contest fixed bug in ssb cq macro expanding
20040819: 1.15
Slovak translation & UTF-8, thanks to Michal Karas, OM4AA
20040818: 1.14
DL8EBW database import
20040805: 1.13
fixed bug in quicksearch of C_W
show callsign in ERROR qso
unfinished qso adds ERROR
lines in Shell subwin containing <*call*> are highlighted (convers PM)
keying and CQ are available under graphics (ESC,TAB,Fx)
tucnak reads global config only if no user config exists
Alt+1 turns focus to inputline
qso repliacation fixes, INCOMPATIBLE change
III. subregional
20040703:
indication of running CQ's in left of main inputline
fixed bad myid recognition
added dependencies for .deb
fixed SIGWINCH & inputline bug
DX spots spreads over network
Added some debug stuff for QSOs and DXC
Microwave contest, some crashes
20040602: 1.10
fixed SSB CQ
IARU II.subregional contest
20040501: 1.09
Fixed bad resizing of subwins with inputline
Band map
20040320: 1.08
Code cleanup, program can be compiled with -Wall -Wpedantic -ansi
Added correct IARU QSO points rounding (THX to OZ2M)
Fixed crash in contest options save (THX to OK1MZM)
20040314: 1.07
Show operator and remark in QSO window (if terminal width>80)
Show QRB/QTF in quicksearch
Highlight operator's call/suffix in windows
Fixed disabled input in talk
Added --disable-glib[12] to configure
Support for glib 2.x
Shift+Arrows moves map with smaller step
highlighted worked WWLs in polar map
added my locator to "report" output format
20040215: 1.06
upadated documentation
fixed minor bugs
added some statistics to HTML export
fixed HTML export to be valid HTML 4.01
big WWL names in polar map
graphics screen save (F1)
added Recalc QRB,QTF item in menu Edit
recalculate QRB,QTF after changing QTH during contest
fixed minor bugs in graphics screen redrawing
Ctrl+P shows the polar map
fixed autosave of QSOs arriving from net
gfx window can be closed by WM icon
fixed ADIF export to be compatible with TACLOG
HTML export
20031123: 1.05
fixed 8bit color depth
fixed network serial bug, INCOMPATIBLE change!
log subwin doesn't scroll up when we look inside
added horizontal scroll [ and ] to qsos and log subwins
20031115: 1.04
fixed hw2qrbqtf
added M as multipath report (59M)
log and subwin movement by [ and ]
speed up polar map drawing (but there are some problems)
added macros $D and $T
fixed segfault pressing F4
rewritten graphics to use SDL instead of Allegro
20031020: 1.03
Fixed some packaging problems
20031013: 1.02
Setup->Network & trace
Edit->Fill operators
Alt+H = inputline history
rewritten and rearranged dialog Edit QSO
accelerated convergention of master choose
traffic recording
try to find locator also for raw call and call/p
extended call-wwl handling
#REMARK adds remark to qso
'r' in QSOs subwin mean there is remark
fixed bad repaint when DUPE call is entered
enter of 'q' toggle QSL PROMISED flag
~/tucnak/tucnakrc.local
done Czech translation
all translatable strings moved to intl/english.lng
some minor fixes for -Wall
fixed bug in destroy_bitmap (GRRRR!!)
add File->Open/Close graphics window
20030927: 1.01
ignored unknown options in tucnakrc
load C_W from net
load configuration from net
implemented other methods (7-11)
implemented statute miles method (where is used?) (nr 5)
implemented RSGB WWL ring (it's really correct?) (nr 3)
ADIF export
graphics polar map
tab aborts CQ's
unresolved items such as OK1ZIAV, 1160, OK1ZIA/B... showed upon inputline
fixed bugs in tucnakdw for DXCC "G" and JO81
first support for ssbd
20030824: 1.00
fork()=0; getpid()=1.00;
20030824: 0.32
completed documentation
some minor changes
added make deb
20030819: 0.31
fixed QRV now
added menu Subwin
send AC after Contest->Contest options
fixed net problem when only lo exists
.12 means 12 only
minutes
4 numbers in input mean month and day of month
20030817: OK activity contest without UFB
20030816: 0.30
Added screen save/restore in xterm
Fixed bad readonly handling
Semicolon in some items converted to colon (for network protocol)
Rewritten macros like STORE_STR
INCOMPATIBLE change in network format
Added variable TUCNAK_DEBUG
Term specifications written to tucnakrc
Fixed bug in refresh_cwdaemon
Fixed CW keying problem
Added docs to /usr/local/share/doc
Swap ASL and AGL texts
Disabled debug by default, use -d or --debug to turn on
Fixes for -Wall
Xterm title setting
Alpe adria VHF contest
20030801: 0.29
Removed socket debugging (it seems to be stable)
Load [/etc/|~/]tucnakwiz too
Alt+U do not add ERRROR QSO
Fixed many bugs bear on permissions
Network info show ID instead of TCP port
Menu->Network replaced with Menu->File->Network info
Stats subwin doesn't seek to end
Fixed bug loading unfinished QSOs
Added fifo length checking
Fixed multiple CQ with same number
Fixed string+1 bug in qth()
Log, talk and skeds are saved/loaded
NNXX replace 4 last letters in wwl
X,XX,XXX replace suffix/last letters in wwl
Added error checktig to .edi and .txt saving
Fixed lock leak when there is no bands to load
Tmpqsos clearing added to swap
Detecting time skew
20030722: 0.28
Asynchronous C_W search (allow keying on slow machine)
Fixed bug in scandir's return value
Dialog "EDI properties (PAdr1,2)"
Dialog "Contest defaults"
Done configuration saving
Fixed empty default_rs(t)
OK activity contest
20030719: 0.27
divide qrv bands in Setup->Band options
added mode number to edi file (there was 0 before)
optimized saving to disk and statistics calculation
fixed error saving replicated QSOs
call/suffix highlighting in shell subwin
user can send Ctrl+char via ^V char (like the vim) in shell subwin
fixed multiple band definition bug
save/load contest remarks (combine to one line)
quicksearch displays band where the station was made
added average pts/qso
fixed cursor position in inputlines
TAB allows keying wherever in program
turn off console screensaver (maybe APM) and VESA powersaving features
20030706: Field day without fatal bugs
20030620: 0.26
suspicious characters ?,! in tmpqsos mean the same as in qsos
fixed "Mark as ERROR" distribution
fixed select() bug
20030618: 0.25
First attempt to be stable release
TACLOG import
Save configuration
Added subwin with some statistics
20030518: 0.24
Added wildcard '.' to match any char in quick search
Save operator change to swap
QSO loading from swap ("Q ")
Fixed desc file NULL problem
Fixed band settings when contest is active
OK VHF activity contest without problem
PA4TU accepts my patch for cwdaemon 0.5beta, thanx Joop!
EDI and TXT using \r\n instead of \n
Sked is displayed on this tucnak's instance too
20030506: 0.23
Fixed multiple saving when loading
Swap loading
Update ~/tucnak/*/desc if call or tname changed
Added chars ! and ? to locator when is suspicious
Fixed bug in st->first_date when an ERROR exists
Add subwin: added SKED & UNFInished
save unfinished QSOs to .txt
unfinished QSOs separated to bands
added remark to unfinished QSO
quick search searchs in other bands only if they exist
fixed bug in net->myid when there is no interface
II. subregional ctest - I must downgrade to 0.20 ($#@!#)
20030427: 0.22
added quick seach in other bands
fixed some memory leaks and multiple free()
fixed buf when !cfg->cwda_hostname
fixed bug in Contest->Open
wizz: don't add same contest twice
F3 opens contest if not open
20030424: 0.21
don't use SO_REUSEADDR under cygwin (so more tucnak's can't bind the same
tcp port)
fixed BIG memory leak in use of g_ptr_array_free (Grrrr!)
20030419: 0.20
fixed scandir prototype (really?)
support for cwdaemon-0.2.2-zia
20030404: 0.19
contest options during contest
added contest wizard
unfinished QSOs
swapped and confirmed item is written to swap
fixed NULL contest name in net_send_ac()
extended remark size in sked to 60 chars
prepare contest (specify date of ctest)
rewritten contest options dialog:
removed WWL type
added Exc, QSO used, QSOp multi
added "wizard" for qsop and total calculation methods
sked to (higher) band
fixed D_W again
added /E, /J
20030319: 0.18
fixed D_W bug when central wwls are used
fixed cursor in QSOs subwin
added C_W update from contest or one band
read tucnakcw and tucnakdw from ~/tucnak
F3 turns off "immediate search"
fixed band change during "immediate search"
show qrb and qtf in duplicate qso
20030317: 0.17
updated call-wwl crosscheck
talk: call@band: text
time in log and shell subwins
inputline history
20030303: 0.16
show READ-ONLY in inputline when band is r-o
show operator makes ODX
fixed replication of '(null)'
fixed bad net->myid
/p and similar switches with and without /p
highlighting of subwin when new data arrives
20030301: 0.15
first big beta test (IARU VHF OK1ORU)
some small contests (OK VHF activity)
|