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
|
News in 48.1, 2024-12-07
------------------------
* Translation updates.
News in 48.0, 2024-09-14 (stable version)
-----------------------------------------
* Port to latest gedit API.
* Build: some refactorings.
* Text Size plugin: moved to the main gedit repository.
* Git plugin: removed.
* Translation updates.
News in 47.1, 2024-05-07 (stable version)
-----------------------------------------
* Session Saver plugin: bug fix.
News in 47.0, 2024-04-27 (stable version)
-----------------------------------------
* Port to latest libgedit-gtksourceview API.
News in 46.0, 2023-07-29
------------------------
* Port to latest gedit API.
* Translation updates.
News in 45.0, 2023-06-23
------------------------
* Remove synctex plugin (see the git commit for the details).
* Some misc maintenance.
News in 45.alpha, 2023-04-26
----------------------------
* gedit-plugins now depends on libgedit-gtksourceview instead of GtkSourceView:
https://github.com/gedit-technology/libgedit-gtksourceview
https://gedit-technology.net/
* Remove colorschemer plugin (see the git commit for the details).
* Adapt code to the latest gedit API.
News in 44.1, 2023-01-19
------------------------
* Some bug fixes.
News in 44.0, 2023-01-02
------------------------
* Terminal plugin: check that all external GSettings can be used before using
them.
* Translation updates.
News in 43.1, 2022-11-03
------------------------
* Be able to build with Meson >= 0.61
News in 43.0, 2022-11-03
------------------------
* Come back to the source code of gedit-plugins a little before version 40.0,
and continue again from there. It is based on the Tepl library.
* Remove several plugins:
- translate
- find in files
- commander
Any help to give them a new life would be much welcomed.
* Translation updates.
News in 42.1, 2022-05-27
------------------------
* Translation updates.
News in 42.0, 2022-04-04
------------------------
* Translation updates
News in 41.0, 2022-02-16
------------------------
* Fix build with latest meson
* Translation updates
News in 40.1, 2021-04-28
------------------------
* Removes tepl dependency
* Fixes SessionSaver plugin does not start problem
* Translation updates
News in 40.0, 2021-03-13
------------------------
* Draw Spaces plugin: new implementation based on TeplSpaceDrawerPrefs.
* Smart Spaces plugin: Python to C rewrite, new implementation based on the
GtkSourceView:smart-backspace property.
* Translate plugin: a few improvements.
* Translation updates.
News in 3.38.1, 2020-11-20
--------------------------
* Translation updates.
News in 3.38.0, 2020-09-11
--------------------------
* Translation updates.
News in 3.37.92, 2020-09-04
---------------------------
* Updates to the user manual.
* Various small improvements.
* Translation updates.
News in 3.36.2, 2020-03-20
--------------------------
* Fix Session Saver plugin.
* Fix crash in Find in Files plugin.
News in 3.36.1, 2020-03-11
--------------------------
* Embedded terminal plugin: fix crash caused by removed gnome-terminal
GSettings key.
News in 3.36.0, 2020-03-06
--------------------------
* Updates to the user manual.
* Translation updates.
News in 3.35.90, 2020-01-31
---------------------------
* Remove the Zeitgeist plugin. For the explanation see:
https://gitlab.gnome.org/GNOME/gedit-plugins/issues/9
* Small code improvements.
* Translation updates.
News in 3.35.1, 2019-11-22
--------------------------
* Lots of improvements to the build system (meson).
* Adapt file metadata key name for gedit 3.35.
* Some small maintenance tasks.
* Translation updates.
News in 3.34.1, 2019-11-21
--------------------------
* Re-add the synctex plugin.
* Some small maintenance tasks.
* Translation updates.
News in 3.34.0, 2019-09-09
--------------------------
* Small fix.
* Translation updates.
News in 3.33.92, 2019-09-03
---------------------------
* Small cleanup in top-level files (Sébastien Wilmet).
* Translation updates.
=====================
gedit-plugins 3.33.90
=====================
Development release
- Switch from Autotools to Meson (Martin)
- Add CI to test buildability and enforce Flake8 (Jordi)
- Add new session saver plugin (Jordi)
- Remove synctex plugin (Jordi)
- Update Commander activation shortcut to Ctrl+, (Jordi)
- Many more fixes (Baschdel, Jordi, Piotr)
Contributors: Baschdel, Martin Blanchard, Piotr Drąg, Jordi Mas
====================
gedit-plugins 3.32.2
====================
- Fix ColorSchemer plugin for GTKSourceView 4 (Jordi)
- Cache language names per session to prevent unnecessary web requests
by Translate plugin (Jordi)
- Fix enabling and disabling the Translate plugin (Jordi)
Contributors: Jordi Mas
====================
gedit-plugins 3.32.0
====================
- Updated translations
=====================
gedit-plugins 3.31.90
=====================
Development release
- Fix GtkSourceView 4 Python imports (Martin)
- Update translations
Contributors:
Martin Blanchard
====================
gedit-plugins 3.31.4
====================
Development release
- Drop broken Dashboard plugin
- Switch from GTKSourceView 3 to GTKSourceView 4 (Christian)
- Stop using intltool (Jeremy)
- Miscellaneous improvements (Andre, Jeremy, Piotr)
- Updated translations
Contributors:
Jeremy Bicha, Piotr Drąg, Christian Hergert, Andre Klapper
====================
gedit-plugins 3.30.1
====================
- Terminal: fix change directory with vte >= 0.52
- Updated translations
====================
gedit-plugins 3.30.0
====================
- Updated translations
====================
gedit-plugins 3.28.1
====================
- Updated translations
====================
gedit-plugins 3.28.0
====================
- More fixes for the Translate plugin
- Updated translations
=====================
gedit-plugins 3.27.92
=====================
- Fix the new Translate plugin
- Updated translations
====================
gedit-plugins 3.27.1
====================
- Development release
- Introduce new Translate plugin. Thanks Jordi Mas!
- Several translation fixes
====================
gedit-plugins 3.22.0
====================
- Minor bugfixes, release the new stable version
- Updated translations
====================
gedit-plugins 3.20.0
====================
- Minor bugfixes, release the new stable version
- Updated translations
====================
gedit-plugins 3.18.0
====================
New features and fixes
======================
- No changes, release the new stable version
====================
gedit-plugins 3.17.1
====================
New features and fixes
======================
- Silence runtime warnings about gi.require_version in python
- Misc bugfixes
New and updated translations
============================
- ar (Khaled Hosny)
- cs (Marek Černocký)
- el (Dimitris Spingos (Δημήτρης Σπίγγος))
- es (Daniel Mustieles)
- he (Yosef Or Boczko)
- hu (Gabor Kelemen)
- it (Milo Casagrande)
- ko (Changwoo Ryu)
- lt (Aurimas Černius)
- pl (Piotr Drąg)
- pt (Pedro Albuquerque)
- sk (Dušan Kazik)
- tr (Simge Sezgin)
====================
gedit-plugins 3.17.0
====================
New features and fixes
======================
- Add Find in Files plugin
- Misc bugfixes
New and updated translations
============================
- ca (cubells)
- cs (Marek Černocký)
- it (Milo Casagrande)
- pl (Piotr Drąg)
- th (Akom Chotiphantawanon)
====================
gedit-plugins 3.16.0
====================
New features and fixes
======================
- Misc bugfixes
New and updated translations
============================
- lt (Aurimas Černius)
====================
gedit-plugins 3.15.1
====================
New features and fixes
======================
- Misc bugfixes
New and updated translations
============================
- bs (Emin Šehić)
- el (Maria Mavridou)
- sk (Dušan Kazik)
- sv (Daniel Nylander)
- zh_TW (Cheng-Chia Tseng)
====================
gedit-plugins 3.15.0
====================
New features and fixes
======================
- Misc bugfixes
New and updated translations
============================
- eu (Inaki Larranaga Murgoitio)
- tr (Muhammet Kara)
====================
gedit-plugins 3.14.1
====================
New features and fixes
======================
- Misc bugfixes
New and updated translations
============================
- cs (Marek Černocký)
- de (Wolfgang Stoeggl)
- fi (Jiri Grönroos)
- he (Yosef Or Boczko)
- sr@latin (Miroslav Nikolić)
- sr (Мирослав Николић)
- th (Akom Chotiphantawanon)
====================
gedit-plugins 3.14.0
====================
New features and fixes
======================
- Improve joinlines plugin
- Improve multiedit plugin
- Improve commander plugin
- Improve git plugin
- terminal: Port to vte-2.91
New and updated translations
======================
- cs (Marek Černocký)
- el (Tom Tryfonidis)
- fi (Jiri Grönroos)
- fr (Alain Lojewski)
- hu (Balázs Úr)
- id (Andika Triwidada)
- ko (Changwoo Ryu)
====================
gedit-plugins 3.13.2
====================
New features and fixes
======================
- Adapt to the rename of gedit's desktop file
====================
gedit-plugins 3.13.1
====================
New features and fixes
======================
- Adapt the plugins for the changes in GeditDocument
- Various improvements and bug fixes
New and updated translations
============================
- cs (Marek Černocký)
- es (Daniel Mustieles)
- eu (Iñaki Larrañaga Murgoitio)
- pl (Piotr Drąg)
- pt_BR (Rafael Ferreira)
====================
gedit-plugins 3.13.0
====================
New features and fixes
======================
- Moved zeitgeist plugin from gedit core to plugins
New and updated translations
============================
- el (Tom Tryfonidis, MarMav)
- es (Daniel Mustieles)
- pt_BR (Rafael Ferreira)
- fi (Lasse Liehu)
- de (Christian Kirbach)
====================
gedit-plugins 3.12.1
====================
New features and fixes
======================
- Split drawspaces into app/window/view activatables
- Fix bug preventing synctex to work.
- Misc bugfixes
New and updated translations
============================
- id (Andika Triwidada)
====================
gedit-plugins 3.12.0
====================
New features and fixes
======================
- Ignore remote files in the git plugin
- Misc bugfixes
New and updated translations
============================
- hu (Gabor Kelemen)
====================
gedit-plugins 3.11.91
====================
New features and fixes
======================
- Port synctex to new menu API
- Misc bugfixes
New and updated translations
============================
- he (Yosef Or Boczko)
- hu (Balázs Úr)
- lt (Aurimas Černius)
- pt (Tiago S.)
====================
gedit-plugins 3.11.2
====================
New features and fixes
======================
- Port plugins to new menu API
- Misc bugfixes
New and updated translations
============================
- sr@latin (Miroslav Nikolić)
- sr (Мирослав Николић)
- zh_CN (YunQiang Su)
====================
gedit-plugins 3.11.1
====================
New features and fixes
======================
- Misc bugfixes
New and updated translations
============================
- cs (Marek Černocký)
- de (Benjamin Steinwender)
- es (Daniel Mustieles)
- gl (Fran Dieguez)
- he (Yosef Or Boczko)
- it (Milo Casagrande)
- pl (Piotr Drąg)
- pt_BR (Enrico Nicoletto)
- sl (Matej Urbančič)
====================
gedit-plugins 3.10.0
====================
New features and fixes
======================
- Misc bugfixes
New and updated translations
============================
- cs (Marek Černocký)
- es (Daniel Mustieles)
- fi (Jiri Grönroos)
- gl (Fran Dieguez)
- hu (Balázs Úr)
- it (Milo Casagrande)
- ko (Changwoo Ryu)
- lt (Aurimas Černius)
- lv (Rūdolfs Mazurs)
- pl (Piotr Drąg)
- pt_BR (Rafael Ferreira)
- sl (Matej Urbančič)
- sr@latin (Miroslav Nikolić)
- sr (Мирослав Николић)
====================
gedit-plugins 3.9.2
====================
New features and fixes
======================
- word completion: add configure options (Sébastien Wilmet)
- Show the file's git status in the file browser (Garrett Regier)
- Misc bugfixes
New and updated translations
============================
- cs (Marek Černocký)
- de (Christian Kirbach)
- el (Dimitris Spingos)
- es (Daniel Mustieles)
- it (Milo Casagrande)
- sl (Matej Urbančič)
- zh_CN (Lu Gan)
================================================
gedit-plugins 3.9.1
====================
New features and fixes
======================
- Add user help translations (Ekaterina Gerasimova)
- New git plugin (Ignacio Casal Quinteiro, Garrett Regier)
- terminal: handle drag and drop of files (Ignacio Casal Quinteiro)
- Follow gnome-terminal settings on terminal plugin (Ignacio Casal Quinteiro)
- Misc bugfixes
New and updated translations
============================
- ar (Khaled Hosny)
- bg (Krasimir Chonov)
- ca (Carles Ferrando Garcia)
- cs (Marek Černocký)
- da (Ask Hjorth Larsen)
- de (Christian Kirbach)
- el (Dimitris Spingos (Δημήτρης Σπίγγος))
- es (Daniel Mustieles)
- eu (Iñaki Larrañaga Murgoitio)
- fi (sampo555)
- fr (Alexandre Franke)
- fr (Pierre Henry)
- gl (Fran Dieguez)
- hu (Gabor Kelemen)
- it (Milo Casagrande)
- ja (Carrot031)
- ko (Changwoo Ryu)
- lt (Aurimas Černius)
- lv (Rūdolfs Mazurs)
- nb (Kjartan Maraas)
- oc (Yannig Marchegay (Kokoyaya))
- pt_BR (Rafael Ferreira)
- ru (Yuri Myasoedov)
- sl (Andrej Žnidaršič)
- sl (Matej Urbančič)
- sr@latin (Miroslav Nikolić)
- sr (Мирослав Николић)
- sv (Daniel Nylander)
- te (Bhuvan Krishna)
- th (Kittiphong Meesawat)
- uk (Maxim V. Dziumanenko)
- zh_CN (Colin Zhao)
- zh_HK (FULL NAME)
- zh_TW (FULL NAME)
====================
gedit-plugins 3.8.1
====================
New features and fixes
======================
- Port Dashboard to use libzeitgeist2 (Seif Lotfy)
- New Color Schemer plugin (Jono Finger)
- Misc bugfixes
New and updated translations
============================
- ca (cubells)
- ca@valencia (cubells)
- cs (Marek Černocký)
- es (Daniel Mustieles)
- hu (Balázs Úr)
- lt (Aurimas Černius)
- pl (Piotr Drąg)
- pt_BR (Rafael Ferreira)
- sl (Matej Urbančič)
====================
gedit-plugins 3.8.0
====================
New features and fixes
======================
- Misc bugfixes
New and updated translations
============================
- ar (Khaled Hosny)
- pl (Piotr Drąg)
- pt_BR (Rafael Ferreira)
- ru (Yuri Myasoedov)
====================
gedit-plugins 3.7.1
====================
New features and fixes
======================
- Port plugins to python 3. (Ignacio Casal Quinteiro, Jesse van den Kieboom)
- Drop session saver plugin. (Ignacio Casal Quinteiro)
- Drop taglist plugin. (Ignacio Casal Quinteiro)
- Misc bugfixes
New and updated translations
============================
- sl (Matej Urbančič)
====================
gedit-plugins 3.6.1
====================
New features and fixes
======================
- Misc bugfixes
New and updated translations
============================
- be (Ihar Hrachyshka)
- en_GB (Bruce Cowan)
- lv (Rūdolfs Mazurs)
- sk (Ivan Masár)
====================
gedit-plugins 3.6.0
====================
New features and fixes
======================
- Use the textview instead of the overlay for the overlayed color button (Ignacio Casal Quinteiro)
====================
gedit-plugins 3.5.2
====================
New features and fixes
======================
- Color picker now shows an overlayed color button when an hexadecimal color is selected (Ignacio Casal Quinteiro)
- Misc bugfixes
New and updated translations
============================
- el (Tom Tryfonidis)
- id (Andika Triwidada)
- lt (Aurimas Černius)
- pl (Piotr Drąg)
====================
gedit-plugins 3.5.1
====================
New features and fixes
======================
- Misc bugfixes
New and updated translations
============================
- da (Joe Hansen)
- de (Christian Kirbach)
- eo (Kristjan SCHMIDT)
- es (Gustavo Jasso Ahuja)
- fr (Pierre Henry)
- he (Yaron Shahrabani)
- it (Milo Casagrande)
- lv (Rūdolfs Mazurs)
- pt_BR (Breno Felipe Morais de Santana)
- sk (Ivan Masár)
====================
gedit-plugins 3.4.0
====================
New features and fixes
======================
- Misc bugfixes
New and updated translations
============================
- gl (Fran Dieguez)
- hu (Gabor Kelemen)
- lv (Anita Reitere)
- ml (Afsal)
- pl (Piotr Drąg)
- pt (António Lima)
====================
gedit-plugins 3.3.4
====================
New features and fixes
======================
- Port colorpicker to new color chooser widget (Ignacio Casal Quinteiro)
- Use GResource for drawspaces (Ignacio Casal Quinteiro)
- Misc bugfixes
New and updated translations
============================
- sr@latin (Miroslav Nikolić)
- sr (Мирослав Николић)
====================
gedit-plugins 3.3.3
====================
New features and fixes
======================
- Misc bugfixes
New and updated translations
============================
- cs (Marek Černocký)
- es (Daniel Mustieles)
- sl (Matej Urbančič)
====================
gedit-plugins 3.3.2
====================
New features and fixes
======================
- Commander plugin bugfixes (Jesse van den Kieboom)
- Misc bugfixes
New and updated translations
============================
- de (Mario Blättermann)
- es (Daniel Mustieles)
- fr (Bruno Brouard)
- ja (OKANO Takayoshi)
====================
gedit-plugins 3.3.1
====================
New features and fixes
======================
- New dashboard plugin (Seif Lotfy)
- Misc bugfixes
New and updated translations
============================
- cs (Marek Černocký)
- sl (Matej Urbančič)
====================
gedit-plugins 3.2.1
====================
New features and fixes
======================
- i18n fixes (Ignacio Casal Quinteiro)
- Fix doc module in commander plugin (Ignacio Casal Quinteiro)
- Misc bugfixes
New and updated translations
============================
- lv (Rūdofls Mazurs)
====================
gedit-plugins 3.2.0
====================
New and updated translations
============================
- da (Joe Hansen)
====================
gedit-plugins 3.1.5
====================
New features and fixes
======================
- Misc bugfixes
New and updated translations
============================
- en_GB (Bruce Cowan)
- es (Daniel Mustieles)
- lv (Rūdofls Mazurs)
====================
gedit-plugins 3.1.4
====================
New features and fixes
======================
Misc bugfixes
====================
gedit-plugins 3.1.3
====================
New features and fixes
======================
Misc bugfixes
New and updated translations
============================
- gl (Fran Diéguez)
- sr@latin (Miroslav Nikolić)
- sr (Мирослав Николић)
====================
gedit-plugins 3.1.2
====================
New features and fixes
======================
Misc bugfixes
====================
gedit-plugins 3.1.1
====================
New features and fixes
======================
Misc bugfixes
New and updated translations
============================
- ru (Yuri Myasoedov)
====================
gedit-plugins 3.0.3
====================
New features and fixes
======================
Misc bugfixes
====================
gedit-plugins 3.0.2
====================
New features and fixes
======================
Misc bugfixes
New and updated translations
============================
- ja (Jiro Matsuzawa)
====================
gedit-plugins 3.0.1
====================
New features and fixes
======================
Misc bugfixes
====================
gedit-plugins 3.0.0
====================
New features and fixes
======================
- Port commander plugin to gtk+3
====================
gedit-plugins 2.91.3
====================
New features and fixes
======================
- Update autoconf (Javier Jardón)
- Port bookmarks plugin to new message bus system (Paolo Borelli)
- Update synctex to use the new dbus api (José Aliste)
- Misc Bugfixes
====================
gedit-plugins 2.91.2
====================
New features and fixes
======================
- Misc Bugfixes
New and updated translations
============================
- pl (Piotr Drąg)
- pt (António Lima)
- it (Milo Casagrande)
====================
gedit-plugins 2.91.1
====================
New features and fixes
======================
- Misc Bugfixes
New and updated translations
============================
- es (Daniel Mustieles)
====================
gedit-plugins 2.91.0
====================
New features and fixes
======================
- Several plugins ported to gtk3/libpeas
- Port charmap plugin to python. (Ignacio Casal Quinteiro)
- Import the taglist plugin from gedit (Paolo Borelli)
- Added new 'grep' commander module (Jesse van den Kieboom)
- Added synctex plugin (José Aliste)
- Misc Bugfixes
New and updated translations
============================
- af (F Wolff)
- am (Ge'ez Frontier Foundation)
- ar (Khaled Hosny)
- as ("Last-Translator: \n")
- ast (Xandru Armesto)
- az (Mətin Əmirov)
- be (Ihar Hrachyshka)
- be@latin (Alaksandar Navicki)
- bg (Krasimir Chonov)
- bn_IN (Runa Bhattacharjee)
- bn (Sadia Afroz)
- br ("Last-Translator: Denis\n")
- bs (Kenan Hadžiavdić)
- ca (Gil Forcada)
- ca@valencia (Gil Forcada)
- crh (Reşat SABIQ)
- cs (Marek Černocký)
- cy (Iestyn Pryce)
- da (Joe Hansen)
- de (Mario Blättermann)
- dz (Dawa pemo)
- el (Kostas Papadimas)
- en_CA (Adam Weinberger)
- en_GB (Philip Withnall)
- en@shaw (Thomas Thurman)
- eo (Kristjan SCHMIDT)
- es (Daniel Mustieles)
- et (Ivar Smolin)
- eu (Iñaki Larrañaga Murgoitio)
- fa (Elnaz Sarbar)
- fi (Tommi Vainikainen)
- fr (Claude Paroz)
- ga (Seán de Búrca)
- gl (Fran Dieguez)
- gu (Sweta Kothari)
- he (Yaron Shahrabani)
- hi (Rajesh Ranjan)
- hr (Launchpad Translations Administrators)
- hu (Gabor Kelemen)
- hy (Norayr Chilngaryan)
- id (Dirgita)
- is (helgi)
- it (Milo Casagrande)
- ja (Takayuki KUSANO)
- ka (Alexander Didebulidze)
- kk (Baurzhan Muftakhidinov)
- kn (Shankar Prasad)
- ko (Changwoo Ryu)
- ku (Erdal Ronahi)
- la (FULL NAME)
- lt (Aurimas Černius)
- lv (Rūdolfs Mazurs)
- mai (Rajesh Ranjan)
- mg (Fanomezana Rajaonarisoa)
- mi (John C Barstow)
- mk (Arangel Angov)
- ml ("Last-Translator: \n")
- mn (Sanlig Badral)
- mr (Sandeep Shedmake)
- ms (Hasbullah Bin Pit)
- nb (Kjartan Maraas)
- nds (Nils-Christoph Fiedler)
- ne (Narayan Kumar Magar)
- nl (Hannie Dumoleyn)
- nn (Torstein Adolf Winterseth)
- oc (Yannig Marchegay (Kokoyaya))
- or (Manoj Kumar Giri)
- pa (A S Alam)
- pl (Piotr Drąg)
- ps (Zabeeh Khan)
- pt_BR (Krix Apolinário)
- pt (Duarte Loreto)
- ro (Gabriel Șerbănescu)
- ru (Alexander Saprykin)
- rw (Steve Murphy)
- si (Danishka Navin)
- sk (Marcel Telka)
- sl (Matej Urbančič)
- sq (Laurent Dhima)
- sr@latin (Goran Rakić)
- sr (Горан Ракић)
- sv (Daniel Nylander)
- ta (Dr,T,Vasudevan)
- te (Arjuna Rao Chavala)
- th (Kittiphong Meesawat)
- tk (Gurban Mühemmet Tewekgeli)
- tr (Baris Cicek)
- uk (Maxim Dziumanenko)
- vi (Clytie Siddall)
- wa (Pablo Saratxaga)
- xh (Canonical Ltd)
- zh_CN (Yinghua Wang)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)
====================
gedit-plugins 2.90.0
====================
New features and fixes
======================
- Ported textsize plugin to libpeas (Ignacio Casal Quinteiro).
- Update several plugins to new libpeas API (Ignacio Casal Quinteiro).
====================
gedit-plugins 2.31.4
====================
New features and fixes
======================
- Ported several plugins to libpeas. (Ignacio Casal Quinteiro)
- Require gtk+ 3 and gtksourceview 3
- Misc Bugfixes
New and updated translations
============================
- cs (Marek Černocký)
- de (Mario Blättermann)
- es (Jorge González)
- gl (Fran Diéguez)
- pt (António Lima)
- sl (Matej Urbančič)
====================
gedit-plugins 2.31.3
====================
New features and fixes
======================
- Removed ShowTabbar plugin (Garrett Regier)
- Misc Bugfixes
New and updated translations
============================
- cs (Marek Černocký)
- de (Christian Kirbach)
- hu (Gabor Kelemen)
====================
gedit-plugins 2.31.2
====================
New features and fixes
======================
- Port C plugins to GSettings (Ignacio Casal Quinteiro)
- Misc Bugfixes
New and updated translations
============================
- cs (Marek Černocký)
- de (Christian Kirbach)
- es (Jorge González)
- fr (Claude Paroz)
- pt_BR (Henrique P. Machado)
- sl (Matej Urbančič)
====================
gedit-plugins 2.31.1
====================
New features and fixes
======================
- New text size plugin (Jesse van den Kieboom, Konstantin Mikhaylov, Wouter Bolsterlee)
- Implement immediate single column mode (Jesse van den Kieboom)
- Implement multiedit pasting (Jesse van den Kieboom)
- Implemented _smart_ column selection mode (Jesse van den Kieboom)
- Implemented smart align multi edit mode (Jesse van den Kieboom)
- Implemented align for multi edit (Jesse van den Kieboom)
- Depend on gedit 3.0 api
- Misc Bugfixes
New and updated translations
============================
- id (Andika Triwidada)
- sl (Matej Urbančič)
====================
gedit-plugins 2.30.0
====================
New features and fixes
======================
- Several bugfixes in the commander plugin
New and updated translations
============================
ar (Khaled Hosny)
ca (David Espinosa Alentorn)
cs (Marek Černocký)
cs (Marek Černocký)
de (Mario Blättermann)
es (Jorge González)
fr (Bruno Brouard)
gl (Fran Diéguez)
hu (Gabor Kelemen)
hu (Gabor Kelemen)
it (Milo Casagrande)
pa (A S Alam)
pl (Piotr Drąg)
pt (António Lima)
pt (António Lima)
sl (Matej Urbančič)
sv (Daniel Nylander)
zh_CN (Aron Xu)
====================
gedit-plugins 2.29.4
====================
New features and fixes
======================
- Added new plugin commander (Jesse van den Kieboom)
- Added message bus bindings for bookmarks actions (Jesse van den Kieboom)
- Misc Bugfixes
New and updated translations
============================
- es (Jorge González)
- fr (Claude Paroz)
- pt_BR (Antonio Fernandes C. Neto)
- sl (Matej Urbančič)
- sv (Daniel Nylander)
====================
gedit-plugins 2.29.3
====================
New features and fixes
======================
- Misc Bugfixes
New and updated translations
============================
- es (Jorge González)
- pt (António Lima)
====================
gedit-plugins 2.29.2
====================
New features and fixes
======================
- Added multi edit plugin (Jesse van den Kieboom)
- Misc Bugfixes
New and updated translations
============================
- bn_IN (Runa Bhattacharjee)
- cs (Marek Černocký)
- es (Jorge González)
- gu (Sweta Kothari)
- kn (Shankar Prasad)
- or (Manoj Kumar Giri)
- pt_BR (Og Maciel)
- sv (Daniel Nylander)
- ta (I. Felix)
- te (Krishna Babu K)
====================
gedit-plugins 2.29.1
====================
New features and fixes
======================
- Added word completion plugin (Jesse van den Kieboom, Ignacio Casal Quinteiro)
- Added support for drawing leading, text and trailing spaces (Jesse van den Kieboom)
- Misc Bugfixes
New and updated translations
============================
- cs (Marek Černocký)
- de (Mario Blättermann)
- sv (Daniel Nylander)
====================
gedit-plugins 2.28.0
====================
New features and fixes
======================
- Misc Bugfixes
New and updated translations
============================
- bg (Yavor Doganov)
====================
gedit-plugins 2.27.1
====================
New features and fixes
======================
- Remember bookmarks on files using metadata (Ignacio Casal Quinteiro)
- Misc Bugfixes
New and updated translations
============================
- ar (Khaled Hosny)
- ml (Ani)
- ne (Mahesh subedi)
- pl (Tomasz Dominikowski)
====================
gedit-plugins 2.26.3
====================
New features and fixes
======================
- Misc Bugfixes
New and updated translations
============================
- as (Amitakhya Phukan )
- bn_IN (Runa Bhattacharjee )
- gl (Antón Méixome )
- kn (Shankar Prasad )
- or (Manoj Kumar Giri )
- pa (A S Alam )
- ta (I. Felix )
====================
gedit-plugins 2.26.2
====================
New features and fixes
======================
- Misc Bugfixes.
New and updated translations
============================
- Sweta Kothari (gu)
====================
gedit-plugins 2.26.1
====================
New features and fixes
======================
- Bugfixes to drawspaces plugin (Ignacio Casal Quinteiro)
New and updated translations
============================
- Jen Ockwell (en_GB)
- Kamil Paral (cs)
- Krishnababu K (te)
- Sandeep Shedmake (mr)
- Takeshi AIHANA (ja)
====================
gedit-plugins 2.26.0
====================
New features and fixes
======================
New and updated translations
============================
- Claude Paroz (fr)
- David Planella (ca)
- Og Maciel (it)
====================
gedit-plugins 2.25.3
====================
New features and fixes
======================
- Misc bugfixes.
New and updated translations
============================
- Daniel Nylander (sv)
- Duarte Loreto (pt)
- Gabor Kelemen (hu)
- Og Maciel (pt_BR)
- Raivis DEjus (lv)
====================
gedit-plugins 2.25.2
====================
New features and fixes
======================
- Skip closing brackets (Ignacio Casal Quinteiro)
- New bookmarks plugin (Jesse van den Kieboom)
- Added bracket completion for <> in php (Jesse van den Kieboom)
- Show non-breaking spaces in drawspace plugin (Ignacio Casal Quinteiro)
- Misc bugfixes.
New and updated translations
============================
- Claude Paroz (fr)
- Gabor Kelemen (hu)
- Jorge Gonzalez (es)
- Leonardo Ferreira Fontenelle (pt_BR)
- Mario Blättermann (de)
====================
gedit-plugins 2.25.1
====================
New features and fixes
======================
- Use vte api to set cursor shape and blink mode in terminal (Paolo Borelli)
- Ported to GIO and gtkbuilder (Ignacio Casal Quinteiro)
- New implementation of drawspaces plugin (Paolo Borelli, Ignacio Casal Quinteiro)
- Misc bugfixes.
New and updated translations
============================
- Daniel Nylander (sv)
- Jorge Gonzalez (es)
- Nickolay V. Shmyrev (ru)
====================
gedit-plugins 2.22.5
====================
New features and fixes
======================
- Fix problem with gucharmap2 api ()
- Draw more utf-8 spaces
====================
gedit-plugins 2.22.4
====================
New features and fixes
======================
- Respect gnome-terminal colors more carefully (Fabricio Silva, Paolo Borelli)
- Misc bugfixes
New and updated translations
============================
- Djihed Afifi (ar)
- Gabor Kelemen (hu)
- Kjartan Maraas (nb)
- Visal Srivisal (th)
====================
gedit-plugins 2.22.3
====================
New features and fixes
======================
- Respect some more gnome-terminal gconf keys (Kurt Litsch, Paolo Borelli)
- Misc bugfixes
New and updated translations
============================
- Clytie Siddall (vi)
- Djihed Afifi (ar)
- Fábio Nogueira (pt_BR)
- Francesc Vilches (ca)
- Funda Wang (zh_CN.po)
- Wadim Dziedzic (pl)
====================
gedit-plugins 2.22.2
====================
New features and fixes
======================
- Fix problem with glade translation setup in the drawspaces plugin (Paolo Borelli)
- Fix smartspaces behavior at the start of the text buffer (Paolo Borelli)
New and updated translations
============================
- Yavor Doganov (bg)
- Andre Klapper (de)
====================
gedit-plugins 2.22.1
====================
New features and fixes
======================
- Just watch the required keystrokes for bracket completion (Paolo Borelli)
- Allow building with either gucharmap stable or gucharmap trunk (Christian Persch)
New and updated translations
============================
- António Lima (pt)
- Gabor Kelemen (hu)
- Takeshi AIHANA (ja)
- Andre Klapper (de)
====================
gedit-plugins 2.22.0
====================
New features and fixes
======================
- menu item to toggle drawing of spaces (Stefan Schweizer)
- misc bugfixes
New and updated translations
============================
- António Lima (pt)
- Daniel Nylander
- Daniel Nylander (sv)
- Djihed Afifi (ar)
- Ihar Hrachyshka (be@latin)
- Ilkka Tuohela (fi)
- Joan Duran (ca)
- Jorge Gonzalez (es)
- Kamil Paral (cs)
- Kenneth Nielsen (da)
- Kostas Papadimas (el)
- Leonardo Ferreira Fontenelle (pt_BR)
- Milo Casagrande (it)
- Nguyễn Thái Ngọc Duy (vi)
- Philip Withnall (en_GB)
- Robert-André Mauchin (fr)
- Yannig Marchegay (oc)
====================
gedit-plugins 2.20.0
====================
New features and fixes
======================
- require gedit 2.20 (Jürg Billeter)
- improve joinlines plugin (André Homeyer)
New and updated translations
============================
- Clytie Siddall (vi)
- Francesc Vilches (ca)
- Gabor Kelemen (hu)
- Ilkka Tuohela (fi)
- Milo Casagrande (it)
- Og Maciel (pt_BR)
- Takeshi AIHANA (ja)
=====================
gedit-plugins 2.19.90
=====================
New features and fixes
======================
- port to GtkSourceView2 API so that plugins work with gedit 2.20 (Steve Frécinaux)
- draw non-blocking spaces in drawspaces plugin (Bob Mauchin)
New and updated translations
============================
- Daniel Nylander (sv)
- Djihed Afifi (ar)
- Ilkka Tuohela (fi)
- Jorge Gonzalez (es)
- Milo Casagrande (it)
- Pema Geyleg (dz)
- Robert-André Mauchin (fr)
- Takeshi AIHANA (ja)
- Wouter Bolsterlee (nl)
- Yannig MARCHEGAY (oc)
====================
gedit-plugins 2.18.0
====================
New features and fixes
======================
- New Draw Spaces plugin (Paolo Borelli, Steve Frécinaux)
- Misc i18n fixes
New and updated translations
============================
fi (Ilkka Tuohela)
fr (Stéphane Raimbault)
hu (Gabor Kelemen)
ja (Takeshi Aihana)
pt_BR (Leonardo Ferreira Fontenelle)
sv (Daniel Nylander)
zh_CN (Abel Cheung)
====================
gedit-plugins 2.17.2
====================
New features and fixes
======================
- New Session Saver plugin (Steve Frécinaux)
- Fix selection deletion when using SmartSpaces (Steve Frécinaux)
New and updated translations
============================
- el (Dimitris Glezos)
- sv (Daniel Nylander)
- ca (Josep Puigdemont i Casamajó)
- en_GB (David Lodge)
====================
gedit-plugins 2.17.1
====================
New features and fixes
======================
- Bug 381885: terminal plugin can change directory (Osmo Salomaa)
- Bug 351630: terminal plugin honours ctrl+tab (Steve Frécinaux)
- Bug 359494: fix the way the last selected line is handled (Steve Frécinaux)
New and updated translations
============================
- ar (Djihed Afifi)
- bg (Alexander Shopov)
- ca (Josep Puigdemont i Casamajó)
- cs (Jakub Friedl)
- dz (Pema Geyleg)
- en_CA (Adam Weinberger)
- en_GB (David Lodge)
- es (Francisco Javier F. Serrador)
- et (Priit Laes)
- fi (Ilkka Tuohela)
- fr (Jonathan Ernst)
- hu (Gabor Kelemen)
- ja (Takeshi Aihana)
- ne (Pawan Chitrakar)
- nl (Vincent van Adrighem)
- pt_BR (Leonardo Ferreira Fontenelle)
- sv (Daniel Nylander)
====================
gedit-plugins 2.16.0
====================
New features and fixes
======================
- New Bracket Completion Plugin (Steve Frécinaux)
New and updated translations
============================
- Daniel Nylander (sv)
- Clytie Siddall (vi)
- Josep Puigdemont i Casamajó (ca)
====================
gedit-plugins 2.15.5
====================
New features and fixes
======================
- New Code Comment plugin (Alejandro Garcia Castro)
- Update to latest gedit 2.15 API (Jesse van den Kieboom)
- Fix plugin l10n (Steve Frécinaux)
- Fixes to configure (Jesse van den Kieboom)
- Various fixes.
New and updated translations
============================
- Clytie Siddall (vi)
- Gabor Kelemen (hu)
- Christophe Merlet (fr)
====================
gedit-plugins 2.15.4
====================
New features and fixes
======================
- Fixes to configure (Christian Persch, Joe Marcus Clarke,
Fryderyk Dziarmagowski)
- Terminal setting proper sensitivity to copy button (Steve Frécinaux)
New and updated translations
============================
- Daniel Nylander (sv)
- Francisco Javier F. Serrador (es)
- Gabor Kelemen (hu)
- Hendrik Richter (de)
- Ilkka Tuohela (fi)
- Nickolay V. Shmyrev (ru)
====================
gedit-plugins 2.15.3
====================
New features and fixes
======================
- Autotools fixes (Jesse van den Kieboom, Steve Frécinaux)
- Terminal uses gnome-terminal default profile (Steve Frécinaux)
- New Smart Spaces unindent plugin (Steve Frécinaux)
- various fixes
New and updated translations
============================
- cs (Jakub Friedl)
- pt_BR (Raphael Higino)
====================
gedit-plugins 2.15.2
====================
New features and fixes
======================
- New Terminal plugin (Paolo Borelli)
- New Character Map plugin (Steve Frécinaux)
- New Color Picker plugin (Jesse van den Kieboom)
- New Show/Hide Tabbar plugin (Steve Frécinaux)
- New Join/Split Lines plugin (Steve Frécinaux)
|