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 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738
|
eog (47.0-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bícha <jbicha@ubuntu.com> Mon, 16 Sep 2024 11:31:54 -0400
eog (47~beta-1) unstable; urgency=medium
* New upstream release
* Add Depends: libjxl-gdk-pixbuf for jpeg-xl support
* Bump Standards Version to 4.7.0
-- Jeremy Bícha <jbicha@ubuntu.com> Sun, 04 Aug 2024 11:35:15 -0400
eog (45.3-1) unstable; urgency=medium
* New upstream release
-- Amin Bandali <bandali@ubuntu.com> Tue, 19 Mar 2024 08:17:51 -0400
eog (45.2-1) unstable; urgency=medium
* New upstream release
- data: Update appdata (Sabri Ünal)
(https://gitlab.gnome.org/GNOME/eog/-/merge_requests/158)
* debian/control: Bump minimum libglib2.0-dev version to 2.73.2
per upstream meson.build
-- Amin Bandali <bandali@ubuntu.com> Tue, 09 Jan 2024 11:47:36 -0500
eog (45.1-1) unstable; urgency=medium
* New upstream release
* Stop using debian/control.in and dh_gnome_clean
-- Jeremy Bícha <jbicha@ubuntu.com> Wed, 08 Nov 2023 15:12:23 +0200
eog (45.0-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bícha <jbicha@ubuntu.com> Mon, 18 Sep 2023 07:30:50 -0400
eog (45~rc-1) unstable; urgency=medium
* New upstream release
* Drop translation update patches: applied in new release
-- Jeremy Bícha <jbicha@ubuntu.com> Tue, 05 Sep 2023 08:32:49 -0400
eog (45~alpha-1) unstable; urgency=medium
* New upstream release
- The display name has been changed from Image Viewer to Eye of GNOME
since Loupe is GNOME's default image viewer as of GNOME 45.
* Cherry-pick translation updates since 45~alpha
-- Jeremy Bícha <jbicha@ubuntu.com> Wed, 16 Aug 2023 14:22:29 -0400
eog (44.3-2) unstable; urgency=medium
* Release to unstable
-- Jeremy Bícha <jbicha@ubuntu.com> Fri, 21 Jul 2023 12:00:51 -0400
eog (44.3-1) experimental; urgency=medium
* Team upload
* New upstream release
-- Jarred Wilson <jarred.wilson@canonical.com> Wed, 12 Jul 2023 12:59:03 -0400
eog (44.2-1) experimental; urgency=medium
* New upstream release (LP: #2021522)
- EogWindow: Fix refcount and signal handler issues around GSettings
handles (Felix Riemann)
(https://gitlab.gnome.org/GNOME/eog/-/merge_requests/153)
- Replace filename with basename (Khem Raj)
(https://gitlab.gnome.org/GNOME/eog/-/merge_requests/154)
-- Amin Bandali <bandali@ubuntu.com> Mon, 29 May 2023 14:06:30 -0400
eog (44.1-1) experimental; urgency=medium
* Team upload
[ Amin Bandali ]
* New upstream release
- EogImage: ref priv->anim to avoid double free issues (Alberto Ruiz)
(https://gitlab.gnome.org/GNOME/eog/-/merge_requests/150)
- EogImage: Do not leak animation iter (Felix Riemann)
(https://gitlab.gnome.org/GNOME/eog/-/merge_requests/152)
- segfault when switching between animated webp images (Felix Riemann)
(https://gitlab.gnome.org/GNOME/eog/-/issues/288)
- New/updated program and manual translations
[ Jeremy Bicha ]
* Update standards version to 4.6.2, no changes needed
-- Amin Bandali <bandali@ubuntu.com> Thu, 27 Apr 2023 12:50:07 -0400
eog (44.0-1) experimental; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 27 Mar 2023 08:31:11 -0400
eog (44~beta-1) experimental; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 14 Feb 2023 15:21:18 -0500
eog (43.2-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 10 Jan 2023 14:36:50 -0500
eog (43.1-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@ubuntu.com> Fri, 04 Nov 2022 11:37:28 +0100
eog (43.0-1) unstable; urgency=medium
[ Jeremy Bicha ]
* New upstream release
[ Simon McVittie ]
* d/control.in: Drop alternative B-D on libgdk-pixbuf2.0-dev
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 19 Sep 2022 11:03:18 -0400
eog (43~rc-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 06 Sep 2022 14:49:42 -0400
eog (43~beta-1) unstable; urgency=medium
* New upstream release
* Depend on webp-pixbuf-loader: needed to open webp files
* debian/control.in: Depend on instead of Recommend librsvg2-common
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 08 Aug 2022 16:16:46 -0400
eog (42.2-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 07 Jun 2022 16:51:33 -0400
eog (42.1-1) unstable; urgency=medium
* New upstream release (LP: #1970219)
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 25 Apr 2022 09:51:21 -0400
eog (42.0-1) unstable; urgency=medium
* New upstream release
* debian/control.in: Bump minimum gsettings-desktop-schemas to 42~beta
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 21 Mar 2022 09:05:44 -0400
eog (42~beta-2) unstable; urgency=medium
* Release to unstable
-- Jeremy Bicha <jeremy.bicha@canonical.com> Mon, 14 Feb 2022 12:25:56 -0500
eog (42~beta-1) experimental; urgency=medium
* New upstream release
* debian/control.in: Build-Depend on gi-docgen
* debian/control.in: Build-Depend on libhandy
* debian/control.in: Bump minimum gtk3 and meson
* debian/control.in: Reduce eog-dev's Dependencies to match its pkgconfig file
-- Jeremy Bicha <jeremy.bicha@canonical.com> Mon, 14 Feb 2022 11:55:53 -0500
eog (41.1-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@debian.org> Sun, 05 Dec 2021 03:54:39 -0500
eog (41.0-2) unstable; urgency=medium
* Only enable librsvg on architectures where it's available
-- Laurent Bigonville <bigon@debian.org> Sat, 25 Sep 2021 11:19:32 +0200
eog (41.0-1) unstable; urgency=medium
* New upstream release
* Bump debhelper-compat to 13
* Bump Standards-Version to 4.6.0
-- Jeremy Bicha <jbicha@debian.org> Sat, 18 Sep 2021 18:05:10 -0400
eog (40.3-1) unstable; urgency=medium
* New upstream release
* Release to unstable
-- Jeremy Bicha <jbicha@debian.org> Thu, 19 Aug 2021 18:56:29 -0400
eog (40.2-1) experimental; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Tue, 08 Jun 2021 12:30:09 +0200
eog (40.1-1) experimental; urgency=medium
* New upstream release
* debian/watch:
- Update to follow the new GNOME version scheme
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 20 May 2021 13:37:58 +0200
eog (40.0-1) experimental; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Mon, 22 Mar 2021 21:08:01 +0100
eog (40~rc-1) experimental; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@debian.org> Mon, 15 Mar 2021 10:35:46 +0100
eog (40~beta-1) experimental; urgency=medium
* New upstream release
* debian/eog.docs:
- updated for the new README naming
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 25 Feb 2021 15:29:27 +0100
eog (3.38.2-1) unstable; urgency=medium
* Team upload
* New upstream release
- Avoid warning about GError handling when unlinking a directory
while it is being viewed
- Translation updates
-- Simon McVittie <smcv@debian.org> Thu, 18 Feb 2021 12:02:31 +0000
eog (3.38.1-1) unstable; urgency=medium
* Team upload
* New upstream release
- Refresh thumbnail when images are deleted from file manager
- Fix a memory leak when reopening in single-window mode
- Fix an assertion failure when rotating and saving an image multiple
times
- Translation updates
-- Simon McVittie <smcv@debian.org> Fri, 27 Nov 2020 15:53:08 +0000
eog (3.38.0-2) unstable; urgency=medium
* Team upload
* Preferentially build-depend on libgdk-pixbuf-2.0-dev.
We don't need the deprecated Xlib integration that is also pulled in
by the older libgdk-pixbuf2.0-dev package (see #974870).
* Standards-Version: 4.5.1 (no changes required)
* d/changelog: Trim trailing whitespace
* d/upstream/metadata: Add
* d/rules: Drop unnecessary -Wl,--as-needed.
This is the default for recent toolchains in bullseye.
-- Simon McVittie <smcv@debian.org> Tue, 24 Nov 2020 09:31:02 +0000
eog (3.38.0-1) unstable; urgency=medium
* New upstream release
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Mon, 14 Sep 2020 13:44:10 +0200
eog (3.37.90-1) experimental; urgency=medium
* New upstream release
* debian/rules:
- don't build with libportal, that's of no use in the deb
-- Sebastien Bacher <seb128@ubuntu.com> Mon, 10 Aug 2020 15:30:02 +0200
eog (3.36.3-1) unstable; urgency=medium
* New upstream release (lp: #1886480)
-- Sebastien Bacher <seb128@ubuntu.com> Mon, 06 Jul 2020 16:10:32 +0200
eog (3.36.2-1) unstable; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 30 Apr 2020 12:05:09 +0200
eog (3.36.1-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@debian.org> Sat, 28 Mar 2020 22:31:12 -0400
eog (3.36.0-1) unstable; urgency=medium
* New upstream release
* debian/control.in: Bump Standards-Version to 4.5.0 (no further changes)
-- Laurent Bigonville <bigon@debian.org> Sun, 08 Mar 2020 17:33:47 +0100
eog (3.35.92-1) experimental; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Mon, 02 Mar 2020 15:20:56 +0100
eog (3.35.91-1) experimental; urgency=medium
* New upstream release
* control, compat: Move to declaring compat via debhelper-compat & level 12
-- Iain Lane <laney@debian.org> Thu, 20 Feb 2020 10:06:33 +0000
eog (3.34.1-1) unstable; urgency=medium
* New upstream release
-- Tim Lunn <tim@feathertop.org> Tue, 08 Oct 2019 18:24:54 +1100
eog (3.34.0-1) unstable; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Tue, 10 Sep 2019 09:32:19 +0200
eog (3.33.91-1) experimental; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Wed, 21 Aug 2019 13:35:23 +0200
eog (3.33.90-2) experimental; urgency=medium
* debian/rules:
- include the private library subdir in the call to dh_girepository
-- Sebastien Bacher <seb128@ubuntu.com> Mon, 12 Aug 2019 17:41:35 +0200
eog (3.33.90-1) experimental; urgency=medium
* New upstream release
* debian/control.in:
- updated meson and librsvg requirements
-- Sebastien Bacher <seb128@ubuntu.com> Fri, 09 Aug 2019 17:23:29 +0200
eog (3.32.1-1) experimental; urgency=medium
* New upstream release
* d/p/EogWindow-Don-t-unref-timer-sources-before-destroying-the.patch:
- remove, included in the new version
-- Sebastien Bacher <seb128@ubuntu.com> Tue, 09 Apr 2019 10:52:56 +0200
eog (3.32.0-2) experimental; urgency=medium
* d/p/EogWindow-Don-t-unref-timer-sources-before-destroying-the.patch:
- Don't unref timer sources before destroying them.
Resolves a segfault in slideshow mode (lp: #1823148)
-- Sebastien Bacher <seb128@ubuntu.com> Mon, 08 Apr 2019 10:49:46 +0200
eog (3.32.0-1) experimental; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@debian.org> Tue, 12 Mar 2019 20:11:28 -0400
eog (3.31.90-1) experimental; urgency=medium
* New upstream development release
* Build-Depend on dh-sequence-gir and dh-sequence-gnome
-- Jeremy Bicha <jbicha@debian.org> Wed, 06 Feb 2019 15:09:38 -0500
eog (3.28.4-2) unstable; urgency=medium
* Restore -Wl,-O1 to our LDFLAGS
* Bump Standards-Version to 4.3.0
-- Jeremy Bicha <jbicha@debian.org> Sun, 23 Dec 2018 20:07:15 -0500
eog (3.28.4-1) unstable; urgency=medium
* New upstream release
* Drop unneeded dh_translations overrides
-- Jeremy Bicha <jbicha@debian.org> Tue, 09 Oct 2018 23:05:39 -0400
eog (3.28.3-1) unstable; urgency=medium
* Team upload
* New upstream release
* Set Rules-Requires-Root to no
* Standards-Version: 4.1.5 (no changes required)
-- Simon McVittie <smcv@debian.org> Thu, 26 Jul 2018 10:56:47 +0100
eog (3.28.2-1) unstable; urgency=medium
* New upstream release
* Bump Standards-Version to 4.1.4
* Update debian/gbp.conf
-- Jeremy Bicha <jbicha@debian.org> Sun, 20 May 2018 17:21:34 -0400
eog (3.28.1-1) unstable; urgency=medium
* New upstream release
-- Tim Lunn <tim@feathertop.org> Sat, 14 Apr 2018 13:36:44 +1000
eog (3.28.0-2) unstable; urgency=medium
* Add various dependencies to eog-dev as a workaround for bug #892956.
This will allow eog-plugins to build until there is a better fix
(Closes: #893603)
-- Tim Lunn <tim@feathertop.org> Tue, 20 Mar 2018 18:30:33 +1100
eog (3.28.0-1) unstable; urgency=medium
* New upstream development release
-- Tim Lunn <tim@feathertop.org> Sat, 17 Mar 2018 13:06:33 +1100
eog (3.27.91-1) unstable; urgency=medium
* New upstream development release
* Release to unstable
-- Jeremy Bicha <jbicha@debian.org> Sat, 10 Mar 2018 17:15:43 -0500
eog (3.27.90-1) experimental; urgency=medium
* New upstream development release
* Build with meson
-- Jeremy Bicha <jbicha@debian.org> Tue, 13 Feb 2018 08:31:52 -0500
eog (3.26.2-3) unstable; urgency=medium
* Update Vcs fields for migration to https://salsa.debian.org/
* Bump debhelper compat to 11
* Drop obsolete patches (Closes: #881463)
- 0001-Add-a-traditional-menu-bar.patch
- 0002-Show-traditional-title-bar-in-unity.patch
-- Jeremy Bicha <jbicha@debian.org> Wed, 24 Jan 2018 11:35:49 -0500
eog (3.26.2-2) unstable; urgency=medium
* Update Vcs fields for conversion to git
* Add debian/gbp.conf
* Bump Standards-Version to 4.1.2
* Mark eog-dev as Multi-Arch: same
-- Jeremy Bicha <jbicha@debian.org> Thu, 14 Dec 2017 08:30:11 -0500
eog (3.26.2-1) unstable; urgency=medium
* New upstream release
* Switch to dh_missing and abort on uninstalled files
-- Michael Biebl <biebl@debian.org> Fri, 10 Nov 2017 01:33:51 +0100
eog (3.26.1-1) unstable; urgency=medium
[ Michael Biebl ]
* New upstream release.
* Bump Build-Depends on libgdk-pixbuf2.0-dev to (>= 2.36.5) as per
configure.ac.
[ Laurent Bigonville ]
* debian/control.in: Bump Standards-Version to 4.1.1 (no further changes)
-- Laurent Bigonville <bigon@debian.org> Wed, 04 Oct 2017 20:54:36 +0200
eog (3.25.92-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@debian.org> Mon, 04 Sep 2017 17:09:57 -0400
eog (3.25.90-1) unstable; urgency=medium
* New upstream release
* debian/control.in:
- Bump minimum GTK+ to 3.22
* Refresh patches (copied from Ubuntu)
* Bump Standards-Version to 4.1.0
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 29 Aug 2017 14:24:31 -0400
eog (3.20.5-1) unstable; urgency=medium
* New upstream release.
* Bump Build-Depends on libgtk-3-dev to (>= 3.19.11) as per configure.ac.
* Bump debhelper compat level to 10 (automatic dh-autoreconf).
(Closes: #558501)
* Add Build-Depends on gnome-common, required by autoreconf.
* Exclude libtool .la files from list-missing.
* Use dh-autoreconf --as-needed for reduced runtime dependencies.
-- Michael Biebl <biebl@debian.org> Tue, 11 Oct 2016 23:46:24 +0200
eog (3.20.4-1) unstable; urgency=medium
* New upstream release.
- fixes CVE-2016-6855 out-of-bounds write in eog 3.10.2
-- Andreas Henriksson <andreas@fatal.se> Sun, 21 Aug 2016 22:39:41 +0200
eog (3.20.3-1) unstable; urgency=medium
* New upstream release.
* Convert from cdbs to dh.
* Bump debhelper compatibility level to 9.
* Convert to multiarch. Mark eog-dev as Architecture: any as the package now
ships files in architecture specific paths. Add versioned Breaks against
eog-plugins which needs to be updated to use multiarch paths as well.
* Turn Build-Depends-Indep into Build-Depends.
* Tighten eog-dev's dependency on eog.
-- Michael Biebl <biebl@debian.org> Wed, 22 Jun 2016 21:50:54 +0200
eog (3.20.2-1) unstable; urgency=medium
* New upstream release.
* Bump Standards-Version to 3.9.8.
-- Michael Biebl <biebl@debian.org> Tue, 10 May 2016 19:58:07 +0200
eog (3.20.1-1) unstable; urgency=medium
* New upstream release.
* Drop eog-dbg package now that we have automatic dbgsym packages.
* Suggest eog-plugins. (Closes: #637831)
* Track stable releases (again) via debian/watch.
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Sun, 17 Apr 2016 15:40:11 +0200
eog (3.19.92-2) experimental; urgency=medium
* debian/watch: Find unstable versions too.
* debian/patches/0001-Add-a-traditional-menu-bar.patch,
debian/patches/0002-Show-traditional-title-bar-in-unity.patch: Fix to
apply, and make smaller while achieving the same result (thanks, GTK!).
* debian/patches/Put-Exit-Fullscreen-button-into-toolbar.patch: Drop,
applied upstream.
-- Iain Lane <laney@debian.org> Wed, 16 Mar 2016 15:08:14 +0000
eog (3.19.92-1) experimental; urgency=medium
* New upstream release.
* Bump build-dependencies according to configure.ac changes:
- libgtk-3-dev (>= 3.19.3)
- libglib2.0-dev (>= 2.42.0)
* Bump Standards-Version to 3.9.7.
* Temporarily disable patch which no longer applies:
- debian/patches/0001-Add-a-traditional-menu-bar.patch
- debian/patches/Put-Exit-Fullscreen-button-into-toolbar.patch
* Update patch to apply:
- debian/patches/0002-Show-traditional-title-bar-in-unity.patch
-- Andreas Henriksson <andreas@fatal.se> Tue, 15 Mar 2016 21:35:19 +0100
eog (3.18.2-1) unstable; urgency=medium
* New upstrem release.
* debian/patches/0001-Add-a-traditional-menu-bar.patch: Show a traditional
menu bar if the DE requests it - happens for Xfce for example. (Closes:
#793445)
* debian/patches/0002-Show-traditional-title-bar-in-unity.patch: Since we're
doing ↑, take a small patch to not use the headerbar on Unity - easily
extended to other desktops in Debian if they want it.
* debian/patches/Put-Exit-Fullscreen-button-into-toolbar.patch: Cherry-pick
from upstream to pack the "Exit Fullscreen" button correctly, so that it
is themed right.
* debian/patches/disable-appmenu-when-not-needed.patch: Drop, not needed
with the above.
-- Iain Lane <laney@debian.org> Mon, 15 Feb 2016 16:38:08 +0000
eog (3.18.1-1) unstable; urgency=medium
* New upstream release.
* Remove Breaks from pre-oldstable.
-- Michael Biebl <biebl@debian.org> Tue, 10 Nov 2015 23:40:49 +0100
eog (3.18.0-1) unstable; urgency=medium
[ Michael Biebl ]
* Remove Debian menu entry.
[ Andreas Henriksson ]
* New upstream release.
* Update build-dependencies according to configure.ac changes:
- bump libgdk-pixbuf2.0-dev to >= 2.30.0
-- Andreas Henriksson <andreas@fatal.se> Fri, 02 Oct 2015 23:15:53 +0200
eog (3.16.3-1) unstable; urgency=medium
* New upstream release.
* Refresh patches.
-- Michael Biebl <biebl@debian.org> Fri, 21 Aug 2015 09:04:58 +0200
eog (3.16.2-1) unstable; urgency=medium
* New upstream release.
* Drop libxml2 build-dependency according to configure.ac changes.
* Update debian/patches/disable-appmenu-when-not-needed.patch to apply.
-- Andreas Henriksson <andreas@fatal.se> Tue, 19 May 2015 16:23:57 +0200
eog (3.14.4-1) experimental; urgency=medium
* New upstream release 3.14.4, fixing bug:
+ eog crashes when attempting two-finger zoom gesture on touchpad (LP:
#1436920)
* disable-appmenu-when-not-needed.patch: Take a patch from Ubuntu to disable
the app menu when we're showing the traditional menu, which has all of the
same actions.
-- Iain Lane <laney@debian.org> Wed, 01 Apr 2015 17:47:12 +0100
eog (3.14.3-1) experimental; urgency=medium
[ Jackson Doak ]
* New upstream release
* Drop depends on gnome-icon-theme, it's no longer needed
[ Iain Lane ]
* New upstream release 3.14.3
-- Jackson Doak <noskcaj@ubuntu.com> Tue, 06 Jan 2015 13:04:23 +0000
eog (3.14.1-1) unstable; urgency=medium
* New upstream release.
* Bump Build-Depends on libgtk-3-dev to (>= 3.14.0) as per configure.ac.
* Update Homepage URL.
* Bump Standards-Version to 3.9.6. No further changes.
* Drop obsolete Conflicts/Replaces: gir1.2-eog-3.0.
-- Michael Biebl <biebl@debian.org> Tue, 14 Oct 2014 23:03:14 +0200
eog (3.14.0-1) unstable; urgency=medium
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Tue, 23 Sep 2014 09:13:34 +0200
eog (3.13.92-1) unstable; urgency=medium
* New upstream release
-- Sjoerd Simons <sjoerd@debian.org> Sat, 20 Sep 2014 10:01:00 +0200
eog (3.13.90-1) experimental; urgency=medium
* New upstream release
-- Sjoerd Simons <sjoerd@debian.org> Sat, 06 Sep 2014 13:52:06 +0200
eog (3.12.2-1) unstable; urgency=medium
[ Josselin Mouette ]
* Relax gnome-desktop dependencies again.
[ Jean Schurger ]
* New upstream release
* Bump Standards-Version to 3.9.5. No further changes.
-- Andreas Henriksson <andreas@fatal.se> Tue, 15 Jul 2014 13:07:34 +0200
eog (3.12.1-1) experimental; urgency=medium
* New upstream translation release.
* Rebuild against new gnome-desktop.
* Bump gnome-desktop build-dependency accordingly.
-- Josselin Mouette <joss@debian.org> Sat, 26 Apr 2014 10:42:48 +0200
eog (3.12.0-1) unstable; urgency=medium
* New upstream release.
* Revert changes in 3.10.1-2
- i.e. lower gnome-desktop build-dependency again
* eog: Install appdata file
-- Andreas Henriksson <andreas@fatal.se> Tue, 25 Mar 2014 13:11:12 +0100
eog (3.11.90-1) experimental; urgency=medium
* New upstream release.
* Update build-dependencies according to configure.ac changes:
- bump Gtk+ 3.10.6, glib 2.38.0, gtk-doc 1.16
- drop libx11-dev (sunkeysym)
-- Andreas Henriksson <andreas@fatal.se> Tue, 18 Feb 2014 01:36:19 +0100
eog (3.10.1-2) experimental; urgency=low
* Force build against experimental version of gnome-desktop
-- Sjoerd Simons <sjoerd@debian.org> Sun, 03 Nov 2013 11:25:04 +0100
eog (3.10.1-1) unstable; urgency=low
* New upstream release.
* Bump build-dependency on libgtk-3-dev to >= 3.7.8.
-- Andreas Henriksson <andreas@fatal.se> Thu, 17 Oct 2013 12:34:54 +0200
eog (3.8.2-1) unstable; urgency=low
* Upload to unstable.
* New upstream release.
* Drop obsolete --disable-scrollkeeper configure flag.
* Lower Build-Depends on libgnome-desktop-3-dev again. It's not really
required and unstable still has an old libgnome-desktop version.
* Bump Standards-Version to 3.9.4. No further changes.
* Add Build-Depends on autotools-dev as lintian was complaining about
outdated config.{guess,sub}.
-- Michael Biebl <biebl@debian.org> Thu, 06 Jun 2013 07:04:51 +0200
eog (3.8.0-2) experimental; urgency=low
* debian/control.in:
+ Bump libgnome-desktop-3-dev build dependency to ensure a
dependency on the new SONAME.
-- Emilio Pozuelo Monfort <pochu@debian.org> Fri, 29 Mar 2013 12:20:48 +0100
eog (3.8.0-1) experimental; urgency=low
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Wed, 27 Mar 2013 23:33:32 +0100
eog (3.7.91-1) experimental; urgency=low
* New upstream release
* Bump build-dependency on libgtk-3-dev to (>= 3.5.4)
-- Andreas Henriksson <andreas@fatal.se> Mon, 18 Mar 2013 21:04:05 +0100
eog (3.6.1-1) experimental; urgency=low
* Team upload.
* New upstream release
- adjust to new help location
- increase build-dependencies
-- Simon McVittie <smcv@debian.org> Mon, 22 Oct 2012 20:24:02 +0100
eog (3.4.2-1) unstable; urgency=low
[ Jeremy Bicha ]
* debian/control.in: Recommend yelp
[ Michael Biebl ]
* New upstream release.
-- Michael Biebl <biebl@debian.org> Wed, 13 Jun 2012 23:21:35 +0200
eog (3.4.1-2) unstable; urgency=low
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Thu, 19 Apr 2012 03:58:38 +0200
eog (3.4.1-1) experimental; urgency=low
* New upstream translation release.
-- Michael Biebl <biebl@debian.org> Tue, 17 Apr 2012 16:31:52 +0200
eog (3.4.0-1) experimental; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Wed, 28 Mar 2012 00:20:01 +0200
eog (3.3.92-1) experimental; urgency=low
* New upstream development release.
-- Michael Biebl <biebl@debian.org> Tue, 20 Mar 2012 03:16:11 +0100
eog (3.3.91-1) experimental; urgency=low
* New upstream release.
* Bump libglib2.0-dev, libgtk-3-dev and libgdk-pixbuf2.0-dev Build-Deps.
* Set Maintainer to the GNOME team.
* Update Standards-Version to 3.9.3, no changes needed.
* Point to versioned GPL-2 file.
* Build-Depend on libgdk-pixbuf2.0-doc to fix cross-reference links.
-- Jordi Mallach <jordi@debian.org> Wed, 07 Mar 2012 14:23:42 +0100
eog (3.2.2-3) unstable; urgency=low
* debian/patches/0001-Don-t-lock-GDK-around-g_application_run.patch:
Don't lock GDK around g_application_run(). An unintended interaction
between GtkApplication and GDK threading made this necessary before.
That code has since been simplified, breaking this formerly-working code.
Patch cherry-picked from upstream Git. (Closes: #665374)
-- Michael Biebl <biebl@debian.org> Wed, 04 Apr 2012 23:23:23 +0200
eog (3.2.2-2) unstable; urgency=low
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Sat, 19 Nov 2011 01:30:53 +0100
eog (3.2.2-1) experimental; urgency=low
* New upstream release.
* debian/control.in:
- Drop Build-Depends on libdbus-glib-1-dev, no longer required.
* debian/watch:
- Fix regex to correctly match directories.
-- Michael Biebl <biebl@debian.org> Thu, 17 Nov 2011 20:59:59 +0100
eog (3.2.1-1) experimental; urgency=low
[ Josselin Mouette ]
* 01_nodisplay.patch: dropped. Let’s show applications in the shell
now. Closes: #624560.
[ Sjoerd Simons ]
* New upstream release (3.2.1)
* debian/watch: Monitor xz tarballs
* debian/control.in: Update glib build-depends
* debian/eog.install: Remove omf dir, no longer used
-- Sjoerd Simons <sjoerd@debian.org> Wed, 02 Nov 2011 20:35:55 +0000
eog (3.0.2-2) unstable; urgency=low
* debian/control.in:
- Change Build-Depends on libjpeg62-dev to libjpeg-dev in preparation of
the libjpeg8 transition.
- Add Depends on gir1.2-peas-1.0 to eog. (Closes: #630910)
- Remove Build-Depends on gir1.2-gtk-3.0 and let libgtk-3-dev pull that
dependency in. Bump Build-Depends on libgtk-3-dev to (>= 3.0.8-1~)
accordingly.
- Update Vcs-* fields.
-- Michael Biebl <biebl@debian.org> Fri, 15 Jul 2011 17:52:56 +0200
eog (3.0.2-1) experimental; urgency=low
* New upstream stable release.
* debian/watch: Switch to .bz2 tarballs.
* Switch to debhelper compatibility level 8.
- Bump Build-Depends on debhelper.
- Strip leading debian/tmp/ from .install files.
* debian/control.in
- Bump Standards-Version to 3.9.2. No further changes.
- Add Build-Depends on librsvg2-dev (>= 2.26.0) for scaling svg images.
* debian/eog-dev.install
- Install gtk-doc API documentation.
-- Michael Biebl <biebl@debian.org> Sat, 04 Jun 2011 18:31:50 +0200
eog (3.0.1-1) experimental; urgency=low
[ Fabian Greffrath ]
* Add Conflicts and Replaces against gir1.2-eog-3.0 to eog (Closes: #622636).
[ Sjoerd Simons ]
* New upstream release
-- Sjoerd Simons <sjoerd@debian.org> Sat, 14 May 2011 19:47:05 +0100
eog (3.0.0-1) experimental; urgency=low
* Make the -dev package depend on the gir package.
* New upstream release.
* Update build-dependencies.
* Put the gir in the eog package, since it’s in a private directory.
* Break eog-plugins < 2.91.
* Pass arguments to dh_girepository in a more canonical way.
-- Josselin Mouette <joss@debian.org> Sun, 10 Apr 2011 22:57:14 +0200
eog (2.91.92-1) experimental; urgency=low
* New upstream release.
* debian/control.in: added missing dependency on gsettings-desktop-schemas.
-- Frederic Peters <fpeters@debian.org> Mon, 28 Mar 2011 11:48:04 +0530
eog (2.91.91-4) experimental; urgency=low
* debian/control.in: add build-dep on a recent version of libatk1.0-dev to
make sure the necessary gobject introspection files get installed.
-- Frederic Peters <fpeters@debian.org> Tue, 22 Mar 2011 22:27:47 +0100
eog (2.91.91-3) experimental; urgency=low
* debian/rules: get gir dependencies using file from debian/tmp/.
-- Frederic Peters <fpeters@debian.org> Mon, 21 Mar 2011 23:49:15 +0100
eog (2.91.91-2) experimental; urgency=low
* debian/eog.install: install eog.convert, for porting configuration from
gconf to gsettings.
* debian/rules: fix removal of gir file from eog package.
* debian/rules: fix generation of gir:Depends, looking for files in their
private directories.
-- Frederic Peters <fpeters@debian.org> Sun, 13 Mar 2011 15:25:28 +0100
eog (2.91.91-1) experimental; urgency=low
* New upstream development release.
+ Update debian/control.in for new dependencies.
+ Create a gir1.2-eog-3.0 package.
+ Make eog depends on gir1.2-eog-3.0 as it is required for plugins.
-- Frederic Peters <fpeters@debian.org> Sun, 13 Mar 2011 13:38:33 +0100
eog (2.30.2-1) unstable; urgency=low
* New upstream bugfix release.
* Bump Standards-Version to 3.9.0. No further changes.
-- Michael Biebl <biebl@debian.org> Sat, 03 Jul 2010 00:52:16 +0200
eog (2.30.1-1) unstable; urgency=low
[ Luca Bruno ]
* New upstream release:
- Update Japanese translation. Closes: #550830.
* debian/control.in:
- Update Standards-version to latest 3.8.4. No changes needed.
- Bump libgtk2.0-dev build-depend to 2.17.15.
* debian/patches/01_nodisplay.patch:
- Refreshed.
* debian/copyright:
- Fix FSF address.
[ Michael Biebl ]
* Switch to source format 3.0 (quilt)
- Add debian/source/format.
- Add debian/patches/series.
- Remove /usr/share/cdbs/1/rules/simple-patchsys.mk from debian/rules.
* debian/control.in
- Add Vcs-* fields.
- Drop Conflicts: eog2, no longer necessary.
-- Michael Biebl <biebl@debian.org> Mon, 03 May 2010 18:53:57 +0200
eog (2.28.2-1) unstable; urgency=low
* New upstream release.
* debian/watch: don't uupdate.
-- Emilio Pozuelo Monfort <pochu@debian.org> Fri, 18 Dec 2009 15:32:33 +0100
eog (2.28.1-1) unstable; urgency=low
* New upstream release.
* debian/copyright:
- added missing copyright holders.
- added copyright informations about src/eog-image-jpeg.c,
cut-n-paste/totem-screensaver/totem-scrsaver.h and
cut-n-paste/totem-screensaver/totem-scrsaver.c files, which
are licensed under the LGPL-2.
-- Andrea Veri <andrea.veri89@gmail.com> Wed, 21 Oct 2009 23:29:28 +0200
eog (2.28.0-1) unstable; urgency=low
* New upstream release.
* debian/patches/99_ltmain_as-needed.patch: Dropped, already there.
* debian/control{,.in}: Bump build-dependency on libgtk2.0-dev to >= 2.15.2,
drop build-dependency on libart-2.0-dev.
-- Andreas Henriksson <andreas@fatal.se> Wed, 23 Sep 2009 18:24:07 +0200
eog (2.26.3-1) unstable; urgency=low
* New upstream release.
* debian/control:
- bumped Standards-version to latest 3.8.3. No changes needed.
- added homepage field pointing it to the right project's
homepage.
- added ${misc:Depends} on both eog-dbg / eog-dev binaries making
lintian happy again.
-- Andrea Veri <andrea.veri89@gmail.com> Tue, 15 Sep 2009 21:28:38 +0200
eog (2.26.2-1) unstable; urgency=low
* Update build-dependencies to the 2.26 requirements.
Closes: #530649.
* New upstream release.
-- Josselin Mouette <joss@debian.org> Tue, 26 May 2009 22:18:58 +0200
eog (2.26.1-1) unstable; urgency=low
[ Josselin Mouette ]
* Add libglib2.0-doc and libgtk2.0-doc to b-d-i to ensure proper
xrefs.
[ Luca Bruno ]
* New upstream release:
- Fix GError usage and avoid crashes when the tempfile can't be moved
to the destination. Closes: #507991
* debian/patches/02_sanitize_sys.path.patch:
- Remove as applied upstream.
* debian/control.in:
- Build-Depends:
+ Remove libart-2.0-dev.
+ Add libxml2-dev for toolbareditor support.
+ Bump libgtk2.0-dev to 2.15.1.
+ Bump libgnome-desktop-dev to 2.25.1.
- eog-dev Depends:
+ Remove libgnomeui-dev and libglade2-dev.
+ Add libgtk2.0-dev.
- Specify section for debug package.
[ Josselin Mouette ]
* Remove useless build-dependencies on libglade and libgnomeui.
-- Josselin Mouette <joss@debian.org> Thu, 14 May 2009 08:42:20 +0200
eog (2.24.3.1-1) unstable; urgency=low
* New upstream bugfix release.
* Upload to unstable.
-- Sebastian Dröge <slomo@debian.org> Fri, 06 Mar 2009 19:29:03 +0100
eog (2.24.2-1) experimental; urgency=low
* 99_ltmain_as-needed.patch: introduce patch to make --as-needed work
on shared objects.
* New upstream release.
-- Josselin Mouette <joss@debian.org> Wed, 31 Dec 2008 16:24:42 +0100
eog (2.24.1-1) experimental; urgency=low
* New upstream release.
* Update build-dependencies, add missing dependencies for eog-dev.
* Remove broken changelog entry at the end.
* Don’t build with -z defs, it fails for the plugins.
* eog.install: install the plugins.
* eog-dev.install: install the documentation.
* Pass --no-act to dh_makeshlibs.
-- Josselin Mouette <joss@debian.org> Thu, 13 Nov 2008 18:06:45 +0100
eog (2.22.3-2) unstable; urgency=high
[ Deng Xiyue ]
* 02_sanitize_sys.path.patch: fix possible security problem caused by
empty sys.path which allows the possibility to run arbitrary code by a
file matches the name of a python module in user's working directory.
Thanks James Vega <jamessan@debian.org> for the patch.
(Closes: #504352)
-- Josselin Mouette <joss@debian.org> Thu, 06 Nov 2008 09:04:21 +0100
eog (2.22.3-1) unstable; urgency=low
[ Josselin Mouette ]
* 01_nodisplay.patch: do not display the menu entry by default; an
image viewer is mostly useless except when launched from the file
browser.
[ Sebastian Dröge ]
* New upstream bugfix release.
* debian/control.in:
+ Updated Standards-Version to 3.8.0, no additional changes needed.
+ Build depend on intltool as it's required now.
-- Sebastian Dröge <slomo@debian.org> Tue, 01 Jul 2008 11:49:13 +0200
eog (2.22.2-1) unstable; urgency=low
* New upstream release.
- adds "image/svg+xml-compressed" to the list of supported file types
(Closes: #477436).
-- Guilherme de S. Pastore <gpastore@debian.org> Fri, 30 May 2008 23:07:01 -0300
eog (2.22.1-1) unstable; urgency=low
[ Romain Francoise ]
* debian/control.in: Bump build-depends on libglib2.0-dev to (>= 2.15.3).
[ Sebastian Dröge ]
* New upstream bugfix release.
-- Sebastian Dröge <slomo@debian.org> Tue, 08 Apr 2008 05:44:49 +0200
eog (2.22.0-1) unstable; urgency=low
[ Josselin Mouette ]
* Fix capitalization of GNOME.
* Rework description to make it a bit more up to date.
Closes: #463221.
[ Romain Francoise ]
* New upstream release:
+ Handles XPM files properly again (closes: #444742).
+ Includes performance improvements (closes: #463112).
+ No longer crashes if ~/.gnome2/eog is not a directory (closes: #445544).
* debian/control: Bump build-depends on libglib2.0-dev to (>= 2.15.3).
-- Romain Francoise <rfrancoise@debian.org> Fri, 14 Mar 2008 23:38:03 +0100
eog (2.20.4-1) unstable; urgency=low
* New upstream bugfix release.
* debian/control.in:
+ Update Standards-Version to 3.7.3, no additional changes needed.
-- Sebastian Dröge <slomo@debian.org> Mon, 07 Jan 2008 21:21:09 +0100
eog (2.20.3-1) unstable; urgency=low
* New upstream bugfix release:
+ debian/patches/01_eog_xmp.patch:
- Dropped, merged upstream.
-- Sebastian Dröge <slomo@debian.org> Tue, 27 Nov 2007 05:40:17 +0100
eog (2.20.2-2) unstable; urgency=low
* debian/patches/01_eog_xmp.patch,
debian/control.in:
+ Build against exempi 1.99.5, patch by Michael Biebl.
(Closes: #450485, #451726)
* debian/menu:
+ Fix section.
-- Sebastian Dröge <slomo@debian.org> Mon, 19 Nov 2007 16:44:43 +0100
eog (2.20.2-1) unstable; urgency=low
* New upstream bugfix release.
-- Sebastian Dröge <slomo@debian.org> Wed, 31 Oct 2007 06:51:09 +0100
eog (2.20.1-1) unstable; urgency=low
* New upstream bugfix release.
* debian/menu:
+ Fix section in the menu file.
-- Sebastian Dröge <slomo@debian.org> Thu, 25 Oct 2007 11:07:36 +0200
eog (2.20.0-2) unstable; urgency=low
* Remove obsolete manual pages.
* rules: cleanup.
* Add a new package: eog-dev, containing the headers and pkg-config
files.
-- Josselin Mouette <joss@debian.org> Sat, 22 Sep 2007 00:07:47 +0200
eog (2.20.0-1) unstable; urgency=low
* New upstream release.
+ Fix crash when switching between normal and fullscreen modes.
Closes: #382164.
+ Add WBMP to supported file types. Closes: #270595.
+ Shows file type in properties dialog. Closes: #439798.
+ Features a command line option to start in fullscreen mode.
Closes: #134684.
* Massive build-depends update.
* Fix section for the menu file.
* Don't ship the headers and pkg-config files for now.
-- Josselin Mouette <joss@debian.org> Fri, 21 Sep 2007 22:39:07 +0200
eog (2.18.2-2) experimental; urgency=low
[ Sven Arvidsson ]
* Add a -dbg package. (Closes: #427410)
[ Loic Minier ]
* Target at experimental for binary package addition.
-- Loic Minier <lool@dooz.org> Mon, 11 Jun 2007 10:13:57 +0200
eog (2.18.2-1) unstable; urgency=low
* New upstream translation and bugfix release.
-- Josselin Mouette <joss@debian.org> Sat, 02 Jun 2007 09:26:11 +0200
eog (2.18.1-1) unstable; urgency=low
* Include the new check-dist Makefile to prevent accidental uploads to
unstable; bump build-dep on gnome-pkg-tools to >= 0.10.
* Set LDFLAGS directly instead of via DEB_CONFIGURE_SCRIPT_ENV; build-dep on
cdbs >= 0.4.41.
* Preprend -Wl,-z,defs before -Wl,--as-needed in LDFLAGS.
* Upload to unstable; drop check-dist include.
* Wrap build-deps and deps.
* Bump up Debhelper compatibility level to 5.
* Fix watch file to track all stable releases and use HTTP.
* Verbose the rm calls.
* Drop obsolete debian/NEWS which concerns pre-sarge versions.
* New upstream stable release.
-- Loic Minier <lool@dooz.org> Wed, 25 Apr 2007 15:32:14 +0200
eog (2.18.0.1-1) experimental; urgency=low
* New upstream release:
- debian/control.in:
+ Updated build-depends to new requirements
+ Added new dependency on gnome-icon-theme, as eog now uses icons from
there.
- debian/patches/01_error-loading.patch:
Dropped, included upstream.
- Changed scroll wheel behaviour to not switch images, but actually
scroll. (Closes: #414128)
- Fixed handling of external file removal. (Closes: #370452)
- Fixed segfaults when exiting the collection view. (Closes: #404325)
-- Marc 'HE' Brockschmidt <he@debian.org> Sun, 25 Mar 2007 13:17:10 +0200
eog (2.16.3-3) unstable; urgency=medium
[ Sven Arvidsson ]
* New patch, 01_error-loading, show an error message instead of
closing the program if the image loading has failed; thanks
Claudio Saavedra. GNOME #399988 (Closes: #391582)
-- Sven Arvidsson <sa@whiz.se> Tue, 27 Feb 2007 15:07:47 +0100
eog (2.16.3-2) unstable; urgency=low
* Upload to unstable.
-- Loic Minier <lool@dooz.org> Sat, 3 Feb 2007 11:45:07 +0100
eog (2.16.3-1) experimental; urgency=low
* Add a get-orig-source target to retrieve the upstream tarball.
* New upstream stable release; bug fixes and translation updates.
-- Loic Minier <lool@dooz.org> Mon, 29 Jan 2007 22:07:49 +0100
eog (2.16.2-1) unstable; urgency=low
* New upstream stable release with code cleanups and translations.
-- Loic Minier <lool@dooz.org> Sat, 18 Nov 2006 09:41:07 +0100
eog (2.16.1.1-1) unstable; urgency=low
* Upload to unstable.
* Add CDBS' utils.
* New upstream release.
* Don't trust the upstream configure to honor its advertized
--disable-scrollkeper and remove generated /var/scrollkeeper for
additional safety.
-- Loic Minier <lool@dooz.org> Fri, 20 Oct 2006 10:59:06 +0200
eog (2.16.1-1) experimental; urgency=low
* New upstream release.
- build in a non-broken environment (Closes: #389242).
* debian/watch: updated.
-- Guilherme de S. Pastore <gpastore@debian.org> Fri, 29 Sep 2006 19:42:52 -0300
eog (2.16.0.1-1) experimental; urgency=low
* New upstream release
- Fixed printing of GIF images (Closes: #343496)
* debian/control.in:
- updated my e-mail address
- added build-dependency on gnome-doc-utils
* debian/patches/10_no_scrollkeeper_update.patch:
- dropped; not needed anymore
* debian/rules:
- use --disable-scrollkeeper
-- Guilherme de S. Pastore <gpastore@debian.org> Mon, 4 Sep 2006 16:25:06 -0300
eog (2.14.3-1) unstable; urgency=low
* New upstream release.
* Bump up Standards-Version to 3.7.2.
-- Loic Minier <lool@dooz.org> Tue, 8 Aug 2006 13:05:41 +0200
eog (2.14.2-1) unstable; urgency=low
* New upstream release.
-- Loic Minier <lool@dooz.org> Tue, 30 May 2006 17:06:44 +0200
eog (2.14.1-1) unstable; urgency=low
* New upstream release.
-- Guilherme de S. Pastore <gpastore@debian.org> Fri, 21 Apr 2006 11:37:34 -0300
eog (2.14.0-1) unstable; urgency=low
Oystein Gisnas <oystein@gisnas.net>:
* New upstream release
- Print preview bugs fixed (Closes: #247544)
- Can display on multiple displays (Closes: #275693)
- Can display SVG images (Closes: #280922)
- Hides information sidebar as default (Closes: #292447)
- Fixes crash opening some SVGs (Closes: #322879)
* Update libgtk2.0-dev build depenency to (>= 2.7.1)
* Add build dependencies liblcms-dev, libart-2.0-dev (>= 2.3.16),
libgnome-desktop-dev (>= 2.10.0)
* Update watch file
* Segfaults when opening two jpeg files are no longer reproducible.
(Closes: #358372)
* Full-screen can be left by pressing F11 again. (Closes: #307716)
-- J.H.M. Dassen (Ray) <jdassen@debian.org> Sat, 1 Apr 2006 21:08:21 +0200
eog (2.12.3-1) unstable; urgency=low
* New upstream release (bug fixes and translation updates).
* [debian/rules] Have the linker work harder to produce a faster loading
binary and to trim down unneeded direct dependencies.
Josselin Mouette <joss@debian.org>:
* Recommend librsvg2-common.
-- J.H.M. Dassen (Ray) <jdassen@debian.org> Wed, 8 Feb 2006 20:54:57 +0100
eog (2.12.2-2) unstable; urgency=low
* Upload to unstable.
-- Josselin Mouette <joss@debian.org> Sun, 8 Jan 2006 14:24:29 +0100
eog (2.12.2-1) experimental; urgency=low
[ Guilherme de S. Pastore ]
* New upstream release
- Fixes some crashes (Closes: #322879)
* debian/patches/02_svg.diff: dropped; applied upstream
[ Loic Minier ]
* Comment out scrollkeeper-update calls.
[debian/patches/10_no_scrollkeeper_update.patch]
-- Loic Minier <lool@dooz.org> Sun, 4 Dec 2005 22:02:02 +0100
eog (2.12.1-1) experimental; urgency=low
* New upstream release
* debian/watch:
- added to help tracking upstream
* debian/patches/00_overwrite_error.diff:
- removed, the relevant code has been rewritten, the patch no
longer applies (in both senses)
* debian/patches/02_svg.diff:
- updated to the new upstream version
* debian/patches/01_threads.diff:
- removed; issue fixed upstream with a different patch
* debian/control.in:
- added Build-Depends to libglade2-dev, libgnomeprint{,ui}2.2-dev
based on pkg-config requirements
-- Gustavo Noronha Silva <kov@debian.org> Fri, 14 Oct 2005 12:13:19 -0300
eog (2.10.2-3) unstable; urgency=medium
[ Guilherme de S. Pastore ]
* debian/control.in:
- added ${misc:Depends} dependency (higher urgency)
- bumped standards-version to 3.6.2.1 with no changes
[ Sebastien Bacher ]
* debian/patches/02_svg.diff
- open svg files (Closes: #306188)
-- Guilherme de S. Pastore <guilherme.pastore@terra.com.br> Thu, 13 Oct 2005 14:25:20 -0300
eog (2.10.2-2) unstable; urgency=low
* debian/patches/00_overwrite_error.diff:
- apply patch from Gustavo Noronha Silva <kov@debian.org>
to fix the error message displayed when overwriting a file.
Thanks! (Closes: #287980)
* debian/patches/01_threads.diff:
- don't create threads as joinable if we're not going to join
them, otherwise we end up with huge memory usage and even
crashes (Closes: #288163)
* debian/eog-collection-view.1:
- removed, there's only one binary that handles this on the UI now
* debian/control.in:
- updated my e-mail address
-- Guilherme de S. Pastore <guilherme.pastore@terra.com.br> Wed, 10 Aug 2005 19:46:22 -0300
eog (2.10.2-1) unstable; urgency=low
* New maintainer (Closes: #322092)
* Acknowledge NMUs (Closes: #223366, #237201, #253005, #289293, #321312)
* debian/control.in:
- Added, to auto-generate debian/control
- Added the Debian GNOME Team to Uploaders:
+ Added Build-Dependency on gnome-pkg-tools
- Updated to Standards-Version 3.6.2 with no changes
* debian/copyright:
- Updated list of Upstream Authors
- Fixed Copyright and License notices
- Updated the URL from which tarball was downloaded
* debian/dirs:
- Removed
* debian/eog.1:
- Escaped all hyphens
* debian/eog.install:
- Install gnome-eog.xpm, the Debian menu icon
* debian/rules:
- Include uploaders.mk from gnome-pkg-tools
- Clean the clean:: target up, as most of the removals are already
handled by CDBS itself
-- Guilherme de S. Pastore <gpastore@colband.com.br> Mon, 8 Aug 2005 22:14:55 -0300
eog (2.10.2-0.2) unstable; urgency=low
* Non-maintainer upload by the GNOME team.
* Build-depend on libexif-dev 0.6.12 (closes: #321312)
-- Ross Burton <ross@debian.org> Mon, 8 Aug 2005 09:14:04 +0100
eog (2.10.2-0.1) unstable; urgency=low
* Non-maintainer upload by the GNOME team.
* New upstream release.
-- Jordi Mallach <jordi@debian.org> Thu, 7 Jul 2005 19:38:12 +0200
eog (2.10.0-0.2) unstable; urgency=low
* Non-maintainer upload by the GNOME team.
* Upload to unstable.
* debian/control: drop gettext, add cdbs and bump debhelper for
build-depends.
* debian/rules: rewrite to use cdbs.
- cdbs doesn't use dh_installmanpages (closes: #289293).
-- Jordi Mallach <jordi@debian.org> Fri, 10 Jun 2005 17:12:43 +0200
eog (2.10.0-0.1) experimental; urgency=low
* GNOME team upload for GNOME 2.10.
* New upstream release.
* debian/control: updated Build-Depends.
-- Jordi Mallach <jordi@debian.org> Mon, 9 May 2005 16:45:11 +0200
eog (2.8.2-0.1) unstable; urgency=low
* Non-Maintainer upload.
* New upstream release.
* po/ca.po: fix a bad translation.
-- Jordi Mallach <jordi@debian.org> Wed, 29 Dec 2004 21:02:36 +0100
eog (2.8.1-1.1) unstable; urgency=low
* NMU for GNOME 2.8 in unstable.
* Upload to unstable.
* debian/control:
- Build-Depends on libxml-parser-perl.
-- Sebastien Bacher <seb128@debian.org> Wed, 24 Nov 2004 16:39:09 +0100
eog (2.8.1-1) experimental; urgency=low
* NMU with maintainer approval.
* New upstream release:
- the Nautilus "View as Collection" component isn't available anymore.
(Closes: #223366).
- fix the image collection mode (Closes: #253005).
- fix the problem with fix/normal buttons (Closes: #237201).
* debian/compat:
- added.
* debian/control:
- updated Standards-Version to 3.6.1.0.
- updated the Build-Depends.
* debian/postinst, debian/postrm:
- removed, dh_gconf handles this.
* debian/NEWS:
- added a note about the removal of the nautilus view.
* debian/rules:
- added a call to dh_gconf and dh_desktop.
-- Sebastien Bacher <seb128@debian.org> Mon, 25 Oct 2004 22:03:56 +0200
eog (2.6.1-2) unstable; urgency=high
* Rebuilt without libexif support to let collection view mode work
properly, it'll be readded in the future, thanks Paul Brossier.
closes: #253005, #267869.
-- Davide Puricelli (evo) <evo@debian.org> Sat, 4 Sep 2004 18:05:26 +0200
eog (2.6.1-1) unstable; urgency=low
* Acknowledge NMUs, thanks Sebastien.
closes: #245329, #255186, #228639.
* Fixed wrong manpage header; closes: #261034.
* debian/menu: used a xpm file; closes: #265940.
-- Davide Puricelli (evo) <evo@debian.org> Sun, 22 Aug 2004 17:31:59 +0200
eog (2.6.1-0.4) unstable; urgency=high
* NMU
* Fixed the FTBFS with the new libexif (Closes: #255186).
* debian/control:
- updated the Build-Depends on libexif-dev.
-- Sebastien Bacher <seb128@debian.org> Sat, 26 Jun 2004 14:24:01 +0200
eog (2.6.1-0.3) unstable; urgency=low
* NMU
* Updated build depends.
-- Sebastien Bacher <seb128@debian.org> Fri, 28 May 2004 22:55:17 +0200
eog (2.6.1-0.2) unstable; urgency=low
* Non-Maintainer Upload.
* Upload to unstable.
-- Jordi Mallach <jordi@debian.org> Fri, 28 May 2004 12:36:04 +0200
eog (2.6.1-0.1) experimental; urgency=low
* NMU.
* New upstream release.
* debian/control.in
+ updated Build-Depends (Closes: #245329).
* debian/menu:
+ updated menu entry with Luca Capello <luca@pca.it> suggestions
(Closes: #228639).
-- Sebastien Bacher <seb128@debian.org> Sun, 16 May 2004 14:28:53 +0200
eog (2.6.0-1) experimental; urgency=low
* New upstream release; closes: #242060.
-- Davide Puricelli (evo) <evo@debian.org> Sun, 18 Apr 2004 11:55:33 +0200
eog (2.4.1-2) unstable; urgency=high
* Added a missing Build-Depends on libgnomeprintui2.2-dev.
-- Davide Puricelli (evo) <evo@debian.org> Sat, 25 Oct 2003 15:22:48 +0200
eog (2.4.1-1) unstable; urgency=low
* New upstream version.
* Fixed an issue on viewing some pictures twice, closes: #190889.
* "Load image" file selector is no longer case sensitive, closes: #199431.
* Added .jpeg support, closes: #208359.
* Removed useless Build-Depends on liblinc-dev, closes: #214819.
-- Davide Puricelli (evo) <evo@debian.org> Fri, 24 Oct 2003 18:41:44 +0200
eog (2.2.2-2) unstable; urgency=high
* Added a missing Build-Depends on libeel2-dev.
-- Davide Puricelli (evo) <evo@debian.org> Sat, 7 Jun 2003 10:22:39 +0200
eog (2.2.2-1) unstable; urgency=high
* New upstream version:
- fixed "GNOME's Eye Of Gnome incorrect file name handling"
(http://marc.theaimsgroup.com/?l=bugtraq&m=104887189724146&w=2)
closes: #189002.
* Added support for "image/svg+xml" too, closes: #192421.
* Fixed a typo into xmldocs.make (now it's a tab and not eight spaces).
closes: #195668.
-- Davide Puricelli (evo) <evo@debian.org> Fri, 6 Jun 2003 22:22:19 +0200
eog (2.2.0-1) unstable; urgency=low
* New upstream version.
-- Davide Puricelli (evo) <evo@debian.org> Mon, 10 Feb 2003 19:46:06 +0100
eog (1.1.4-1) unstable; urgency=low
* New upstream version.
* Segfault on Edit/Preferences is not reproducible, please try this
version; closes: #166689.
* Removed an old Depends on libgnomeprint2-0; closes: #177328.
* eog is not a core app, I think that 1.1 branch is really better than
Gnome 2.0.x version, so I'll continue to package it; closes: #170404.
-- Davide Puricelli (evo) <evo@debian.org> Sat, 18 Jan 2003 23:36:32 +0100
eog (1.1.0-2) unstable; urgency=low
* First upload to unstable!
-- Davide Puricelli (evo) <evo@debian.org> Sat, 26 Oct 2002 23:31:04 +0200
eog2 (1.1.0-1) experimental; urgency=low
* New upstream version.
-- Davide Puricelli (evo) <evo@debian.org> Fri, 18 Oct 2002 15:25:12 +0200
eog2 (1.0.3-3) experimental; urgency=low
* Removed the 2 suffix from the binary package name.
-- Davide Puricelli (evo) <evo@debian.org> Sat, 5 Oct 2002 12:55:32 +0200
eog2 (1.0.3-2) experimental; urgency=low
* Removed any external DTD call in xml files; closes: #161883.
-- Davide Puricelli (evo) <evo@debian.org> Sat, 28 Sep 2002 12:09:32 +0200
eog2 (1.0.3-1) experimental; urgency=low
* New upstream version.
-- Davide Puricelli (evo) <evo@debian.org> Fri, 13 Sep 2002 14:23:12 +0200
eog2 (1.0.1-5) experimental; urgency=low
* Recompiled against gnome-vfs2 2.0.2-4.
-- Davide Puricelli (evo) <evo@debian.org> Wed, 14 Aug 2002 17:41:06 +0200
eog2 (1.0.1-4) experimental; urgency=low
* Recompiled against libpng3 and libgtk2.0-0png3.
-- Davide Puricelli (evo) <evo@debian.org> Tue, 13 Aug 2002 11:46:01 +0200
eog2 (1.0.1-3) experimental; urgency=low
* Now we don't ship /etc/gconf/gconf.xml.defaults, it's generated by
gconftool; closes: #151856.
-- Davide Puricelli (evo) <evo@debian.org> Fri, 12 Jul 2002 19:01:13 +0200
eog2 (1.0.1-2) experimental; urgency=low
* Recompiled against librsvg2-2.
-- Davide Puricelli (evo) <evo@debian.org> Mon, 1 Jul 2002 11:01:47 +0200
eog2 (1.0.1-1) experimental; urgency=low
* New upstream version.
-- Davide Puricelli (evo) <evo@debian.org> Sat, 22 Jun 2002 11:49:19 +0200
eog2 (0.118.0-1) experimental; urgency=low
* New upstream version.
-- Davide Puricelli (evo) <evo@debian.org> Sat, 25 May 2002 15:03:53 +0200
eog2 (0.116.1-1) experimental; urgency=low
* New upstream version.
-- Davide Puricelli (evo) <evo@debian.org> Thu, 25 Apr 2002 15:32:27 +0200
eog2 (0.115.0-1) experimental; urgency=low
* New upstream version.
-- Davide Puricelli (evo) <evo@debian.org> Sun, 31 Mar 2002 21:40:36 +0200
eog2 (0.114.0-1) experimental; urgency=low
* Initial Release, closes: #130119.
-- Davide Puricelli (evo) <evo@debian.org> Sun, 17 Mar 2002 12:49:05 +0100
|