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 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425
|
2022-07-26 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* include/gui.h (GUI_BUTTON_IMAGE_COEFF_MULTIPLY): Changed icon,
not available in Adwaita theme.
(GUI_MENU_IMAGE_INFO): Ditto.
(GUI_MENU_IMAGE_EXPORT): Ditto.
2022-07-25 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* dist/win64/Makefile.am (EXTRA_DIST): Add file settings.ini.
* Makefile.am [MinGW]: Migrate MinGW rule to dist-win64 (MXE).
* dist/Makefile.am (SUBDIRS): Add subdir win64, remove win32.
* src/Makefile.am: Ditto.
2022-07-19 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* configure.ac(CFLAGS_DEBUG): Fix forgotten apostrophe.
2022-07-15 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* configure.ac (COPYRIGHT_HOLDER): Update year.
(CFLAGS_DEBUG): Removed G_ENABLE_DIAGNOSTIC.
2022-07-14 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* configure.ac: Removed obsolete macro AC_HEADER_STDC
* include/gui.h (GUI_BUTTON_IMAGE_OPEN): Fallback to GTK image
naming for some button images (in contrast to recommended
freedesktop.org icon naming)
(GUI_BUTTON_IMAGE_SAVE): Ditto.
2022-07-11 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* src/designDlg.c (designDlgAdopt): Fix design dialog layout
adoption after settings restore.
* src/mainDlg.c (mainDlgRedrawAll): Ditto.
* src/main.c (main): Ditto.
* src/designDlg.c (updateLayout): Renamed to designDlgAdopt().
* src/Makefile.am: Removed Emacs header line.
* README: Declare make target 'dist-win32' as unsupported.
2022-06-15 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* dist/debian/watch (opts): Add GitHub regexp for VCS watching.
* dist/debian/control (Vcs-Browser, Vcs-Git): Add VCS homepage.
2022-01-09 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* src/cairoPlot.c (insertLabel): Make implicit double to int
conversion explicit.
2021-12-05 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* src/stdIirFilter.c (debugLogCoeffs): Fix warning.
* src/responseWin.c (RESPONSE_WIN): Make member 'grab'
conditional from GDK 3.20, explicitly.
(responseWinButtonPress): Fix seat handling in GDK 3.20+.
2021-09-28 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* dist/debian/changelog: Update of Debian changelog for version
0.6-1.
* po/de.po: Update of line numbers (comments).
2021-09-27 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* .clang_complete: New, added for Vim/Emacs Irony completion.
2021-09-22 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* src/helpDlg.c (helpDlgMenuActivate): Fix a C90 warning.
* TODO, configure.ac: Added todo regarding Yelp based help
system.
2021-09-20 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* TODO: Added a todo for export in second-order section form.
* src/responseWin.c (cancelZoomMode, responseWinDrawHandler)
(responseWinMenuActivate, responseWinKeyPress)
(responseWinButtonPress, responseWinButtonRelease)
(responseWinMotionNotify): Make mouse pointer grab conditional
from GDK 3.20.
2021-09-18 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* po/POTFILES.in, po/de.po: Updated translation language DE.
* configure.ac (PKG_CHECK_MODULES): Package dependencies updated
to GTK+ 3.18.
* dist/debian/control (Build-Depends, Standards-Version): Ditto.
* COPYING, README, configure.ac, dist/debian/changelog,
doc/Doxyfile, po/de.po: Update release date/version to 2021/v0.6
* src/cairoPlot.c: Some minor comment changes related to
drawing.
* src/responseWin.c (responseWinCreate): Ditto.
2021-09-17 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* src/mainDlg.c (mainDlgCreate): Use GtkButtonBox instead of
obsolete GtkHButtonBox.
* src/mainDlg.c (mainDlgCreate): Use GtkSeparator instead of
obsolete GtkHSeparator.
* src/responseWin.c (responseWinCreate): Ditto.
* src/dialogSupport.c (dlgPopupDouble): Harmonized widget
padding and resize behavior.
* src/mainDlg.c (mainDlgCreate): Ditto.
* src/responseDlg.c (responseDlgCreate): Ditto.
* src/responseWin.c (responseWinCreate): Ditto.
* src/linFirDesignDlg.c (linFirDesignDlgCreate): Ditto.
* src/stdIirDesignDlg.c (stdIirDesignDlgCreate): Ditto.
* src/miscDesignDlg.c (createDialog, updateLayout): Ditto.
* src/helpDlg.c (helpDlgMenuActivate): Migration to
GtkAboutDialog of GTK+ 3.
* src/projectFile.c (prjFileScan): Fix a DEBUG_LOG() spelling
error.
* src/support.c (getPackageDirectory): Do not use
GTK_CHECK_VERSION() to test GTK+ 2 features.
* include/gui.h (G_, GUI_GTK_GETTEXT_DOMAIN)
(GUI_ICON_IMAGE_PREFS, GUI_LABEL_WRAP_CHARS)
(GUI_INDENT_CHILD_PIXEL, GUI_CURSOR_*, GUI_BUTTON_*)
(GUI_MENU_*): New.
* include/support.h (createImageButton): New.
* src/support.c (createImageButton): New.
* src/support.c (createImageMenuItem): Do not use deprecated
stock item functions.
* src/dialogSupport.c (dlgPopupDouble): Ditto.
* src/mainDlg.c (mainDlgCreate): Ditto.
* src/editDlg.c (createSettingsDlg, createInfoDlg): Ditto.
* src/fileDlg.c (fileDlgOpenActivate, fileDlgExportActivate): Ditto.
* src/responseDlg.c (responseDlgCreate): Ditto.
* src/responseWin.c (responseWinCreate): Ditto.
* include/cairoPlot.h (PLOT_DIAG): Adopt to GTK+ 3 draw, grab
and color model.
* src/cairoPlot.c (PLOT_COLOR_SET): Ditto.
* src/rootsPlot.c (rootsPlotDrawHandler, rootsPlotCreate):
Ditto.
* src/responseDlg.c (colorItemChanged, responseDlgCreate):
Ditto.
* src/responseWin.c (responseWinCreate, drawZoomRect)
(cancelZoomMode, responseWinExpose, responseWinDestroyed)
(responseWinMapped, responseWinBtnPropActivate)
(responseWinMenuActivate, responseWinRedraw)
(responseWinKeyPress, responseWinButtonPress)
(responseWinButtonRelease, responseWinMotionNotify): Ditto.
* src/cfgSettings.c (cfgCacheSettings, cfgFlushSettings): Ditto.
* src/responseWin.c (plotToSurface, responseWinDrawHandler)
(applyStyleColor, colorChooserApply): New.
* src/responseWin.c (exposeHandler): Deleted.
* src/responseDlg.c (responseDlgCreate): Always use GtkFrame
with default outline.
* src/linFirDesignDlg.c (linFirDesignDlgCreate): Ditto.
* src/stdIirDesignDlg.c (stdIirDesignDlgCreate): Ditto.
2021-09-16 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* include/dialogSupport.h (dlgPopupDouble): Update dialog window
handling to GTK+ 3 GtkDialog API.
* include/responseDlg.h (responseDlgCreate): Ditto.
* src/dialogSupport.c (dlgPopupDouble): Ditto.
* src/responseDlg.c (responseDlgCreate): Ditto.
* src/designDlg.c (designDlgBoxRealize): Ditto.
* src/mainDlg.c (mainDlgCreate): Ditto.
* src/helpDlg.c (mainDlgCoeffEdit, mainDlgCoeffsFactor): Ditto.
2021-09-15 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* src/responseDlg.c (responseDlgCreate): GtkAligment widget does
not exist anymore.
* src/linFirDesignDlg.c (linFirDesignDlgCreate): Ditto.
* src/stdIirDesignDlg.c (stdIirDesignDlgCreate): Ditto.
* src/dialogSupport.c (dlgPopupDouble): gtk_misc_... functions
are not available anymore.
* src/mainDlg.c (mainDlgCreate): Ditto.
* src/miscDesignDlg.c (createDialog): Ditto.
* src/mainDlg.c (mainDlgCreate): Use GtkGrid instead of
deprecated GtkTable.
* src/responseDlg.c (createLogGridButton, responseDlgCreate): Ditto.
* src/editDlg.c (createSettingsDlg, createInfoDlg): Ditto.
* src/linFirDesignDlg.c (linFirDesignDlgCreate): Ditto.
* src/stdIirDesignDlg.c (stdIirDesignDlgCreate): Ditto.
* src/miscDesignDlg.c (createDialog, updateLayout): Ditto.
2021-08-02 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* src/dialogSupport.c (dlgPopupDouble): Avoid use of
GTK_WIDGET_SET_FLAGS().
* src/mainDlg.c (mainDlgCreate): Ditto.
* src/responseDlg.c (responseDlgCreate): Ditto.
* src/responseWin.c (responseWinCreate): Ditto.
* src/editDlg.c (createSettingsDlg, createInfoDlg): Ditto.
* src/dialogSupport.c (dlgPopupDouble): Use gtk_box_new()
instead of deprecated hbox/vbox variants.
* src/mainDlg.c (mainDlgCreate): Ditto.
* src/responseDlg.c (responseDlgCreate): Ditto.
* src/responseWin.c (responseWinCreate): Ditto.
* src/editDlg.c (createSettingsDlg): Ditto.
* src/linFirDesignDlg.c (linFirDesignDlgCreate): Ditto.
* src/stdIirDesignDlg.c (stdIirDesignDlgCreate): Ditto.
* src/mainDlg.c (mainDlgCreate): Adopt old GtkComboBox to new
GtkComboBoxText API.
* src/designDlg.c (designDlgBoxRealize): Ditto.
* src/responseDlg.c (responseDlgCreate): Ditto.
* src/editDlg.c (createSettingsDlg): Ditto.
* src/linFirDesignDlg.c (linFirDesignDlgCreate): Ditto.
* src/stdIirDesignDlg.c (stdIirDesignDlgCreate): Ditto.
* src/miscDesignDlg.c (createDialog, miscDesignDlgCreate): Ditto.
* src/cairoPlot.c (PLOT_COLOR_SET, drawGridLabels): Use GdkRGBA
instead of GdkColor.
* src/cfgSettings.c (cfgCacheSettings): Ditto.
* src/responseDlg.c (responseDlgColorVals): Ditto.
* src/rootsPlot.c (rootsPlotExposeHandler): Ditto.
* src/responseWin.c (cancelZoomMode,responseWinKeyPress)
(responseWinButtonPress, responseWinButtonRelease)
(responseWinMotionNotify): Make use of GdkDevice type and
associated gdk_device_* grab functions.
2021-01-17 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* include/support.h (createImageMenuItem): New.
* src/support.c (createImageMenuItem): Ditto.
* src/dialogSupport.c (dlgPopupDouble): Use workarounds for
deprecated stock item functions.
* src/editDlg.c (createSettingsDlg, createInfoDlg): Ditto.
* src/mainDlg.c (mainDlgCreate): Ditto.
* src/responseDlg.c (responseDlgCreate): Ditto.
* src/responseWin.c (responseWinCreate): Ditto.
2021-01-02 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* src/support.c (lookup_widget): No direct access to member
GtkWidget::parent.
* src/editDlg.c (createSettingsDlg): Do not use deprecated type
GtkObject.
* src/responseDlg.c (responseDlgCreate): Ditto.
* src/responseWin.c (responseWinDestroyed): Ditto.
* src/mainDlg.c (mainDlgDestroy): Ditto.
* src/linFirDesignDlg.c (linFirDesignDlgCreate): Ditto.
* src/stdIirDesignDlg.c (stdIirDesignDlgCreate): Ditto.
* src/miscDesignDlg.c (createDialog): Ditto.
2020-09-26 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* src/mainDlg.c (treeDblClickedCallback): Cast 1st parameter to
mainDlgCoeffAction() to a GtkWidget.
2020-08-09 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* INSTALL: Copied from Automake 1.15.
* include/doxygen.h: Deleted.
* include/Makefile.am (noinst_HEADERS): Deleted doxygen.h from headers.
* README: Added maintainer make targets, originally in doxygen.h.
2020-08-06 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* src/mainDlg.c (MAINDLG_COEFF_OPERATION): Coefficient actions
do not need the originating widget as first parameter.
(mainDlgCoeffAction): Ditto.
(mainDlgCoeffsRound): Ditto.
(mainDlgCoeffsFactor): Ditto.
(mainDlgCoeffEdit): Ditto.
(treeDblClickedCallback): Added as signal handler for
double-click events on coefficients lists.
(coeffCreateListTreeView): Catch "row-activated" event for
signal handler treeDblClickedCallback().
2020-08-02 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* include/linFirFilter.h (LINFIR_DSPWIN): Give tribute to van
Hann, not Hanning.
* include/mathFuncs.h (mathFuncHanning): Ditto.
* src/mathFuncs.c (mathFuncHanning): Ditto.
* src/linFirDesignDlg.c (linFirDlgWin): Ditto.
2020-07-31 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* include/dfcgen.h (FTR): Mostly no explicit enumerations.
* include/linFirFilter.h (LINFIR_DSPWIN): Ditto.
(LINFIR_TYPE): Ditto.
* include/responsePlot.h (RESPONSE_TYPE): Ditto.
* src/cfgSettings.c (respSet): Ditto.
* src/linFirDesignDlg.c (linFirDlgChar): Ditto.
(ftrEntry): Ditto.
* src/responsePlot.c (responsePlot): Ditto.
* src/responseWin.c (responseWidget): Ditto.
* src/stdIirDesignDlg.c (ftrEntry): Ditto.
2020-07-30 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* src/projectFile.c (readProject): Fix frequency transformation
cutoff/center frequency handling in project file.
* po/de.po: Ditto.
* doc/dfcgen.sty: Added sinus cardinalis.
* src/mathPoly.c (chebyT): Improved function description.
* src/mainDlg.c (mainDlgCreate): Removed todo comment.
* src/filterResponse.c (timeResponseProcNext): Ditto.
* src/linFirDesignDlg.c (linFirDesignDlgApply): Ditto.
* src/linFirFilter.c (linFirFilterGen): At design of linear FIR
systems with HP/BS frequency transformations correct the cutoff
frequency of reference lowpass (improve precision).
(corrRectangularCutoff): Added.
(corrCosineCutoff): Added.
(corrCosine2Cutoff): Added.
(corrSquaredCutoff): Added.
(corrGaussianCutoff): Added.
2020-04-13 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* src/projectFile.c (readProject): Function header update.
* Makefile.am (dox): Renamed make target DOXYGEN to DOX.
* doc/Makefile.am (dox): Ditto.
* include/doxygen.h: Ditto.
2020-03-26 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* src/projectFile.c (readProject): Fix restore of correct
cutoff frequency on HP/BP/BS frequency transformations.
* include/doxygen.h: Added new make target 'doxygen'.
* doc/Makefile.am (doxygen, EXTRA_DIST): Ditto.
* Makefile.am (doxygen): Ditto.
2020-03-24 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* src/linFirFilter.c (ftrHighpass, ftrBandpass, ftrBandstop)
(linFirFilterGen): Do not allow an odd system order for
frequency transformations (unsupported/impossible).
* src/linFirDesignDlg.c (linFirDesignDlgApply): Ditto.
2020-03-22 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* src/linFirFilter.c (firWinRectangle, firWinHamming)
(firWinHanning, firWinBlackman, firWinKaiser): Change of
windowing functions signature to fix system degree problem when
using Hann/Blackman window.
* po/de.po: Translate error message regarding semantic checks
in stdIirDesignDlgApply() to German.
2020-03-21 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* src/stdIirDesignDlg.c (stdIirDesignDlgApply):
* src/stdIirFilter.c (stdIirFilterGen): Add some semantic checks
to Standard IIR filter bandpass/bandstop transformation.
2020-02-16 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* .svn-authors: Deleted.
* autogen.sh: Added for auto-generation of initial Makefiles.
(GETTEXTIZE_FLAGS): Exclude ChangeLog from po directory.
* include/Makefile.in: Removed files which can be generated by
autogen.sh.
* src/Makefile.in: Ditto.
* doc/Makefile.in: Ditto.
* dist/win32/Makefile.in: Ditto.
* dist/debian/source/Makefile.in: Ditto.
* dist/debian/Makefile.in: Ditto.
* dist/Makefile.in: Ditto.
* data/templates/Makefile.in: Ditto.
* data/pixmaps/Makefile.in: Ditto.
* data/filters/Makefile.in: Ditto.
* data/Makefile.in: Ditto.
* Makefile.in: Ditto.
* po/de.gmo: Ditto.
* po/stamp-po: Ditto.
* po/dfcgen-gtk.pot: Ditto.
* po/ChangeLog: Ditto.
* config.h.in: Ditto.
* configure: Ditto.
* aclocal.m4: Ditto.
* stamp-h.in: Ditto.
* build/*: Ditto.
* m4/*: Ditto:
* configure.ac: Add to file header "coding: utf-8".
* Makefile.am: Ditto.
2020-02-16 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* src/responseWin.c (responseWinCreate): Show response windows
in taskbar and pager.
2020-02-11 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* src/dialogSupport.c (dlgError): Fix handling of Pango text
markup, mainly used in error messages.
* src/cairoPlot.c (PLOT_GRID_LINE_WIDTH): Increase grid line
width to 1.0 (bugfix).
* src/responsePlot.c (responsePlot): C99 style array
initialization.
* src/mainDlg.c (mainDlgCreate): Fix warnings regarding
deprecated function gdk_pixbuf_unref().
* src/helpDlg.c (helpDlgMenuActivate): Ditto.
* src/editDlg.c (createInfoDlg): Ditto.
* src/responseWin.c (responseWinCreate): Ditto.
(RESPONSE_WIN_GRAPH_THICKNESS): Increase curve line width to 2.0.
2020-02-10 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* configure.ac (CFLAGS_DEBUG): Removed defines GDK_DISABLE_DEPRECATED
and GTK_DISABLE_DEPRECATED from CFLAGS_DEBUG.
* data/pixmaps/dfcgen.fig: First draft of DFCGen icon as a FIG
file.
* po/de.gmo: Re-generate gettext (po) files.
* po/de.po: Ditto.
* po/dfcgen-gtk.pot: Ditto.
* aclocal.m4: Update of Automake generated files.
* configure: Ditto.
* config.h.in: Ditto.
* data/Makefile.in: Ditto.
* data/filters/Makefile.in: Ditto.
* data/pixmaps/Makefile.in: Ditto.
* data/templates/Makefile.in: Ditto.
* dist/Makefile.in: Ditto.
* dist/debian/Makefile.in: Ditto.
* dist/win32/Makefile.in: Ditto.
* doc/Makefile.in: Ditto.
* include/Makefile.in: Ditto.
* src/Makefile.in: Ditto.
* Makefile.in.in: Ditto.
2020-02-09 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* build/config.guess: Upgrade to Automake 1.15.
* build/config.rpath: Ditto.
* build/config.sub: Ditto.
* build/depcomp: Ditto.
* build/install-sh: Ditto.
* build/missing: Ditto.
* doc/Doxyfile: Transition from DFCGen v0.4 to v0.5.
* dist/win32/dfcgen-gtk.rc: Ditto.
* Makefile.am: Transition fom SVN to Git.
* Makefile.in: Ditto.
* configure.ac (AM_GNU_GETTEXT_VERSION): Consider upgrade to
gettext-0.19.7.
* po/Rules-quot: Ditto.
* po/Makevars (MSGID_BUGS_ADDRESS): Ditto.
* dist/debian/source/Makefile.am: Add to VC (because part of distribution).
* dist/debian/source/Makefile.in: Ditto.
* build/ltmain.sh: Ditto.
* build/compile: Ditto.
* ABOUT-NLS: Ditto.
2020-02-08 Ralf Hoppe <ralf.hoppe@dfcgen.de>
* : Update source file header (remove $Id$, change author
e-mail, copyright statement).
* README: Sync with Debian release of DFCGen 0.4-3.
* configure.ac: Ditto.
* data/pixmaps/Makefile.am (dist_pixmaps_DATA): Ditto.
* dist/debian/Makefile.am: Ditto.
* dist/debian/changelog: Ditto.
* dist/debian/compat: Ditto.
* dist/debian/control: Ditto.
* dist/debian/copyright (Format): Ditto.
* dist/debian/dfcgen-gtk.desktop (Categories): Ditto.
* dist/debian/docs: Ditto.
* dist/debian/rules: Ditto.
* dist/debian/dfcgen-gtk.png: New file (sync with Debian release
of DFCGen 0.4-3).
* dist/debian/install: Ditto.
* dist/debian/source/format: Ditto.
* dist/debian/source/include-binaries: Ditto.
* dist/debian/watch: Ditto.
* data/pixmaps/dfcgen-gtk.png: Ditto.
* dist/debian/dirs: File deleted (sync with Debian release of
DFCGen 0.4-3).
* dist/debian/postinst: Ditto.
* dist/debian/prerm: Ditto.
* data/pixmaps/dfcgen.png: Ditto.
2020-01-13 gettextize <bug-gnu-gettext@gnu.org>
* m4/gettext.m4: Upgrade to gettext-0.19.7.
* m4/iconv.m4: Upgrade to gettext-0.19.7.
* m4/lib-ld.m4: Upgrade to gettext-0.19.7.
* m4/lib-link.m4: Upgrade to gettext-0.19.7.
* m4/lib-prefix.m4: Upgrade to gettext-0.19.7.
* m4/nls.m4: Upgrade to gettext-0.19.7.
* m4/po.m4: Upgrade to gettext-0.19.7.
* m4/progtest.m4: Upgrade to gettext-0.19.7.
* configure.ac (AM_GNU_GETTEXT_VERSION): Bump to 0.19.7.
2019-11-29 Ralf Hoppe <ralf.hoppe@ieee.org>
* src/rootsPlot.c: Increase line width of cross/circle.
2019-02-24 Ralf Hoppe <ralf.hoppe@ieee.org>
* data/pixmaps/dfcgen.png: Stretch to 64x64 pixels for Debian
Buster. Thanks to Graham Inggs <ginggs@debian.org> for providing this.
2018-01-21 Ralf Hoppe <ralf.hoppe@ieee.org>
* src/rootsPlot.c: Increase thickness of unit circle. Thanks to
Graham Inggs <ginggs@debian.org> for fixing this.
2018-01-21 Ralf Hoppe <ralf.hoppe@ieee.org>
* src/dialogSupport.c: Fix FTBFS with -Werror=format-security.
Thanks to Graham Inggs <ginggs@debian.org> for fixing this.
2016-05-07 Ralf Hoppe <ralf.hoppe@ieee.org>
* ChangeLog, Makefile.in, config.h.in, configure: Automake update.
2016-05-07 Ralf Hoppe <ralf.hoppe@ieee.org>
* src/Makefile.in: build-aux renamed to build.
2014-03-29 Ralf Hoppe <ralf.hoppe@ieee.org>
* src/responseDlg.c (responseDlgCreate): Response dialog does not
allow to edit 'Samples' on impulse/step response.
* src/responseWin.c (responseWinRedraw): Avoid warning on
non-existing print button widget.
2013-06-12 Ralf Hoppe <ralf.hoppe@ieee.org>
* include/doxygen.h: Rule 'make maintainer-clean' explained.
2013-05-12 Ralf Hoppe <ralf.hoppe@ieee.org>
* Makefile.am: No need to specifiy the Emacs major mode
'makefile-mode' or 'makefile-automake-mode' for well-known
Automake files.
* data/Makefile.am: Ditto.
* data/filters/Makefile.am: Ditto.
* data/templates/Makefile.am: Ditto.
* data/pixmaps/Makefile.am: Ditto.
* dist/Makefile.am: Ditto.
* doc/Makefile.am: Ditto.
* include/Makefile.am: Ditto.
* src/Makefile.am: Ditto.
2013-05-01 Ralf Hoppe <ralf.hoppe@ieee.org>
* configure.ac (AC_INIT, AC_PREREQ): Support of 'autoconf' from
version 2.63 upward.
(AC_CONFIG_AUX_DIR): Directory 'build-aux' renamed to 'build'.
* src/editDlg.c (editDlgSettingsAccept): Bugfix for a not redrawn
coefficients list, in case the output precision changes.
* src/mainDlg.c (coeffRedrawListTreeViews)
(mainDlgRedrawAll): New functions.
* include/mainDlg.h: Ditto.
2012-06-17 Ralf Hoppe <ralf.hoppe@ieee.org>
* ChangeLog: Release of dfcgen-gtk 0.4.
* Makefile.in: Ditto.
* config.h.in: Ditto.
* configure: Ditto.
* data/Makefile.in: Ditto.
* data/filters/Makefile.in: Ditto.
* data/pixmaps/Makefile.in: Ditto.
* data/templates/Makefile.in: Ditto.
* dist/dfcgen-gtk-0.4.tar.gz: Ditto.
* dist/dfcgen-gtk_0.4-1.dsc: Ditto.
* dist/dfcgen-gtk_0.4-1.tar.gz: Ditto.
* dist/dfcgen-gtk_0.4-1_i386.changes: Ditto.
* dist/dfcgen-gtk_0.4-1_i386.deb: Ditto.
* dist/dfcgen-gtk212-0.4.zip: Ditto.
* dist/dfcgen-gtk220-0.4.zip: Ditto.
* dist/debian/Makefile.in: Ditto.
* dist/debian/changelog: Ditto.
* dist/win32/Makefile.in: Ditto.
* doc/Doxyfile: Ditto.
* doc/Makefile.in: Ditto.
* include/Makefile.in: Ditto.
* po/de.gmo: Ditto.
* po/de.po: Ditto.
* po/dfcgen-gtk.pot: Ditto.
* src/Makefile.in: Ditto.
* dist/dfcgen-gtk-0.3.tar.gz: Removed in preparation of release 0.4.
* dist/dfcgen-gtk_0.3-1.dsc: Ditto.
* dist/dfcgen-gtk_0.3-1.tar.gz: Ditto.
* dist/dfcgen-gtk_0.3-1_i386.changes: Ditto.
* dist/dfcgen-gtk_0.3-1_i386.deb: Ditto.
* Makefile.am (dist-win32): Missing zlib1.dll added to Win32 package.
2012-06-15 Ralf Hoppe <ralf.hoppe@ieee.org>
* Makefile.am (dist-win32): Bugfix in for loop, in case copying a
DLL fails.
2012-06-14 Ralf Hoppe <ralf.hoppe@ieee.org>
* Makefile.am (dist-debian): New rule for creation of a ChangeLog
file from SVN logs.
* .svn-authors: Ditto.
2012-06-13 Ralf Hoppe <ralf.hoppe@ieee.org>
* TODO: Todo associated with mainDlgCreate() completed.
2012-06-11 Ralf Hoppe <ralf.hoppe@ieee.org>
* src/mainDlg.c (mainDlgCreate): Some internal cleanup of variable
usage.
* src/designDlg.c: Ditto.
* include/designDlg.h: Ditto.
2012-06-10 Ralf Hoppe <ralf.hoppe@ieee.org>
* Makefile.am [MinGW]: GTK 2.20 requires to copy more DLLs.
* src/responseWin.c (responseWinRedraw): Enable print button after
creation of a valid filter/system.
* dist/win32/Makefile.am: Some build files not installed anymore.
* dist/debian/Makefile.am: Ditto.
* include/doxygen.h (dist-win32) [MinGW]: Automated Win32
distribution build by new make rule 'dist-win32'.
* Makefile.am: Ditto.
* configure.ac: Ditto.
* src/Makefile.am: Ditto.
* src/mainDlg.c (mainDlgCreate) [MinGW]: Do not set a main window
icon from PNG file, if running on Win32.
* dist/Makefile.in: Added to VC.
* dist/win32/Makefile.in: Ditto.
* dist/debian/Makefile.in: Ditto.
* README, COPYING, .project: Name DFCGEN changed to DFCGen.
* dist/win32/dfcgen-gtk.rc: Ditto.
* dist/debian/control: Ditto.
* dist/debian/dfcgen-gtk.desktop: Ditto.
* data/templates/export.c: Ditto.
* data/templates/export.m: Ditto.
2012-06-08 Ralf Hoppe <ralf.hoppe@ieee.org>
* src/editDlg.c: Defines used for GTK buttons.
* src/responseDlg.c: Ditto.
* src/responseWin.c: Ditto.
* src/dialogSupport.c: Ditto.
* src/main.c [MinGW]: Build on MinGW now is working, inclusive
Win32 resource file processing and gettext support.
* include/support.h: Ditto.
* src/miscDesignDlg.c: Ditto.
* src/projectFile.c: Ditto.
* src/support.c: Ditto.
* data/filters/Makefile.am: Ditto.
* data/pixmaps/Makefile.am: Ditto.
* data/templates/Makefile.am: Ditto.
* dist/win32/Makefile.am: Ditto.
* dist/win32/dfcgen-gtk.rc: Ditto.
* src/Makefile.am: Ditto.
* configure.ac: Ditto.
2012-06-07 Ralf Hoppe <ralf.hoppe@ieee.org>
* include/base.h (DEBUG_LOG): Macro conditionals changed.
* src/fileDlg.c: FIXME comment removed.
* include/doxygen.h: Typo (related to po directory) corrected.
* COPYING: Name of dfcgen-gtk package corrected.
* data/templates/export.c: Ditto.
* data/templates/export.m: Ditto.
2012-06-03 Ralf Hoppe <ralf.hoppe@ieee.org>
* src/mainDlg.c: Make help button inactive, because no help
available so far.
* dist/win32 [MinGW]: Win32 specific files added.
* dist/win32/Makefile.am: Ditto.
* dist/Makefile.am: Ditto.
* dist/win32/dfcgen-gtk.rc: Ditto.
* dist/win32/dfcgen.ico: Ditto.
* dist/debian/Makefile.am: Directory 'dist' added to distribution
package.
* dfcgen-gtk.desktop: Moved to sub-directory 'dist/debian'.
* configure.ac: Directory 'dist' added to distribution package.
* Makefile.am: Ditto.
* dist/debian/dfcgen-gtk.desktop: Moved into debian sub-directory.
2012-06-02 Ralf Hoppe <ralf.hoppe@ieee.org>
* include/base.h (MALLOC, FREE): Macros removed.
* src/cairoPlot.c: MALLOC() and FREE() replaced by g_malloc() and g_free().
* src/cfgSettings.c: Ditto.
* src/dialogSupport.c: Ditto.
* src/editDlg.c: Ditto.
* src/fileDlg.c: Ditto.
* src/filterPrint.c: Ditto.
* src/filterResponse.c: Ditto.
* src/mainDlg.c: Ditto.
* src/mathPoly.c: Ditto.
* src/miscDesignDlg.c: Ditto.
* src/projectFile.c: Ditto.
* src/responseDlg.c: Ditto.
* src/support.c: Ditto.
* src/editDlg.c [MinGW]: Handling of sub-directories in
'pkgdatadir' made compatible with Win32 port.
* src/helpDlg.c: Ditto.
* src/main.c: Ditto.
* src/mainDlg.c: Ditto.
* src/miscDesignDlg.c: Ditto.
* src/projectFile.c: Ditto.
* src/responseWin.c: Ditto.
* src/support.c: Ditto.
* src/Makefile.am: Ditto.
* include/support.h: Ditto.
* src/filterPrint.c (filterPrintPageHeader): Avoid GLib critical
warning in case project title, author or description is not
defined.
* configure.ac (pkgpixmapsdir, pkgfiltersdir, pkgtemplatesdir):
New defines PACKAGE_FILTERS_DIR, PACKAGE_PIXMAPS_DIR,
PACKAGE_TEMPLATES_DIR created.
(CFLAGS_MACHINE): Removed.
(AC_INIT): Changed to new style.
* include/gui.h: Redefinition of PACKAGE_ICON avoided.
* data/filters/Makefile.am: New defines PACKAGE_FILTERS_DIR,
PACKAGE_PIXMAPS_DIR, PACKAGE_TEMPLATES_DIR used.
* data/pixmaps/Makefile.am: Ditto.
* data/templates/Makefile.am: Ditto.
* dfcgen-gtk.desktop: Menu application name changed to
DFCGEN (GTK+).
2012-05-29 Ralf Hoppe <ralf.hoppe@ieee.org>
* configure.ac: All AC_CHECK_LIB() macros removed because work
done by PKG_CHECK_MODULES().
(CFLAGS_LANG): Added -DGDK_DISABLE_DEPRECATED and
-DGTK_DISABLE_DEPRECATED.
* include/gui.h (GLADE_HOOKUP_OBJECT): gtk_widget_ref() replaced
by g_object_unref() and gtk_widget_ref() replaced by
g_object_ref(), because both functions are deprecated.
* include/mathFuncs.h (hypot, pow10): Renamed to uppercase
letters, because both are macros now.
* src/cairoPlot.c: Ditto.
* src/linFirFilter.c: Ditto.
* src/mathFuncs.c: Ditto.
* src/stdIirFilter.c: Ditto.
* src/Makefile.am [MinGW]: PACKAGE_LIBS moved away from AM_LDFLAGS
into dfcgen_gtk_LDADD, else does not compile under Win32.
* src/designDlg.c (designDlgBoxRealize): Deprecated macro
GTK_WIDGET_TOPLEVEL() conditionally replaced by function
gtk_widget_is_toplevel(), which is available since GTK 2.18.
* src/dfcProject.c (dfcPrjExport) [MinGW]: Error number
ENOTSUP (unsupported in MinGW) changed to EINVAL.
2012-05-20 Ralf Hoppe <ralf.hoppe@ieee.org>
* COPYING: Release of version 0.3 on Ubuntu 10.04 Lucid Lynx.
* ChangeLog: Ditto.
* Makefile.in: Ditto.
* README: Ditto.
* TODO: Ditto.
* config.h.in: Ditto.
* configure: Ditto.
* data/Makefile.in: Ditto.
* data/filters/Makefile.in: Ditto.
* data/pixmaps/Makefile.in: Ditto.
* dist/debian/changelog: Ditto.
* doc/Doxyfile: Ditto.
* doc/Makefile.in: Ditto.
* include/Makefile.in: Ditto.
* po/de.gmo: Ditto.
* po/de.po: Ditto.
* po/dfcgen-gtk.pot: Ditto.
* src/Makefile.in: Ditto.
* dist/dfcgen-gtk-0.3.tar.gz: Ditto.
* dist/dfcgen-gtk_0.3-1.dsc: Ditto.
* dist/dfcgen-gtk_0.3-1.tar.gz: Ditto.
* dist/dfcgen-gtk_0.3-1_i386.changes: Ditto.
* dist/dfcgen-gtk_0.3-1_i386.deb: Ditto.
* dist/dfcgen-gtk-0.2.tar.gz: Removed for release of dfcgen-gtk 0.3.
* dist/dfcgen-gtk_0.2-1.dsc: Ditto.
* dist/dfcgen-gtk_0.2-1.tar.gz: Ditto.
* dist/dfcgen-gtk_0.2-1_i386.changes: Ditto.
* dist/dfcgen-gtk_0.2-1_i386.deb: Ditto.
* dist/dfcgen-gtk-0.1.tar.gz: Added and tagged for release 0.2.
* dist/dfcgen-gtk-0.2.tar.gz: Ditto.
* dist/dfcgen-gtk_0.1-1.dsc: Ditto.
* dist/dfcgen-gtk_0.1-1.tar.gz: Ditto.
* dist/dfcgen-gtk_0.1-1_i386.changes: Ditto.
* dist/dfcgen-gtk_0.1-1_i386.deb: Ditto.
* dist/dfcgen-gtk_0.2-1.dsc: Ditto.
* dist/dfcgen-gtk_0.2-1.tar.gz: Ditto.
* dist/dfcgen-gtk_0.2-1_i386.changes: Ditto.
* dist/dfcgen-gtk_0.2-1_i386.deb: Ditto.
* dist/dfcgen-gtk-0.1.tar.gz: Added and tagged for release 0.1.
* dist/dfcgen-gtk_0.1-1.dsc: Ditto.
* dist/dfcgen-gtk_0.1-1.tar.gz: Ditto.
* dist/dfcgen-gtk_0.1-1_i386.changes: Ditto.
* dist/dfcgen-gtk_0.1-1_i386.deb: Ditto.
* .: config.log added to VC property "svn:ignore"
* po/POTFILES.in: Copyright string updated.
* include/Makefile.am: Ditto.
2012-05-19 Ralf Hoppe <ralf.hoppe@ieee.org>
* include/editDlg.h: Copyright string updated.
* include/fileDlg.h: Ditto.
* include/mainDlg.h: Ditto.
* src/support.c, include/support.h: Some format changes.
* include/projectFile.h: Export of coefficients, using template
files.
* include/doxygen.h: New option --enable-debug for configure
script, inclusive CFLAGS.
* data/templates/Makefile.in: Export of coefficients, using
template files.
* data/templates/export.c: Ditto.
* data/templates/export.txt: Ditto.
* data/templates/Makefile.am: Ditto.
* data/Makefile.am: Ditto.
* include/dfcProject.h: Ditto.
* src/Makefile.am: Ditto.
* src/dfcProject.c: Ditto.
* src/fileDlg.c: Ditto.
* src/mainDlg.c: Ditto.
* src/dialogSupport.c, src/filterResponse.c, src/mathPoly.c:
Doxygen comments corrected.
* dist/debian/control: Homepage changed to www.dfcgen.de.
* dist/debian/copyright: Ditto.
* src/main.c: GTK versions before 2.12 not supported anymore.
* src/projectFile.c: Ditto.
* src/miscDesignDlg.c [DEBUG]: Conditional define for path now
associated with TEST, not DEBUG.
* src/editDlg.c: No use of GtkTooltips, because obsolete since
GTK 2.12.
* src/linFirDesignDlg.c: Ditto.
* src/responseDlg.c: Ditto.
* src/responseWin.c: Ditto.
* src/stdIirDesignDlg.c: Ditto.
* src/miscDesignDlg.c: Ditto.
* include/filterPrint.h: GTK 2.10 and less not supported anymore.
* src/cfgSettings.c: Ditto.
* src/filterPrint.c: Ditto.
* src/helpDlg.c: Ditto.
* configure.ac (AC_CONFIG_FILES): Pixmaps moved to sub-directory
data/pixmaps.
* Makefile.am (SUBDIRS): Ditto.
2012-05-13 Ralf Hoppe <ralf.hoppe@ieee.org>
* .cproject, .project: Build path corrected.
2012-05-05 Ralf Hoppe <ralf.hoppe@ieee.org>
* data/filters/Makefile.in: Added to VC.
* data/templates/Makefile.in: Ditto.
* data/templates/Makefile.am: Ditto.
* data/templates/export.c: Ditto.
* data/templates/export.m: Ditto.
* data/templates/export.txt: Ditto.
2012-04-28 Ralf Hoppe <ralf.hoppe@ieee.org>
* pixmaps: Pixmaps moved into a subdirectory below 'pkgdatadir'.
* data/pixmaps: Pixmaps move to 'datadir'.
* data/templates: Added to VC.
* data/filters: Ditto.
* data/filters/Makefile.am: Ditto.
* data/*.dfc: Predefined filters moved into subdirectory.
* data/Makefile.am: Ditto.
* data/Makefile.in: Ditto.
2012-01-11 Ralf Hoppe <ralf.hoppe@ieee.org>
* .cproject, .project: Eclipse project files added.
2012-01-06 Ralf Hoppe <ralf.hoppe@ieee.org>
* doc/Doxyfile: LaTeX generation turned on for embedded formulas.
2012-01-03 Ralf Hoppe <ralf.hoppe@ieee.org>
* ChangeLog: Last minute changes before submitting 0.2 release.
* Makefile.in: Ditto.
* po/de.gmo: Ditto.
* po/de.po: Ditto.
* dist/debian/control: Section changed and Homepage added.
* src/helpDlg.c: Changed gtk_about_dialog_set_name() to
gtk_about_dialog_set_program_name() because first function is
obsolete.
* dfcgen-gtk.desktop: Gnome desktop file added.
* Makefile.am: Ditto.
* dist/debian/postinst: Ditto.
* dist/debian/prerm: Ditto.
2012-01-01 Ralf Hoppe <ralf.hoppe@ieee.org>
* README: Release of dfcgen-gtk 0.2 on Ubuntu 10.04 Lucid Lynx.
* TODO: Ditto.
* ChangeLog: Ditto.
* COPYING: Ditto.
* aclocal.m4: Ditto.
* config.h.in: Ditto.
* configure: Ditto.
* dfcgen-gtk.glade: Ditto.
* dist/debian/changelog: Ditto.
* data/Makefile.in: Ditto.
* Makefile.in: Ditto.
* po/de.gmo: Ditto.
* po/de.po: Ditto.
* po/dfcgen-gtk.pot: Ditto.
* pixmaps/Makefile.in: Ditto.
* doc/Makefile.in: Ditto.
* include/Makefile.am: Support for coefficients and response plot
printing.
* include/Makefile.in: Ditto.
* include/editDlg.h: Ditto.
* include/fileDlg.h: Ditto.
* include/filterPrint.h: Ditto.
* include/mainDlg.h: Ditto.
* src/mainDlg.c: Ditto.
* src/responseWin.c: Ditto.
* src/fileDlg.c: Ditto.
* src/filterPrint.c: Ditto.
* src/Makefile.in: Ditto.
* src/helpDlg.c: Emacs mode/coding added.
* src/cairoPlot.c (cairoPlot2d): Bugfix with respect to the
position of y-axis name.
* doc/Doxyfile: Doxygen 1.7 update.
* src/support.c: base.h added to include files.
* include/dfcProject.h: Doxygen comments corrected.
* include/doxygen.h: 'make dist-debian' added to developers
documentation section.
* include/base.h: Version/Id keyword corrected.
2011-10-16 Ralf Hoppe <ralf.hoppe@ieee.org>
* src/dialogSupport.c (dlgGetDouble): Function g_strtod() used
instead of strtod().
* include/dfcgen.h: Minor (Doxygen) comment changes.
* src/dfcProject.c: Ditto.
* src/filterResponse.c: Ditto.
* src/filterSupport.c: Ditto.
* src/mathMisc.c: Ditto.
* src/mathPoly.c: Ditto.
* src/mainDlg.c: Defines for GTK stock items used.
* src/support.c: String functions of GLib used.
* src/cfgSettings.c: Ditto.
* src/miscDesignDlg.c: Ditto.
* src/projectFile.c: Ditto.
* src/editDlg.c: Ditto.
* src/support.c: Macro FREE used instead of g_free.
* src/responseDlg.c: Ditto.
* src/mainDlg.c: Ditto.
* src/cairoPlot.c: Ditto.
* src/cfgSettings.c: Ditto.
* src/miscDesignDlg.c: Ditto.
* src/projectFile.c: Ditto.
* src/editDlg.c: Ditto.
* src/editDlg.c: Scrolling policy of project description
GtkTextView widget changed to GTK_POLICY_ALWAYS in y-direction.
* src/filterPrint.c: Project info and coefficients printing
implemented (supported starting with GTK 2.10), inclusive German
translations.
* include/filterPrint.h: Ditto.
* include/fileDlg.h: Ditto.
* po/POTFILES.in: Ditto.
* po/de.gmo: Ditto.
* po/de.po: Ditto.
* po/dfcgen-gtk.pot: Ditto.
* src/Makefile.am: Ditto.
* src/fileDlg.c: Ditto.
2011-09-24 Ralf Hoppe <ralf.hoppe@ieee.org>
* src/cfgSettings.c (cfgFlushSettings): Added a comment to
configuration file, which forces Emacs conf-mode.
2011-09-03 Ralf Hoppe <ralf.hoppe@ieee.org>
* src/editDlg.c (createSettingsDlg): Warning regarding a non-zero
page size within gtk_adjustment_new() for a GtkSpinButton fixed.
* src/linFirDesignDlg.c (linFirDesignDlgCreate): Ditto.
* src/miscDesignDlg.c (createDialog): Ditto.
* src/responseDlg.c (responseDlgCreate): Ditto.
* src/stdIirDesignDlg.c (stdIirDesignDlgCreate): Ditto.
* src/cairoPlot.c: Copyright in file header corrected.
* src/cfgSettings.c: Ditto.
* src/designDlg.c: Ditto.
* src/dfcProject.c: Ditto.
* src/dialogSupport.c: Ditto.
* src/editDlg.c: Ditto.
* src/fileDlg.c: Ditto.
* src/filterResponse.c: Ditto.
* src/helpDlg.c: Ditto.
2011-08-28 Ralf Hoppe <ralf.hoppe@ieee.org>
* dist/debian/control: Version field removed.
* Makefile.am (dist-debian): Call to dpkg-parsechangelog added.
* dist/debian/control: Update of dependencies and version numbers.
More comments.
* dist/debian/rules: Simplified for debhelper V7.
* dist/debian/docs: NEWS and AUTHORS removed (not part of dist)
* dist/debian/dirs: Directory /usr/sbin removed.
* dist/debian/copyright: Introduction extended.
* dist/debian/compat: Debhelper version 7 used.
* Makefile.am: 'dist-debian' target for Debian package build
added.
* COPYING: Introduction added.
* README: Package dependies and compile preconditions removed.
2011-08-21 Ralf Hoppe <ralf.hoppe@ieee.org>
* data/Makefile.am: Installation directory corrected.
* data/Makefile.am: Header keyword changed to 'Id'.
* Makefile.am: Ditto.
* configure.ac: Ditto.
* doc/Makefile.am: Ditto.
* include/Makefile.am: Ditto.
* pixmaps/Makefile.am: Ditto.
* src/Makefile.am: Ditto.
* include/*.h, src/*.c: Header keyword changed to 'Id'.
* include/*.h, src/*.c: Property 'svn:keywords' set to
"Id Revision Date Author".
* COPYING: Ditto.
* INSTALL: Ditto.
* README: Ditto.
* TODO: Ditto.
* configure.ac: Ditto.
* Makefile.am: Ditto.
* src/Makefile.am: Ditto.
* include/Makefile.am: Ditto.
* doc/Makefile.am: Ditto.
* doc/dfcgen.sty: Ditto.
* data/Makefile.am: Ditto.
* pixmaps/Makefile.am: Ditto.
* po/de.po: Ditto.
* po/dfcgen-gtk.pot: Ditto.
* po/stamp-po: Part of distribution, so must be under VC.
* configure.ac (AM_INIT_AUTOMAKE): Comment added.
2011-08-20 Ralf Hoppe <ralf.hoppe@ieee.org>
* po/de.po: Update of line numbers and file header.
* src/support.c: glade_set_atk_action_description() commented out,
because unused.
* Makefile.am: Migration from Anjuta Version 1 structure to a
regular Automake structure.
* data/Makefile.am: Ditto.
* doc/Makefile.am: Ditto.
* include/Makefile.am: Ditto.
* pixmaps/Makefile.am: Ditto.
* src/Makefile.am: Ditto.
2011-08-16 Ralf Hoppe <ralf.hoppe@ieee.org>
* m4/gettext.m4: Added gettext M4 macros.
* m4/iconv.m4: Ditto.
* m4/lib-ld.m4: Ditto.
* m4/lib-link.m4: Ditto.
* m4/lib-prefix.m4: Ditto.
* m4/nls.m4: Ditto.
* m4/po.m4: Ditto.
* m4/progtest.m4: Ditto.
* AUTHORS: Removed, because Automake strictness 'foreign' does not
require this file.
* NEWS: Ditto.
* configure.ac (AC_CONFIG_AUX_DIR): Autoconf/Automake auxiliary
files moved to sub-directory 'build-aux'.
* config.guess: Ditto.
* config.rpath: Ditto.
* config.sub: Ditto.
* depcomp: Ditto.
* install-sh: Ditto.
* missing: Ditto.
* ltmain.sh: Removed, because libtool not used by this project.
2011-08-14 Ralf Hoppe <ralf.hoppe@ieee.org>
* include/*.h, src/*.c: Update of file header with respect to
'cvs2svn' and copyright.
* src/mainDlg.c: Bugfix for conditional compile of print support.
* src/fileDlg.c: Ditto.
* src/responseWin.c: Ditto.
* src/helpDlg.c: * Define PACKAGE_WEBSITE renamed to PACKAGE_URL.
* configure.ac (AC_PROG_LIBTOOL): Removed.
(AC_PREREQ): Added for Ubuntu 10.04 LTS Lucid Lynx.
* po/POTFILES.in: New file, from gettext-0.17.
* src/Makefile: Removed, because generated by configure script.
2011-08-13 Ralf Hoppe <ralf.hoppe@ieee.org>
* po/LINGUAS: New file, from gettext-0.17.
* po/Makevars: Ditto.
* po/Rules-quot: Ditto.
* po/boldquot.sed: Ditto.
* po/en@boldquot.header: Ditto.
* po/en@quot.header: Ditto.
* po/insert-header.sin: Ditto.
* po/quot.sed: Ditto.
* po/remove-potcdate.sin: Ditto.
* po/Makefile.in.in: Upgrade to gettext-0.17
* po/Makefile: Removed, because generated by configure script.
* po/Makefile.in: Ditto.
* po/POTFILES: Ditto.
* pixmaps/Makefile: Ditto.
* include/Makefile: Ditto.
* doc/Makefile: Ditto.
* data/Makefile: Ditto.
* po/ChangeLog: Removed, because merged with ChangeLog at root.
2011-08-12 Ralf Hoppe <ralf.hoppe@ieee.org>
* Makefile: Removed, because generated by configure script.
* config.h: Ditto.
* config.log: Ditto.
* config.status: Ditto.
* libtool: Ditto.
* stamp-h1: Ditto.
* dfcgen-gtk.prj: Removed (Anjuta version 1, obsolete).
* acconfig.h: Removed (not really needed, see Autoconf manual).
* setup-gettext: Removed (not needed anymore by gettext).
* config.rpath: Added (needed by AM_GNU_GETTEXT macro).
* autogen.sh: Removed (performed by autoreconf).
* description-pak: Removed (because only Debian packaging
supported, but this was for RPM's).
* mkinstalldirs: Removed (not needed anymore, was only for old
gettext versions).
* acinclude.m4: Removed (should not be used for new packages, see
GNU Automake manual).
2011-08-07 Ralf Hoppe <ralf.hoppe@ieee.org>
* configure.in: Removed.
* Makefile.am: Upgrade to automake-1.11 and autoconf-2.65.
* configure.ac: Ditto.
2010-10-13 Ralf Hoppe <ralf.hoppe@ieee.org>
* description-pak: Added.
2007-09-22 Ralf Hoppe <ralf.hoppe@ieee.org>
* include/designDlg.h: Empty log message.
2006-11-18 Ralf Hoppe <ralf.hoppe@ieee.org>
* doc/Makefile: Prefix directory changed.
2006-11-11 Ralf Hoppe <ralf.hoppe@ieee.org>
* dist: Release of dfcgen-gtk 0.1.
* dist/debian: Ditto.
* dist/debian/changelog: Ditto.
* dist/debian/compat: Ditto.
* dist/debian/control: Ditto.
* dist/debian/copyright: Ditto.
* dist/debian/dirs: Ditto.
* dist/debian/docs: Ditto.
* dist/debian/rules: Ditto.
* dfcgen-gtk.prj: Directories tmp, debian, DEBIAN excluded from
project.
* TODO: Some todos added.
* Makefile: PACKAGE_DATA_DIR and PACKAGE_DOC_DIR corrected.
* Makefile.am: Ditto.
* Makefile.in: Ditto.
* config.h: Ditto.
* config.log: Ditto.
* config.status: Ditto.
* configure: Ditto.
* configure.in: Ditto.
* data/Makefile: Ditto.
* include/Makefile: Ditto.
* include/Makefile.am: Ditto.
* include/Makefile.in: Ditto.
* pixmaps/Makefile: Ditto.
* src/Makefile: Ditto.
2006-11-09 Ralf Hoppe <ralf.hoppe@ieee.org>
* README: Some capitalized words made lowercase.
* COPYING: Now it is GPL.
2006-11-08 Ralf Hoppe <ralf.hoppe@ieee.org>
* Makefile.am: Rebuilt.
* include/Makefile: Ditto.
* include/Makefile.in: Ditto.
* po/de.gmo: Some strings corrected.
* po/de.po: Ditto.
* TODO: New todo for response plots added.
* doc/dfcgen.sty: Now requires amsmath.
* include/Makefile: Last changes before release 0.1.
* include/Makefile.am: Ditto.
* include/Makefile.in: Ditto.
* include/cairoPlot.h: Ditto.
* include/dfcProject.h: Ditto.
* include/filterResponse.h: Ditto.
* include/filterSupport.h: Ditto.
* include/linFirFilter.h: Ditto.
* include/responsePlot.h: Ditto.
* include/rootsPlot.h: Ditto.
* include/stdIirFilter.h: Ditto.
* src/Makefile: Ditto.
* src/Makefile.am: Ditto.
* src/Makefile.in: Ditto.
* src/cairoPlot.c: Ditto.
* src/cfgSettings.c: Ditto.
* src/designDlg.c: Ditto.
* src/dfcProject.c: Ditto.
* src/fileDlg.c: Ditto.
* src/filterResponse.c: Ditto.
* src/filterSupport.c: Ditto.
* src/linFirFilter.c: Ditto.
* src/mainDlg.c: Ditto.
* src/miscFilter.c: Ditto.
* src/responseDlg.c: Ditto.
* src/responsePlot.c: Ditto.
* src/responseWin.c: Ditto.
* src/rootsPlot.c: Ditto.
* src/stdIirFilter.c: Ditto.
* pixmaps/amplitude.png: Added to VC.
* config.h: Newly generated by Anjuta before release 0.1
* Makefile: Ditto.
* Makefile.am: Ditto.
* Makefile.in: Ditto.
* config.h.in: Ditto.
* config.log: Ditto.
* config.status: Ditto.
* configure: Ditto.
* configure.in: Ditto.
* dfcgen-gtk.prj: Ditto.
* dfcgen-gtk.pws: Ditto.
* libtool: Ditto.
* pixmaps/Makefile: Ditto.
* pixmaps/Makefile.am: Ditto.
* pixmaps/Makefile.in: Ditto.
* po/Makefile: Final translations before release 0.1.
* po/de.gmo: Ditto.
* po/de.po: Ditto.
* po/dfcgen-gtk.pot: Ditto.
* AUTHORS, NEWS, README, TODO: First usuable revision.
* COPYING: Added to VC.
* INSTALL: Ditto.
* depcomp: Ditto.
* dfcgen-gtk.glade: Ditto.
* dfcgen-gtk.gladep: Ditto.
* install-sh: Ditto.
* missing: Ditto.
2006-11-04 Ralf Hoppe <ralf.hoppe@ieee.org>
* po/Makefile: First german translation.
* po/POTFILES: Ditto.
* po/POTFILES.in: Ditto.
* po/de.gmo: Ditto.
* po/de.po: Ditto.
* po/dfcgen-gtk.pot: Ditto.
* pixmaps/*.png: Added to VC.
* pixmaps/Makefile: Ditto.
* pixmaps/Makefile.am: Ditto.
* pixmaps/Makefile.in: Ditto.
2006-09-11 Ralf Hoppe <ralf.hoppe@ieee.org>
* .*: Initial import.
Copyright (C) 2006-2022 Ralf Hoppe <ralf.hoppe@dfcgen.de>
|