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
|
============
gedit 2.30.4
============
New Features and Fixes
======================
- Add mallard snippets (Paul Cutler)
New and updated translations
============================
- ca (Carles Ferrando Garcia)
- cs (Marek Černocký)
- de (Mario Blättermann)
- el (Michael Kotsarinis)
- es (Jorge González)
- fr (Claude Paroz)
- he (Yaron Shahrabani)
- hu (Gabor Kelemen)
- id (Andika Triwidada)
- ja (Hideki Yamane (Debian-JP))
- kk (Baurzhan Muftakhidinov)
- kn (Shankar Prasad)
- zh_CN (du baodao)
- zh_CN (朱涛)
============
gedit 2.30.3
============
New Features and Fixes
======================
- Misc bugfixes
New and updated translations
============================
- ca (Gil Forcada)
- ca@valencia (Gil Forcada)
- de (Mario Blättermann)
- et (Ivar Smolin)
- fi (Tommi Vainikainen)
- hu (Gabor Kelemen)
- kn (Shankar Prasad)
- or (Manoj Kumar Giri)
- th (Kittiphong Meesawat)
- uk (Maxim Dziumanenko)
============
gedit 2.30.2
============
New Features and Fixes
======================
- Fix cut and paste typo that broke syntax detection (Jesse van den Kieboom)
============
gedit 2.30.1
============
New Features and Fixes
======================
- Properly handle encoding conversion errors when saving (Jesse van den Kieboom)
- New logo (Henry Peters)
- Misc bugfixes
New and updated translations
============================
- ast (Xandru Armesto)
- bn_IN (Runa Bhattacharjee)
- crh (Reşat SABIQ)
- cs (Petr Kovar)
- hu (Gabor Kelemen)
- id (Andika Triwidada)
- ko (Changwoo Ryu)
- nl (Hannie Dumoleyn)
- ro (Adi Roiban)
- ru (Alexander Saprykin)
- th (Kittiphong Meesawat)
============
gedit 2.30.0
============
New Features and Fixes
======================
- Fix a crash in the new file saving code (Paolo Borelli)
- Misc bugfixes
New and updated translations
============================
- bn (Sadia Afroz)
- ca (Gil Forcada)
- crh (Reşat SABIQ)
- cs (Marek Černocký)
- da (Ask Hjorth Larsen)
- el (Kostas Papadimas)
- et (Mattias Põldaru)
- eu (Iñaki Larrañaga Murgoitio)
- fi (Tommi Vainikainen)
- hu (Gabor Kelemen)
- ja (Hideki Yamane (Debian-JP))
- ko (Changwoo Ryu)
- lt (Gintautas Miliauskas)
- lv (Rūdolfs Mazurs)
- ml ("Last-Translator: \n")
- pt (Duarte Loreto)
- ro (Adi Roiban)
- ru (Alexander Saprykin)
- zh_CN (Eleanor Chen)
============
gedit 2.29.9
============
New Features and Fixes
======================
- Fix a file corruption bug in the new file saving code (Paolo Borelli)
- Misc bugfixes
New and updated translations
============================
- ar (Khaled Hosny)
- bg (Krasimir Chonov)
- de (Hendrik Richter)
- en_GB (Philip Withnall)
- eu (Iñaki Larrañaga Murgoitio)
- fr (Claude Paroz)
- gl (Antón Méixome)
- hu (Gabor Kelemen)
- it (Milo Casagrande)
- nb (Kjartan Maraas)
- pa (A S Alam)
- pt_BR (Og Maciel)
- ru (Leonid Kanter)
- sr@latin (Goran Rakić)
- sr (Горан Ракић)
- sv (Daniel Nylander)
- ta (Dr,T,Vasudevan)
- uk (Maxim Dziumanenko)
============
gedit 2.29.8
============
New Features and Fixes
======================
- Rework encoding validation (Paolo Borelli)
- Misc bugfixes
New and updated translations
============================
- bg (Krasimir Chonov)
- de (Mario Blättermann)
- en_GB (Bruce Cowan)
- es (Jorge González)
- fr (Claude Paroz)
- gl (Fran Diéguez)
- he (Liel Fridman)
- nb (Kjartan Maraas)
- nn (Torstein Adolf Winterseth)
- pl (Piotr Drąg)
- sl (Matej Urbančič)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)
============
gedit 2.29.7
============
New Features and Fixes
======================
- Many string fixes (Philip Withnall)
- Misc bugfixes
New and updated translations
============================
- ar (Khaled Hosny)
- cs (Petr Kovar)
- de (Mario Blättermann)
- en_GB (Philip Withnall)
- es (Jorge González)
- et (Mattias Põldaru)
- fr (Claude Paroz)
- gl (Fran Diéguez)
- nb (Kjartan Maraas)
- pt_BR (Vladimir Melo)
- ro (Adi Roiban)
- sl (Matej Urbančič)
- ta (Dr,T,Vasudevan)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)
============
gedit 2.29.6
============
New Features and Fixes
======================
- Add "Open" to the filebrowser context menu (Paolo Borelli)
- Add option to ignore a version until the next is released
in the checkupdate plugin (Ignacio Casal Quinteiro)
- Misc bugfixes
New and updated translations
============================
- ar (Khaled Hosny)
- bg (Alexander Shopov)
- de (Christian Kirbach)
- es (Jorge González)
- et (Mattias Põldaru)
- pt_BR (Henrique P. Machado)
- sl (Matej Urbančič)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)
============
gedit 2.29.5
============
New Features and Fixes
======================
- Rework file saving and file loading to always use gio and take
advantage of gio stream converters to perform encoding conversion
and manage line terminators (Ignacio Casal Quinteiro,
Jesse van den Kieboom, Paolo Borelli)
- Experimental python support on win32 (Ignacio Casal Quinteiro)
- Misc bugfixes
New and updated translations
============================
- ar (Khaled Hosny)
- bg (Alexander Shopov)
- bn (Sadia Afroz)
- es (Jorge González)
- fr (Claude Paroz)
- nb (Kjartan Maraas)
- ta (Dr,T,Vasudevan)
============
gedit 2.29.4
============
New Features and Fixes
======================
- Several refactorings (Paolo Borelli)
- Don't check words that are marked no-spell-check (Jesse van den Kieboom)
- Tools outputpanel refactored (Per Arneng)
- Added support for platform specific tools (Jesse van den Kieboom)
- Improved menu integration and several fixes on OS X (Jesse van den Kieboom)
- Add xslt and html snippets (Paolo Borelli)
- Remember autospell per document (Ignacio Casal Quinteiro)
- Misc bugfixes
New and updated translations
============================
- cs (Marek Černocký)
- et (Mattias Põldaru)
- hu (Gabor Kelemen)
- nds (Nils-Christoph Fiedler)
- ro (Adi Roiban)
- sv (Daniel Nylander)
- uk (Maxim Dziumanenko)
- zh_CN (樊栖江(Fan Qijiang))
============
gedit 2.29.3
============
New Features and Fixes
======================
- Use gio metadata system
- Misc bugfixes
New and updated translations
============================
- el (Nikos Charonitakis)
============
gedit 2.29.2
============
New Features and Fixes
======================
- Order hidden files after normal files on filebrowser (Jesse van den Kieboom)
- Removed indent plugin, this is now supported by gtksourceview (Jesse van den Kieboom)
- Implemented file open support on OS X (Jesse van den Kieboom)
- Fixed OS X native vs X11 built (Jesse van den Kieboom)
- Basic mac OS X integration (Jesse van den Kieboom)
- Use GtkSpinner instead of GeditSpinner (Ignacio Casal Quinteiro)
- Misc bugfixes
New and updated translations
============================
- crh (Reşat SABIQ)
- en@shaw (Thomas Thurman)
- es (Jorge González)
- lv (Rūdolfs Mazurs)
- ro (Adi Roiban)
- sl (Matej Urbančič)
- ta (Dr,T,Vasudevan)
- th (อาคม โชติพันธวานนท์)
- th (Theppitak Karoonboonyanan)
- zh_CN (樊栖江(Fan Qijiang))
============
gedit 2.29.1
============
New Features and Fixes
======================
- Use the new completion framework in the snippets plugin (Jesse van den Kieboom)
- Misc bugfixes
New and updated translations
============================
- br (Denis ARNAUD)
- ca (Gil Forcada)
- sl (Matej Urbančič)
- zh_CN (Richard Ma)
============
gedit 2.28.0
============
New Features and Fixes
======================
- Misc bugfixes
New and updated translations
============================
- as (Amitakhya Phukan)
- bg (Alexander Shopov)
- bn_IN (Runa Bhattacharjee)
- br (Denis Arnaud)
- ca (Gil Forcada)
- cs (Jiri Eischmann)
- da (Ask H. Larsen)
- en_GB (Philip Withnall)
- et (Ivar Smolin)
- fi (Tommi Vainikainen)
- gl (Antón Méixome)
- gu (Sweta Kothari)
- hi (Rajesh Ranjan)
- kn (Shankar Prasad)
- lt (Gintautas Miliauskas)
- mai (Sangeeta Kumari)
- ml (Ani)
- mr (Sandeep Shedmake)
- nb (Kjartan Maraas)
- or (Manoj Kumar Giri)
- pa (A S Alam)
- pt_BR (Carlos José Pereira)
- ro (Adi Roiban)
- sl (Matej Urbančič)
- sr (Miloš Popović)
- ta (ifelix)
- te (krishnababu k)
- tr (Baris Cicek)
- uk (Maxim V. Dziumanenko)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)
============
gedit 2.27.6
============
New Features and Fixes
======================
- Misc bugfixes
New and updated translations
============================
- ar (Khaled Hosny)
- bn_IN (Runa Bhattacharjee)
- bn (Maruf Ovee)
- br (Denis Arnaud)
- cs (Jiri Eischmann)
- de (Mario Blättermann)
- el (Μάριος Ζηντίλης)
- es (Jorge González)
- et (Ivar Smolin)
- eu (Iñaki Larrañaga Murgoitio)
- fr (Claude Paroz)
- gu (Sweta Kothari)
- hu (Gabor Kelemen)
- it (Milo Casagrande)
- kn (Shankar Prasad)
- ko (Changwoo Ryu)
- nb (Kjartan Maraas)
- pl (Tomasz Dominikowski)
- pt_BR (Fábio Nogueira)
- pt_BR (Rodrigo L. M. Flores)
- pt (Duarte Loreto)
- sr@latin (Goran Rakić)
- sr (Горан Ракић)
- sv (Daniel Nylander)
- ta (I. Felix)
- tr (Baris Cicek)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)
============
gedit 2.27.5
============
New Features and Fixes
======================
- Misc bugfixes
New and updated translations
============================
- ar (Khaled Hosny)
- bg (Yavor Doganov)
- br (Denis Arnaud)
- ca (Gil Forcada)
- ca@valencia (Carles Ferrando Garcia)
- eo (Jacob Nordfalk)
- es (Jorge González)
- et (Ivar Smolin)
- fi (Tommi Vainikainen)
- gl (Antón Méixome)
- pl (Piotr Drąg)
- pt_BR (André Gondim)
- ro (Lucian Adrian Grijincu)
- sv (Daniel Nylander)
- th (Akom C.)
============
gedit 2.27.4
============
New Features and Fixes
======================
- Misc bugfixes
New and updated translations
============================
- ar (Khaled Hosny)
- cy (Iestyn Pryce)
- de (Christian Kirbach)
- es (Jorge González)
- et (Ivar Smolin)
- ga (Seán de Búrca)
- nb (Kjartan Maraas)
- ta (Dr.T.Vasudevan)
============
gedit 2.27.3
============
New Features and Fixes
======================
- Misc bugfixes
New and updated translations
============================
- cs (Marek Černocký)
- cs (Petr Kovar)
- de (Mario Blättermann)
- es (Jorge González)
- et (Ivar Smolin)
- gl (Antón Méixome)
- gu (Sweta Kothari)
- pt_BR (César Veiga)
- sv (Daniel Nylander)
- ta (Dr.T.Vasudevan)
- uk (wanderlust)
============
gedit 2.27.2
============
New Features and Fixes
======================
- New Check Update plugin (Ignacio Casal Quinteiro)
- Remember the search dialog position (Ignacio Casal Quinteiro)
- Do not append the final endline for empty files (Paolo Borelli)
- Mac osx dmg package (Jesse van den Kieboom)
- Misc bugfixes
New and updated translations
============================
- ca (Gil Forcada)
- da (Kenneth Nielsen)
- es (Jorge González)
- et (Ivar Smolin)
- eu (Iñaki Larrañaga Murgoitio)
- ml (Praveen Arimbrathodiyil)
- nb (Kjartan Maraas)
============
gedit 2.27.1
============
New Features and Fixes
======================
- Remove the mmap document loader (Paolo Borelli)
- Remove open location dialog and sample plugin (Paolo Borelli)
- Added public API for document saving (Jesse van den Kieboom)
- Put external tools in a submenu (Jesse van den Kieboom)
- Added language support for external tools (Jesse van den Kieboom)
- Implemented asynchronous reading and writing on external tools (Jesse van den Kieboom)
- Add Quick Open plugin (Jesse van den Kieboom)
- Misc bugfixes
New and updated translations
============================
- bn (Runa Bhattacharjee)
- es (Jorge González)
- fr (Claude Paroz)
- id (Mohammad DAMT)
- ta (Dr.T.Vaasudevan)
============
gedit 2.26.2
============
New Features and Fixes
======================
- Misc bugfixes
New and updated translations
============================
- ar (Khaled Hosny)
- ca (Joan Duran)
- el (Michael Kotsarinis)
- es (Jorge González)
- et (Mattias Põldaru)
- zh_CN (TeliuTe)
============
gedit 2.26.1
============
New Features and Fixes
======================
- Ensure plugins are resident modules (Paolo Borelli)
- Add Fortran 95 snippets (Jens Domke)
- Misc bugfixes
New and updated translations
============================
- Jorge Gonzalez (es)
- Miloš Popović (sr)
- Osama Khalid (ar)
- Raivis Dejus (lv)
- Reşat SABIQ (crh)
- Shankar Prasad (kn)
- Takeshi AIHANA (ja)
- Thanos Lefteris (el)
============
gedit 2.26.0
============
New Features and Fixes
======================
- Misc bugfixes
New and updated translations
============================
- Amitakhya Phukan (as)
- Gintautas Miliauskas (lt)
- I. Felix (ta)
- Ignacio Casal Quinteiro (gl)
- Jennie Petoumenou (el)
- Krishnababu K (te)
- Manoj Kumar Giri (or)
- Rajesh Ranjan (hi)
- Runa Bhattacharjee (bn_IN)
- Yuriy Penkin (ru)
============
gedit 2.25.8
============
New Features and Fixes
======================
- Misc bugfixes
New and updated translations
============================
- Baris Cicek (tr)
- Claude Paroz (fr)
- Duarte Loreto (pt)
- Gabor Kelemen (hu)
- Jesse van den Kieboom (nl)
- Mattias Põldaru (et)
- Milo Casagrande (it)
- Philip Withnall (en_GB)
- Rajesh Ranjan (hi)
- Rajesh Ranjan (mai)
- Sandeep Shedmake (mr)
- Sweta Kothari (gu)
- Takeshi AIHANA (ja)
- Theppitak Karoonboonyanan (th)
============
gedit 2.25.7
============
New Features and Fixes
======================
- Misc bugfixes
New and updated translations
============================
- Adi Roiban (ro)
- Alexander Shopov (bg)
- Chao-Hsiung Liao (zh_HK)
- Chao-Hsiung Liao (zh_TW)
- Clytie Siddall (vi)
- Duarte Loreto (pt)
- Ihar Hrachyshka (be@latin)
- Inaki Larranaga Murgoitio (eu)
- Kenneth Nielsen (da)
- Mikel González (ast)
- Sweta Kothari (gu)
- Tomasz Dominikowski (pl)
- Wouter Bolsterlee (nl)
============
gedit 2.25.6
============
New Features and Fixes
======================
- Misc bugfixes
New and updated translations
============================
- Andre Gondim (pt_BR)
- Andre Klapper (de)
- Changwoo Ryu (ko)
- Christian Kirbach (de)
- Gabor Kelemen (hu)
- Gil Forcada (ca)
- Raivis DEjus (lv)
- Yair Hershkovitz (he)
- 甘露(Gan Lu) (zh_CN.po)
============
gedit 2.25.5
============
New Features and Fixes
======================
- Add Fullscreen Mode (Ignacio Casal Quinteiro)
- Add a configuration dialog for the python console (B. Clausius)
- Rescan plugins when opening the preference dialog (Ignacio Casal Quinteiro)
- Misc bugfixes
New and updated translations
============================
- Daniel Nylander (sv)
- Ilkka Tuohela (fi)
- Ivar Smolin (et)
- Joan Duran (ca)
- Jorge Gonzalez (es)
- Kamil Paral (cs)
- Kjartan Maraas (nb)
- Marcel Telka (sk)
- Petr Kovar (cs)
- Shankar Prasad (kn)
- Theppitak Karoonboonyanan (th)
============
gedit 2.25.4
============
New Features and Fixes
======================
- Add quick syntax highlightig and tab width selection in the statusbar (Jesse van den Kieboom)
- More work on the internal bus system (Jesse van den Kieboom)
- Bugfixes and features for the snippets plugin (Jesse van den Kieboom)
- Parse syntax highlighting language from modelines (Sergej Chodarev)
- Misc bugfixes
New and updated translations
============================
- César Veiga (pt_BR)
- Jorge Gonzalez (es)
============
gedit 2.25.3
============
New Features and Fixes
======================
- Win32 port with installer (Ignacio Casal Quinteiro)
- Internal bus system to allow plugin intercomminication (Jesse van den Kieboom)
- Use GtkSourceView to detect language highlighting (Paolo Borelli)
- Misc bugfixes
New and updated translations
============================
- Jorge Gonzalez (es)
- Theppitak Karoonboonyanan (th)
- Alexander Shopov (bg)
- Claude Paroz (fr)
============
gedit 2.25.2
============
New Features and Fixes
======================
- Fixes to the new plugin system (Paolo Borelli)
New and updated translations
============================
- Daniel Nylander (sv)
============
gedit 2.25.1
============
New Features and Fixes
======================
- Rework the plugin system to have loaders as shared objects (Jesse van den Kieboom)
- Fix build on OSX (Jesse van den Kieboom)
New and updated translations
============================
- Jorge Gonzalez (es)
- Yuriy Penkin (ru)
============
gedit 2.24.2
============
New Features and Fixes
======================
- Fix icon lookup in the filebrowser plugin (Jesse van den Kieboom)
- Allow to move to a line relative to the current line (Ignacio Casal Quinteiro)
- Misc bugfixes
New and updated translations
============================
- Ignacio Casal Quinteiro (gl)
- Leonardo Ferreira Fontenelle (pt_BR)
- Rafael Garcia (la)
============
gedit 2.24.1
============
New Features and Fixes
======================
- Fix performance problem with large dirs in the filebrowser
plugin (Paolo Borelli, Jesse van den Kieboom)
- Misc bugfixes
New and updated translations
============================
- Robert Sedak (hr)
- Anas Afif Emad (ar)
- Ask H. Larsen (da)
- Vladimir Melo (pt_BR)
============
gedit 2.24.0
============
New and updated translations
============================
- Anas Afif Emad (ar)
- I. Felix (ta)
- Ivar Smolin (et)
- Jiri Eischmann (cs)
- Kenneth Nielsen (da)
- Konstantinos Kouratoras (el)
- Mişu Moldovan (ro)
- Tomasz Dominikowski (pl)
- Yuriy Penkin (ru)
=============
gedit 2.23.92
=============
New Features and Fixes
======================
- Revert a workaround for a gvfs bug that has now been fixed (Paolo Borelli)
New and updated translations
============================
- Alexander Shopov (bg)
- Baris Cicek (tr)
- Changwoo Ryu (ko)
- Christian Kirbach (de)
- Gabor Kelemen (hu)
- Gil Forcada (ca)
- Gintautas Miliauskas (lt)
- Hendrik Richter (de)
- Khaled Hosny (ar)
- Laurent Dhima (sq)
- Milo Casagrande (it)
- Miloš Popović (sr)
- Pema Geyleg (dz)
- Praveen Arimbrathodiyil (ml)
- Robert Sedak (hr)
- Sandeep Shedmake (mr)
- Vladimir Melo (pt_BR)
=============
gedit 2.23.92
=============
New Features and Fixes
======================
- Bugfixes related to the gio port (Jesse van den Kieboom, Paolo Borelli)
New and updated translations
============================
- Duarte Loreto (pt)
- Funda Wang (zh_CN)
- Laurent Dhima (sq)
- Nguyễn Thái Ngọc Duy (vi)
- Philip Withnall (en_GB)
- Praveen Arimbrathodiyil (ml)
- Robert Sedak (hr)
- Runa Bhattacharjee (bn_IN)
- Seán de Búrca (ga)
- Sweta Kothari (gu.po)
- Wouter Bolsterlee (nl)
=============
gedit 2.23.91
=============
New Features and Fixes
======================
- Misc bugfixes
New and updated translations
============================
- Arangel Angov (mk)
- Chao-Hsiung Liao (zh_HK)
- Chao-Hsiung Liao (zh_TW)
- Daniel Nylander (sv)
- Fábio Nogueira, Vladimir Melo (pt_BR)
- Goran Rakic (sr@latin)
- Ilkka Tuohela (fi)
- Inaki Larranaga Murgoitio (eu)
- Ivar Smolin (et)
- Jorge Gonzalez (es)
- Kjartan Maraas (nb)
- Manoj Kumar Giri (or)
- Robert-André Mauchin (fr)
- Seán de Búrca (ga)
- Shankar Prasad (kn)
- Sweta Kothari (gu)
- Takeshi AIHANA (ja)
- Theppitak Karoonboonyanan (th)
=============
gedit 2.23.90
=============
New Features and Fixes
======================
- Misc bugfixes related to the gio migration (Jesse van den Kieboom)
New and updated translations
============================
- Ignacio Casal Quinteiro (gl)
- Jorge Gonzalez (es)
- Takeshi AIHANA (ja)
- Christian Kirbach (de)
- Ivar Smolin (et)
- Kjartan Maraas (nb)
- Gil Forcada (ca)
- Ilkka Tuohela (fi)
- Runa Bhattacharjee (bn_IN)
============
gedit 2.23.2
============
New Features and Fixes
======================
- remove libgnome dependency, use eggsmclient for XSMP support (Johan Dahlin, Dan Winship)
============
gedit 2.23.2
============
New Features and Fixes
======================
- Port to gio/vfs, remove gnome-vfs dependency (Jesse van den Kieboom)
- Port to gtkbuilder, remove libglade dependency (Jesse van den Kieboom)
New and updated translations
============================
- Andre Klapper (de)
- Clytie Siddall (vi)
- Daniel Nylander (sv)
- Djihed Afifi (ar)
- Duarte Loreto (pt)
- Fábio Nogueira (pt_BR)
- Gabor Kelemen (hu)
- Gil Forcada (ca)
- Ignacio Casal Quinteiro (gl)
- Ilkka Tuohela (fi)
- Inaki Larranaga Murgoitio (eu)
- Ivar Smolin (et)
- Jorge Gonzalez (es)
- Khaled Hosny (ar)
- Leonardo Ferreira Fontenelle (pt_BR)
- Luca Ferretti (it)
- Máté Őry (hu)
- Philipp Kerling (de)
- Rajesh Ranjan (mai)
- Sweta Kothari (gu)
- Theppitak Karoonboonyanan (th)
- Wouter Bolsterlee (nl)
- Yair Hershkovitz (he)
- Yannig Marchegay (oc)
- Zabeeh Khan (ps)
============
gedit 2.23.1
============
New Features and Fixes
======================
- port the filebrowser plugin to gio/gvfs (Mikael Hermansson, Jesse van den Kieboom)
- start porting internals to gio/gvfs (Paolo Borelli)
- rework some of the python plugins core code (Steve Frécinaux)
New and updated translations
============================
- Jorge Gonzalez (es)
- Claude Paroz (fr)
- Kjartan Maraas (nb)
- Jiri Eischmann (cs)
- Yavor Doganov (bg)
============
gedit 2.22.1
============
New Features and Fixes
======================
- Make Ctrl+D delete the current line
- Misc bugfixes
New and updated translations
============================
- Yair Hershkovitz (he)
- Philip Withnall (en_GB.po)
- Ivar Smolin (et)
- Artur Flinta (pl)
- Claude Paroz (fr)
- Praveen Arimbrathodiyil (ml)
- Jorge Gonzalez (es)
============
gedit 2.22.0
============
New Features and Fixes
======================
- Misc bugfixes
New and updated translations
============================
- Ankit Patel (gu)
- Baris Cicek (tr)
- Changwoo Ryu (ko)
- Djihed Afifi (ar)
- Duarte Loreto (pt)
- Friedel Wolff (af)
- Gabor Kelemen (hu)
- Gintautas Miliauskas (lt)
- Guntupalli Karunakar (hi)
- Ivar Smolin (et)
- Jiri Eischmann (cs)
- Jorge Gonzalez (es)
- Kostas Papadimas (el)
- Luca Ferretti (it)
- Maxim Dziumanenko (uk)
- Rahul Bhalerao (mr)
- Runa Bhattacharjee (bn_IN)
- Stéphane Raimbault (fr)
- Yuri Kozlov (ru)
============
gedit 2.21.2
============
New Features and Fixes
======================
- Misc bugfixes
New and updated translations
============================
- Arangel Angov (mk)
- Artur Flinta (pl)
- Chao-Hsiung Liao (zh_HK)
- Chao-Hsiung Liao (zh_TW)
- Claude Paroz (fr)
- Daniel Nylander (sv)
- David Lodge (en_GB)
- Djihed Afifi (ar)
- Duarte Loreto (pt)
- Gil Forcada (ca)
- Hendrik Brandt (de)
- Ignacio Casal Quinteiro (gl)
- Ihar Hrachyshka (be@latin)
- Ilkka Tuohela (fi)
- Inaki Larranaga Murgoitio (eu)
- Ivar Smolin (et)
- Jiri Eischmann (cs)
- Jonh Wendell (pt_BR)
- Jorge Gonzalez (es)
- Kenneth Nielsen (da)
- Kjartan Maraas (nb)
- Luca Ferretti (it)
- Mark Krapviner (he)
- Nikos Charonitakis (el)
- Pawan Chitrakar (ne)
- Sandeep Shedmake (mr)
- Takeshi AIHANA (ja)
- Theppitak Karoonboonyanan (th)
- Wouter Bolsterlee (nl)
- Yannig Marchegay (oc)
============
gedit 2.21.1
============
New Features and Fixes
======================
- Reimplemented printing using GtkPrint and remove libgnomeprint[ui]
dependency (Paolo Maggi, Paolo Borelli)
- Improvements to the plugin system code (Steve Frécinaux)
- Handle viewports as well as workspaces (Steve Frécinaux)
- Misc bugfixes
New and updated translations
============================
- Alexander Shopov (bg)
- Amitakhya Phukan (as)
- Andre Klapper (de)
- Ani Peter (ml)
- Clytie Siddall (vi)
- Gabor Kelemen (hu)
- Ignacio Casal Quinteiro (gl)
- Ilkka Tuohela (fi)
- Inaki Larranaga Murgoitio (eu)
- Ivar Smolin (et)
- Kjartan Maraas (nb)
- Krishna Babu K (te)
- Matej Urbančič (sl)
- Og Maciel (pt_BR)
- Seán de Búrca (ga)
- Shankar Prasad (kn)
- Sohaib Afifi (ar)
- Takeshi AIHANA (ja)
- Yair Hershkovitz (he)
- Yannig Marchegay (oc)
============
gedit 2.20.3
============
New Features and Fixes
======================
- Properly preserve file permissions and ownership when saving (Paolo Borelli)
New and updated translations
============================
- Gabor Kelemen (hu)
- Ivar Smolin (et)
============
gedit 2.20.2
============
New Features and Fixes
======================
- Fix tools loading in External Tools plugin (Curtis Hovey)
- Fix crash when gtksourceview doesn't find any highlighting file (Paolo Borelli)
- Misc bugfixes
New and updated translations
============================
- Aleś Navicki (be@latin)
- Alexander Shopov (bg)
- Ankit Patel (gu)
- Claude Paroz (fr)
- Daniel Nylander (sv)
- Duarte Loreto (pt)
- Gintautas Miliauskas (lt)
- Ignacio Casal Quinteiro (gl)
- Ihar Hrachyshka (be)
- Ilkka Tuohela (fi)
- Jorge Gonzalez (es)
- Kenneth Nielsen (da)
- Milo Casagrande (it)
- Rhys Jones (cy)
- Tino Meinen (nl)
============
gedit 2.20.1
============
New Features and Fixes
======================
- Fix crash with invalid taglist file in taglist plugin (Paolo Borelli)
- Fix slash-escaping in the find dialog history (Paolo Borelli)
- Support .hidden file in the file browser plugin (Paolo Borelli)
- Bugfixes to the snippet plugin (Paolo Borelli, Jesse van den Kieboom)
New and updated translations
============================
- Baris Cicek (tr)
- Gintautas Miliauskas (lt)
- Takeshi AIHANA (ja)
- Vincent van Adrighem (nl)
============
gedit 2.20.0
============
New and updated translations
============================
- Alexander Shopov (bg)
- Artur Flinta (pl)
- Gabor Kelemen (hu)
- Gintautas Miliauskas (lt)
- Hendrik Richter (de)
- Jamil Ahmed (bn)
- Jorge Gonzalez (es)
- Kiran Chandra (te)
- Laurent Dhima (sq)
- Maxim Dziumanenko (uk)
- Nickolay V. Shmyrev (ru)
- Shankar Prasad (kn)
- Sohaib Afifi (ar)
- Yannig Marchegay (oc)
=============
gedit 2.19.92
=============
New Features and Fixes
======================
- Fix themeing of the message areas with new GTK+ (Ignacio Casal Quinteiro)
- Misc bugfixes
New and updated translations
============================
- Ani Peter (ml)
- Clytie Siddall (vi)
- Duarte Loreto (pt)
- Gabor Kelemen (hu)
- Goran Rakić (sr.po, sr@Latn)
- Inaki Larranaga Murgoitio (eu)
- Ivar Smolin (et)
- Josep Puigdemont i Casamajó (ca)
- Jovan Naumovski (mk)
- Kenneth Nielsen (da)
- Kjartan Maraas (nb)
- Milo Casagrande (it)
- Og Maciel (pt_BR)
- Rajesh Ranjan (hi)
- Takeshi AIHANA (ja)
- Tirumurthi Vasudevan (ta)
=============
gedit 2.19.91
=============
New Features and Fixes
======================
- Escape slashes when selecting text to search (Paolo Maggi)
- Support indent-width setting in modeline (Paolo Borelli)
- Adapt to the latest GtkSourceView changes (Paolo M., Paolo B.)
- Misc bugfixes
New and updated translations
============================
- Ani Peter (ml)
- Ankit Patel (gu)
- Funda Wang (zh_CN)
- Gabor Kelemen (hu)
- Ivar Smolin (et)
- Jorge Gonzalez (es)
- Josep Puigdemont i Casamajó (ca)
- Stéphane Raimbault (fr)
- Takeshi AIHANA (ja)
- Theppitak Karoonboonyanan (th)
- Young-Ho Cha (ko)
=============
gedit 2.19.90
=============
New Features and Fixes
======================
- User Interface to install and uninstall style schemes (Paolo Maggi)
- Make search match color customizable in the style scheme (Paolo M.)
- Tooltips on the document list and tag list (Alexandre Mazari)
- Misc bugfixes
New and updated translations
============================
- Ankit Patel (gu)
- Daniel Nylander (sv)
- Danishka Navin (si)
- Hendrik Richter (de)
- Ilkka Tuohela (fi)
- Inaki Larranaga Murgoitio (eu)
- Jorge Gonzalez (es)
- Kjartan Maraas (nb)
- Kostas Papadimas (el)
- Leonardo Ferreira Fontenelle (pt_BR)
- Takeshi AIHANA (ja)
- Theppitak Karoonboonyanan (th)
- Tirumurthi Vasudevan (ta)
- Žygimantas Beručka (lt)
============
gedit 2.19.3
============
New Features and Fixes
======================
- Remove color settings and syntax highlighting editor from the
preferences dialog and use a style scheme selector (Paolo Borelli,
Paolo Maggi)
- Many improvements to the snippets plugin, notably support for importing
and exporting snippets, support for regex snippets and support for
activating snippets on drag'n'drop (Jesse van den Kieboom)
- Split DocumentLoader and DocumentSaver in abstract class and
subclasses for easier maintainance (Steve Frécinaux)
- Add a gconf preference for smart-home-end (Paolo Borelli)
- Fix external tool saving bug (Alexandre Mazari)
- Adapt to latest GtkSourceView API changes
- Misc Bugfixes
New and updated translations
============================
- Ankit Patel (gu)
- Changwoo Ryu (ko)
- Daniel Nylander (sv)
- Danishka Navin (si)
- Funda Wang (zh_CN)
- Ilkka Tuohela (fi)
- Inaki Larranaga Murgoitio (eu)
- Ivar Smolin (et)
- Jorge Gonzalez (es)
- Luca Ferretti (it)
- Máté Őry (hu)
- Reinout van Schouwen (nl)
- Takeshi AIHANA (ja)
- Theppitak Karoonboonyanan (th)
- Tirumurthi Vasudevan (ta)
============
gedit 2.19.2
============
New Features and Fixes
======================
- Many improvements and fixes to the snippets plugin, in particular
support regex substitution inside snippet placeholders (Jesse van den Kieboom)
- Add a Document::save signal to notify the start of the saving
operation (Alex Cornejo, Steve Frécinaux)
- Adapt to latest GtkSourceView API changes (Paolo Borelli)
- Misc Bugfixes
- Remove Syntax Highlighting configuration from the preference dialog
since it was a pain to use and needs to be rethought to support
gtksourceview 2 style schemes.
New and updated translations
============================
- Changwoo Ryu (ko)
- Clytie Siddall (vi)
- Daniel Nylander (sv)
- Jorge Gonzalez (es)
- Jovan Naumovski (mk)
- Nguyễn Thái Ngọc Duy (vi)
============
gedit 2.19.1
============
New Features and Fixes
======================
- Port to gtksourceview 2: gedit now depends on gtksourceview 1.90.1
and on pygtksourceview 1.90.1 (if python plugins are enabled)
This brings to gedit a way more accurate and powerful highlighting
engine.
- Remove Syntax Highlighting configuration from the preference dialog
since it was a pain to use and needs to be rethought to support
gtksourceview 2 style schemes.
|