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 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968
|
commit 238e2e3473f18712f381fb65becedee6c2b81e05
Author: Colin Watson <cjwatson@debian.org>
Date: Fri Mar 28 11:02:48 2025 +0000
Release version 0.3.7
NEWS | 14 ++++++++++++++
configure.ac | 2 +-
telegnome.appdata.xml.in | 8 ++++++++
3 files changed, 23 insertions(+), 1 deletion(-)
commit 2ac17e7b46c60d64af20b2984d4264d371d498bf
Author: Colin Watson <cjwatson@debian.org>
Date: Thu Mar 27 22:18:45 2025 +0000
Add CI pipeline
* .gitlab-ci.yml: New file.
.gitlab-ci.yml | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 62 insertions(+)
commit 371444c3eb2bb158237a8ff45364c937ede6c388
Author: Colin Watson <cjwatson@debian.org>
Date: Thu Mar 27 16:15:09 2025 +0000
Add logo to About dialog
Reported by Caden Mitchell. Fixes: #2
* src/gui.vala (Gui): Add resource path to theme.
* src/telegnome.ui (about_dialog): Add `logo` property.
src/gui.vala | 3 +++
src/telegnome.ui | 1 +
2 files changed, 4 insertions(+)
commit 3f57fc6434cfada396b571572ce94cd3d3713b44
Author: Colin Watson <cjwatson@debian.org>
Date: Wed Mar 26 23:43:51 2025 +0000
Work around Vala code generation bug with GCC >= 14
* configure.ac: Add `-Wno-error=incompatible-pointer-types`; see
https://gitlab.gnome.org/GNOME/vala/-/issues/1408.
configure.ac | 2 ++
1 file changed, 2 insertions(+)
commit 53ffe61f5804a4389faa568abe374f92b5b39950
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date: Tue Jan 7 09:35:36 2025 +0000
Update Hebrew translation
po/he.po | 336 +++++++++++++++++++++++++++++++++++++++++++++------------------
1 file changed, 240 insertions(+), 96 deletions(-)
commit 2deb5ad9a8b3188ed2109afc6d21b22ffab873bd
Author: Scrambled 777 <weblate.scrambled777@simplelogin.com>
Date: Sun May 12 13:28:00 2024 +0000
Add Hindi translation
po/LINGUAS | 1 +
po/hi.po | 313 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 314 insertions(+)
commit cc24fafef21b6c527935fa97d5d092cd32bbc224
Author: Ekaterine Papava <papava.e@gtu.ge>
Date: Sun Mar 24 04:27:09 2024 +0000
Add Georgian translation
po/LINGUAS | 1 +
po/ka.po | 301 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 302 insertions(+)
commit 976d19e8fc7fded1bce3172b1d5ae4fd928fbfdd
Author: Balázs Úr <14539-urbalazs@users.noreply.gitlab.gnome.org>
Date: Tue Sep 19 06:09:18 2023 +0000
Add Hungarian translation
doc/Makefile.am | 2 +-
doc/hu/hu.po | 284 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 285 insertions(+), 1 deletion(-)
commit bdf4092ca328ccd284fad00da0d3f33ad3fc1622
Author: Martin <miles@filmsi.net>
Date: Tue Sep 5 20:19:30 2023 +0000
Update Slovenian translation
po/sl.po | 22 +++++++++-------------
1 file changed, 9 insertions(+), 13 deletions(-)
commit a7013b77cba19070ca337188a78d66db38844554
Author: Sergej A <asvmail.as@gmail.com>
Date: Wed Jun 7 15:18:52 2023 +0000
Update Russian translation
po/ru.po | 381 ++++++++++++++++++++++++++++++++++++++++++++-------------------
1 file changed, 266 insertions(+), 115 deletions(-)
commit 2ea76b37bb0aebe837e09318ab1b22d9953a8a23
Author: Martin <miles@filmsi.net>
Date: Sun Feb 12 17:44:35 2023 +0000
Update Slovenian translation
po/sl.po | 344 ++++++++++++++++++++++++++++++++++++++++++++-------------------
1 file changed, 243 insertions(+), 101 deletions(-)
commit b04af9d5aa93e34044575f0ec48e327dc2c6e363
Author: Asier Sarasua Garmendia <asiersarasua@ni.eus>
Date: Sun Mar 27 12:47:22 2022 +0000
Update Basque translation
po/eu.po | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
commit 22c969fd2c8d294648e37ec9604439db0cac45de
Author: Colin Watson <cjwatson@debian.org>
Date: Mon Aug 30 00:18:13 2021 +0100
Release version 0.3.6
NEWS | 13 +++++++++++++
configure.ac | 2 +-
telegnome.appdata.xml.in | 8 ++++++++
3 files changed, 22 insertions(+), 1 deletion(-)
commit a5e7e82e58e66a6bf9a44878c22aff9cc5f8029c
Author: Colin Watson <cjwatson@debian.org>
Date: Mon Aug 30 00:10:25 2021 +0100
Remove some autoconf deprecation warnings
* configure.ac: Replace AM_CONFIG_HEADER with AC_CONFIG_HEADERS. Remove
ancient and unused AC_ISC_POSIX and AC_HEADER_STDC.
configure.ac | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
commit 8252e148a7e1ec148b1d982db8c9efe67d03d2a8
Author: Colin Watson <cjwatson@debian.org>
Date: Sun Aug 15 23:44:18 2021 +0100
Update website URL
* README, src/telegnome.ui, telegnome.appdata.xml.in, telegnome.doap:
Use https://telegnome.sourceforge.io/ (same website, but converted to
HTTPS and generally brought up to date).
README | 2 +-
src/telegnome.ui | 2 +-
telegnome.appdata.xml.in | 2 +-
telegnome.doap | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
commit 9343247ed7160c38e03b67e4ffe883ddd161cc4d
Author: Charles Monzat <charles.monzat@free.fr>
Date: Sat Aug 14 10:06:21 2021 +0000
Update French translation
po/fr.po | 366 +++++++++++++++++++++++++++++++++++++++++++++------------------
1 file changed, 264 insertions(+), 102 deletions(-)
commit fa1175e551b1a671e7cf046678aeda83e0b9cdd3
Author: Dz Chen <wsxy162@gmail.com>
Date: Sun Apr 11 18:33:23 2021 +0000
Update Chinese (China) translation
po/zh_CN.po | 352 ++++++++++++++++++++++++++++++++++++++++++------------------
1 file changed, 249 insertions(+), 103 deletions(-)
commit b1049c47957c6ce4afb9c4c0bd344ae53435929e
Author: Jordi Mas <jmas@softcatala.org>
Date: Wed Jan 6 15:17:36 2021 +0100
Update Catalan translation
po/ca.po | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit 53c6d454af5eed1cf04ddea1bb400b2964e1fc8a
Author: Yuri Chornoivan <yurchor@ukr.net>
Date: Sat Apr 25 08:29:08 2020 +0000
Update Ukrainian translation
doc/uk/uk.po | 285 ++++++++++++++++++++++++++++++++++++-----------------------
1 file changed, 175 insertions(+), 110 deletions(-)
commit 5bc9a3695306f2e30468b8cb1c253fd420a7e261
Author: Yuri Chornoivan <yurchor@ukr.net>
Date: Sat Mar 28 20:25:23 2020 +0000
Update Ukrainian translation
po/uk.po | 351 +++++++++++++++++++++++++++++++++++++++++++++------------------
1 file changed, 252 insertions(+), 99 deletions(-)
commit 626eec89608ca66bff5efdc4df368d7230fa4a2f
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date: Thu Dec 12 09:07:31 2019 +0100
Updated Spanish translation
doc/es/es.po | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit f6b05d460c916e3b0e8ad6f9c93872ea74106902
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date: Wed Dec 11 12:13:18 2019 +0100
Updated Spanish translation
doc/es/es.po | 277 +++++++++++++++++++++++++++++++++++++----------------------
1 file changed, 173 insertions(+), 104 deletions(-)
commit 38222ffe6a4caa72eb33c466e01d7e96b2e33d7b
Author: Asier Sarasua Garmendia <asier.sarasua@gmail.com>
Date: Fri Oct 18 08:41:44 2019 +0000
Add Basque translation
po/LINGUAS | 1 +
po/eu.po | 299 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 300 insertions(+)
commit d0ff23d48851983c5e50b5d393634adaa4ea89a3
Author: Colin Watson <cjwatson@debian.org>
Date: Thu Sep 5 10:18:37 2019 +0100
Release version 0.3.5
NEWS | 8 ++++++++
telegnome.appdata.xml.in | 7 +++++++
2 files changed, 15 insertions(+)
commit a48577b847b45e8203cee9d348b97f9c761aba73
Author: Serdar Sağlam <teknomobil@msn.com>
Date: Fri Jul 26 17:20:28 2019 +0000
Update Turkish translation
po/tr.po | 367 ++++++++++++++++++++++++++++++++++++++++++++-------------------
1 file changed, 256 insertions(+), 111 deletions(-)
commit 5ca70c06bdac2091f629bdb8fda27f7892bad649
Author: Ask Hjorth Larsen <asklarsen@gmail.com>
Date: Sun Apr 28 00:49:47 2019 +0200
Updated Danish translation
doc/da/da.po | 225 ++++++++++++++++++++++++++++++-----------------------------
1 file changed, 116 insertions(+), 109 deletions(-)
commit bd4f1bdd70f12341af7ef6d30959ec9a6552ffb3
Author: Ask Hjorth Larsen <asklarsen@gmail.com>
Date: Sun Mar 10 02:47:38 2019 +0100
updated Danish translation
po/da.po | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
commit 65b06126925ce072a9fa07a80e71c045b87a4166
Author: Nathan Follens <nfollens@gnome.org>
Date: Mon Mar 4 16:44:42 2019 +0000
Update Dutch translation
po/nl.po | 377 ++++++++++++++++++++++++++++++++++++++++++++-------------------
1 file changed, 263 insertions(+), 114 deletions(-)
commit 71daa6b0a68f14f954e9755d944d3f5cd0cf4a1c
Merge: 21037d0 9579837
Author: Colin Watson <cjwatson@flatline.org.uk>
Date: Tue Feb 5 22:32:21 2019 +0000
Merge branch 'remove-dconf' into 'master'
Remove dconf dependency
See merge request GNOME/telegnome!1
commit 9579837553b2a8b0cdf5c89a8cd0ae6a322d605d
Author: Tomasz Miąsko <tomasz.miasko@gmail.com>
Date: Tue Feb 5 00:00:00 2019 +0000
Remove dconf dependency
In the case of dconf gsettings backend, g_settings_reset can be used for
recursive delete. This does not introduce an explicit dependency on dconf.
README | 1 -
configure.ac | 2 +-
src/Makefile.am | 3 +--
src/prefs.vala | 14 +++-----------
4 files changed, 5 insertions(+), 15 deletions(-)
commit 21037d06a1352a7e7d6cbf4d3bddc424030e38cb
Author: Colin Watson <cjwatson@debian.org>
Date: Fri Jan 11 21:40:25 2019 +0000
Version: 0.3.5 (post-release increment)
NEWS | 3 +++
configure.ac | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
commit 87c6e5a8f3dc5c0d981912bf98d7add506fd8eec
Author: Colin Watson <cjwatson@debian.org>
Date: Fri Jan 11 21:02:32 2019 +0000
Release version 0.3.4
NEWS | 10 ++++++++++
telegnome.appdata.xml.in | 8 ++++++++
2 files changed, 18 insertions(+)
commit ddb31c2fc2d257acc6a2967a233484e806fef4fd
Author: Andre Klapper <a9016009@gmx.de>
Date: Sun Dec 16 01:23:13 2018 +0100
Comment invalid <category> in DOAP file to pass git pre-receive hook
telegnome.doap | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 2f778785191f399acb5e3c49f2bbd001d038d644
Author: Colin Watson <cjwatson@debian.org>
Date: Sat Sep 8 10:03:18 2018 +0100
Use modern AppStream installation directory
/usr/share/metainfo was made the canonical path in AppStream 0.9.4,
released on 2016-04-18.
Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 42ea4ced25d62fc1dcbe502b682a8daf693e51b6
Author: Daniel Șerbănescu <daniel@serbanescu.dk>
Date: Mon Apr 9 15:59:22 2018 +0000
Update Romanian translation
po/ro.po | 346 +++++++++++++++++++++++++++++++++++++++++++++------------------
1 file changed, 248 insertions(+), 98 deletions(-)
commit e7279c53173f945c840f41c667837f208a8c5800
Author: Mario Blättermann <mario.blaettermann@gmail.com>
Date: Tue Feb 27 20:49:08 2018 +0000
Update German translation
doc/de/de.po | 108 +++++++++++++++--------------------------------------------
1 file changed, 27 insertions(+), 81 deletions(-)
commit c65dc78bd8b8c8f7918406e01062d8d3c3c67098
Author: Colin Watson <cjwatson@debian.org>
Date: Sat Feb 10 02:27:40 2018 +0000
Stop using deprecated Gtk.show_uri
* src/gui.vala (Gui.activate_help_contents): Use Gtk.show_uri_on_window
rather than Gtk.show_uri.
* README, configure.ac: Require gtk+-3.0 >= 3.22.
README | 2 +-
configure.ac | 2 +-
src/gui.vala | 4 ++--
3 files changed, 4 insertions(+), 4 deletions(-)
commit 1f4a99e07098daf1b44128d0a4394b6655072d76
Author: Colin Watson <cjwatson@debian.org>
Date: Sat Feb 10 02:17:16 2018 +0000
Squash valac warnings
* src/gui.vala, src/prefs.vala: Don't use "static" modifier on
constants.
src/gui.vala | 10 +++++-----
src/prefs.vala | 2 +-
2 files changed, 6 insertions(+), 6 deletions(-)
commit 139feaceede44d2aa1c1645c48bd9bdb45ee1642
Author: Colin Watson <cjwatson@debian.org>
Date: Sat Feb 10 02:16:54 2018 +0000
Version: 0.3.4 (post-release increment)
NEWS | 3 +++
configure.ac | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
commit 8de9aefcd230c7da568a541562e4eeb530464b99
Author: Anders Jonsson <anders.jonsson@norsjovallen.se>
Date: Thu Jan 4 00:59:31 2018 +0000
Update Swedish translation
doc/sv/sv.po | 54 +++++++++++++++++++++++++++---------------------------
1 file changed, 27 insertions(+), 27 deletions(-)
commit 08759081e0671aeff8228275fee8bd9ef4300fba
Author: Marek Cernocky <marek_cernocky@conel.cz>
Date: Sun Nov 19 20:38:20 2017 +0100
Updated Czech translation
doc/cs/cs.po | 104 ++++++++++++++---------------------------------------------
1 file changed, 25 insertions(+), 79 deletions(-)
commit dafb4f447c6935cb4d7efbd7d01d772bb93536c9
Author: Piotr Drąg <piotrdrag@gmail.com>
Date: Sun Nov 19 19:32:47 2017 +0100
Update Polish translation
doc/pl/pl.po | 56 ++++++++++++++++++++++++++++----------------------------
1 file changed, 28 insertions(+), 28 deletions(-)
commit 0ed3be12c6e64d9e8d8b754fb1e13bebdb93f17c
Author: Anders Jonsson <anders.jonsson@norsjovallen.se>
Date: Thu Nov 16 00:10:15 2017 +0100
Update FSF address
COPYING | 43 +++++++++++++++++++++----------------------
doc/C/index.docbook | 5 ++---
src/app.vala | 3 +--
src/channel.vala | 3 +--
src/default-channels.cfg | 3 +--
src/gui.vala | 3 +--
src/http.vala | 3 +--
src/legacy-config.vala | 3 +--
src/main.vala | 3 +--
src/menus.ui | 3 +--
src/paths.c.in | 3 +--
src/paths.h | 3 +--
src/paths.vapi | 3 +--
src/pixpack.vala | 3 +--
src/prefs.ui | 3 +--
src/prefs.vala | 3 +--
src/telegnome.gresource.xml | 3 +--
src/telegnome.ui | 3 +--
18 files changed, 39 insertions(+), 57 deletions(-)
commit 6a8989a9875c6cc339d9a3414ec292200229d62e
Author: Ask Hjorth Larsen <asklarsen@gmail.com>
Date: Sat Nov 11 18:44:56 2017 +0100
Updated Danish translation
po/da.po | 27 +++++++++++++++++++--------
1 file changed, 19 insertions(+), 8 deletions(-)
commit d2e8b66a6f66fa8d8f848fd1e8a4019085f72f6f
Author: Colin Watson <cjwatson@debian.org>
Date: Sun Jun 18 11:53:04 2017 +0100
Release version 0.3.3.
NEWS | 8 ++++++++
telegnome.appdata.xml.in | 7 +++++++
2 files changed, 15 insertions(+)
commit ecb6f70980d3673b133702694eb6d1ff7bb11b13
Author: Jeremy Bicha <jbicha@ubuntu.com>
Date: Sat Jun 17 23:33:07 2017 -0400
Fix build with vala 0.36
src/prefs.vala | 4 ++++
1 file changed, 4 insertions(+)
commit 5d572bbc1c4760d4beae1e93cd845ef5188142e6
Author: Piotr Drąg <piotrdrag@gmail.com>
Date: Fri Jun 2 14:50:16 2017 +0200
Add Polish help translation
doc/Makefile.am | 2 +-
doc/pl/pl.po | 283 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 284 insertions(+), 1 deletion(-)
commit 8152219770773d0476192d30ae962811eb45635b
Author: Kukuh Syafaat <syafaatkukuh@gmail.com>
Date: Thu Apr 20 06:21:14 2017 +0000
Update Indonesian translation
po/id.po | 35 ++++++++++++++++++++++++++---------
1 file changed, 26 insertions(+), 9 deletions(-)
commit ab8e211ef4bfee6953d37638120cfe3414082573
Author: Andika Triwidada <atriwidada@gnome.org>
Date: Tue Apr 11 02:59:11 2017 +0000
Update Indonesian translation
po/id.po | 338 +++++++++++++++++++++++++++++++++++++++++++--------------------
1 file changed, 233 insertions(+), 105 deletions(-)
commit bbd01e1d45d393a13c00445f6f44557f370921db
Author: Fabio Tomat <f.t.public@gmail.com>
Date: Sat Apr 8 19:29:00 2017 +0000
Add Friulian translation
po/LINGUAS | 1 +
po/fur.po | 316 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 317 insertions(+)
commit 528aceda85879da963621cc907fcf2ab7c17a67d
Author: Ask Hjorth Larsen <asklarsen@gmail.com>
Date: Tue Nov 15 22:49:49 2016 +0100
Updated Danish translation
po/da.po | 350 ++++++++++++++++++++++++++++++++++++++++++++-------------------
1 file changed, 247 insertions(+), 103 deletions(-)
commit d4eeda8a6e6b025a99e1263a5918c6e1c359a3fc
Author: Yolanda Álvarez Pérez <yolandaa.alvarez.perez@gmail.com>
Date: Tue Nov 15 07:43:11 2016 +0000
Update Spanish translation
po/es.po | 164 +++++++++++++++++++++++++++++++--------------------------------
1 file changed, 81 insertions(+), 83 deletions(-)
commit 507c38963728f1230c8fa26934d42a859656fad2
Author: Marek Černocký <marek@manet.cz>
Date: Thu Sep 15 12:15:45 2016 +0200
Updated Czech translation
doc/cs/cs.po | 262 +++++++++++++++++++++++++++++++++++++----------------------
1 file changed, 163 insertions(+), 99 deletions(-)
commit 9e3a299e400dff8ca651e845525e76daebb50468
Author: Piotr Drąg <piotrdrag@gmail.com>
Date: Sat Sep 10 05:50:12 2016 +0200
Updated Polish translation
po/pl.po | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
commit e9b4ad5c1cde46b0022b260be8ed0705d60123c8
Author: Mario Blättermann <mario.blaettermann@gmail.com>
Date: Sun Sep 4 20:54:49 2016 +0000
Updated German translation
doc/de/de.po | 325 +++++++++++++++++++++++++++++++++++------------------------
1 file changed, 193 insertions(+), 132 deletions(-)
commit 22ef5692335cbbce77a0ca75eafd86bdc9034ee4
Author: Piotr Drąg <piotrdrag@gmail.com>
Date: Sun Aug 21 17:08:11 2016 +0200
Updated Polish translation
po/pl.po | 181 ++++++++++++++++++++++++++++++---------------------------------
1 file changed, 87 insertions(+), 94 deletions(-)
commit d018ce4bfae743d9ef8d2d231cb95e831fad5894
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date: Sat Aug 20 23:31:33 2016 +0200
Updated Serbian translation
po/sr.po | 175 ++++++++++++++++++++++++++------------------------------
po/sr@latin.po | 177 ++++++++++++++++++++++++++-------------------------------
2 files changed, 163 insertions(+), 189 deletions(-)
commit 8db09962d91b8c9f400af77d4917c8045a4d6ab8
Author: Piotr Drąg <piotrdrag@gmail.com>
Date: Tue Aug 9 15:39:21 2016 +0200
Add translator comment to .desktop
telegnome.desktop.in | 1 +
1 file changed, 1 insertion(+)
commit bd763d0224ccf074c2d745f9f1a5e924803c7148
Author: Anders Jonsson <anders.jonsson@norsjovallen.se>
Date: Mon Aug 1 22:22:32 2016 +0000
Updated Swedish translation
doc/sv/sv.po | 253 ++++++++++++++++++++++++++++++++++++-----------------------
1 file changed, 156 insertions(+), 97 deletions(-)
commit 20a5d02e0837262fbeefc28673f1fe7685a8a783
Author: Piotr Drąg <piotrdrag@gmail.com>
Date: Mon Jul 25 21:56:03 2016 +0200
Add Language headers to po files
Future versions of gettext will fail if this header is missing.
po/az.po | 1 +
po/ca.po | 1 +
po/da.po | 1 +
po/eo.po | 1 +
po/es.po | 2 +-
po/fr.po | 1 +
po/gl.po | 1 +
po/it.po | 1 +
po/nb.po | 2 +-
po/nl.po | 1 +
po/ru.po | 1 +
po/sl.po | 1 +
po/sr@latin.po | 2 +-
po/uk.po | 1 +
po/vi.po | 1 +
po/zh_CN.po | 1 +
16 files changed, 16 insertions(+), 3 deletions(-)
commit 34dbd472e9ddd239406e9a9c3984044c34ea4a3a
Author: Colin Watson <cjwatson@debian.org>
Date: Thu Jul 7 13:42:42 2016 +0100
Version: 0.3.3 (post-release increment)
NEWS | 3 +++
configure.ac | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
commit e4f381b200acf89ca593a956530273a8f1d2a7fc
Author: Colin Watson <cjwatson@debian.org>
Date: Thu Jul 7 13:37:50 2016 +0100
Release version 0.3.2.
NEWS | 12 ++++++++++++
telegnome.appdata.xml.in | 11 +++++++++++
2 files changed, 23 insertions(+)
commit d927d98849369fb94a3b839df52d1fa8191dc05e
Author: Colin Watson <cjwatson@debian.org>
Date: Wed Jul 6 02:19:16 2016 +0100
Migrate from intltool to Gettext
Current releases of Gettext can handle all our translation needs.
* .gitignore: Remove intltool-*.
* Makefile.am (SUBDIRS): Build the current directory first.
(EXTRA_DIST): Remove intltool-*.
(DISTCLEANFILES): Remove.
(@INTLTOOL_DESKTOP_RULE@, @INTLTOOL_XML_RULE@): Replace with open-coded
versions using msgfmt.
* autogen.sh: Remove calls to glib-gettextize and intltoolize.
* configure.ac (AM_GLIB_GNU_GETTEXT): Replace with ...
(AM_GNU_GETTEXT_VERSION, AM_GNU_GETTEXT): ... these.
(AM_GLIB_DEFINE_LOCALEDIR): Remove; the output variable is no longer
used.
(IT_PROG_INTLTOOL): Remove.
* po/.gitignore: Remove .intltool-merge-cache. Add remove-potcdate.sed.
Remove stamp-cat-id and stamp-it. Add stamp-po.
* po/Makevars: New file.
* po/POTFILES.in: Remove intltool-specific "[type: gettext/glade]"
annotations.
* po/POTFILES.skip: Remove.
* src/menus.ui, src/prefs.ui, src/telegnome.ui: Move copyright comment
after XML declaration.
* telegnome.appdata.xml.in, telegnome.desktop.in: Remove
intltool-specific underscore prefixes.
.gitignore | 3 ---
Makefile.am | 19 +++++++--------
autogen.sh | 2 --
configure.ac | 5 ++--
po/.gitignore | 5 ++--
po/Makevars | 63 ++++++++++++++++++++++++++++++++++++++++++++++++
po/POTFILES.in | 6 ++---
po/POTFILES.skip | 1 -
src/menus.ui | 3 ++-
src/prefs.ui | 3 ++-
src/telegnome.ui | 3 ++-
telegnome.appdata.xml.in | 8 +++---
telegnome.desktop.in | 4 +--
13 files changed, 91 insertions(+), 34 deletions(-)
commit d2aa8f7adc16cc2f66260079f7582cf24057c2ff
Author: Colin Watson <cjwatson@debian.org>
Date: Wed Jul 6 01:11:48 2016 +0100
Stop using deprecated ACLOCAL_AMFLAGS
Automake 1.13 can trace AC_CONFIG_MACRO_DIRS instead.
* configure.ac: Use AC_CONFIG_MACRO_DIRS rather than older
AC_CONFIG_MACRO_DIR. Require Automake 1.13.
* Makefile.am (ACLOCAL_AMFLAGS): Remove.
Makefile.am | 2 --
configure.ac | 4 ++--
2 files changed, 2 insertions(+), 4 deletions(-)
commit 391c7c1d6c2756f6eeac82dcc6315bb1dd63c9a6
Author: Colin Watson <cjwatson@debian.org>
Date: Wed Jul 6 01:01:54 2016 +0100
Port away from gnome-common (Debian bug #829851)
* autogen.sh: Replace with version from
https://wiki.gnome.org/Projects/GnomeCommon/Migration#autogen.sh, minus
the call to gtkdocize.
* configure.ac: Drop GNOME_COMMIT_INIT. Add
AX_REQUIRE_DEFINED (for YELP_HELP_INIT) and AX_IS_RELEASE. Replace
GNOME_DEBUG_CHECK with AX_CHECK_ENABLE_DEBUG. Replace
GNOME_COMPILE_WARNINGS with AX_COMPILER_FLAGS.
autogen.sh | 46 +++++++++++++++++++++++++++++++---------------
configure.ac | 8 +++++---
2 files changed, 36 insertions(+), 18 deletions(-)
commit 9bd8918570b3e3baaeda86b01a808b56602bb502
Author: Colin Watson <cjwatson@debian.org>
Date: Wed Jul 6 01:00:08 2016 +0100
* .gitignore: Remove gnome-doc-utils.make.
.gitignore | 1 -
1 file changed, 1 deletion(-)
commit 8fe1286be4c5b5ad8b709e210d4c63b87e4ecbdc
Author: Colin Watson <cjwatson@debian.org>
Date: Wed Jul 6 00:08:26 2016 +0100
Migrate from gnome-doc-utils to yelp-tools
* Makefile.am (EXTRA_DIST): Remove gnome-doc-utils.make.
(MAINTAINERCLEANFILES): Remove.
* configure.ac: Replace GNOME_DOC_INIT with YELP_HELP_INIT.
* doc/.gitignore: Remove *.omf. Add */*.stamp. Replace telegnome.xml
with index.docbook.
* doc/C/telegnome.xml: Rename to ...
* doc/C/index.docbook: ... this.
* doc/Makefile.am: Replace gnome-doc-utils.make inclusion with
@YELP_HELP_RULES@.
(dist-hook): Remove.
(DOC_MODULE): Rename to ...
(HELP_ID): ... this.
(HELP_FILES): New variable.
(DOC_LINGUAS): Rename to ...
(HELP_LINGUAS): ... this.
* doc/telegnome.omf.in: Remove.
* src/gui.vala (Gui.activate_help_contents): Change help target from
"ghelp:telegnome" to "help:telegnome".
Makefile.am | 3 ---
configure.ac | 2 +-
doc/.gitignore | 6 +++---
doc/C/{telegnome.xml => index.docbook} | 0
doc/Makefile.am | 8 ++++----
doc/telegnome.omf.in | 9 ---------
src/gui.vala | 2 +-
7 files changed, 9 insertions(+), 21 deletions(-)
commit 823966a76654d87af6dc202d5006369bc9545e2b
Author: Mario Blättermann <mario.blaettermann@gmail.com>
Date: Thu Jun 23 18:25:24 2016 +0000
Updated German translation
po/de.po | 47 ++++++++++++++++++++++++-----------------------
1 file changed, 24 insertions(+), 23 deletions(-)
commit 060ef50e95c75b23b4a45151cf5eed443e8ecdaf
Author: Marek Černocký <marek@manet.cz>
Date: Fri Jun 10 15:44:12 2016 +0200
Updated Czech translation
po/cs.po | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
commit 0b56a71378528df9eb23442213fb57f3824711eb
Author: Balázs Meskó <meskobalazs@gmail.com>
Date: Sat Apr 30 12:45:14 2016 +0000
Updated Hungarian translation
po/hu.po | 75 +++++++++++++++++++++++++++-------------------------------------
1 file changed, 32 insertions(+), 43 deletions(-)
commit 76232606fd05f44fcbb1d6b0c084e9d203175bec
Author: Piotr Drąg <piotrdrag@gmail.com>
Date: Sat Apr 23 14:12:59 2016 +0200
Updated Polish translation
po/pl.po | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
commit d188662ea4eaadf213c0e9aa0a114c442124c82d
Author: Rafael Fontenelle <rafaelff@gnome.org>
Date: Fri Apr 22 11:21:57 2016 +0000
Updated Brazilian Portuguese translation
po/pt_BR.po | 58 +++++++++++++++++++++++++++++++---------------------------
1 file changed, 31 insertions(+), 27 deletions(-)
commit 05b62c055f4a31c3a95ea136a47974d5601a51f0
Author: Anders Jonsson <anders.jonsson@norsjovallen.se>
Date: Fri Apr 22 10:36:44 2016 +0000
Updated Swedish translation
po/sv.po | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
commit 69f925541823f6ba6e44da762da59c4f61db977e
Author: Colin Watson <cjwatson@debian.org>
Date: Fri Apr 22 11:19:31 2016 +0100
Fix incorrect description of paging-enabled key
It's paging-interval, not interval. Reported by Anders Jonsson; fixes
SF bug #6.
data/org.gnome.telegnome.gschema.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 67f6030a28f7d3ec13f6bf860ab1a06799e6f13e
Author: Josef Andersson <josef.andersson@gmail.com>
Date: Thu Apr 21 21:54:24 2016 +0000
Updated Swedish translation
po/sv.po | 372 ++++++++++++++++++++++++++++++++++++++++++++-------------------
1 file changed, 261 insertions(+), 111 deletions(-)
commit fcab264bb62a01e51dea159f630f44dca9178a37
Author: Cédric Valmary <cvalmary@yahoo.fr>
Date: Mon Mar 21 18:32:58 2016 +0000
Added Occitan translation
po/LINGUAS | 1 +
po/oc.po | 319 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 320 insertions(+)
commit d2bae63331ace409d6469c005e7348e5f8a15f8c
Author: Marek Černocký <marek@manet.cz>
Date: Wed Mar 16 11:24:43 2016 +0100
Updated Czech translation
po/cs.po | 38 +++++++++++++++++++++-----------------
1 file changed, 21 insertions(+), 17 deletions(-)
commit 1df4f180dfe74ab0b0ef9191573aacd4e7c192e3
Author: Piotr Drąg <piotrdrag@gmail.com>
Date: Wed Mar 16 00:07:41 2016 +0100
Updated Polish translation
po/pl.po | 40 ++++++++++++++++++++++------------------
1 file changed, 22 insertions(+), 18 deletions(-)
commit 68a605bd073e4bbc80d9a2d13e40e56f15cef5a2
Author: Piotr Drąg <piotrdrag@gmail.com>
Date: Wed Mar 16 00:06:18 2016 +0100
Correct marking of translatable string
src/telegnome.ui | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 8a8216ae23f72834ce59377bd5001e1b2ef8d3c9
Author: Marek Černocký <marek@manet.cz>
Date: Mon Mar 14 10:50:08 2016 +0100
Updated Czech translation
po/cs.po | 326 +++++++++++++++++++++++++++++++++++++++++++++------------------
1 file changed, 233 insertions(+), 93 deletions(-)
commit 8e291574cab0ae581f8cd5e9b0c6083c09d5cf99
Author: Rafael Fontenelle <rffontenelle@gmail.com>
Date: Sat Mar 5 21:37:43 2016 +0000
Updated Brazilian Portuguese translation
po/pt_BR.po | 337 +++++++++++++++++++++++++++++++++++++++++++-----------------
1 file changed, 244 insertions(+), 93 deletions(-)
commit a2f5b3a84c3ddb90bd5afc1e3ebebf27393e1904
Author: Gábor Kelemen <kelemeng@openscope.org>
Date: Sat Mar 5 10:22:18 2016 +0000
Updated Hungarian translation
po/hu.po | 352 +++++++++++++++++++++++++++++++++++++++++++++------------------
1 file changed, 255 insertions(+), 97 deletions(-)
commit c5d413c5ca3214eeb1cac711816c172163bbca4a
Author: Yolanda Álvarez Pérez <yolandaa.alvarez.perez@gmail.com>
Date: Tue Feb 23 08:28:40 2016 +0000
Updated Spanish translation
po/es.po | 276 ++++++++++++++++++++++++++++++++++++++-------------------------
1 file changed, 165 insertions(+), 111 deletions(-)
commit 6303360e8e851966dd748484940c03584c7bf9d9
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date: Sun Feb 21 09:11:07 2016 +0100
Updated Serbian translation
po/sr.po | 356 +++++++++++++++++++++++++++++++++++++++++----------------
po/sr@latin.po | 356 +++++++++++++++++++++++++++++++++++++++++----------------
2 files changed, 514 insertions(+), 198 deletions(-)
commit b727478adc8530fddd1cc7d8a47b4170b5e65b83
Author: Piotr Drąg <piotrdrag@gmail.com>
Date: Sat Feb 20 15:35:04 2016 +0100
Updated Polish translation
po/pl.po | 114 +++++++++++++++++++++++++++++++--------------------------------
1 file changed, 57 insertions(+), 57 deletions(-)
commit b94c9a4f49ce4f77cd1d22e0be378385cb9decc7
Author: Colin Watson <cjwatson@debian.org>
Date: Sat Feb 20 02:52:57 2016 +0000
Version: 0.3.2 (post-release increment)
NEWS | 3 +++
configure.ac | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
commit 9ce816d141040de6291a3bd50ad73efe7f9a49d1
Author: Colin Watson <cjwatson@debian.org>
Date: Sat Feb 20 01:56:19 2016 +0000
Release version 0.3.1.
NEWS | 6 ++++++
telegnome.appdata.xml.in | 8 ++++++++
2 files changed, 14 insertions(+)
commit 9662274832f0f4a2067ece013d7726b612b4f986
Author: Mario Blättermann <mario.blaettermann@gmail.com>
Date: Thu Feb 18 21:03:02 2016 +0100
Updated German translation
po/de.po | 90 +++++++++++++++++++++++++++++++++++-----------------------------
1 file changed, 49 insertions(+), 41 deletions(-)
commit bc905ced9003d6b724e440c2b4be7dcf73537760
Author: Colin Watson <cjwatson@debian.org>
Date: Thu Feb 18 13:26:18 2016 +0000
Add AppStream metadata
* telegnome.appdata.xml.in: New file.
* Makefile.am (appstreamdir, appstream_in_files, appstream_DATA):
New variables. Use @INTLTOOL_XML_RULE@.
(EXTRA_DIST): Replace $(srcdir)/telegnome.desktop.in with
$(apps_in_files) $(appstream_in_files).
(CLEANFILES): Replace telegnome.desktop with $(apps_DATA)
$(appstream_DATA).
* po/POTFILES.in: Add telegnome.appdata.xml.
* .gitignore: Add telegnome.appdata.xml.
.gitignore | 1 +
Makefile.am | 12 ++++++++---
po/POTFILES.in | 1 +
telegnome.appdata.xml.in | 55 ++++++++++++++++++++++++++++++++++++++++++++++++
4 files changed, 66 insertions(+), 3 deletions(-)
commit aee9ea3ab9ed1da9d26483787d45a9ce20babdcb
Author: Colin Watson <cjwatson@debian.org>
Date: Thu Feb 18 12:55:53 2016 +0000
Actually install icons
* pixmaps/telegnome-icon.png: Rename to ...
* pixmaps/telegnome-icon-48x48.png: ... this.
* pixmaps/telegnome-icon-64x64.png: New file, unfortunately just
resized from the 48x48 version since I don't have anything like an
SVG source file. This is enough to satisfy AppStream without
suffering too badly from resizing.
* pixmaps/Makefile.am: Install icons to $(datadir)/icons/hicolor/.
pixmaps/Makefile.am | 38 ++++++++++++++++++++-
...telegnome-icon.png => telegnome-icon-48x48.png} | Bin
pixmaps/telegnome-icon-64x64.png | Bin 0 -> 6523 bytes
3 files changed, 37 insertions(+), 1 deletion(-)
commit 5ea893edc73ec7b72dc23e422860c52530b2cf75
Author: Colin Watson <cjwatson@debian.org>
Date: Mon Feb 15 23:30:27 2016 +0000
Version: 0.3.1 (post-release increment)
NEWS | 3 +++
configure.ac | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
commit 37e3ac9a22dc7db0a97bbaa6edfafa40bd652afb
Author: Colin Watson <cjwatson@debian.org>
Date: Mon Feb 15 14:18:07 2016 +0000
Release version 0.3.0.
NEWS | 6 ++++++
1 file changed, 6 insertions(+)
commit 4ea4ce58266bcd3d7fa8ef6e345ed252b75ea169
Author: Colin Watson <cjwatson@debian.org>
Date: Mon Feb 15 14:12:37 2016 +0000
* README: valac is only required to rebuild C files.
README | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
commit d4c4a95f5a74d4397a8c55dee39541eea1a72283
Author: Colin Watson <cjwatson@debian.org>
Date: Mon Feb 15 14:09:01 2016 +0000
Fix distcheck
* src/paths.vala.in: Rename to ...
* src/paths.c.in: ... this, translated to C. (This is needed so
that builds from tarballs do not require valac.)
* src/paths.h, src/paths.vapi: New files.
* src/Makefile.am (telegnome_SOURCES): Replace paths.vala with
paths.h and paths.vapi.
(telegnome_built): Add paths.c.
(CLEANFILES): Remove *.c.
(paths.vala): Replace with similar rule producing paths.c.
(EXTRA_DIST): Add default-channels.cfg and paths.c.in.
* src/.gitignore: Replace paths.vala with paths.c.
* po/POTFILES.skip: New file, listing src/gui.c.
po/POTFILES.skip | 1 +
src/.gitignore | 2 +-
src/Makefile.am | 21 ++++++++-------------
src/{paths.vala.in => paths.c.in} | 8 ++------
src/paths.h | 23 +++++++++++++++++++++++
src/paths.vapi | 26 ++++++++++++++++++++++++++
6 files changed, 61 insertions(+), 20 deletions(-)
commit 16e8d9f1f50663c3372085f6eb7bf1501bb4594e
Author: Colin Watson <cjwatson@debian.org>
Date: Mon Feb 15 13:37:00 2016 +0000
Version: 0.3.0 (belated post-release increment)
NEWS | 3 +++
configure.ac | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
commit 1ecc75bc261f0cfdfbcaccea500bc86a7ca5654b
Author: Colin Watson <cjwatson@debian.org>
Date: Mon Feb 15 13:34:29 2016 +0000
Remove obsolete bug listing
* BUGS: Remove file.
* Makefile.am (EXTRA_DIST): Remove BUGS.
BUGS | 7 -------
Makefile.am | 1 -
2 files changed, 8 deletions(-)
commit a99a9a39374ae09b18da55aba1bd8c20448d0407
Author: Colin Watson <cjwatson@debian.org>
Date: Mon Feb 15 13:31:21 2016 +0000
Move default channel list into a separate file
* src/default-channels.cfg: New file.
* src/telegnome.gresource.xml: Add default-channels.cfg.
* src/gui.vala (Gui.get_default_channel_value): New method.
(Gui.reload_channels): Read default channels from resource.
src/default-channels.cfg | 61 ++++++++++++++++++++++++++
src/gui.vala | 102 ++++++++++++++++++++------------------------
src/telegnome.gresource.xml | 1 +
3 files changed, 109 insertions(+), 55 deletions(-)
commit 4acc73ad94bdd094e961a07e11468ad50b0a8dac
Author: Colin Watson <cjwatson@debian.org>
Date: Mon Feb 15 12:06:23 2016 +0000
Translate to Vala
* src/app.c, src/app.h: Translate to ...
* src/app.vala: ... this.
* src/channel.c, src/channel.h: Translate to ...
* src/channel.vala: ... this.
* src/gui.c, src/gui.h: Translate to ...
* src/gui.vala: ... this.
* src/http.c, src/http.h: Translate to ...
* src/http.vala: ... this.
* src/legacy-config.c, src/legacy-config.h: Translate to ...
* src/legacy-config.vala: ... this.
* src/main.c, src/main.h: Translate to ...
* src/main.vala: ... this.
* src/paths.vala.in: New file.
* src/pixpack.c, src/pixpack.h: Translate to ...
* src/pixpack.vala: ... this.
* src/prefs.c, src/prefs.h: Translate to ...
* src/prefs.vala: ... this.
* src/uuid.vapi: New file, downloaded from
<https://git.gnome.org/browse/vala-extra-vapis/plain/uuid.vapi>.
* src/prefs.ui, src/telegnome.ui: Remove signal connections; these
are now made in code instead, partly to separate code from
presentation and partly because this makes it easier to ensure we
connect them to methods on the correct objects.
* src/Makefile.am (AM_CPPFLAGS): Add -include
$(top_builddir)/config.h. Move *_CFLAGS to ...
(AM_CFLAGS): ... here. Add $(VALA_CFLAGS).
(AM_VALAFLAGS): Add.
(telegnome_SOURCES): Replace with Vala source files.
(CLEANFILES): Add generated C files.
(paths.vala): New rule.
* configure.ac: Test for src/main.vala rather than src/main.c. Test
for valac.
* autogen.sh: Test for src/main.vala rather than src/gui.c.
* po/POTFILES.in: Replace src/gui.c with src/gui.vala.
* README: Document new valac requirement.
* src/.gitignore: Add *.c, paths.vala, and telegnome_vala.stamp*.
README | 1 +
autogen.sh | 2 +-
configure.ac | 4 +-
po/POTFILES.in | 2 +-
src/.gitignore | 3 +
src/Makefile.am | 52 ++-
src/app.c | 91 -----
src/app.h | 42 ---
src/app.vala | 89 +++++
src/channel.c | 269 --------------
src/channel.h | 48 ---
src/channel.vala | 82 +++++
src/gui.c | 928 -------------------------------------------------
src/gui.h | 83 -----
src/gui.vala | 557 +++++++++++++++++++++++++++++
src/http.c | 177 ----------
src/http.h | 44 ---
src/http.vala | 105 ++++++
src/legacy-config.c | 209 -----------
src/legacy-config.h | 37 --
src/legacy-config.vala | 150 ++++++++
src/main.c | 45 ---
src/main.h | 51 ---
src/main.vala | 29 ++
src/paths.vala.in | 32 ++
src/pixpack.c | 257 --------------
src/pixpack.h | 44 ---
src/pixpack.vala | 110 ++++++
src/prefs.c | 406 ----------------------
src/prefs.h | 39 ---
src/prefs.ui | 20 +-
src/prefs.vala | 270 ++++++++++++++
src/telegnome.ui | 17 +-
src/uuid.vapi | 65 ++++
34 files changed, 1542 insertions(+), 2818 deletions(-)
commit b9d7c1dd33c7215629a927101395bea6b6a33e11
Author: Guido Trentalancia <guido@trentalancia.net>
Date: Sun Feb 7 15:51:29 2016 +0100
Add Italian teletext channel
* po/it.po: Update some translations.
* src/gui.c (tg_gui_reload_channels): Add the main Italian teletext
channel.
po/it.po | 10 +++++-----
src/gui.c | 12 +++++++++++-
2 files changed, 16 insertions(+), 6 deletions(-)
commit 2ca11655643c702013fed9704ea83e6a3dd9703b
Author: Mario Blättermann <mario.blaettermann@gmail.com>
Date: Mon Feb 8 22:19:39 2016 +0100
Updated German translation
po/de.po | 248 ++++++++++++++++++++++++++++++++-------------------------------
1 file changed, 127 insertions(+), 121 deletions(-)
commit a739511d5f89ba7684b1e299cbac26e0b4becae5
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date: Sun Feb 7 13:21:11 2016 +0100
Updated Spanish translation
po/es.po | 265 ++++++++++++++++++++++++++++++++++++++++++++-------------------
1 file changed, 187 insertions(+), 78 deletions(-)
commit 56c296ef75021699c0c297145f3f3ee50f247b83
Author: Colin Watson <cjwatson@debian.org>
Date: Sat Feb 6 23:29:33 2016 +0000
Release version 0.2.1.
NEWS | 3 +++
1 file changed, 3 insertions(+)
commit c050d18ed9f74db795960c0f841a237e730440b7
Author: Colin Watson <cjwatson@debian.org>
Date: Sat Feb 6 19:03:28 2016 +0000
Finish porting channel edit dialog to GtkBuilder
* src/prefs.c (tg_prefs_edit_channel): Use GtkBuilder rather than
manual widget construction code. Hide dialog rather than destroying
it.
(tg_prefs_show): Store pointers to various built objects needed by
tg_prefs_edit_channel.
* po/POTFILES.in: Remove src/prefs.c.
po/POTFILES.in | 1 -
src/prefs.c | 104 ++++++++++++++++++++++++---------------------------------
2 files changed, 43 insertions(+), 62 deletions(-)
commit fd4a56908d74a2ab71f16cac92c5f0eda847c2bf
Author: Colin Watson <cjwatson@debian.org>
Date: Sat Feb 6 18:31:14 2016 +0000
* po/POTFILES.in: Add src/prefs.ui.
po/POTFILES.in | 1 +
1 file changed, 1 insertion(+)
commit f1dd87064cbf4c8ceb909b7aaffe36570043cf7d
Author: Colin Watson <cjwatson@debian.org>
Date: Sat Feb 6 18:28:01 2016 +0000
Port prefs widget construction code to GtkBuilder
* src/gui.c (tg_gui_new): Rename TG_UI_RESOURCE to TG_MAIN_UI.
* src/main.h (TG_UI_RESOURCE): Rename to ...
(TG_MAIN_UI): ... this.
(TG_PREFS_UI): New definition.
* src/prefs.c (tg_prefs_fill_channel_list): Remove any old rows from
the store.
(tg_prefs_response_cb, tg_prefs_construct_misc_page,
tg_prefs_construct_channels_page): Remove.
(tg_prefs_show): Use GtkBuilder rather than manual widget
construction code. Take a TgGui parameter rather than a GtkWindow.
Update all callers.
* src/prefs.h (tg_prefs_show): Update prototype.
* src/prefs.ui: New file.
* src/telegnome.gresource.xml: Add prefs.ui.
* src/Makefile.am (EXTRA_DIST): Add prefs.ui.
* configure.ac (PKG_CHECK_MODULES): Require gtk+-3.0 >= 3.8 for
gtk_builder_expose_object.
* README: Update GTK+ requirement.
README | 2 +-
configure.ac | 2 +-
src/Makefile.am | 1 +
src/gui.c | 5 +-
src/main.h | 3 +-
src/prefs.c | 202 ++++++-------------------
src/prefs.h | 4 +-
src/prefs.ui | 350 ++++++++++++++++++++++++++++++++++++++++++++
src/telegnome.gresource.xml | 1 +
9 files changed, 406 insertions(+), 164 deletions(-)
commit dd5580444bbe58481ba24811047d5babd47640aa
Author: Piotr Drąg <piotrdrag@gmail.com>
Date: Sat Feb 6 17:54:04 2016 +0100
Updated Polish translation
po/pl.po | 174 +++++++++++++++++++++++++++++++++------------------------------
1 file changed, 92 insertions(+), 82 deletions(-)
commit 481e29335118980485e94ec2a12cf0b2551d96e0
Author: Colin Watson <cjwatson@debian.org>
Date: Sat Feb 6 14:34:56 2016 +0000
Fix distcheck
* src/Makefile.am (CLEANFILES): Add $(telegnome_built).
(EXTRA_DIST): Add menus.ui, telegnome.gresource.xml, and
telegnome.ui.
src/Makefile.am | 6 ++++++
1 file changed, 6 insertions(+)
commit 879454ebabe884b5c70ef8ca5545260ce3219242
Author: Colin Watson <cjwatson@debian.org>
Date: Sat Feb 6 14:33:37 2016 +0000
* po/POTFILES.in: Add src/telegnome.ui.
po/POTFILES.in | 1 +
1 file changed, 1 insertion(+)
commit 7c5e2cc05de93e55590bbaf3da2ab650b3bc0bb6
Author: Colin Watson <cjwatson@debian.org>
Date: Sat Feb 6 14:19:16 2016 +0000
Port widget construction code to GtkBuilder
* src/gui.c (tg_gui_new_entry, tg_gui_new_toolbar): Remove.
(tg_gui_finalize): Clear gui->builder.
(tg_gui_new, tg_gui_activate_about): Use GtkBuilder rather than
manual widget construction code.
(tg_gui_cb_zoom): Remove.
* src/gui.h (tg_gui_cb_zoom): Remove.
* src/main.h (TG_UI_RESOURCE): New definition.
* src/telegnome.gresource.xml: Add telegnome.ui.
* src/telegnome.ui: New file.
NEWS | 1 +
src/gui.c | 256 ++++++--------------------------------------
src/gui.h | 1 -
src/main.h | 1 +
src/telegnome.gresource.xml | 1 +
src/telegnome.ui | 164 ++++++++++++++++++++++++++++
6 files changed, 202 insertions(+), 222 deletions(-)
commit e95454449ca891bd822f94c2abeaa8a7c71cfd09
Author: Colin Watson <cjwatson@debian.org>
Date: Sat Feb 6 12:42:54 2016 +0000
Improve pixpack object layout
* src/pixpack.c: Rename TgPixPack to TgPixpack throughout to match
the underscore-separation of the lower-case version. Restructure as
a final type so that we no longer need a separate private structure.
(tg_pixpack_class_init): Add get_property and set_property methods.
Install an "autosize" property.
(tg_pixpack_get_property, tg_pixpack_set_property): New functions.
(tg_pixpack_set_autosize, tg_pixpack_get_autosize): Remove.
* src/pixpack.h: Simplify using G_DECLARE_FINAL_TYPE.
(tg_pixpack_set_autosize): Remove prototype.
* src/gui.c (tg_gui_new): Set the "autosize" property on
gui->pixpack rather than calling tg_pixpack_set_autosize.
src/gui.c | 2 +-
src/pixpack.c | 188 ++++++++++++++++++++++++++++------------------------------
src/pixpack.h | 41 +++----------
3 files changed, 101 insertions(+), 130 deletions(-)
commit 643582612f32ee5742c9ef33712b22b675df694a
Author: Colin Watson <cjwatson@debian.org>
Date: Sat Feb 6 11:57:39 2016 +0000
Merge view.c into gui.c
TgView wasn't pulling its weight as a separate object from TgGui,
and its presence complicated a port to GtkBuilder. Support for
multiple views is unlikely to happen, but if it ever does it will
probably be easier to redesign this from scratch.
* po/POTFILES.in: Remove src/view.c.
* src/Makefile.am (telegnome_SOURCES): Remove view.c and view.h.
* src/gui.c (struct _TgGui): Rename current_channel to
current_channel_uuid. Incorporate elements from TgView. Update all
users of both.
(tg_gui_update_pixmap, tg_gui_update_page): Add, moved from
equivalents in view.c with adjustments. Update all callers.
(tg_gui_new): Create gui->pixpack directly rather than via
tg_view_new.
* src/gui.h: Stop including "view.h".
* src/http.c (tg_http_get_page_entry): Add gui parameter and set
current page/subpage numbers there. Update all callers.
(tg_http_get_query): Make static. Add channel parameter rather than
fetching it from the currentview global variable. Update all
callers.
(tg_http_get_image): Add gui and channel parameters rather than
fetching information from currentview. Update all callers.
* src/http.h (tg_http_get_page_entry, tg_http_get_image): Update
prototypes.
(tg_http_get_query): Remove prototype.
* src/main.h (currentview): Remove.
* src/view.c, src/view.h: Remove.
po/POTFILES.in | 1 -
src/Makefile.am | 2 -
src/gui.c | 210 +++++++++++++++++++++++++++++++++++++++-----------------
src/gui.h | 1 -
src/http.c | 65 +++++++++++-------
src/http.h | 10 +--
src/main.h | 15 ----
src/view.c | 158 ------------------------------------------
src/view.h | 55 ---------------
9 files changed, 190 insertions(+), 327 deletions(-)
commit 6d1bffd8d76d9013e1bfd583adcbc6679fc217f8
Author: Colin Watson <cjwatson@debian.org>
Date: Sat Feb 6 02:57:37 2016 +0000
* README: Update compilation requirements.
README | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
commit 63d5a25be2aa32a28a74221306ab99f89b0a3054
Author: Colin Watson <cjwatson@debian.org>
Date: Sat Feb 6 02:52:13 2016 +0000
* src/channel.c: Stop including <glib/gi18n.h>.
src/channel.c | 1 -
1 file changed, 1 deletion(-)
commit b25b9014a56920823af766e5af8e997e06d68c99
Author: Colin Watson <cjwatson@debian.org>
Date: Sat Feb 6 02:31:30 2016 +0000
Port menu action handling to GAction/GMenu
* po/POTFILES.in: Replace src/menu.h with src/menus.ui.
* src/Makefile.am (telegnome_SOURCES): Remove menu.h.
* src/app.c (app_entries): New structure.
(tg_app_startup): New function.
(tg_app_class_init): Add startup method.
* src/gui.c (struct _TgGui): Change channel_menu to GMenu *.
(tg_gui_channel_menu_item_activate): Rename to ...
(tg_gui_change_state_set_channel): ... this, now a GSimpleAction
method.
(tg_gui_populate_channel_menu): Populate a GMenu instead of a
GtkMenu.
(tg_gui_new): Drop manual action and menu setup, now handled
automatically by GtkApplication. Get channel_menu from
GtkApplication. Drop manual handling of delete-event.
(tg_gui_cb_quit): Rename to ...
(tg_gui_activate_quit): ... this, now a GSimpleAction method.
(tg_gui_cb_help_contents): Rename to ...
(tg_gui_activate_help_contents): ... this, now a GSimpleAction
method.
(tg_gui_cb_about): Rename to ...
(tg_gui_activate_about): ... this, now a GSimpleAction method.
(tg_gui_cb_preferences): Rename to ...
(tg_gui_activate_preferences): ... this, now a GSimpleAction method.
* src/gui.h: Update prototypes.
* src/main.h (TG_MENU_XML): Remove.
* src/menu.h, src/menu.xml: Remove.
* src/menus.ui: New file.
* src/telegnome.gresource.xml: Remove menu.xml. Add menus.ui.
NEWS | 1 +
po/POTFILES.in | 2 +-
src/Makefile.am | 1 -
src/app.c | 19 +++++++++
src/gui.c | 99 +++++++++++++--------------------------------
src/gui.h | 14 +++++--
src/main.h | 1 -
src/menu.h | 34 ----------------
src/menu.xml | 15 -------
src/menus.ui | 54 +++++++++++++++++++++++++
src/telegnome.gresource.xml | 2 +-
11 files changed, 114 insertions(+), 128 deletions(-)
commit ec43090570f1098d2f0ddae41acd34df514a2fb3
Author: Piotr Drąg <piotrdrag@gmail.com>
Date: Thu Feb 4 12:33:31 2016 +0100
Updated Polish translation
po/pl.po | 146 ++++++++++++++++++++++++++++++++++++---------------------------
1 file changed, 84 insertions(+), 62 deletions(-)
commit 72e84d34c47e04c6e68fa2d4bfe7015d2e28b210
Author: Piotr Drąg <piotrdrag@gmail.com>
Date: Thu Feb 4 12:32:28 2016 +0100
Updated POTFILES.in
po/POTFILES.in | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
commit 33f313519752296b17e09e79ae50389c62c3fbc9
Author: Piotr Drąg <piotrdrag@gmail.com>
Date: Thu Feb 4 12:28:16 2016 +0100
Don't translate properties
They are not visible in the UI.
src/channel.c | 10 +++++-----
src/gui.c | 4 ++--
2 files changed, 7 insertions(+), 7 deletions(-)
commit 8a7f4e3cca517c42c16a17665b40c2c2ac61daa9
Author: Piotr Drąg <piotrdrag@gmail.com>
Date: Thu Feb 4 12:26:19 2016 +0100
Fix URL spelling
src/channel.c | 4 ++--
src/prefs.c | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
commit d4971c1f913765783dfd7f1c2af9b794e8f0c0e1
Author: Piotr Drąg <piotrdrag@gmail.com>
Date: Thu Feb 4 12:21:37 2016 +0100
Mark string for translation
src/gui.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit a10d5356375deb5c81ccf1e672a7600188f1c261
Author: Mario Blättermann <mario.blaettermann@gmail.com>
Date: Wed Feb 3 21:09:07 2016 +0100
Updated German translation
po/de.po | 98 +++++++++++++++++++++++++++++++++++++++++-----------------------
1 file changed, 63 insertions(+), 35 deletions(-)
commit fd04a45963dc679ce1b70ad865e4e248702a9329
Author: Colin Watson <cjwatson@debian.org>
Date: Wed Feb 3 04:13:08 2016 +0000
Enable silent rules if available
* configure.ac: Use silent rules by default if Automake 1.11 is
available.
configure.ac | 1 +
1 file changed, 1 insertion(+)
commit bf2f5c592d1eea9b99c016ea13a77780ffe6d89f
Author: Colin Watson <cjwatson@debian.org>
Date: Wed Feb 3 04:10:54 2016 +0000
Basic port to GtkApplication
* src/app.c: New file.
* src/app.h: Likewise.
* src/gui.c (tg_gui_new): Drop unimplemented startpage parameter.
Construct a GtkApplicationWindow for the current GtkApplication.
(tg_gui_cb_quit): Be more robust against being called more than
once. Call g_application_quit rather than gtk_main_quit.
* src/gui.h (tg_gui_new): Update prototype.
* src/main.c (main): Initialise localisation using GETTEXT_PACKAGE
rather than PACKAGE (currently synonymous but a better semantic
fit). Call bind_textdomain_codeset to ensure that GLib always gets
UTF-8 strings. Replace settings and GUI setup with tg_app_new and
g_application_run; TgApp handles all this now.
* src/Makefile.am (telegnome_SOURCES): Add app.c and app.h.
NEWS | 1 +
src/Makefile.am | 2 ++
src/app.c | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
src/app.h | 42 +++++++++++++++++++++++++++++++++
src/gui.c | 10 ++++----
src/gui.h | 2 +-
src/main.c | 36 ++++-------------------------
7 files changed, 128 insertions(+), 37 deletions(-)
commit 33e56d0902a9dd19eeb504db70d435e7cc6cb05e
Author: Colin Watson <cjwatson@debian.org>
Date: Wed Feb 3 02:25:03 2016 +0000
Port to GTK+ 3
* configure.ac (PKG_CHECK_MODULES): Replace gtk+-2.0 with gtk+-3.0.
Bump cairo requirement to >= 1.10.
* src/gui.c (tg_gui_print_in_statusbar): Call
gtk_entry_set_width_chars. Drop call to
gtk_widget_set_size_request.
(tg_gui_new_toolbar): Port to GtkGrid. Don't use stock items.
(tg_gui_new): Port to GtkGrid.
(tg_cb_keypress): Test against GDK_KEY_KP_Enter rather than
GDK_KP_Enter.
* src/pixpack.c (tg_pixpack_class_init): Set destroy method on
GtkWidgetClass rather than GtkObjectClass. Set draw method rather
than expose_event method.
(tg_pixpack_destroy): Take a GtkWidget parameter rather than
GtkObject.
(tg_pixpack_realize): Drop calls to gtk_widget_get_colormap,
gtk_widget_style_attach, and gtk_style_set_background.
(tg_pixpack_paint): Rename to ...
(tg_pixpack_draw): ... this. Adjust for differing draw method
interface.
(tg_pixpack_expose): Remove; folded directly into tg_pixpack_draw.
* src/prefs.c (tg_prefs_edit_channel): Port to GtkGrid. Use
xalign/yalign properties on GtkLabel rather than
gtk_misc_set_alignment. Don't use stock items.
(tg_prefs_construct_misc_page, tg_prefs_construct_channels_page):
Port to GtkGrid.
(tg_prefs_show): Don't use stock items.
* src/view.c (tg_view_new): Drop unnecessary GtkVBox container.
(tg_view_get_widget): Return the pixpack rather than the now-removed
box.
(tg_view_free): Clear the pixpack rather than the now-removed box.
* src/view.h (struct _TgView): Remove box element.
NEWS | 1 +
configure.ac | 2 +-
src/gui.c | 95 ++++++++++++++++++++++++++----------------------
src/pixpack.c | 79 ++++++++++++++++------------------------
src/prefs.c | 113 ++++++++++++++++++++++++++++++----------------------------
src/view.c | 10 ++----
src/view.h | 3 --
7 files changed, 145 insertions(+), 158 deletions(-)
commit 32b98b2d5ec143ba80b5ee21bd015a560e0bc38f
Author: Mario Blättermann <mario.blaettermann@gmail.com>
Date: Tue Feb 2 21:39:46 2016 +0100
Updated German translation
po/de.po | 124 +++++++++++++++++++++++++++++++++++----------------------------
1 file changed, 69 insertions(+), 55 deletions(-)
commit aa97eac56706a23aa0071e993a506f80ee63eaaa
Author: Piotr Drąg <piotrdrag@gmail.com>
Date: Tue Feb 2 18:10:30 2016 +0100
Updated Polish translation
po/pl.po | 103 +++++++++++++++++++++++++++++++++++----------------------------
1 file changed, 58 insertions(+), 45 deletions(-)
commit a5469a51051f7d2e4760f100e1f12225026c2624
Author: Colin Watson <cjwatson@debian.org>
Date: Tue Feb 2 13:09:16 2016 +0000
Remove useless is_resize handling in TgPixPack
The size_request method was an obstacle to porting to GTK+ 3. We
can just always call cairo_scale (possibly as a no-op) instead.
* src/pixpack.c (tg_pixpack_class_init): Don't set
widget_class->size_request.
(tg_pixpack_init): Remove is_resize.
(tg_pixpack_paint): Likewise. Always use the requested area.
(tg_pixpack_size_request): Remove.
src/pixpack.c | 29 -----------------------------
1 file changed, 29 deletions(-)
commit d598a46fe9ebb65d0911d3d961a1791cc514940e
Author: Colin Watson <cjwatson@debian.org>
Date: Tue Feb 2 13:02:13 2016 +0000
Use gdk_cairo_rectangle
* src/pixpack.c (tg_pixpack_paint): Abbreviate slightly using
gdk_cairo_rectangle.
src/pixpack.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 1796ff78efac478a989150bda7b4aec492f503d9
Author: Colin Watson <cjwatson@debian.org>
Date: Tue Feb 2 12:59:04 2016 +0000
Slight adjustment to Cairo conversion
* src/pixpack.c (tg_pixpack_paint): Tweak
gdk_cairo_set_source_pixbuf arguments to be more faithful to the
previous pre-Cairo code.
src/pixpack.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 6bb4fe467e24cb38350e9a92fd78918173df4938
Author: Colin Watson <cjwatson@debian.org>
Date: Tue Feb 2 12:53:24 2016 +0000
Port from GdkDrawable to Cairo
* src/pixpack.c (tg_pixpack_init): Remove priv->scaled_pixbuf.
(tg_pixpack_destroy): Likewise.
(tg_pixpack_paint): Likewise. Use Cairo functions for clipping,
scaling, and painting.
* configure.ac (PKG_CHECK_MODULES): Add cairo.
NEWS | 1 +
configure.ac | 2 +-
src/pixpack.c | 32 +++++++++++++++-----------------
3 files changed, 17 insertions(+), 18 deletions(-)
commit 97db9a5e5ae2ef94b9d26aee0a626084c30ce4ff
Author: Colin Watson <cjwatson@debian.org>
Date: Tue Feb 2 12:20:45 2016 +0000
Avoid deprecated gtk_widget_set_usize
* src/gui.c (tg_gui_new_entry): Use gtk_widget_set_size_request
rather than gtk_widget_set_usize.
* src/pixpack.c (tg_pixpack_load_image): Likewise.
* src/view.c (tg_view_update_pixmap): Likewise.
src/gui.c | 9 +++++----
src/pixpack.c | 6 +++---
src/view.c | 2 +-
3 files changed, 9 insertions(+), 8 deletions(-)
commit 1880a9feb01e59f7bd061e417dd41a85342542b2
Author: Colin Watson <cjwatson@debian.org>
Date: Tue Feb 2 12:14:58 2016 +0000
Port to new (as of GTK+ 2.4) GtkToolbar API
* src/gui.c (tg_gui_new_toolbar): Use new toolbar API.
(tg_gui_new): Adjust commented-out handling of zoom button label and
state.
(tg_gui_cb_zoom): Adjust handling of zoom button label.
NEWS | 1 +
src/gui.c | 103 ++++++++++++++++++++++++++++++--------------------------------
2 files changed, 51 insertions(+), 53 deletions(-)
commit b7ec1064d1fdc398659ba0999fd41b0b38db6f1d
Author: Colin Watson <cjwatson@debian.org>
Date: Tue Feb 2 11:37:28 2016 +0000
Avoid deprecated gtk_box_pack_start_defaults
* src/prefs.c (tg_prefs_construct_channels_page): Use
gtk_box_pack_start rather than gtk_box_pack_start_defaults.
* src/view.c (tg_view_new): Likewise.
src/prefs.c | 2 +-
src/view.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
commit 7f668435323eb73e2d98c91923c34fdc82a90408
Author: Colin Watson <cjwatson@debian.org>
Date: Tue Feb 2 11:34:51 2016 +0000
Remove unnecessary uses of gdk_rgb_*
* src/pixpack.c (tg_pixpack_new): Don't call gdk_rgb_set_verbose or
gdk_rgb_init; they're deprecated and are not very useful.
src/pixpack.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
commit 7675834576a7cba1af19dd791dc70953251f105e
Author: Colin Watson <cjwatson@debian.org>
Date: Tue Feb 2 11:30:09 2016 +0000
Remove leftover use of GtkType
* src/pixpack.c (tg_pixpack_new): Use g_object_new rather than
gtk_type_new.
src/pixpack.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit cd15c8b9a47094bfc2a8192335000109d3924372
Author: Colin Watson <cjwatson@debian.org>
Date: Tue Feb 2 11:22:01 2016 +0000
Port from GtkCList to GtkTreeView and friends
* src/prefs.c (tg_prefs_fill_channel_list): Fill a GtkListStore
rather than a GtkCList.
(tg_prefs_response_cb): Clear prefs_window->channel_store.
(tg_prefs_channel_list_click_cb): Rename to ...
(tg_prefs_channel_selection_changed_cb): ... this. Fetch
description from a GtkListStore rather than a GtkCList.
(tg_prefs_sync_channel_children): Likewise.
(tg_prefs_channel_add_cb): Modify a GtkListStore rather than a
GtkCList.
(tg_prefs_channel_move_up_cb): Likewise. (Requires care because
iterating backwards in a GtkTreeModel is hard.)
(tg_prefs_channel_move_down_cb, tg_prefs_channel_edit_cb,
tg_prefs_channel_delete_cb): Likewise.
(tg_prefs_construct_channels_page): Construct a
GtkListStore/GtkTreeView rather than a GtkCList.
NEWS | 1 +
src/prefs.c | 231 +++++++++++++++++++++++++++++++++++++++---------------------
2 files changed, 152 insertions(+), 80 deletions(-)
commit ff2c29ce0995dd7deb01e16e657d59da31130895
Author: Colin Watson <cjwatson@debian.org>
Date: Tue Feb 2 04:51:21 2016 +0000
* po/POTFILES.in: Replace src/menu.xml with src/menu.h.
po/POTFILES.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 738c43366faf20f411336f9eafb014380ff4936c
Author: Colin Watson <cjwatson@debian.org>
Date: Tue Feb 2 04:41:56 2016 +0000
Port from gtk_timeout_* to GLib equivalents
* src/gui.c (tg_gui_logo_timer, tg_gui_cb_toggle_paging,
tg_gui_get_the_page, tg_gui_refresh_timer, tg_gui_keyboard_timer,
tg_cb_keypress): Replace gtk_timeout_remove with g_source_remove.
(tg_gui_cb_toggle_paging, tg_gui_new, tg_gui_refresh_timer,
tg_cb_keypress): Replace gtk_timeout_add with g_timeout_add.
NEWS | 1 +
src/gui.c | 24 ++++++++++++------------
2 files changed, 13 insertions(+), 12 deletions(-)
commit 88af03391c7079c496d875266a457e68c104bf06
Author: Colin Watson <cjwatson@debian.org>
Date: Tue Feb 2 04:35:13 2016 +0000
Port from libgnome and libgnomeui
* src/gui.c (tg_gui_create_channel_menu): Rename to ...
(tg_gui_populate_channel_menu): ... this. Repopulate an existing
menu rather than creating a new one.
(tg_gui_refresh_channel_menu): Likewise.
(tg_gui_print_in_statusbar): Adjust for GtkStatusbar. Accept a NULL
parameter to indicate a request to clear the status bar.
(tg_gui_new): Build user interface using GtkUIManager rather than
GnomeApp. Adjust users of various interface elements elsewhere.
Get the logo from a resource rather than using GnomeProgram to get
it from the file system.
(tg_gui_get_app): Rename to ...
(tg_gui_get_window): ... this. Adjust caller.
(tg_gui_cb_help_contents): New function.
* src/gui.h (tg_gui_cb_help_contents): New prototype.
(tg_gui_get_app): Rename to ...
(tg_gui_get_window): ... this.
* src/http.c: Include <stdlib.h>.
* src/main.c: Include <libintl.h>.
(main): Call gtk_init rather than gnome_program_init.
* src/main.h (TG_MENU_XML): New definition.
(TG_NOTFOUND_PIXMAP, TG_LOGO_PIXMAP): Change to refer to resource
paths rather than relative file paths.
* src/menu.h: Rewrite using GtkActionEntry.
* src/menu.xml: New file.
* src/telegnome.gresource.xml: New file.
* src/view.c (tg_view_update_page): Get the not-found image from a
resource rather than using GnomeProgram to get it from the file
system.
* configure.ac: Use AM_PATH_GLIB_2_0. Remove libgnomeui-2.0.
Require gdk-pixbuf-2.0 >= 2.26. Check for xmllint.
* pixmaps/Makefile.am (pixmapdir, pixmap_DATA): Remove; images are
now built into the binary as resources instead.
* src/Makefile.am (AM_CPPFLAGS): Add $(GLIB_CFLAGS).
(telegnome_built, BUILT_SOURCES, nodist_telegnome_SOURCES): New
variables.
(resources.c, resources.h): Build from telegnome.gresource.xml.
(telegnome_LDADD): Add $(GLIB_LIBS).
* src/.gitignore: Add resources.c and resources.h.
* po/POTFILES.in: Add src/menu.xml.
NEWS | 2 +
configure.ac | 9 +-
pixmaps/Makefile.am | 4 -
po/POTFILES.in | 1 +
src/.gitignore | 2 +
src/Makefile.am | 18 +++-
src/gui.c | 202 +++++++++++++++++++++++++++-----------------
src/gui.h | 4 +-
src/http.c | 3 +-
src/main.c | 8 +-
src/main.h | 5 +-
src/menu.h | 41 +++++----
src/menu.xml | 15 ++++
src/telegnome.gresource.xml | 25 ++++++
src/view.c | 12 ++-
15 files changed, 227 insertions(+), 124 deletions(-)
commit a7a5661f999592d12065c1d4d776ba27d04a628b
Author: Colin Watson <cjwatson@debian.org>
Date: Tue Feb 2 03:56:47 2016 +0000
Ignore ChangeLog
.gitignore | 1 +
1 file changed, 1 insertion(+)
commit 37c5884b47bd20c45fdc36544d0a9613baa664d9
Author: Mario Blättermann <mario.blaettermann@gmail.com>
Date: Sun Jan 31 20:11:45 2016 +0100
Updated German translation
po/de.po | 255 +++++++++++++++++++++++++++++++++++++++++++--------------------
1 file changed, 176 insertions(+), 79 deletions(-)
commit 22aa771785e136512b413194bbcf103257931b90
Author: Piotr Drąg <piotrdrag@gmail.com>
Date: Sun Jan 31 16:47:03 2016 +0100
Updated Polish translation
po/pl.po | 194 +++++++++++++++++++++++++++++++++++++++++++++++----------------
1 file changed, 144 insertions(+), 50 deletions(-)
commit 24423574d8e0387866b52c6983c1a2696be75628
Author: Colin Watson <cjwatson@debian.org>
Date: Sun Jan 31 02:35:55 2016 +0000
Don't reset current-channel on startup
* src/gui.c (tg_gui_reload_channels): Read current_uid from
gui->current_channel, not from the uuid property of
currentview->channel (which may not be set properly yet).
NEWS | 2 ++
src/gui.c | 3 +--
2 files changed, 3 insertions(+), 2 deletions(-)
commit 6e4beb07cc89647c738426287dd4c87ecf2a4e06
Author: Colin Watson <cjwatson@debian.org>
Date: Sun Jan 31 02:12:53 2016 +0000
Switch to distributing .tar.xz
ftpadmin will mangle our uploaded tarballs into that format anyway.
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 501c377bf3828779e62144e6d3d0ac0c494d3494
Author: Colin Watson <cjwatson@debian.org>
Date: Sun Jan 31 02:10:10 2016 +0000
Modernise AC_INIT/AM_INIT_AUTOMAKE invocation
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit f96cf95fc8fc5f022f19f9f1bf80dd9df2a1feb3
Author: Colin Watson <cjwatson@debian.org>
Date: Sun Jan 31 02:04:44 2016 +0000
Version: 0.2.1 (post-release increment)
NEWS | 3 +++
configure.ac | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
commit 1fba9ab61538e6198e5019fa8dfd01e835276679
Author: Colin Watson <cjwatson@debian.org>
Date: Sun Jan 31 02:01:31 2016 +0000
Generate ChangeLog from git history
ChangeLog => ChangeLog-pre-2-0 | 0
Makefile.am | 11 +++++++++++
2 files changed, 11 insertions(+)
|