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 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539
|
2023-04-21 rpalsa
* .: Update bundled version of libcext to 1.2.6
2023-04-20 rpalsa
* m4/eso.m4: Updated to the latest version.
2023-04-20 llundin
* cplcore/cpl_test.c: cpl_test_image_rel_macro() et al: Attempt to
fix further Cppcheck uninitvar reported as new (when they are
not)
* cpldfs/tests/cpl_dfs-test.c: cpl_dfs_save_txt(): Fix copy-paste
error in fprint() call, Cppcheck wrongPrintfScanfArgNum
* cplcore/cpl_test.c: cpl_test_array_abs_macro(): Fix Cppcheck
uninitvar error message (and remove non-sensical cpp logic)
* cplcore/cpl_plot.c: cpl_mplot_open(), cpl_image_open(): Avoid use
of macro cpl_error_ensure() due to Cppcheck error message
2023-04-19 rpalsa
* NEWS: Update version of bundled libcext in the release notes of
CPL 7.3.2
* cplcore/cpl_array.h: Reorder and update conditionals in guard
protecting the include directive of complex.h to avoid a compiler
warning if __STDC_VERSION__ is not defined.
2023-04-19 llundin
* NEWS: Updated w. cpl_image_get_interpolated() (PIPE-10181)
* cplcore/cpl_image_resample.c: cpl_image_get_interpolated():
Provided clarifying overall doxygen statements (use doxygen
code/endcode) (PIPE-10181)
2023-04-18 llundin
* cplcore/cpl_propertylist.c: cpl_propertylist_erase_name_(),
cpl_propertylist_copy_name_(): Fix doxygen copy-paste errors
* NEWS, cplcore/cpl_propertylist.c: cpl_fits_add_properties(): Drop
any mistaken HIERARCH prolog from property name (PIPE-10702).
Source code formatted
2023-04-17 rpalsa
* acinclude.m4: CPL_CONFIG_FUNC(): changed code snippet to reduce
warning on incompatible pointers to a warning on unused
variables. Replace call to AC_LINK_IFELSE by AC_COMPILE_IFELSE.
Link stage is not needed for this check.
* m4/eso.m4: Updated to the latest version.
* m4/omp.m4: _CPL_LANG_OPENMP(): Fix prototype of main() in code
snippet
2023-04-11 rpalsa
* cplcore/cpl_error.c, cplcore/cpl_image_io.c: Fix source
formatting.
2023-04-06 llundin
* NEWS: Updated release notes for CPL 7.3.2
* cpldrs/tests/cpl_wcs-test.c: cpl_wcs_test_propertylist(): Handle
WCS unit SI-prefix/padding, check ctype et al only when present.
cpl_wcs_test_5115(): Reinstate SI-prefix
2023-04-06 rpalsa
* configure.ac: Package version updated to 7.3.2. Library interface
version updated.
* README: Package version updated to 7.3.2
* NEWS: Add initial release notes for CPL 7.3.2
2023-04-06 llundin
* cpldrs/tests/cpl_wcs-test.c: cpl_wcs_test_illcond(),
cpl_wcs_test_badaxis(): Added. cpl_wcs_test_10492(): Use shared
testing. cpl_wcs_test_propertylist(): Add fp-tol (bis)
* cpldrs/tests/cpl_wcs-test.c: cpl_wcs_test_propertylist(): Extend
testing, add FP-tolerance for FP-comparison (that otherwise fails
on some platforms)
2023-04-06 rpalsa
* configure.ac: Fix ill-placed double quote in if-statement causing
the test for using an external libcext installation to break.
2023-04-06 llundin
* cpldrs/tests/cpl_wcs-test.c: cpl_wcs_test_file(): Increase
fp-tol, avoid repeated failure messages
2023-04-05 llundin
* cpldrs/cpl_wcs.c, cpldrs/tests/cpl_wcs-test.c:
cpl_wcs_test_singular(): Add failure test w. WCS memory leak...
* cplcore/cpl_error.c: cpl_error_set_wcs_macro(): Fix duplicated ()
in CPL error message
2023-04-05 rpalsa
* acinclude.m4, configure.ac: Fix conditional configuration of the
bundled libcext. Skip configuration if with-system-cext option is
given.
2023-04-05 llundin
* cpldrs/tests/cpl_wcs-test.c: cpl_wcs_test_file(): Some tests also
of tile-compressed data
* cpldrs/tests/cpl_wcs-test.c: cpl_wcs_test_5115(): Additional
checks (PIPE-5115)
* cpldrs/cpl_wcs.c, cpldrs/tests/cpl_wcs-test.c: cpl_wcs_convert():
Document peculiar status array and reduce array allocations
(PIPE-10538). cpl_wcs_new_from_propertylist_(): Fix (false
positive) gcc warning. cpl_wcs_test_file(): Raise fp-tol, reduce
verbosity
* cpldrs/tests/cpl_wcs-test.c: cpl_wcs_test_file(): Additional
tests. cpl_wcs_test_all(): Test invalid flags of all status
elements (PIPE-10538)
2023-04-04 llundin
* cplcore/cpl_fits_card.c, cplcore/cpl_propertylist_impl.h,
cpldrs/cpl_wcs.c, cpldrs/tests/cpl_wcs-test.c:
cpl_wcs_platesol(): Ignore non-WCS FITS card decoding failure and
use cpl_error_set_wcs() on WCS-failure, add unit tests
(PIPE-10539)
2023-04-04 rpalsa
* m4/eso.m4: Updated to the latest version.
2023-04-03 llundin
* cpldrs/cpl_wcs.c: cpl_wcs_platesol(): Avoid use of non-standard
assert()
* cpldrs/cpl_wcs.c, cpldrs/tests/cpl_wcs-test.c:
cpl_wcs_new_from_propertylist(): Ignore non-WCS FITS card
encoding failure, add unit tests (PIPE-10539)
2023-04-03 llundin
* cplcore/cpl_image_io.c: cpl_image_get_complex(), cpl_image_get():
Clarify documentation of return value when pixel is bad
(PIPE-10679)
2023-03-30 rpalsa
* cpldfs/tests/cpl_multiframe-test.c: main(): Fix function
definition. Explicitly make argument list void.
2023-03-07 rpalsa
* NEWS: Remove statement on CFITSIO dependency again. The issue is
present also with older versions, but is not handled gracefully.
2023-03-06 rpalsa
* NEWS: Package version updated to 7.3.1
* README, configure.ac: Package version updated to 7.3.1
* cpldfs/cpl_multiframe.c: _cpl_fits_format_card(): Truncate FITS
records to the correct length of one less than FLEN_CARD
characters. While this apparently did not impact the correctness
of the created FITS headers, a too long FITS record causes the
underlying CFITSIO function to fail as of v4.2.0 of CFITSIO.
2023-02-08 llundin
* cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_test_file(): Avoid failure from missing cleanup
of own temporary files
2023-02-02 rpalsa
* ., cplcore: Property svn:ignore updated
* cpljava: Property svn:ignore updated
* configure.ac: Package version updated to 7.3
* ChangeLog, ChangeLog-2: ChangeLog updated. Moved old ChangeLogs
to separate file
2023-01-27 rpalsa
* cpldfs/cpl_dfs.c: Change default PRO dictionary version to
PRO-1.17
2023-01-27 rpalsa
* cpldfs/cpl_dfs.c: Change default PRO dictionary version to
PRO-1.17
2023-01-26 llundin
* cpldrs/cpl_wcs.c, cpldrs/tests/cpl_wcs-test.c: cpl_wcs_convert():
Reset output pointers to NULL prior to all but the most basic
input checks, adapt unit tests (PIPE-10492)
2023-01-25 llundin
* cpldrs/cpl_wcs.c, cpldrs/tests/cpl_wcs-test.c: cpl_wcs_convert():
Change error code for inconsisntecy check to
CPL_ERROR_ILLEGAL_INPUT (PIPE-10492)
* cpldrs/tests/cpl_wcs-test.c: cpl_wcs_convert(): Revert previous,
reinstate status array on failed libWCS call (PIPE-10492) (bis,
unit tests also updated
* cpldrs/cpl_wcs.c, cpldrs/tests/cpl_wcs-test.c: cpl_wcs_convert():
Revert previous, reinstate status array on failed libWCS call
(PIPE-10492)
* cpldrs/tests/cpl_wcs-test.c: cpl_wcs_convert(): Change CPL error
code for consistency check (PIPE-10492) (bis)
* cpldrs/cpl_wcs.c: cpl_wcs_convert(): Change CPL error code for
consistency check (PIPE-10492)
* cpldrs/cpl_wcs.c: cpl_wcs_convert(): Move consistency check to
after pointer reset (PIPE-10492)
2023-01-24 llundin
* cpldrs/cpl_wcs.c: cpl_wcs_convert(): Initialize retval to avoid
uninit issue in default switch case. Also, declare pointers
variable before primitive variables (PIPE-10492)
2023-01-23 rpalsa
* cplcore/cpl_property_impl.h: Source reformatted.
2023-01-23 llundin
* cpldrs/cpl_wcs.c, cpldrs/tests/cpl_wcs-test.c: cpl_wcs_convert():
Support NAXIS=0 per doxygen of cpl_wcs_new_from_propertylist(),
fix memory leak on error (PIPE-10492)
2023-01-20 llundin
* cplcore/cpl_property_impl.h, cpldrs/cpl_wcs.c,
cpldrs/tests/cpl_wcs-test.c: cpl_wcs_new_from_propertylist():
Ensure that no unsupported CPL error code is propagated from an
unexpected failure of cpl_propertylist_copy_property_regexp(),
add unit test also w. cpl_wcs_convert(). (PIPE-10492)
* cpldrs/cpl_wcs.c, cpldrs/tests/cpl_wcs-test.c: cpl_wcs_convert():
Change error code on incompatible input to CPL_ERROR_UNSPECIFIED
for backwards compatibility (PIPE-10492)
2023-01-10 llundin
* NEWS, cpldrs/cpl_wcs.c, cpldrs/tests/cpl_wcs-test.c:
cpl_wcs_convert(): Add missing check on input object size
consistency (PIPE-10492)
2022-12-19 rpalsa
* ChangeLog: ChangeLog fixed and updated
* README: Package version updated, set to 7.3b
* configure.ac: Package version updated, set to 7.3b
* NEWS: Updated release notes for CPL 7.3
2022-12-14 rpalsa
* ., ChangeLog, NEWS: Import changes from the trunk (revisions
r277378,r277379)
* ., .clang-format, ChangeLog, NEWS, README, acinclude.m4,
configure.ac, cplcore/cpl_column.c, cplcore/cpl_column_body.h,
cplcore/cpl_filter_median.c, cplcore/cpl_fits_card.c,
cplcore/cpl_fits_card.h, cplcore/cpl_func.h.top,
cplcore/cpl_image_basic.c, cplcore/cpl_image_basic_body.h,
cplcore/cpl_image_bpm_body.h, cplcore/cpl_image_filter_body.h,
cplcore/cpl_image_io.c, cplcore/cpl_image_io_body.h,
cplcore/cpl_image_resample_body.h, cplcore/cpl_imagelist_io.c,
cplcore/cpl_init.c, cplcore/cpl_mask.c,
cplcore/cpl_mask_binary.h, cplcore/cpl_mask_body.h,
cplcore/cpl_matrix_impl.h, cplcore/cpl_memory.h,
cplcore/cpl_polynomial.c, cplcore/cpl_property.c,
cplcore/cpl_property_dicb.c, cplcore/cpl_property_impl.h,
cplcore/cpl_propertylist.c, cplcore/cpl_table.c,
cplcore/cpl_tools.h, cplcore/cpl_tools_body.h,
cplcore/cpl_vector.c, cplcore/cpl_version.h.top,
cplcore/tests/cpl_filter_body.h,
cplcore/tests/cpl_image_io-test.c,
cplcore/tests/cpl_imagelist_io-test.c,
cplcore/tests/cpl_polynomial-test.c,
cplcore/tests/cpl_propertylist-test.c,
cplcore/tests/cpl_vector-test.c, cpldfs/cpl_dfs.c,
cpldfs/cpl_multiframe.c, cpldfs/cpl_multiframe.h,
cpldfs/tests/cpl_multiframe-test.c, cpldrs/cpl_apertures.c,
cpldrs/cpl_detector.c, cpldrs/cpl_detector_body.h,
cpldrs/cpl_fft_body.h, cpldrs/cpl_fit_body.h,
cpldrs/cpl_geom_img.c, cpldrs/cpl_geom_img_body.h,
cpldrs/tests/cpl_fit-test.c, cpldrs/tests/cpl_geom_img-test.c,
cpldrs/tests/cpl_photom-test.c, m4, m4/eso.m4: Import changes
from the trunk (revisions r275978:r276999,r277344)
2022-11-15 llundin
* cplcore/cpl_property.c, cplcore/tests/cpl_property-test.c:
cpl_property_set_comment(): Fix doxygen (PIPE-10403), add unit
tests. cpl_property_set_name_cx(), cpl_property_set_comment_cx(),
cpl_property_set_string_cx(), cpl_property_set_sortkey_():
Cleanup internak doxygen
2022-11-04 llundin
* cplcore/cpl_tools.h, cplcore/tests/cpl_propertylist-test.c:
CPL_FITS_START: rm duplicate definition. CPL_FITS_IGNORE*,
CPL_FITS_COMPRKEYS: Define in unit test code, remove from shared,
installed header file
2022-11-02 llundin
* NEWS, cplcore/cpl_fits_card.c, cplcore/cpl_property.c,
cplcore/cpl_property_impl.h, cplcore/cpl_propertylist.c,
cplcore/cpl_propertylist_impl.h,
cplcore/tests/cpl_propertylist-test.c, cpldrs/cpl_wcs.c: Revert
previous commit (PIPE-10359)
* NEWS, cplcore/cpl_fits_card.c, cplcore/cpl_property.c,
cplcore/cpl_property_impl.h, cplcore/cpl_propertylist.c,
cplcore/cpl_propertylist_impl.h,
cplcore/tests/cpl_propertylist-test.c, cpldrs/cpl_wcs.c:
cpl_propertylist_load(), cpl_propertylist_load_regexp(): Support
long strings (PIPE-10359)
2022-10-28 llundin
* cplcore/cpl_property.c: Fix several copy-paste errors in doxygen
- of internal functions only
2022-10-24 llundin
* cplcore/cpl_fits_card.c: cpl_fits_set_key(): Fix incorrect
comment in CPL_UNLIKELY() branch
2022-10-14 llundin
* cpldrs/cpl_apertures.c: cpl_apertures_new_from_image() et al: Fix
incomplete renaming of variable in function definition to also
include doxygen (PIPE-9935)
* cpldrs/cpl_apertures.c: Undo previous commit
* cpldrs/cpl_apertures.c: Fix spurious inconsistency between
doxygen variable name (self) and actual variable name (in_image)
in function definition, align w. doxygen name
2022-10-10 rpalsa
* configure.ac: Package version updated, set to 7.3a
* .: Create CPL 7.3 release branch.
2022-07-15 rpalsa
* cpl_multiframe_dataset_properties_remove(),
cpl_multiframe_dataset_properties_update(): Fixed bugs in initial
implementation. Unit tests added for cpl_multiframe module.
2022-06-21 rpalsa
* Property svn:mergeinfo updated
* Import fixes from the CPL-7_2-BRANCH release branch
(r271542,r271544)
2022-04-26 rpalsa
* cpl_multiframe_dataset_properties_remove(),
cpl_multiframe_dataset_properties_update_id(): initial API
documentation added.
* cpl_multiframe_dataset_properties_remove(): initial
implementation added. cpl_multiframe_dataset_properties_update():
error checking improved and memory leak fixed
cpl_multiframe_dataset_get_position(),
cpl_multiframe_dataset_get_id((): error checking improved,
correct use of size types
2022-04-25 rpalsa
* Library version updated.
* Initial, untested implementation of
cpl_multiframe_dataset_get_id(),
cpl_multiframe_dataset_get_position(),
cpl_multiframe_dataset_properties_update().
* New interfaces added: cpl_multiframe_dataset_get_id(),
cpl_multiframe_dataset_get_position(),
cpl_multiframe_dataset_properties_update(),
cpl_multiframe_dataset_properties_remove()
* Allow reflowing of comments.
* Add .vscode to the list of ignored items.
* Updated property svn:ignore: added .vscode to the list of ignored
directories.
2022-02-25 llundin
* cpl_photom_fill_blackbody_test(): Add unit tests also for
CPL_UNIT_PHOTONRADIANCE
2022-02-24 rpalsa
* Import fixes from the CPL-7_2-BRANCH release branch (revisions
r270188:r270595)
2022-02-09 llundin
* cpl_apertures_new_from_image(), etc: Replace parameter name self
with in_image (PIPE-9935)
2022-01-24 rpalsa
* Import changes from the CPL-7_2-BRANCH release branch (revisions
r268017:r269616)
2021-12-03 rpalsa
* cpl_dfs_setup_prduct_header(): Fix memory leak when renaming the
property RADECSYS to RADESYS. (PIPE-9856)
* Rename README.SVN to README.DEV to no longer tie it to a
particular version control system. It is a README containing
information for developers in general.
* Added section on coding style and formatting.
* Added .clang-format configuration file with new CPL standard
formatting rules.
* Reformatted all source files with clang-format version 11.0.1
2021-11-29 rpalsa
* Copyright updated.
2021-11-03 rpalsa
* configure.ac: Undo unintended changes
* Import changes from the CPL-7_1-BRANCH release branch (revisions
r268013,r268025)
* Integrate development branch CPLDEV-HARMONI-BRANCH (revisions
r265855:r266203): improvement of polynomial fitting and
evaluation
* Import fixes from the CPL-7_2-BRANCH release branch (revision:
r268014)
* Package version set to 7.2.90.
* Import changes from the CPL-7_1-BRANCH release branch (revisions:
r268003:r268007)
2021-11-03 rpalsa
* NEWS: Release notes updated for the CPL 7.1.5 release.
* configure.ac: Package version updated. Set to 7.1.5b
* README: Package version updated for the CPL 7.1.5 release.
* cplcore/tests/cpl_matrix-test.c: cpl_matrix_fill_test(): Fixed
compiler warning on possible truncation when calling labs().
* cplcore/cpl_matrix.c: cpl_matrix_extract_diagonal(): Fixed
compiler warning on possible truncation when calling labs(): call
llabs() instead.
2021-10-26 llundin
* cplcore/cpl_vector_fit_impl.h: cpl_fit_lvmq_(): Fix memory leak
on error (PIPE-9810)
2021-09-21 rpalsa
* cpldrs/cpl_ppm.c: Fix empty API reference documentation
generatated by doxygen.
2021-08-10 rpalsa
* cplui/cpl_frameset.c: cpl_frameset_labelise(): Fixed typo in
debug message.
2021-07-21 rpalsa
* cpldfs/cpl_dfs.c: cpl_dfs_setup_product_header(): Added HDRVER to
the list of forbidden keywords for products. Requested by DICB
(PIPE-9686).
2021-07-12 rpalsa
* cpldfs/cpl_multiframe.c: _cpl_dicb_primary_ranking: Added support
for keyword RADESYS, while keeping RADECSYS for backwards
compatibility.
* cpldfs/cpl_dfs.c: cpl_dfs_setup_product_header(): Implement
support for FITS keyword RADESYS following the DICB policy. If
RADECSYS is used it is translated to RADESYS. If the finished
product header still contains RADECSYS depends on the caller
provided target property list. If it is present a warning message
it printed.
* cplcore/cpl_init.c: cpl_get_description(): Remove FLOP counting
message. It appears to be confusing to the casual user and
enabling/disabling it should rather be handled by a configure
option at build time.
* Doxyfile.in: Fix the manual title. Avoid duplicate word "Manual"
in the generated output.
2021-06-01 rpalsa
* Doxyfile.in: Enable search box and PDF hyperlinks for the doxygen
reference manual.
2021-05-12 llundin
* cplcore/cpl_io_fits.c, cplcore/cpl_io_fits.h,
cplcore/tests/cpl_io_fits-test.c: cpl_io_get_max_open(): Added
(internally). cpl_io_fits_test_all(): Added, guarded by
cpl_io_fits_is_enabled(). cpl_io_fits_test_many(): Limit to one
plus max open files. (PIPE-8824)
2021-05-11 llundin
* cplcore/tests/cpl_io_fits-test.c: cpl_io_fits_test_many(),
cpl_io_fits_test_fulldisk_table(): Fix incorrect bitwise operator
- without breaking CPL_IO_MODE=1
2021-05-11 rpalsa
* configure.ac: Package version updated, set to 7.1.5a.
* ., cplcore/cpl_image_iqe.c, cplcore/cpl_table.c,
cplcore/tests/cpl_table-test.c: Import changes from the trunk
(revisions r264247, r264249, r264250, r264253:r264255, r264298)
2021-05-11 llundin
* cplcore/tests/cpl_io_fits-test.c: cpl_io_fits_test_many(),
cpl_io_fits_test_fulldisk_table(): Fix incorrect bitwise operator
(found by gcc-warning)
* cplcore/tests/cpl_io_fits-test.c: Fix incorrect bitwise operator
(found by gcc-warning)
* cplcore/cpl_image_basic.c: cpl_image_move(): Remove no longer
needed variable (PIPE-9543)
2021-05-10 llundin
* cplcore/tests/cpl_image_basic-test.c,
cplcore/tests/cpl_mask-test.c: cpl_image_move(), cpl_mask_move():
Add unit tests also w. valid input (PIPE-9543)
2021-05-10 rpalsa
* ChangeLog: Remove duplicate entries from the ChangeLog.
2021-05-10 llundin
* cplcore/cpl_image_basic.c, cplcore/cpl_mask.c,
cplcore/tests/cpl_image_basic-test.c,
cplcore/tests/cpl_mask-test.c: cpl_image_move(), cpl_mask_move():
Improve input validation and doxygen (PIPE-9543)
2021-05-07 rpalsa
* cplcore/cpl_filter.h: _cpl_filter_mode_: More fixes of the
doxygen documentation rendering.
* configure.ac: Package version updated, set to 7.1.4.
2021-05-05 rpalsa
* m4/cpl.m4: CPL_CHECK_CFITSIO(): the macro also depends on
pkg-config, therefore make sure ESO_CHECK_PKGCONFIG was called
before.
2021-04-21 rpalsa
* cplcore/cpl_filter.h: Fixed rendering issues of doxygen
documentation caused by @verbatim/@endverbatim blocks.
* cplcore/cpl_polynomial.c: Remove unterminated @verbatim which
causes a doxygen warning. Remove @verbatim/@endverbatim
environment from non-doxygen documentation.
* Doxyfile.in: Updated to use SVG instead of PNG output for
formulas (requires pdf2svg or inkscape to be present). Disable
USE_MATHJAX as default for local builds, and use pdflatex as
default for generating latex output.
* README.SVN: Updated required doxygen version to 1.8.20 and added
dependency on pdf2svg.
2021-04-20 llundin
* cplcore/cpl_mask.c, cplcore/tests/cpl_mask-test.c:
cpl_mask_count_window_test(): Added.
cpl_mask_count_window_test(): Fix out-of-bounds access
(PIPE-9501)
2021-04-16 rpalsa
* .: Property svn:externals updated: point libcext to revision
r256630.
* NEWS: Updated for the CPL 7.1.4 release.
* README: Updated for the CPL 7.1.4 release.
* NEWS: Initial update for the CPL 7.1.4 release.
* ChangeLog: ChangeLog updated for the release of CPL 7.1.4
2021-04-13 rpalsa
* cplcore/cpl_array.h, cplcore/cpl_array_impl.h,
cplcore/cpl_column.h, cplcore/cpl_image_io.h,
cplcore/cpl_property.h, cplcore/cpl_propertylist.h,
cplcore/cpl_table.h, cplcore/cpl_test.h: Remove conditional
relying on the definition of _Complex_I in public header files.
Support for complex number arithmetic is by requiring at least a
C99 compiler to build and use the library. cpl_column.h,
cpl_array.h: Work around an issue if the headers are used by a
C++ compiler. Inclusion of these headers breaks building C++ code
because they unnecessarily include the C99 header complex.h.
Strictly speaking including complex.h in the CPL public API
headers is not needed and should be removed, however this may
break client code. The workaround prevents issues in existing
client code. A final fix for this issue is left for a later
release of the library (PIPE-9014).
* ., m4/cpl.m4: Import changes from the trunk (revision r254001).
2021-01-22 llundin
* cpldrs/cpl_geom_img.c, cpldrs/cpl_geom_img.h:
cpl_geom_img_offset_saa(): Improve doxygen (PIPE-9379)
2020-10-27 rpalsa
* Doxyfile.in: USE_MATHJAX: Enable use of MathJax for rendering
formulas. On a trial basis for now.
* cplcore/cpl_error.h: _cpl_error_code enumeration: Fixed outdated
comment for value CPL_ERROR_UNSPECIFIED.
2020-10-13 cgarcia
* .: Block revision 258528 from being merged into the 7.1 branch
2020-10-08 llundin
* cplcore/cpl_vector.c: cpl_vector_fit_gaussian(): Fix always true
conditionals (PIPE-8110)
2020-09-24 llundin
* cplcore/tests/cpl_io_fits-test.c: Import from trunk r256424
(PIPE-8824)
2020-09-10 llundin
* cplcore/cpl_image_bpm.c: Revert cpl_image_reject_(): bpm creation
is thread-critical (PIPE-9236)
2020-09-09 llundin
* cplcore/cpl_image_bpm.c: cpl_image_reject_(): bpm creation is
thread-critical (PIPE-9236)
2020-07-31 rpalsa
* m4/eso.m4: Updated to the latest version.
2020-07-30 rpalsa
* m4/cpl.m4: Include the needed header files when checking for
library availability, so that the tests work with strict compiler
settings.
2020-07-20 rpalsa
* m4/cpl.m4: Replaced deprecated macro call AC_HELP_STRING by
AS_HELP_STRING.
2020-07-13 rpalsa
* cplcore/cpl_matrix.c: cpl_matrix_product_normal(): Fixed
formatting of doxygen comment block.
2020-05-14 rpalsa
* configure.ac: Package version updated, set to 7.1.3.
* ChangeLog: ChangeLog updated for the release of CPL 7.1.3
2020-05-06 llundin
* README: 7.1.2 -> 7.1.3, wcslib: 4.16 -> 4.24
2020-05-05 llundin
* NEWS, acinclude.m4, configure.ac, cpljava/Makefile.am,
cpljava/org_eso_cpl_jni_CPLControl.h,
cpljava/org_eso_cpl_jni_JNIParameterImp.h,
cpljava/org_eso_cpl_jni_JNIRecipe.h,
cpljava/org_eso_cpl_jni_LibraryLoader.h,
cpljava/org_eso_cpl_jni_PluginLibrary.h: Import from trunk the
changes needed for PIPE-8671 - and update NEWS
* NEWS, configure.ac: 7.1.3: New version, updated NEWS
2020-02-21 llundin
* cplcore/tests/cpl_io_fits-test.c: cpl_io_fits_test_many(): Add
diag msg (PIPE-8824), reduce var scope
2020-01-28 llundin
* cpldrs/cpl_wcs.c: cpl_wcs_get_crval() et al: rm duplicated NULL
check
2020-01-13 llundin
* cplcore/cpl_propertylist.c: _cpl_propertylist_to_fitsfile(): Fix
comment typo
2019-12-19 llundin
* cplcore/tests/cpl_io_fits-test.c: Reduce default number of HDUs
by a factor 6 (PIPE-8824)
2019-12-16 llundin
* cplcore/tests/cpl_io_fits-test.c: Delete generated test FITS data
(PIPE-8824)
2019-10-02 llundin
* cplcore/tests/cpl_propertylist-test.c: Test also conversion of
+/- inf in FITS card
* cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_test_local(): Add unit tests w. NaN-value
2019-08-09 rpalsa
* m4/cpl.m4: CPL_CHECK_CFITSIO(), CPL_CHECK_WCS(),
CPL_CHECK_LIBS(): Undefine LIBS (reset to empty) for tests which
only require the headers.
2019-07-25 llundin
* cplcore/cpl_image_io.c: cpl_image_get_(): Fix doxygen internal
(PIPE-8593)
2019-07-12 llundin
* ChangeLog: ChangeLog updated for CPL 7.1.2.
2019-07-11 llundin
* README: 7.1.1 -> 7.1.2
* NEWS: 7.1.2: Add changes, improve description
2019-07-08 llundin
* cplcore/cpl_vector_fit_impl.h: Copy comment improvements from
head
2019-07-03 llundin
* cplcore/cpl_polynomial.c: Fix typo in (internal) doxygen
* cplcore/cpl_propertylist.c: _cpl_propertylist_to_fitsfile():
Change non-unique message from info to warning (PIPE-8552)
2019-05-29 rpalsa
* acinclude.m4: CPL_PATH_JAVA(): Don't leave JAVAH unset if no java
was found.
2019-05-10 llundin
* cplcore/cpl_propertylist.c: _cpl_propertylist_fill_from_fits():
Improve support of blank FITS card (PIPE-8450)
2019-05-09 llundin
* NEWS, configure.ac: 7.1.2: New vision, updated NEWS
* cplcore/cpl_propertylist.c: _cpl_propertylist_fill_from_fits():
Fix bug in handling of a blank FITS card (PIPE-8450_
2019-04-29 llundin
* cplcore/cpl_propertylist.c,
cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_fill_from_fits_locale(),
cpl_propertylist_to_fitsfile_locale(): Guard uselocale() from
unavailable POSIX locale (PIPE-7540)
2019-04-11 llundin
* cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_test_local(): Call freelocale()
2019-04-09 llundin
* cplcore/cpl_propertylist.c:
cpl_propertylist_fill_from_fits_locale(),
cpl_propertylist_to_fitsfile_locale(): Deallocate locale
(PIPE-7540)
* cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_test_local(): Fix comment typo
2019-04-05 llundin
* cplcore/tests/cpl_propertylist-test.c: Locale: improve msg
2019-04-04 llundin
* cplcore/cpl_propertylist.c,
cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_to_fitsfile_locale(): Added, static.
cpl_fits_get_value(): Update pjparsed also on invalid character.
_cpl_propertylist_fill_from_fits(): Improve error message.
cpl_propertylist_test_local(): Call also w. non-POSIX locale
2019-04-03 llundin
* cplcore/cpl_propertylist.c: _cpl_propertylist_fill_from_fits():
Called only once now, so inline
* cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_test_numeric_type(): Merge in changes from trunk
* cplcore/cpl_propertylist.c:
cpl_propertylist_fill_from_fits_locale(): Added static, to
encapsulate the locale setting (PIPE-7540)
* cplcore/cpl_propertylist.c: _cpl_propertylist_fill_from_fits():
Set locale only when needed (PIPE-7540)
* cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_test_local(): Revert to default testing for now
* cplcore/tests/cpl_propertylist-test.c: HAVE_LOCALE_H,
HAVE_XLOCALE_H: check both, unit tests (bis)
* cplcore/cpl_propertylist.c: HAVE_LOCALE_H, HAVE_XLOCALE_H: check
both
* cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_test_local(): Add locale messaging (PIPE-7540)
* cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_test_local(): Call also with non-POSIX locale
(PIPE-7540)
* configure.ac, cplcore/cpl_propertylist.c:
_cpl_propertylist_fill_from_fits(): Use correct include for
uselocale() (PIPE-7540)
* cplcore/cpl_propertylist.c: _cpl_propertylist_fill_from_fits():
Temporarily set locale (LC_NUMERIC) to POSIX (PIPE-7540)
2019-04-03 rpalsa
* configure.ac: In call to CPL_CONFIG_CFITSIO(): Adjust version
number to match the updated CPL_CONFIG_CFITSIO macro. The version
number comparison is done by comparing strings, i.e. a trailing 0
will make the test fail.
2019-04-02 rpalsa
* m4/cpl.m4: CPL_CHECK_CFITSIO(): Replace the runtime test for the
CFITSIO version so that a correct setup of the library search
path is no longer required. CPL_CHECK_LIBS(): Make the macro safe
against multiple expansion by initializing the variables
cpl_with_cpl, cpl_with_cpl_includes and cpl_with_cpl_libs on
entry.
2019-03-28 llundin
* cplcore/cpl_propertylist.c: cpl_propertylist_get_long_long():
Type cxllong replaces cxlong (PIPE-8363)
2019-03-25 llundin
* cplcore/cpl_property.c: cpl_property_set_sort_dicb(): Copy fix +
improvements from trunk, no effect on FITS products
* cplcore/cpl_propertylist.c:
cpl_propertylist_copy_property_regexp(): Copy also comment
(PIPE-8349)
2019-02-18 rpalsa
* configure.ac: Package version updated to 7.1.1. Library version
updated, revision set to 1.
* cplcore/cpl_table.c: cpl_table_get_column_mean_complex(): remove
non-printable characters from the doxygen documentation.
* NEWS: Fixed titel formatting for CPL 7.1.1
* .: Property svn:externals updated: pointing libcext to revision
r236337
2019-02-15 rpalsa
* m4/eso.m4: Updated to the latest version.
2019-02-11 llundin
* cplcore/cpl_imagelist_io.c: cpl_imagelist_save(): Improve
CPL_IO_APPEND doxygen
2019-02-07 llundin
* configure.ac: Package version updated to 7.1.1b3
* cplcore/cpl_propertylist.c: cpl_propertylist_load_name_(): Fix
doxygen typo. cpl_property_find_type(): Update doxygen
2019-02-06 llundin
* cplcore/tests/cpl_propertylist-test.c: cpl_fits_get_number():
Detect malformed D-exponent - unit tests
* cplcore/cpl_propertylist.c: cpl_fits_get_number(): Detect
malformed D-exponent
2019-02-05 llundin
* cplcore/cpl_propertylist.c,
cplcore/tests/cpl_propertylist-test.c: cpl_fits_get_value(): Fix
memory error on FORTRAN-formatted float with maximum length key,
w. unit test
2019-02-04 llundin
* configure.ac: Package version updated to 7.1.1b2
2019-02-01 llundin
* cplcore/cpl_propertylist.c: cpl_fits_get_key(): Add comment
2019-01-31 llundin
* cplcore/cpl_propertylist.c: cpl_fits_get_key(): Support empty
FITS commentary card truncated by CFITSIO (PIPE-8157).
_cpl_propertylist_fill_from_fits(): Fix empty COMMENT card
regression (triggered by SWARP), w. unit test (PIPE-8157) (bis)
* cplcore/cpl_propertylist.c,
cplcore/tests/cpl_propertylist-test.c: cpl_fits_get_key():
Support empty FITS commentary card truncated by CFITSIO
(PIPE-8157). _cpl_propertylist_fill_from_fits(): Fix empty
COMMENT card regression (triggered by SWARP), w. unit test
(PIPE-8157)
2019-01-30 llundin
* cplcore/cpl_property.c: rm CPL_DIAG_PRAGMA_PUSH_IGN() for
-Wcast-qual, no longer needed due to r234963 (bis)
2019-01-29 llundin
* cplcore/cpl_propertylist.c: rm CPL_DIAG_PRAGMA_PUSH_IGN() for
-Wcast-qual, no longer needed due to r234963
2019-01-28 llundin
* NEWS: cpl_image_extract(): Improve NEWS
* cplcore/cpl_image_basic.c: cpl_image_extract(): Improve doxygen
2019-01-25 llundin
* cplcore/cpl_property.c: cpl_property_get_size(): Doxygen usage
example w. cpl_property_get_string()
2019-01-22 llundin
* cplcore/cpl_polynomial.c: Doxygen typo
* cplcore/cpl_propertylist.c, cplcore/tests/cpl_polynomial-test.c:
Fix gcc-warning from deliberate switch fall through (and one
variable shadowing)
* cplcore/cpl_tools.h: Prepare for fixing gcc-warning from
deliberate switch fall through
* cplcore/cpl_property.c: Fix Cppcheck warnings
* cplcore/cpl_propertylist.c: Fix Cppcheck warnings
* cplcore/cpl_cfitsio.c: Rearrange
CPL_DIAG_PRAGMA_PUSH_IGN(),CPL_DIAG_PRAGMA_POP to avoid gcc
warning
* cpldfs/cpl_dfs.c: cpl_dfs_update_product_header_(): Suppress
const correctness warning from CFITSIO
* cpldrs/cpl_fit.c: cpl_fit_image_gaussian(): Fix variable
shadowing
2019-01-21 llundin
* cpldfs/cpl_dfs.c: Fix constant string w. length gcc 8.1 warnings
regarding discarded const modifier (bis)
* cplcore/cpl_property.c, cplcore/cpl_property_impl.h,
cplcore/cpl_propertylist.c, cplcore/cpl_propertylist_impl.h,
cpldfs/cpl_dfs.c: Fix constant string w. length gcc 8.1 warnings
regarding discarded const modifier
* cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_test_local(): Avoid variable shadowing (warning
from gcc 8.1)
2019-01-18 llundin
* configure.ac: Package version updated to 7.1.1b1
2019-01-17 llundin
* NEWS: cpl_polynomial_fit(): Use Horner-scheme also for
multivariate input
* NEWS: 7.1.1: cpl_fit_lvmq() is primary function for improved
fitting
2019-01-10 llundin
* configure.ac: Package version updated to 7.1.1a1
* NEWS: 7.1.1: Update with bug fixes (bis)
2019-01-09 llundin
* cplcore/cpl_propertylist.c: Merged in changes from trunk
(r234419)
2019-01-08 llundin
* cplcore/cpl_propertylist.c,
cplcore/tests/cpl_propertylist-test.c: cpl_fits_get_value():
Reinterpret FITS std. 4.4.2.4, COMMENT/HISTORY is commentary even
with value indicator
* cplcore/cpl_propertylist.c: cpl_fits_key_is_unique(): Refine
declaration, use CPL_FITS_IS_UNIQUE_TWO()
* cplcore/tests/cpl_propertylist-test.c: Reenable
cpl_propertylist_test_local()
2018-12-13 llundin
* cplcore/tests/cpl_propertylist-test.c: cpl_fits_get_value():
Reinterpret FITS std. 4.2.1 1 (i.e. a string of spaces is empty),
adapt unit test (PIPE-8157) (bis)
* cplcore/cpl_property.c, cplcore/tests/cpl_property-test.c:
cpl_property_set_string_cx(): Avoid redundant strlen(), extend
unit testing
* cplcore/cpl_property.c, cplcore/cpl_property_impl.h,
cplcore/cpl_propertylist.c: _cpl_propertylist_to_fitsfile(): New,
internal cpl_property_get_size_() replaces redundant
cpl_property_get_size_string(). cpl_fits_key_is_unique(): Improve
doxygen
* cplcore/tests/cpl_propertylist-test.c: cpl_property_eq(): Raise
floating point tolerance
2018-12-12 llundin
* cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_compare(): Added, static.
cpl_propertylist_test_file(): Warn on non-unique cards
* cplcore/cpl_propertylist.c,
cplcore/tests/cpl_propertylist-test.c: cpl_fits_get_value():
Reinterpret FITS std. 4.2.1 1 (i.e. a string of spaces is empty),
adapt unit test (PIPE-8157)
* cplcore/cpl_test.c: cpl_test_get_description(): Add msg for
SIZEOF_SIZE_T
2018-12-11 llundin
* cplcore/cpl_propertylist.c: cpl_fits_key_is_unique(): Improve
doxygen
* configure.ac: Package version updated to 7.1.1a (Interface is
totally unchanged from previous release)
* NEWS: 7.1.1: Update with bug fixes
* cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_test_file(): Disable normal tests when testing
via CLI
* cplcore/cpl_propertylist.c: _cpl_propertylist_to_fitsfile():
Non-unique warning only in debug mode
2018-12-10 llundin
* cplcore/tests/cpl_propertylist-test.c: cpl_property_eq(): Added,
static. cpl_propertylist_test_file(): Test when valid FITS
* cplcore/cpl_property.c, cplcore/cpl_property_impl.h,
cplcore/cpl_propertylist.c, cplcore/tests/cpl_property-test.c,
cplcore/tests/cpl_propertylist-test.c: cpl_property_dump():
Added, internal. cpl_property_get_size_name(): Return name
length, not size. cpl_property_get_size_string(),
cpl_property_get_size_comment(), cpl_property_get_string_(),
cpl_property_get_comment_(): Added, internal.
cpl_fits_get_number(): Improve doxygen.
_cpl_propertylist_to_fitsfile(): Call fits_write_key*() not
fits_update*() when possible (PIPE-8167)
* cpldfs/cpl_dfs.c: Avoid key array duplicateion
2018-12-07 llundin
* ., NEWS, configure.ac, cplcore/Makefile.am, cplcore/cpl_array.c,
cplcore/cpl_array_impl.h, cplcore/cpl_column.c,
cplcore/cpl_column.h, cplcore/cpl_image_basic.c,
cplcore/cpl_image_bpm.c, cplcore/cpl_image_bpm_impl.h,
cplcore/cpl_image_io.c, cplcore/cpl_image_io_impl.h,
cplcore/cpl_image_resample.c, cplcore/cpl_image_resample_body.h,
cplcore/cpl_imagelist_io.c, cplcore/cpl_mask.c,
cplcore/cpl_mask.h, cplcore/cpl_mask_impl.h,
cplcore/cpl_matrix.c, cplcore/cpl_matrix_impl.h,
cplcore/cpl_memory.c, cplcore/cpl_polynomial.c,
cplcore/cpl_polynomial.h, cplcore/cpl_polynomial_impl.h,
cplcore/cpl_property.c, cplcore/cpl_property_impl.h,
cplcore/cpl_propertylist.c, cplcore/cpl_propertylist_impl.h,
cplcore/cpl_test.c, cplcore/cpl_test.h, cplcore/cpl_tools.c,
cplcore/cpl_tools.h, cplcore/cpl_vector.c,
cplcore/cpl_vector_fit_impl.h, cplcore/cpl_vector_impl.h,
cplcore/cpl_xmemory.c, cplcore/tests/cpl_fits-test.c,
cplcore/tests/cpl_image_bpm-test.c,
cplcore/tests/cpl_image_io-test.c,
cplcore/tests/cpl_matrix-test.c, cplcore/tests/cpl_memory-test.c,
cplcore/tests/cpl_polynomial-test.c,
cplcore/tests/cpl_property-test.c,
cplcore/tests/cpl_propertylist-test.c,
cplcore/tests/cpl_stats-test.c, cplcore/tests/cpl_vector-test.c,
cpldfs/cpl_dfs.c, cpldfs/tests/cpl_dfs-test.c,
cpldrs/cpl_apertures.c, cpldrs/cpl_fit.c, cpldrs/cpl_ppm.c,
cpldrs/cpl_ppm.h, cpldrs/cpl_wcs.c,
cpldrs/tests/cpl_apertures-test.c, cpldrs/tests/cpl_fit-test.c,
cpldrs/tests/cpl_ppm-test.c, m4/cpl.m4: Import changes from the
trunk (revisions r221985:r233522)
* README: Fix typos
2018-08-22 aszostak
* ., cplcore/tests/Makefile.am, cpldfs/tests/Makefile.am,
cpldrs/tests/Makefile.am: Merging fixes for missing libcext
dependency for unit tests from trunk.
2018-03-08 rpalsa
* README: Try to get the OS X naming scheme correct.
* README: Fix macOS section heading in the table of contents.
* README: Updated macOS section.
2018-03-05 rpalsa
* cplcore/cpl_image_basic.c: cpl_image_or_mask(),
cpl_image_or_mask_unary(): Add internal directive to doxygen
documentation.
2018-01-29 rpalsa
* ChangeLog: ChangeLog updated for CPL 7.1 final.
2018-01-25 rpalsa
* configure.ac: Package version updated.
* ., cplcore/cpl_filter.h: Import changes from the trunk (revision
r215448).
2018-01-19 rpalsa
* NEWS: CPL 7.1 section updated.
* Doxyfile.in: Searchengine disabled again, since it apparently
does not find functions where the return type is given on a
separate line. This may be misleading.
* cplcore/cpl_matrix.c: cpl_matrix_solve_svd(): Documentation
added.
* README.CVS, README.SVN: Renamed to README.SVN
* README.CVS: Updated for CPL 7.1b release.
* configure.ac: Package version updated to 7.1b
* ChangeLog, README: Updated for the CPL 7.1b release.
2018-01-18 rpalsa
* ., NEWS, cplcore/cpl_vector.c: Import changes from the trunk
(revisions r214913,r214919).
2018-01-11 rpalsa
* ., cplcore/cpl_mask.c, cplcore/cpl_xmemory.c,
cplcore/tests/cpl_mask-test.c: Import changes from the trunk
(revisions r214281:r214415).
2017-12-06 rpalsa
* cplcore/cpl_init.c: Added pre-processor tests: CPL now won't
build with CFITSIO versions older than 3.350. cpl_init(): CFITSIO
version tests restructured. Rely on the linker to use only
compatible versions. An error message is issued if the rumtime
version of CFITSIO is less than what was requiested through
configure at build time. All tests related to versions older that
3.350 were removed. (PIPE-7401)
* configure.ac: Package version updated. Require at least CFITSIO
3.350.
* m4/cpl.m4: CPL_CHECK_CFITSIO(): Define header symbol
CPL_CFITSIO_VERSION.
* cplcore/cpl_table.c, cpljava/cpl_gasgano.c: Fixed compiler
warnings on possible use of uninitialized variables.
2017-11-21 rpalsa
* ChangeLog: ChangeLog: Updated for the CPL 7.1a release.
* .: Property svn:externals updated.
* configure.ac: Package version changed to 7.1a.
* ChangeLog: ChangeLog updated.
* NEWS, README: Initial update for the CPL 7.1 release.
2017-11-20 rpalsa
* ., cplcore/cpl_propertylist.c: Import changes from the trunk
(revision r211623).
2017-10-25 rpalsa
* cplui/cpl_parameter.c, cplui/tests/cpl_parameter-test.c:
_cpl_parameter_init(): Set error code if any kind of invalid
parameter (initialization) data is passed to the function.
cpl_parameter_new_value(), cpl_parameter_new_range()
cpl_parameter_new_enum(): List of error codes updated in the
documentation. (PIPE-6758)
2017-10-24 rpalsa
* cplui/cpl_frameset.c: cpl_framset_iterator_get_const(): Fix the
documentation of the return value. Use version of the non-const
counterpart. (PIPE-7285)
* cplui/cpl_recipeconfig.c: cpl_recipeconfig_is_required(): Fis
description of the return value (PIPE-7286)
2017-10-23 rpalsa
* ., cplcore/Makefile.am, cplcore/cpl_column.c,
cplcore/cpl_filter_median.c, cplcore/cpl_image_basic.c,
cplcore/cpl_image_basic_body.h, cplcore/cpl_image_fft.c,
cplcore/cpl_image_fft_impl.h, cplcore/cpl_image_io.c,
cplcore/cpl_image_io.h, cplcore/cpl_image_iqe.c,
cplcore/cpl_imagelist.h, cplcore/cpl_imagelist_io.c,
cplcore/cpl_io_fits.c, cplcore/cpl_io_fits.h, cplcore/cpl_mask.c,
cplcore/cpl_matrix.c, cplcore/cpl_msg.c,
cplcore/cpl_polynomial.c, cplcore/cpl_polynomial.h,
cplcore/cpl_propertylist.c, cplcore/cpl_stats_body.h,
cplcore/cpl_table.c, cplcore/cpl_test.c, cplcore/cpl_tools.c,
cplcore/cpl_tools.h, cplcore/cpl_tools_body.h,
cplcore/cpl_vector.c, cplcore/cpl_vector.h,
cplcore/tests/Makefile.am, cplcore/tests/cpl_image_filter-test.c,
cplcore/tests/cpl_imagelist_io-test.c,
cplcore/tests/cpl_io_fits-test.c, cplcore/tests/cpl_mask-test.c,
cplcore/tests/cpl_math-test.c, cplcore/tests/cpl_matrix-test.c,
cplcore/tests/cpl_median-test.c, cplcore/tests/cpl_msg-test.c,
cplcore/tests/cpl_plot-test.c,
cplcore/tests/cpl_polynomial-test.c,
cplcore/tests/cpl_property-test.c,
cplcore/tests/cpl_table-test.c, cplcore/tests/cpl_vector-test.c,
cpldfs/cpl_dfs.c, cpldfs/cpl_multiframe.c,
cpldrs/cpl_apertures.c, cpldrs/cpl_fft.c, cpldrs/cpl_fft_body.h,
cpldrs/cpl_fit.c, cpldrs/cpl_fit_body.h, cpldrs/cpl_wcs.c,
cplui/cpl_frame.c, cplui/cpl_framedata.c, cplui/cpl_frameset.c,
cplui/cpl_parameterlist.c, cplui/cpl_plugin.c,
cplui/cpl_pluginlist.c, cplui/cpl_recipeconfig.c: Import changes
from the trunk (revision r197629:r210748).
2017-10-10 rpalsa
* .: Point property svn:external for libcext to revision r210064.
2017-08-11 rpalsa
* cplcore/cpl_matrix.c: _cpl_matrix_decomp_sv_jacobi(): Add
declaration, and declare it as static.
2017-07-12 rpalsa
* ., cplui/cpl_parameter.c, cplui/tests/cpl_parameter-test.c:
Import fixes from the CPL 7.0 release branch. (revisions
r205039,r205040)
* ., m4/eso.m4: Import changes from the CPL 7.0 release branch
again. (revisions r196619:r200463)
* cplcore/cpl_matrix.c, cplcore/cpl_matrix.h:
cpl_matrix_solve_svd(): Added.
* ., cplcore/cpl_matrix.c, cplcore/cpl_matrix.h, m4/eso.m4: Revert
errorneous commit (r205041)
* ., cplcore/cpl_matrix.c, cplcore/cpl_matrix.h, m4/eso.m4: Import
changes from the CPL 7.0 release branch (revisions
r196619:r200463)
* .: Create CPL 7.1 release branch.
2017-02-09 rpalsa
* Package and library version updated.
2017-02-08 rpalsa
* Updated copyright entry in the file header. Remove VCS keyword
entries.
2017-02-07 rpalsa
* Import changes from the trunk (revisions r195891:r196375)
* Import changes from the trunk (revision r195888)
* Import changes from the trunk (revisions r191768:r195887)
* Import changes from the trunk (revision r191628)
* Import changes from the trunk (revisions r189694:r191580)
2017-02-06 rpalsa
* Update property mergeinfo.
* Import changes from the trunk (revision r185817)
* Import changes from the trunk (revisions r186032:r187261)
* Update property mergeinfo.
2017-01-27 rpalsa
* CPL_CHECK_CFITSIO(): Remove zlib dependency from the list of
libraries used for the tests.
* Fix indentation.
2017-01-24 rpalsa
* Macro refactoring: CPL_CHECK_CEXT(), CPL_CHECK_CFITSIO(),
CPL_CHECK_FFTW(), CPL_CHECK_LIBS(), and CPL_CHECK_WCS(): Allow
for checking dependencies independent of the library type
(static, shared). Initial version.
2017-01-16 rpalsa
* Relax required libtool version.
* Replace hardcoded shared library extension in the library
checking macros by the one determined by libtool.
* Use the new macro syntax to initialize libtool and libltdl, and
require libtool version 2.4.2.
2016-12-21 rpalsa
* _cpl_matrix_decomp_sv_jacobi(), cpl_matrix_solve_svd(): Added.
Initial implementation of an SVD based linear system solver.
2016-11-04 rpalsa
* cpl_msg_out(), _cpl_timestamp_iso8601(): Moved explicit tzset()
calls to cpl_msg_init()
* cpl_table_compare_structure(): Fix memory leak if tables do not
have the same structure (PIPE-6776)
* getTimeISO8601(): Renamed to _cpl_timestamp_iso8601() to be in
line with the naming scheme for internal functions.
cpl_msg_out(), _cpl_timestamp_iso8601(): Replace calls to
localtime() by calls to the reentrant version, localtime_r()
(requires _POSIX_C_SOURCE).
2016-06-14 rpalsa
* Integrate changes from the trunk (revisions r187327:r187524)
* Block revision r187261 from being merged back into the CPL 7.0
release branch.
2016-06-06 rpalsa
* Remove obsolete purify support.
* Remove redundant quotes in macro calls.
2016-05-13 rpalsa
* Change SEARCHENGINE setting to enabled.
2016-02-12 rpalsa
* ChangeLog updated.
2016-02-05 rpalsa
* Revert commit r182587. Note that the way these tests are coded
cause a compiler warning on OSX!
* Fix compiler warning: Replace logical or by bitwise or.
2016-02-04 rpalsa
* configure.ac: Update package version.
* cplcore/cpl_table.c: Fix parameter name in doxygen comments.
* cplcore/tests/cpl_array-test.c: Integrate fixes from the trunk
(revisions r181961:r182351).
2016-02-03 llundin
* cplcore/tests/cpl_array-test.c:
cpl_array_test_power_complex_one(): Raise float-tol for Mac OSX
* cplcore/cpl_image_basic.c: cpl_m_from_int64: added, w. fix for
clang (PIPE-6401) (bis)
* cplcore/cpl_mask.c, cplcore/cpl_mask_binary.h: cpl_m_from_int64:
added, w. fix for clang (PIPE-6401)
* cplcore/cpl_mask.c: Copy SSE2 header inclusion from
cpl_image_basic (PIPE-6401)
2016-02-02 rpalsa
* ChangeLog: ChangeLog updated.
* configure.ac: Package version updated.
2016-02-02 llundin
* cplcore/cpl_column.c, cplcore/cpl_column_body.h:
cpl_column_pow_*(): Use const assignments, reduce var scope
* NEWS: Updated with tickets closed by Lars (PIPE-6211),
(PIPE-6205), (PIPE-6075), (PIPE-4745), (PIPE-4716), (PIPE-4505)
* cplcore/cpl_table.c, cplcore/tests/cpl_table-test.c: Apply change
to trunk:
cpl_table_fill_invalid_{int,long,long_long,float,float_complex,double,double_complex}():
Update doxygen to reflect actual handling of array elements
(PIPE-4505)
2016-01-28 llundin
* cplcore/cpl_column_body.h: Apply patch from HEAD (PIPE-4716):
cpl_column_pow_*(): Fix incorrect cast causing integer base with
non-integer power to fail
2016-01-19 rpalsa
* cplcore/cpl_test.c: Integrate fixes from the trunk
(revision 181606)
* cplui/cpl_parameter.c: Module documentation: Try to be more
precise on how parameter constructors have to be called.
* NEWS: More updates for CPL 7.0.
2016-01-15 rpalsa
* configure.ac: Package version updated.
* cplcore/cpl_image_basic.c, cplcore/cpl_mask_binary.h,
cplcore/tests/cpl_image_filter-test.c,
cplcore/tests/cpl_polynomial-test.c: Integrate changes from the
trunk (revision 181547)
2016-01-11 rpalsa
* cplcore/cpl_table.c, cpldrs/cpl_wcs.h: Revert inclusion of
RADECSYS in regular expressions (PIPE-6019).
* cplcore/cpl_column_body.h: Add conditional to silence Doxygen
warning related to the ADDTYPE macro.
|