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
|
2005-02-12; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-daemon.c:
Implemented timeout based daemon process. The timeout
delay is 2*cmd_del*nb_of_cmd.
Only poll selected setting when in TX mode (power, alc
or swr but not all). Modified default TX cycle
accordingly. Decreased command delay factor for TX mode
from 3 to 2.
Added function to acquire the command delay. This allows
the GUI to adjust the callback delays for the widgets.
* src/rig-gui-smeter.c, src/rig-gui-smeter.h:
Added function to acquire the current meter setting
in TX mode. This allows the daemon to decide which
level to poll when the rig is in TX mode.
* src/rig-gui-lcd.c:
Check frequency for lower limit to avoid flicker
(bug #1082319).
* doc/man/grig.1.in:
Updated man page with info about the -n or --nothread
option.
* configure.ac:
Updated version to 0.4.2
* src/*:
Updated year.
* NEWS:
Updated info.
2005-02-11; Alexandru Csete <csete@users.sourceforge.net>
* src/main.c:
Added --nothread command line option.
* src/rig-daemon.c, src/rig-daemon.h:
Added (empty) branch for the --nothread option.
2005-02-09; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-daemon.c:
Added error handling when creation of daemon process
is not successful.
2005-02-02; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-daemon.h, src/rig-daemon.c:
Replaced cycle delay with a default command delay. The
delay in TX mode is three times the delay in RX mode.
Added possibility for user defined delay.
* src/main.c:
Added command line option for command delay.
* doc/man/grig.1.in:
Added section about comamnd delays and buggy power off
state.
* Makefile.am:
Added AUTHORS, NEWS, COPYING, README and ChangeLog to
install data.
* NEWS:
Updated with some 0.4.2 info.
2005-02-01; Alexandru Csete <csete@users.sourceforge.net>
* configure.ac:
Define PACKAGE_LOCALE_DIR. Increment version number.
2005-01-27; Alexandru Csete <csete@users.sourceforge.net>
* pixmaps/Makefile.am:
Fixed typo which caused pixmaps not to be included in
datapack.
* configure.ac:
Incremented version number.
2005-01-22; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-gui-smeter-conv.c, src/rig-gui-smeter-conv.h:
Implemented linear conversion for TX scale. No need for
polynomial fit since TX scale is linear.
* src/rig-gui-smeter.c:
Enabled TX meter. Disable scale selector.
* src/rig-gui-smeter.h:
Increased default fall-off speed and frames per second.
* src/grig-about.c:
Removed empty notebook pages.
* NEWS:
Updated.
* configure.ac:
Changed versionnumber to 0.4
2005-01-21; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-data.c, src/rig-data.h:
Added get functions for tx power, swr and alc.
* src/rig-gui-smeter.c:
Added code to read meter value for tx power, swr and alc.
* doc/man/grig.1.in:
Updated year.
2005-01-20; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-data.h:
Removed TX levels that are not available via rig_get_level.
* src/rig-data.c, src/rig-daemon.c, src/rig-daemon.h:
Added support for TX power, SWR and ALC.
* src/rig-daemon.h, src/rig-daemon.c:
Change MAX_CMD_PER_CYCLE from 5 to 6.
* src/rig-data.c, src/rig-data.h:
Added has_get for ALC, SWR and RFPOWER.
* src/rig-gui-smeter-conv.c, src/rig-gui-smeter-conv.h:
Added function to convert floating point number between 0.0 and 1.0 to
s-meter angle. Still need to define conversion parameters.
2005-01-07; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-data.c:
Fixed a mis-spelling.
* src/rig-gui-smeter.h:
Updated doxygen comments for smeter_scale_t.
2004-12-21; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-daemon-check.c:
Worked on a fix for bug #1082325, which causes misbehaviour if the rig
is OFF when grig is started. Basically, only the powerstatus is tested
for real, all other setting availabilities are obtained from the rig
caps. If power status is not available from rig, RIG_POWER_ON is stored
in the rig data structure.
* src/rig-daemon.c:
Only get/set power status if rig is in power off state.
* doc/man/grig.1.in:
Removed section saying that RIG must be powered ON.
2004-12-12; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-daemon.c, src/rig-daemon.h:
Added rigconf parameter to rig_daemon_start.
* src/main.c:
Added check for pixmap files to exit cleanly with an error message if
installation is incomplete (bug #1057427). Changed pixmap paths from
PACKAGE_DATA_DIR to PACKAGE_PIXMAPS_DIR.
* src/grig-about.c:
Changed pixmap paths from PACKAGE_DATA_DIR to PACKAGE_PIXMAPS_DIR.
* src/rig-gui-lcd.c:
Changed pixmap paths from PACKAGE_DATA_DIR to PACKAGE_PIXMAPS_DIR.
* src/rig-gui-smeter.c:
Changed pixmap paths from PACKAGE_DATA_DIR to PACKAGE_PIXMAPS_DIR.
* doc/man/grig.1.in:
Added debug level info and a warning that rig must be turned ON before
starting grig. Also added description of --set-conf command line
option.
2004-12-11; Alexandru Csete <csete@users.sourceforge.net>
* configure.ac:
Added HAMLIB_VERSION define.
* src/main.c, src/grig-about.c, src/rig-gui-lcd.c:
* src/rig-gui-smeter.c:
Include config.h
* src/main.c:
Added --set-conf command line option (bug #1082329). Has no effect yet.
2004-12-10; Alexandru Csete <csete@users.sourceforge.net>
* config.guess, config.sub, configure.in:
Removed files.
* configure.ac:
Added file based on gnome-hello template and xlog.
* .cvsignore:
Added file.
* autogen.sh:
Modified according to gnome-hello template. Does not use gnome-autogen
though.
* COPYING:
Added file.
* Makefile.am:
Modified according to gnome-hello template.
* doc/.cvsignore:
Added file.
* doc/man/.cvsignore:
Added file.
* pixmaps/.cvsignore:
Added file.
* po/.cvsignore:
Added file.
* po/Makevars:
Removed file.
* src/.cvsignore:
Added file.
* pixmaps/Makefile.am:
Added file.
* acconfig.h:
Removed file.
* acinclode.m4:
Removed file.
2004-12-06; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-gui-info.c:
Don't translate strings containing UTF-8 octal codes.
2004-12-05; Alexandru Csete <csete@users.sourceforge.net>
* configure.in:
Bumped version number.
2004-12-04; Alexandru Csete <csete@users.sourceforge.net>
* configure.in:
Removed possibility to fall back to the old style hamlib check.
hamlib.pc is required to detect hamlib settings (cf. bug #1078800).
* AUTHORS:
Updated with proper credits.
* NEWS:
Updated.
2004-12-03; Alexandru Csete <csete@users.sourceforge.net>
* grig.desktop:
Removed file.
2004-12-02; Alexandru Csete <csete@users.sourceforge.net>
* src/grig-gtk-workarounds.c, src/griggtk-workarounds.h:
Created files. Intended to contain various workaround tricks for Gtk+
bugs and limitations. Currently it contains funtions to allow tooltips
with the GtkComboBox widget.
* src/rig-guit-ctrl2.c, src/rig-gui-buttons.c:
Added tooltips for combo boxes using the new utilities.
Fixes bug #1002573.
* src/Makefile.am:
Added new files to the list.
2004-12-01; Alexandru Csete <csete@users.sourceforge.net>
* configure.in:
Added configure option to enable coverage report generation by gcov.
2004-11-30; Alexandru Csete <csete@users.sourceforge.net>
* src/main.c:
Catch SIGTERM, SIGINT and SIGABRT and try to make a clean exit.
* doc/man/grig.1.in:
Fixed a typo.
2004-11-27; Alexandru Csete <csete@users.sourceforge.net>
* configure.in, grig.1.in:
Moved man page to doc/man/ subdirectory. Added more text to man page.
* doc/man/Makefile.am, doc/Makefile.am:
Created files. Man page now installed correctly (fixes bug #1065828).
* README:
Updated.
* Makefile.am:
Removed explicit handling of man page.
2004-11-23; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-daemon.c:
Added rig_daemon.get_brand and rig_daemon_get_model functions. Ideally,
these function should have been in rig-data but since the only user at
the moment is main.c which already has visibility on rig-daemon, it was
easiest to implement them here.
Fixed a typo.
* src/main.c:
Use new get_brand and get_model functions. This fixes bug #1069293.
* src/rig-gui-info.c:
Changed packing options for tuning step frame.
* src/rig-gui.c:
Don't include the levels widget since it contains nothing yet.
2004-11-21; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-gui-info.c:
Finished preamp and att info frame and reorganized main container.
2004-11-19; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-data.c:
Fixed bug which caused the new secondary frequency to be sent to
the daemon but not registered in the readback buffer until next
read cycle.
* src/rig-gui-info.c:
Added skeleton for front end info frame (attenuator and preamp).
2004-11-15; Alexandru Csete <csete@users.sourceforge.net>
* configure.in, Makefile.am:
autogen.sh was (again!) behaving stupid again. Removed all output
requests for po and m4.
* src/rig-gui-info-data.h:
Added string representation for mode symbolic references.
* src/rig-gui-info.c:
Added tuing step info frame.
2004-11-14; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-gui-info.c, src/grig-about.c, src/grig-menubar.c,
* src/main.c, src/rig-data.c, src/rig-gui-buttons.c,
* src/rig-gui-ctrl2.c,
* src/rig-gui-lcd.c, src/rig-gui-levels.c, src/rig-gui-smeter.c:
Replaced support.h with glib/gi18n.h (bug #1042301).
* src/support.h:
Removed file since we use glib/gi18n.h instead.
* Makefile.am:
Removed support.h from list.
2004-11-13; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-gui-info.c:
Added interface info frame.
2004-11-12; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-gui-info.c:
Changed level checkboxes to labels. Fixed bug which caused the not all
levels were correctly displayed. Fixed bug which caused the scrolled
window to be non-functional (the new scrolled window api does not use
gtk_container_add but gtk_scrolled_window_add_with_viewport).
2004-11-10; Alexandru Csete - IC177 <csete@users.sourceforge.net>
* src/rig-gui-info.c:
Rewrote create_levels to use a vertical table in a scrolled window.
* src/rig-gui-info-data.h:
Added string representations for port caps family.
2004-11-09; Alexandru Csete <csete@users.sourceforge.met>
* src/rig-gui-info.c:
Added offset and level info widgets.
* src/rig-gui-info-data.h:
Added file. Contains some constant data definitions.
* src/Makefile.am:
Added new file.
2004-11-05; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-gui-ctrl2.c:
Removed note regarding the discrepacy between hamlib and grig symbillic
references for AGC settings (they are the same now).
* grig.1.in, grig.spec.in:
Updated.
* src/rig-utils.c:
Fixed bug which caused the last three modes (ECLSB, ECUSB and FAX) to
be discarded as valid modes.
* src/rig-daemon.c:
Fixed bug which caused the pass band to be set to 1Hz each time the
mode was changed. Replaced XIT comamnds with VFO comamnds.
* src/rig-daemon-check.c:
Set smeter value to -54dB if comamnd is not available. Added code to
storeavailableVFOs in rig-data.
* src/rig-data-c, src/rig-data.h:
Added rig_data_set_vfos and rig_data_get_vfos to store the bitfield of
available VFOs.
* src/rig-gui-lcd.c:
Ahow true VFO on LCD.
2004-11-04; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-gui-buttons.c:
Added preamp selector. Added code to disable controls if read or write
ability not present.
* src/rig-data-c, src/rig-data.h:
Added has_get and has_set for power status and PTT.
* src/rig-daemon.c:
Added RX matrix for debug mode.
2004-11-02; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-data.c, src/rig-data.h:
Added global private data to store ATT and PREAMP levels. Also added
unctions to set and read these arrays. Also added functions to get
the index of a specific value (useful to the GUI).
* src/rig-daemon-check.c:
Added code to initialise attenuator and preamp arrays.
* src/rig-gui-buttons.c:
Finished ATT selector code.
2004-10-30; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-gui-info.c:
Added doxygen description.
* src/rig-data.c, src/rig-data.h:
Added attenuator and preamp related fields and functions. Also added
has_get_agc and has_set_agc. Minor rearrangements in the code. Added
a comment about the incompleteness of the package.
* src/rig-daemon.h:
Added RIG_CMD_GET_ATT, RIG_CMD_SET_ATT, RIG_CMD_GET_PREAMP,
RIG_CMD_SET_PREAMP to the list of modes. Include unistd.h to avoid
compiler warning about implicit declaration of usleep.
* src/rig-daemon.c:
Added ATT and PREAMP command handling.
* src/rig-daemon-check.c:
Added checks for ATT and PREAMP under the levels checking function.
* src/rig-gui-buttons.c:
Added RIG_GUI_ATT_SELECTOR and RIG_GUI_PREAMP_SELECTOR to the list of
object IDs.
* src/rig-gui-levels.c, src/rig-gui-levels.h:
Added files. Contain level controls hidden using a GtkExpander widget.
* src/Makefile.am:
Added new files to list.
* src/rig-gui.c:
Include level controls.
2004-10-29; Alexandru Csete - SK568 <csete@uers.sourceforge.net>
* src/main.c:
Removed some useless comments from command line option handlig code and
compressed code a little.
* NOTE:
error in doxygen comment in rig.h:rig_caps saying rotator type instead
of rig_type.
2004-10-26; Alexandru Csete <csete@users.sourceforge.net>
* configure.in:
Added --disable-hardware option to disable any hamlib operations except
rig_init and rig_cleanup (usefull to test rig caps and such).
* src/rig-daemon-check.c:
Added '\n' to the end of error messages.
2004-10-25; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-gui-lcd.c:
Fixed a bug which caused incorrect RIT jumps especially when the RIT
sign chnges (eg. -0.40 + 1.00 gave 0.60 instead of 0.40). Added utility
function to explicitly convert RIT/XIT values to byte array.
* configure.in:
Added summary of library versions (hamlib, glib, gthread, gdk and gtk).
2004-10-24; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-gui-lcd.c:
Fixed bug where RIT could jump from -9.99 to 9.99 kHz.
2004-10-23; Alexandru Csete <csete@users.sourceforge.net>
* src/grig-about.c:
Added missing ';' character (caused compiled error).
* src/main:
Cleaning. Removed unused variables and split lines which were too long.
* src/rig-gui-lcd.c:
Reduced display width by one small digit.
* src/rig-gui-ctrl2.c, src/rig-gui-ctrl2.h:
Added files. Mode, filter and AGC selector moved into this container.
This container is displayed on the right side of the LCD.
* src/rig-gui-buttons.c:
Removed mode, filter and AGC selectors.
* src/Makefile.am:
Added new files to the list.
* src/rig-daemon.c:
The passband width code was buggy it made implicit conversion from
frequency to rig_data_pbw_e. Fixed using rig_passband_xxx hamlib
functions. Changed new flags to be reset to FALSE even if write error
ocurres (maybe I will change that back). get variables are always set
to the value of set after writing new value.
2004-10-21; Alexandru Csete <csete@users.sourceforge.net>
* src/grig-menubar.c:
Removed about-callback since grig_about_run an be used directly as
menu callback.
* src/grig-about.c:
Added dialog window, logo and some info.
* grig.spec.in:
Added some info.
2004-10-20; Alexandru Csete <csete@users.sourceforge.net>
* src/grig-menubar.c:
Added debug level menu items.
* src/rig-gui-info.c, src/rig-gui-info.h:
Added files. Contains popup dialog showing rig-caps.
* src/Makefile.am:
Added new files to list.
2004-10-19; Alexandru Csete <csete@users.sourceforge.net>
* src/grig-menubar.c, src/grig-menubar.h:
Remove rotator and GConf related code. Created menubar using GtkAction
achitecture.
* src/rig-gui.c:
Include menubar in the GUI.
* src/main.c:
Rearranged some code in the creation of the main window so that the
window is ceated before the creation of the menubar.
2004-10-18; Alexandru Csete <csete@users.sourceforge.net>
* src/main.c:
Added grig_show_help, grig_show_version, grig_list_add and
grig_list_compare. Implemented grig_list_rigs. Command line arguments
are now working (all of them).
2004-10-17; Alexandru Csete - SK1563 <csete@users.sourceforge.net>
* src/main.c:
More work on command line arguments.
2004-10-15; Alexandru Csete - CDG <csete@users.sourceforge.net>
* src/main.c:
Begun work on command line arguments. Added list of args and while loop
skeleton. Had to stop because departure was only 30 min delayed instead
of the first announced 2h30.
2004-10-11; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-daemon.c, src/rig-daemon.h:
Changed rig_daemon_start interface to take port, speed and CIV address
as optional parameters.
* src/main.c:
Modified in accordance with the new rig_daemon_start interface.
Removed any rotator related code.
2004-10-10; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-gui-lcd.c:
Fixed bug which cause grig to crash when user clicked on RIT decimal
separator. Modified code to take new pixmaps with '-' into account.
Also found and fixed a memory leak in rig_gui_lcd_set_rit_digits.
Added function to draw miscellaneous text on the display.
Updated design docs accrdingly.
* pixmaps/digits_normal.png, pixmaps/digits_small.png:
Added '-'sign.
* configure.in:
Changed version number. Added checks for sys/time.h unistd.h getopt.h
2004-10-09; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-data.c, src/rig-data.h:
Added has_set_freq and macros to wrap set_freq.
Added min/maxfields and functions for RIT and XIT.
* src/rig-gui-lcd.c:
Finished tuning code for both frequency and RIT/XIT. Only RIT is
suported at the moment. Also added RIT/XIT mode selection field to
the main ata structure.
* src/rig-daemon-check.c:
Store RIT and XIT ranges when check for functionalities.
2004-10-08; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-gui-lcd.c:
Added more event handlig code to catch mouse events on the LCD
display. Expose event call has been merged into this code.
2004-10-07; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-gui-lcd.c:
Added code to display small digits and removed first dot between
MHz and kHz (too confusing). Aded RIT/XIT display. Added bug text
that it does not work with frequencies above 1 GHz.
* src/rig-data.c, src/rig-data.h:
Added rig_data_has_get_rit() and rig_data_has_get_xit().
2004-10-06; Alexandru Csete <csete@users.sourceforge.net>
* configure.in, Makefile.am:
Even more build environment fixes :(
* src/rig-data.c, src/rig-data.h:
Added rig_data_has_get_freq1 and rig_data_has_get_freq2.
* src/rig-gui-lcd.c, src/rig-gui-lcd.h:
Begun to add and update digits. Frequency readback tested with RPC.
Small digits and RIT/XIT still to be done. Adjusted fields in lcd
structure accordingly.
2004-10-05; Alexandru Csete <csete@users.sourceforge.net>
* NEWS:
Readded file currently containing primary objectives for this
development baseline.
* src/rig-gui-lcd.c:
First draft of calculating digit positions. Can be optimized or made
nicer.
2004-10-04; Alexandru Csete <csete@users.sourceforge.net>
* src/main.c, src/rig-gui-lcd.c, src/rig-gui-smeter.c:
Replaced "/" with G_DIR_SEPARATOR_S.
* src/rig-gui-lcd.c:
Added rig_gui_lcd_calc_dim which will calculate frequently used sizes
and positions.
2004-10-03; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-data.h:
Added fields to store frequency limits and tuning step for the current
mode. The fields are fmin, fmax and fstep.
* src/rig-data.c:
Added rig_data_get_fmax, rig_data_get_fmin and rig_data_get_fstep.
* src/rig-daemon.c, src/rig-daemon-check.c:
Added code to update frequency limits and tuning step at initialization
and each time the mode is acquired.
2004-10-02; Alexandru Csete <csete@users.sourcforge.net>
* src/rig-gui-smeter.c, src/rig-gui-smeter.h:
Finished implementation of s-meter using GtkDrawingArea. Added code to
test s-meter with random numbers. Adjusted the default constants and
updated design docs.
2004-10-02; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-gui-meter.c, src/rig-gui-smeter.h, src/rig-gui-smeter-conv.c,
* src/rig-gui-lcd.c, src/rig-gui-lcd.h, src/rig-gui-buttons.c,
Removed GNOME and GConf dependencies so that files can be compiled
with Gtk+ only. Replaced code which is deprecated in Gtk+ 2.4
* src/grig-menu.c:
Changed file name to grig-menubar.c, added corresponding header file
and removed GNOME dependencies.
* src/Makeile.am:
Updated list with new files.
* configure.in:
Added check for gthread-2.0 >= 2.4.0; explicitly required to use
gthread.
* src/Makevars:
Added file.
* src/main.c:
Added window icon. Changed title style.
2004-10-01; Alexandru Csete <csete@isers.sourceforge.net>
* src/grig-duid.[ch]:
Deleted files.
* src/Makefile.am:
Removed grig-druid from list.
* src/support.h:
Added file containing gettext macros.
* src/main.c, src/grig-about.c, src/rig-anomaly.c,
* src/rig-daemon.c, src/rig-daemon-check.c, src/rig-data.c:
* src/rig-gui.c
Removed GNOME and GConf dependencies so that files can be compiled
with Gtk+ only. Replaced code which is deprecated in Gtk+ 2.4
2004-09-30; Alexandru Csete <csete@users.sourceforge.net>
* src/main.c:
Removed GNOME dependencies.
* autogen.sh, Makefile.am, cofigure.in:
Updated for Gtk+ only.
* src/Makefile.am:
Updated for Gtk+ only.
* ChangeLog:
Updated.
* aclocal.m4, config.h.in:
Deleted files.
* grig.1.in, grig.desktop, grig.spec.in, acinclude.m4, config.guess,
* config.sub:
Added files.
2004-09-29; Alexandru Csete <csete@users.sourceforge.net>
* pixmaps/digits_normal.png, digits_small.png:
Added files.
2004-09-26; Alexandru Csete - SK1563 <csete@users.sourceforge.net>
* src/rig-data.c:
rig_data_set functions will temporarely set the 'get' data to
the 'set' value to avoid gui flip-back when daemon is to slow to
update the 'get' variable.
* src/rig-gui-smeter.c:
Added bug comment about object limitations. Corrected description
of rig_gui_meter_create.
* src/rig-gui-lcd.[ch]:
Created files containing LCD widgets.
* src/Makefile.am:
Added the two new iles to the list.
2004-09-22; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-gui-smeter.c:
Added callback functions to mode and range selector widgets.
The s-meter callback now checks whether we are in RX or TX mode.
* src/rig-gui-smeter.h:
Adjusted fall-off delays.
2004-09-21; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-gui-smeter.h:
Renamed rig_gui_smeter_t to smeter_t. Added enumerations
smeter_scale_t and smeter_tx_mode_t for selecting s-meter
configuration.
* src/rig-gui-smeter.c:
Renamed rig_gui_smeter_t to smeter_t. Added combo boxes for scale
and mode selection.
2004-09-20; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-data.[ch]:
Added rig_data_get_strength function. Added almost all
rig_data_has_get_xxx functions (at least prototype templates).
* src/rig-daemon.c: Changed powerstat sequence to set-and-get
instead of get-and-set which could cause override of GUI command.
2004-09-18; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-gui-smeter-conv.[ch]:
Added files. Contain utility functions to convert dB to needle angle
and then needle angle to (x,y) coordinates. The conversion is done in
two passes with the needle angle as intermediate result, so that it
can be adjusted for mechanical delays.
* src/rig-gui-smeter.c:
Removed conversion macros in favor of new conversion utility functions
in the aboe mentioned file.
* src/Makefile.am:
Added new files to list.
2004-09-13; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-gui-smeter.c:
Added constants an macros to convert from dB to
degrees correspondingto the inclination of the needle. The S-meter will
be a so-called perfect S-meter with 6dB per S-unit and S9 = 0dB.
2004-08-03; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-utils.c:
mode_to_index algorithm was buggy. Fixed.
* src/rig-gui-smeter.c, src/rig-gui-smeter.h:
Added files containing S-meter skeleton (no functionality yet).
* src/rig-gui.c:
Include S-meter widget. Changed packing mode from default to
FALSE/FALSE.
* src/Makefile.am:
Added new files to list. Resolved patch for bug 996435 (bug closed).
2004-08-02; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-gui-buttons.c:
Finished readback handlers. Also, connected signal
handler for the filter selector (looks like I forgot to add it before).
This component should be quite finished now, except some outstanding
issues with no tooltips for the combo boxes.
* src/rig-gui-buttons.h:
Moved the default timeout value def to this file.
Also defined min and max values for the timer delay.
* src/grig-about.c:
Added logo pixmap.
2004-08-01; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-daemon-check.c, src/rig-daemon-check.h:
Added function to check AGC.
This is part of the rig_daemon_check_level() function.
* src/rig-daemon.c, src/rig-daemon.h:
Added code handling AGC commands.
* mkinstalldirs:
Added file because it is not copied into grig automatically.
* Makefile.am:
Added mkinstalldirs to dist files.
* src/rig-gui-buttons.c:
Added readback timeout.
2004-07-31; Alexandru Csete <csete@users.sourceforge.net>
* src/main.c:
Added more info on -r and -a options.
* src/grig-menu.c:
Changed debug parameters to use hamlib symbols instead of
hardcoded numbers.
* src/rig-utils.c, src/rig-utils.h:
Created files. Contains conversion functions between hamlib
mode and array index type.
* src/Makefile.am:
Added new files to the list.
* src/rig-gui-buttons.c:
Added mode and filter selectors. Fixed up layout.
* src/rig-data.h, src/rig-data.c:
Added internal representation for passband width. Changed GET
and SET function prototypes accordingly.
2004-07-28; Alexandru Csete <csete@users.sourceforge.net>
* configure.in: Require Gtk+ >= 2.4
2004-07-24; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-gui.c, src/rig-gui.h:
Added files.
* src/rig-gui-buttons.c, src/rig-gui-buttons.h:
Added files.
* src/main.c:
Added call to rig_gui_create.
* src/rig-daemon.c:
Added code to manually update 'get' data if rig doesn't support
any get functions.
* src/rig-data.c, src/rig-data.h:
Added AGC.
2004-07-23; Alexandru Csete <csete@users.sourceforge.net>
* src/main.c, src/rig-daemon.c:
Added patch for bug #996426.
2004-07-18; Alexandru Csete <csete@users.sourceforge.net>
* src/grig-druid.c:
Added basic functionality with start and end pages.
2004-07-17; Alexandru Csete <csete@users.sourceforge.net>
* src/grig-about.c, src/grig-about.h:
Added files.
2004-07-14; Alexandru Csete <csete@users.sourceforge.net>
* src/main.c:
Implemented missing functions and added main application
window.
* src/grig-menu.c:
Added file with menu declarations.
* src/rig-ctrl.c, src/rig-ctrl.h:
Created files.
2004-07-01; Alexandru Csete <csete@users.sourceforge.net>
* src/rig-daemon.c, src/rig-daemon.h:
Finished first draft of rig daemon.
|