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
|
Version 3.32.0
--------------
- New stable release
Version 3.31.92
--------------
- Stop using gnome-common
- Translation updates
Version 3.31.90
--------------
- Stop using intltool
- Translation updates
Version 3.12.0
--------------
Misc changes, improvements and fixes:
- Remove old MAINTAINERS file
New and updated translations:
[gd] GunChleoc
Version 3.10.0
--------------
New and updated translations:
[tg] Victor Ibragimov
Version 3.8.0
-------------
New and updated translations:
[fi] Jiri Grönroos
[pt] Duarte Loreto
[tg] Victor Ibragimov
Version 3.7.91
--------------
Misc changes, improvements and fixes:
- do not mention gnome-doc-utils.make as it doesn't exist
New and updated translations:
[ar] Ibrahim Saed, Khaled Hosny
[fur] TmTFx
[ml] Anish A
[sk] Roman Mátyus
[ug] Gheyret Kenji
Version 3.6.0
-------------
Misc changes, improvements and fixes:
- Use bug tracker url in README that is also browsable with GNOME account
- Sync description in doap file with README and add homepage information
New and updated translations:
[hi] Rajesh Ranjan
[ko] Changwoo Ryu
[lv] Rūdolfs Mazurs
[tv] Theppitak Karoonboonyanan
Version 3.5.92
--------------
Updated translations:
[id] Dirgita
[pl] Piotr Drąg
[tr] Muhammet Kara
Version 3.5.91
--------------
Misc changes, improvements and fixes:
- Remove outdated help files - bgo#681268
Updated translations:
[ja] OKANO Takayoshi
[lt] Aurimas Černius
Version 3.5.4
-------------
Misc changes, improvements and fixes:
- Use xdg runtime dir for pid file. Closes: bgo#675447
- Switch to g_clear_object
- Add missing break statement in switch statement
- Remove outdated reference to gnome-panel applets from man page
New and updated translations:
[an] Daniel Martinez
[el] Tom Tryfonidis
[vi] Daniel Martinez
Version 3.4.0
-------------
New and updated translations:
[pa] A S Alam
[pt_BR] Enrico Nicoletto
[te] Krishnababu Krothapalli
[zh_CN] YunQiang Su
Version 3.3.92
--------------
Misc changes, improvements and fixes:
- Fix indentation in the mousetweaks.doap file
New and updated translations:
[as] Nilamdyuti Goswami
[ca] Gil Forcada
[ca@valencia] Carles Ferrando
[cs] Marek Černocký
[da] Kenneth Nielsen
[de] Mario Blättermann
[en_GB] Bruce Cowan
[eu] Iñaki Larrañaga Murgoitio
[fa] Arash Mousavi
[fr] Bruno Brouard
[ko] Changwoo Ryu
[lv] Anita Reitere
[pt] Duarte Loreto
[te] Krishnababu Krothapalli
[uk] Daniel Korostil
Version 3.3.91
--------------
From now on, mousetweaks will use pre-release version increment.
Misc changes, improvements and fixes:
- Update description in the README file
- Update description in the mousetweaks.doap file
New and updated translations:
[bg] Alexander Shopov
[et] Mattias Põldaru
[gl] Fran Diéguez
[he] Yaron Shahrabani
[hu] Gabor Kelemen
[it] Milo Casagrande
[ru] Yuri Myasoedov
[sl] Matej Urbančič
[ta] Dr. T. Vasudevan
[zh_HK] Chao-Hsiung Liao
[zh_TW] Chao-Hsiung Liao
Version 3.3.90
--------------
The releases 3.3.1 to 3.3.5, both versions included, do not exist.
Misc changes, improvements and fixes:
- Fix invalid xml in it.po, by Jiro Matsuzawa
- Fix deprecation warnings
- Change click-type window default to 'show'
- Change default click-type window orientation to vertical
- Add support for middle mouse button dwell-clicks
- Remove gnome-panel applets; mousetweaks does not offer them anymore
- Various build system updates
- Edit explicit email address in AUTHORS file
New and updated translations:
[be] Kasia Bondarava, Ihar Hrachyshka
[es] Daniel Mustieles
[nb] Kjartan Maraas
[pl] Piotr Drąg
[sr] Мирослав Николић
[sv] Daniel Nylander
[te] Krishnababu K
Version 3.2.0
-------------
New and updated translations:
[as] Nilamdyuti Goswami
[ja] Jiro Matsuzawa
[pa] A S Alam
Version 3.1.92
--------------
These version have been skipped
Version 3.1.91
--------------
New and updated translations:
[fa] Arash Mousavi
Version 3.1.5 and 3.1.90
------------------------
These versions have been skipped
Version 3.1.4
-------------
Misc changes, improvements and fixes:
- Delete wrong statement about dependency raising in section 3.1.2 of
NEWS file, bgo #652529
New and updated translations:
[lt] Aurimas Černius
Version 3.1.3
-------------
There is no 3.1.3 release of mousetweaks
Version 3.1.2
-------------
Misc changes, improvements and fixes:
- Fix up the config.h includes
- Remove animate-cursor key from mousetweaks.convert
- Limit passive mouse button grabs to the mouse wheel
- Use new macro for boxed gtypes
- Disable multidevice support in gdk
- Rename LOCALEDIR to GNOMELOCALEDIR
New and updated translations:
[ac@valencia] Carles Ferrando
[ug] Abduxukur Abdurixit
Version 3.1.1
-------------
Misc changes, improvements and fixes:
- Add description to doap file
New and updated translations:
[eo] Kristjan Schmidt
[fi] Jiri Grönroos, Timo Jyrinki (launchpad.net import)
[tr] Muhammet Kara
[ug] Gheyret T. Kenji
Version 3.0.0
-------------
New and updated translations:
[as] Amitakhya Phukan
[bg] Krasimir Chonov
[da] Ask Hjorth Larsen
[de] Mario Blättermann
[eu] Inaki Larranaga Murgoitio
[id] Dirgita, Andika Triwidada
[it] Luca Ferretti
[ja] Takayuki KUSANO
[nb] Kjartan Maraas
[nl] Wouter Bolsterlee
[pt_BR] André Gondim
[ru] Yuri Myasoedov
[sk] Roman Mátyus
[sr] Милош Поповић
[sr@latin] Милош Поповић
[ta] Dr. T. Vasudevan
[tr] Baris Cicek
[ug] Abduxukur Abdurixit
[zh_HK] Chao-Hsiung Liao
[zh_TW] Chao-Hsiung Liao
New and updated manual translation:
[el] Simos Xenitellis
Version 2.91.92
---------------
Misc changes, improvements and fixes:
- Fix compiler warnings
- Add GTK option group
- Change click-type window title to "Hover Click"
- Bump dependency to stable GTK 3.0 release
- Use G_SETTINGS_BIND_GET for settings that never get modified
- Load existing cursors from the library
- Sync schema path with gsettings-desktop-schemas
New and updated translations:
[ca] Gil Forcada
[cs] Marek Černocký
[el] Michael Kotsarinis
[en_GB] Bruce Cowan
[es] Jorge González
[fr] Claude Paroz
[gl] Fran Diéguez
[he] Yaron Shahrabani
[hu] Gabor Kelemen
[ko] Changwoo Ryu
[lv] Rudolfs Mazurs
[pl] Piotr Drąg
[pt] Duarte Loreto
[ro] Lucian Adrian Grijincu
[sk] Roman Mátyus
[sl] Matej Urbančič
[sv] Daniel Nylander
[uk] Daniel Korostil
[zh_CN] Teliute
New and updated manual translation:
[el] Bakaoukas Nikolaos
Version 2.91.91
---------------
New and updated translations:
[nb] Kjartan Maraas
[sv] Daniel Nylander
New and updated manual translation:
[es] Daniel Mustieles
[zh_CN] Teliute
Version 2.91.90
---------------
Misc changes, improvements and fixes:
- Fix signal number argument in callback
- Do a NULL check before referencing a cursor
Version 2.91.6
--------------
New and updated translations:
[cs] Marek Černocký
[de] Paul Seyfert
[fr] Bruno Brouard
[id] Andika Triwidada
[pt_BR] Marcelo Odir, Antonio Fernandes C. Neto, Djavan Fagundes
[zh_HK] Chao-Hsiung Liao
[zh_TW] Chao-Hsiung Liao
Version 2.91.5
--------------
New and updated translations:
[et] Ivar Smolin
[pa] A S Alam
[sv] Daniel Nylander
[ug] Gheyret T. Kenji
[vi] Nguyễn Thái Ngọc Duy
Version 2.91.4
--------------
New and updated translations:
[es] Jorge González
[et] Ivar Smolin
[sl] Matej Urbančič
[ta] Dr. T. Vasudevan
[zh_CN] Yinghua Wang
Version 2.91.3
--------------
Misc changes, improvements and fixes:
- Port applets to libpanelapplet-3
New and updated translations:
[he] Yaron Shahrabani
[gl] Fran Diéguez
[ro] Lucian Adrian Grijincu, Daniel Șerbănescu
[sl] Matej Urbančič
[ug] Gheyret T. Kenji
Version 2.91.2
--------------
Misc changes, improvements and fixes:
- Add gsettings convert data
- Add "geometry" option to set size and position of the click-type window
- Add new "orientation" option to the click-type window
- Remove "animate-cursor" option
- Update git.mk
- Sync with changes in gsettings-desktop-schemas
- Fix mem leak and reduce nr. of cursor image copies
- Don't emit cursor_changed signals if we have set the cursor
- Bump gsettings-desktop-schemas dependency to 0.1.0
- Remove mt-main header file
Bug fixes:
#633844: L10N: Fix a typo
#633932: L10N: Add translation comments for button orientation
New and updated translations:
[ca] Carles Ferrando
[es] Jorge González
[gl] Fran Diéguez
[he] Yaron Shahrabani
[ja] Takayuki KUSANO
[sk] Pavol Šimo
[sl] Matej Urbančič
Version 2.91.1
--------------
Misc changes, improvements and fixes:
- Disable panel applets by default for GNOME 3
- Use gdk_display_get_default instead of GDK_DISPLAY (Javier Jardón)
- Remove GdkGc based drawing code
- Use a common X Display accessor
- Remove mouse orientation checks
- Only install man pages if the applets are built
- Sync with GSettings changes in gnome-settings-daemon
- Launch UA panel instead of the mouse capplet
Bug fixes:
#631533: Adapt to GtkObject removal in GTK3 (Javier Jardón)
#620171: Migrate to GSettings
New and updated translations:
[el] Simos Xenitellis
[es] Jorge González
[et] Ivar Smolin
[he] Yaron Shahrabani
[ko] Changwoo Ryu
[lt] Žygimantas Beručka
[sl] Matej Urbančič
Version 2.32.0
--------------
New and updated translations:
[ar] Khaled Hosny
[da] Ask Hjorth Larsen
[et] Ivar Smolin
[ja] Takayuki Kusano
[nl] Wouter Bolsterlee
[po] Tomasz Dominikowski
[pt_BR] Daniel S. Koda
[ro] Lucian Adrian Grijincu
[ru] Yuri Myasoedov
Version 2.31.92
---------------
New and updated translations:
[en_GB] Philip Withnall
[et] Ivar Smolin
[hu] Gabor Kelemen
[pt] Duarte Loreto
New and updated manual translation:
[cs] Adrian Gunis
Version 2.31.91
---------------
New and updated translations:
[bg] Alexander Shopov
[ca] David Planella
[fr] Bruno Brouard
[sr] Милош Поповић
[sr@latin] Miloš Popović
[zh_HK] Chao-Hsiung Liao
[zh_TW] Chao-Hsiung Liao
New and updated manual translation:
[fr] Claude Paroz
Version 2.31.90
---------------
New and updated translations:
[cs] Adrian Guniš
[id] Andika Triwidada
[it] Milo Casagrande
[pa] A S Alam
New and updated manual translation:
[de] Christian Kirbach
[es] Jorge González
Version 2.31.6
---------------
Misc changes, improvements and fixes:
* Clean up indentations in Makefiles
* Fix spelling mistakes in the manual, by Christian Kirbach - bgo #625770
* Update version of manual to 2.32
New and updated translations:
[de] Mario Blättermann
[es] Jorge González
[gl] Fran Diéguez
[nb] Kjartan Maraas
[sk] Roman Mátyus
[sv] Daniel Nylander
[ta] drtv
[zh_CN] YunQiang Su
New and updated manual translation:
[de] Mario Blättermann
[zh_CN] Teliute, YunQiang Su
Version 2.31.5
---------------
New and updated translations:
[es] Jorge González
[gl] Fran Diéguez
Version 2.31.4
---------------
Misc changes, improvements and fixes:
* Migrate daemon and dwell click to GDBus
* Remove dbus-glib dependency
* Unify code style
* Make singleton classes reusable
* Integrate unix signals into the main loop
* Rework pointer-capture applet
* Update man pages
* Update manual about modified cli commands
* Update manual about drop of AT-SPI dependency
New and updated translations:
[es] Jorge González
[gl] Fran Diéguez
[he] Yaron Shahrabani
[sl] Matej Urbančič
Version 2.31.3
---------------
Misc changes, improvements and fixes:
* Drop the use of AT-SPI to get global mouse events
* Remove dependency from the AT-SPI framework
* Remove a11y gconf key
* Don't use a separate X connection for XTest
* Add private variable to cursor-manager and clean up
* Rename some variables and function names
* Remove unused variable
* Update man page
New and updated translations:
[et] Adrian Guniš
[he] Yaron Shahrabani
[nb] Kjartan Maraas
New and updated manual translation:
[cs] Adrian Guniš
Version 2.31.2
---------------
Misc changes, improvements and fixes:
* Compile with -DGSEAL_ENABLED; bumps gtk+ to 2.18 - closes bgo#612492
New and updated translations:
[ca@valencia] Gil Forcada
[da] Ask H. Larsen
[el] Bakaoukas Nikolaos
[en@shaw] Thomas Thurman
[eu] Iñaki Larrañaga Murgoitio
[nl] Wouter Bolsterlee
[pa] A S Alam
[sr] Милош Поповић
[sr@latin] Miloš Popović
New and updated manual translation:
[el] Marios Zindilis, Simos Xenitellis
Version 2.31.1
---------------
Version 2.31.1 has been skipped
Version 2.30.0
---------------
Misc changes, improvements and fixes:
* Adapt manual to new behaviour of the simulated secondary click
New and updated translations:
[ast] Xandru Armesto
[ca] Gil Forcada
[eu] Iñaki Larrañaga Murgoitio
[fi] Tommi Vainikainen
[hu] Gabor Kelemen
[it] Milo Casagrande
[ko] Changwoo Ryu
[pt] Duarte Loreto
[ru] Leonid Kanter, Yuri Kozlov
[uk] Maxim Dziumanenko
New and updated manual translation:
[cs] Adrian Guniš
[de] Mario Blättermann
[es] Jorge González
[fr] Claude Paroz
Version 2.29.92
---------------
Misc changes, improvements and fixes:
* Fix secondary clicks - closes LP: #525735
New and updated translations:
[de] Christian Kirbach
[en_GB] Bruce Cowan
[hu] Gabor Kelemen
[nb] Kjartan Maraas, Mario Blättermann
[pl] Piotr Drąg
New and updated manual translation:
[de] Mario Blättermann
[es] Jorge González
Version 2.29.91
---------------
Misc changes, improvements and fixes:
* Use input-mouse icon for Enable button
* Add changes of this development cycle to manual
* Add --login option to manpage
New and updated translations:
[cs] Adrian Guniš
[gl] Fran Diéguez
[pt_BR] Vladimir Melo
[ro] Lucian Adrian
[ta] Dr.T.Vasudevan
[zh_HK] Chao-Hsiung Liao
[zh_TW] Chao-Hsiung Liao
Version 2.29.90
---------------
New and updated translations:
[bn] Loba Yeasmeen
[fr] Claude Paroz
[sl] Matej Urbančič
[th] Theppitak Karoonboonyanan
Version 2.29.6
---------------
New and updated translations:
[bg] Alexander Shopov
[eu] Iñaki Larrañaga Murgoitio
[nb] Kjartan Maraas
Version 2.29.5
---------------
Misc changes, improvements and fixes:
* Add --login command-line option
New and updated translations:
[es] Jorge González
[uk] Maxim Dziumanenko
[se] Daniel Nylander
Version 2.29.4
---------------
New and updated translations:
[he] Yaron Shahrabani
[ro] Lucian Adrian Grijincu
[sv] Daniel Nylander
Version 2.29.3
---------------
New and updated translations:
[sl] Matej Urbančič
New and updated manual translation:
[zh_CN] TeliuTe
Version 2.29.2
---------------
Misc changes, improvements and fixes:
* Fix the default dwell mode in the gconf schema file
* Do not daemonize by default and add the --daemonize cli option
New and updated translations:
[es] Jorge González
Version 2.29.1
---------------
Misc changes, improvements and fixes:
* Don't use a pointer grab to lock the cursor - closes bgo #598538
New and updated translations:
[el] Tournaris Pavlos
[et] Ivar Smolin
[ro] Lucian Adrian Grijincu
[ru] Yuriy Penkin
New and updated manual translation:
[cs] Adrian Guniš
Version 2.28.0
---------------
New and updated translations:
[as] Amitakhya Phukan
[da] Per Kongstad
[en_GB] Philip Withnall
[fi] Ilkka Tuohela
[gu] Sweta Kothari
[hi] Rajesh Ranjan
[hu] Gabor Kelemen
[it] Milo Casagrande
[kn] Shankar Prasad
[ko] Changwoo Ryu
[lt] Gintautas Miliauskas
[mai] Sangeeta Kumari
[ml] Peter Ani
[mr] Sandeep Shedmake
[or] Manoj Kumar Giri
[pa] A S Alam
[ro] Adi Roiban
[sl] Matej Urbančič
New and updated manual translation:
[el] Giannis Katsampirhs
Version 2.27.92
---------------
Misc changes, improvements and fixes:
* Fix installation of dwell click applet on GNOME panel
New and updated translations:
[ar] Khaled Hosny
[bn] Israt Jahan
[ca] Gil Forcada
[ca@valencia] Carles Ferrando Garcia
[de] Mario Blättermann
[eu] Iñaki Larrañaga Murgoitio
[nb] Kjartan Maraas
[pl] Tomasz Dominikowski
[pt] Duarte Loreto
[sr] Milan Skocic
[sr@latin] Milan Skocic
[te] Krishna Babu K
New and updated manual translation:
[cs] Adrian Guniš
Version 2.27.91
---------------
Misc changes, improvements and fixes:
* Use AM_SILENT_RULES if available
New and updated translations:
[bg] Alexander Shopov
[cs] Adrian Gunis
[fr] Claude Paroz
[gl] Antón Méixome
[pt_BR] Leonardo Ferreira Fontenelle
[th] Theppitak Karoonboonyanan
[zh_HK] Chao-Hsiung Liao
[zh_TW] Chao-Hsiung Liao
New and updated manual translation:
[de] Mario Blättermann (bgo #591916)
Version 2.27.90
---------------
New and updated translations:
- [gl] Antón Méixome
Version 2.27.5
---------------
New and updated manual translation:
- [de] Mario Blättermann
Version 2.27.4
---------------
Misc changes, improvements and fixes:
* Fix typos in NEWS file
New and updated manual translation:
- [bn_IN] Runa Bhattacharjee
- [ca] Joan Duran
- [cs] Adrian Guniš
- [et] Ivar Smolin
- [he] Yaron Shahrabani
- [sv] Daniel Nylander
- [uk] Maxim Dziumanenko
Version 2.27.3
---------------
Misc changes, improvements and fixes:
* Fix cursor drawing on 64bit platforms - closes bgo#584256
* Use 'test ! -d' in autogen.sh - closes bgo#583311
* Link directly to libX11 - closes bgo#583471
* Fix sequence-point warning - bgo#583993
* Restore contextual menu in click-type window
* Fix POTFILES.in to make intltool extract strings from .ui files
* Get back lost translations from 2.24
* Remove markup from translatable strings
New and updated manual translation:
- [es] Jorge González
- [fr] Claude Paroz
- [ta] drtvasudevan
Version 2.27.2
---------------
Misc changes, improvements and fixes:
* Fix dwell click for left-handed mouse orientation - bgo#582319
* Fix FDL license version of the manual
* Add comment to manual that hardware click interrupts dwell click
New and updated manual translation:
- [el] Giannis Katsampirhs
- [es] Jorge González
Version 2.27.1
---------------
Misc changes, improvements and fixes:
* Changes due to moving from svn to git
* Clean up AUTHORS file
* update copyright year
* remove the INSTALL file from repository
* Automatically generate ChangeLog file when creating a tarball
* Cancel dwell click if a hardware click occurs, RFE bgo #580174
* create m4 directory during autogen.sh, bgo #579397
* Rename MTClosure to MtData
* Use structure bit fields to save some memory
* Optimization to reduce usage of G_TYPE_INSTANCE_GET_PRIVATE
* remove unused virtual methods from MtTimerClass
* Fix FDL license version of the manual
New and updated translations:
- [el] Fotis Tsamis
- [gl] Suso Baleato
- [kn] Shankar Prasad
- [or] Manoj Kumar Giri
- [pa] A S Alam
- [zh_CN] TeliuTe
New and updated manual translation:
- [en_GB] Jen Ockwell
- [fr] Bruno Brouard and Claude Paroz
Version 2.26.0
--------------
New and updated translations:
- [as] Amitakhya Phukan
- [el] Jennie Petoumenou
- [gu] Sweta Kothari, Ankit Patel
- [lt] Vytautas Liuolia
- [mr] Sandeep Shedmake
- [te] Krishna Babu K
- [ru] Yuriy Penkin
New and updated manual translation:
- [de] Mario Blättermann
Version 2.25.92
---------------
Misc improvements/fixes:
* LP #332084: Fix possible crash if accessible object is defunct.
New and updated translations:
- [ca] Gil Forcada
- [cs] Adrian Guniš
- [de] Wolfgang Stoeggl
- [en_GB] Philip Withnall
- [fi] Ilkka Tuohela
- [fr] Bruno Brouard
- [he] Yair Hershkovitz
- [ja] Takeshi Aihana
- [ko] Changwoo Ryu
- [ml] Hari Vishnu
- [pt] Duarte Loreto
- [pt_BR] Fabrício Godoy
- [sl] Matej Urbančič
- [ta] Dr.T.Vasudevan
- [tr] Baris Cicek
- [zh_HK] Chao-Hsiung Liao
- [zh_TW] Chao-Hsiung Liao
Version 2.25.91
---------------
Misc improvements/fixes:
* #571133: Improve long descriptions in schemas.
* #569457: Also keep english gconf values in translations.
New and updated translations:
- [bg] Alexander Shopov
- [da] Per Kongstad
- [es] Jorge González
- [eu] Iñaki Larrañaga Murgoitio
- [hu] Gabor Kelemen
- [nl] Wouter Bolsterlee
- [pa] Amanpreet Singh Alam
- [pl] Tomasz Dominikowski
- [ro] Adi Roiban
- [sv] Daniel Nylander
- [th] Theppitak Karoonboonyanan
- [vi] Clytie Siddall
- [zh_HK] Chao-Hsiung Liao
- [zh_TW] Chao-Hsiung Liao
New and updated manual translation:
- [es] Jorge González
- [it] Milo Casagrande
Version 2.25.90
---------------
Misc improvements/fixes:
* Update manual for GNOME 2.26 and raise its license to GFDL 1.3.
New and updated translations:
- [ca] Gil Forcada
- [fi] Ilkka Tuohela
- [ko] Changwoo Ryu
New and updated manual translation:
- [sv] Daniel Nylander
Version 2.25.5
--------------
Misc improvements/fixes:
* Remove old glade files.
* Improve key descriptions in pointer-capture-applet.schemas.
Bug fixes:
#545059: Use standard icon for activation button on dwell applet
and use standard icon name.
#567197: Use N_() instead of _() for command-line options.
#567483: Add missing <locale.h>.
New and updated translations:
- [es] Jorge González
- [he] Yair Hershkovitz
- [pt_BR] Leonardo Ferreira Fontenelle
- [sl] Matej Urbančič
- [sv] Daniel Nylander
Version 2.25.4
--------------
Misc improvements/fixes:
* Improved descriptions in pointer-capture-applet.schemas
New and updated translations:
- [sl] Matej Urbančič
Version 2.25.3
--------------
This version has been skipped.
Version 2.25.2
--------------
Misc improvements/fixes:
* Increase internal double click delay in dwell mode to
make it compatible to gftp.
Bug fixes:
#562212: Fix conflict when dwell click and simulated secondary
click are simultaneously running.
New and updated translations:
- [cs] Adrian Guniš
- [es] Jorge González
- [et] Ivar Smolin
- [eu] Iñaki Larrañaga Murgoitio
Version 2.25.1
--------------
Misc improvements/fixes:
* Migrated from libglade to GtkBuilder
Bug fixes:
#556946: Fixed accessibility warning at GDM
New and updated translations:
- [et] Ivar Smolin
- [zh_CN] Funda Wang
Version 2.24.0
---------------
Major changes since 2.22.0:
* addition of timing feedback on the cursor for the simulated
secondary click and for the dwell click
* addition of a button to the Dwell Click applet that can be used
to start the dwell feature by dwelling on that button
* draws a line when making the gesture to specify the click type
* it is now possible to set the dwell delay as low as 0.2 second
* addition of more command line options
* is now able to also handle multiscreen setups
Detailed changes since 2.23.92:
Misc improvements/fixes:
* Removed cursor_set guard to avoid out of syncs on grabs
* Fix of a duplicated accelerator in it.po by Luca Ferretti
Bug fixes:
#551762: "Enable Dwell Click" tooltip not marked for translation.
New and updated translations:
- [ar] Djihed Afifi, Usama Akkad
- [bg] Alexander Shopov
- [ca] Gil Forcada
- [cs] Adrian Guniš
- [da] Ask H. Larsen
- [es] Jorge González
- [eu] Iñaki Larrañaga Murgoitio
- [fi] Timo Jyrinki
- [fr] Bruno Brouard
- [he] Yair Hershkovitz
- [hu] Gabor Kelemen
- [it] Milo Casagrande
- [ko] Changwoo Ryu
- [lt] Vytautas Liuolia
- [mr] Sandeep Shedmake
- [or] Manoj Kumar Giri
- [pl] Tomasz Dominikowski
- [pt_BR] Enrico Nicoletto, Leonardo Ferreira Fontenelle
- [ru] Yuriy Penkin
- [sq] Laurent Dhima
- [sv] Daniel Nylander
- [ta] I. Felix
- [tr] Baris Cicek
- [uk] Maxim Dziumanenko
- [zh_CN] Funda Wang
- [zh_HK] Chung-hong Chan
- [zh_TW] Chung-hong Chan
Version 2.23.92
---------------
Misc improvements/fixes:
* Improved drag click handling
* Fix typo causing double clicks to not work
* Fix StatusChanged signal emission.
* Cleanup
Bug fixes:
#551133: Mark modifier labels for translation; patch by Milo Casagrande.
New and updated translations:
- [bn_IN] Runa Bhattacharjee
- [de] Hendrik Richter
- [en_GB] Philip Withnall
- [et] Ivar Smolin
- [fr] Claude Paroz
- [gl] Ignacio Casal Quinteiro
- [ja] Takeshi AIHANA
- [nl] Wouter Bolsterlee
- [pt] Duarte Loreto
- [sl] Matej Urbančič
- [th] Theppitak Karoonboonyanan
Version 2.23.91
---------------
Misc improvements/fixes:
* Multiscreen support
* Fix regression with drag clicks.
* Use theme colors for cursor overlays.
* Drop libgnomeui and libgnome.
Bug fixes:
#532934: Improve secondary clicks on window frames and desktop icons.
New and updated translations:
- [es] Jorge Gonzalez
- [et] Ivar Smolin
- [eu] Inaki Larranaga Murgoitio
- [fr] Robert-André Mauchin
- [gu] Sweta Kothari
- [ml] Harivisnhu, Manilal and Praveen
New and updated manual translation:
- [es] Jorge Gonzalez
Version 2.23.90
---------------
New and updated translations:
- [ar] Djihed Afifi
- [cs] Adrian Guniš
- [es] Jorge González
- [fi] Ilkka Tuohela
- [pt] Duarte Loreto
Version 2.23.6
--------------
Misc improvements/fixes:
* Fix new compile warnings
* Remove Ubuntu logo from figure with Dwell Click applet
Bug fixes:
#545059: Use standard icon name (Matthias Clasen)
Manual:
* Update manual for the coming 2.24 release
New and updated translations:
- [ar] Djihed Afifi
- [es] Jorge González
- [sv] Daniel Nylander
Version 2.23.5
--------------
New features:
* New time animation for enable button in the dwell-click applet
Misc improvements/fixes:
* Change the dwell delay range to 0.2-3.0 sec
* Don't send cursor_changed signals if the new cursor has no name
* Build system improvements
* Don't try to install schemas.in files
* Bump intltool to 0.40.0
Bug fixes:
#543272: Add dependency to xcursor (Thadeu Lima de Souza Cascardo)
#538004: gok does not see synthetic clicks from mousetweaks
New and updated translations:
- [nb] Kjartan Maraas
- [th] Theppitak Karoonboonyanan
Version 2.23.4
--------------
Misc improvements/fixes:
* Fix memory leak
* Code cleanup
New and updated translations:
- [ar] Djihed Afifi
- [bg] Alexander Shopov
- [es] Jorge Gonzalez
- [gl] Ignacio Casal Quinteiro
- [he] Yair Hershkovitz
- [nb] Kjartan Maraas
- [vi] Clytie Siddall
Version 2.23.3
--------------
New features:
* Add dwellable On/Off button to dwell applet
* Show warning if gnome-mouse-properties cannot launch
Misc improvements/fixes:
* Check on start-up if daemon is already running
* Code cleanup
* Add more command-line options
* Fix typos in command-line options
* Fix ref counting bug in dwell applet glade file
* Fix minor HIG issue in dwell applet
New and updated translations:
- [ar] Djihed Afifi
- [es] Jorge Gonzalez
- [gl] Ignacio Casal Quinteiro
- [or] Subhransu Behera
Version 2.23.2
--------------
Misc improvements/fixes:
* Improve Assistive Technology warning. (# 531693)
New and updated translations:
- [es] Jorge Gonzalez
Version 2.23.1
--------------
New features:
* Cursor animation.
* Add simple line drawing for gesture mode.
Misc improvements/fixes:
* Move to dbus-glib.
* Use new 'show-page' option of mouse capplet.
* Improve secondary clicks on gnome-panel.
Bug fixes:
#525032: Fix --as-needed linking.
New and updated translations:
- [cs] Adrian Gunis
- [de] Hendrik Brandt
- [es] Jorge Gonzalez
- [nn] Eskild Hustvedt
- [sl] Matej Urbančič
Version 2.22.0
---------------
New and updated translations:
- [da] Hjorth Larsen
- [en_GB] Philip Withnall
- [es] Jorge Gonzalez
- [hi] Rajesh Ranjan
- [ja] Takeshi Aihana
- [ko] Young-Ho Cha, Changwoo Ryu
- [lt] Gintautas Miliauskas, Vytautas Liuolia
- [ml] Arun KR
- [mr] Sandeep Shedmake
- [nb] Kjartan Maraas
- [nl] Hendrik Maryns
- [pl] Gnome PL Team
- [ru] Yuriy Penkin
- [ta] Tirumurthi Vasudevan, I. Felix
- [tr] Emrah Ünal
- [uk] Maxim Dziumanenko
Updated manual translation:
- [es] Jorge Gonzalez
Version 2.21.92
---------------
New and updated translations:
- [ar] Djihed Afifi
- [ca] Gil Forcada
- [de] Hendrik Brandt
- [el] Giannis Katsampiris
- [fi] Ilkka Tuohela
- [fr] Robert-André Mauchin, Claude Paroz
- [hu] Balint Laza
- [it] Luca Ferretti
- [nb] Kjartan Maraas
- [pa] Amanpreet Singh Alam
- [th] Theppitak Karoonboonyanan
- [zh_HK] Chao-Hsiung Liao
- [zh_TW] Chao-Hsiung Liao
New and updated manual translations:
- [el] Giannis Katsampiris
Version 2.21.91
---------------
Misc improvements/fixes:
* Improve --shutdown handling
* Fix focus handling in click-type window
* Set bonobo environment for dwell applet
* Fix critical gconf error
Bug fixes:
LP #188872: Fix compilation with SUN CC (Li Yuan)
New and updated translations:
- [ar] Djihed Afifi
- [de] Hendrik Brandt
- [gl] Ignacio Casal Quinteiro
- [mk] Jovan Naumovski
- [oc] Yannig Marchegay
- [pt_BR] Luiz Armesto
New and updated manual translations:
- [es] Jorge Gonzalez
- [oc] Yannig Marchegay
Version 2.21.90
---------------
Misc improvements/fixes:
* Move context menus of applets to external XML file
* Mark schema files for translation and update descriptions
* Fix command-line -m switch to enable the correct mode
* Addition and updates of man pages (Francesco Fumanti)
New and updated translations:
- [ar] Djihed Afifi
- [ca] Gil Forcada
- [es] Jorge Gonzalez
- [eu] Inaki Larranaga Murgoitio
- [it] Luca Ferretti
- [ja] keblo1 gmail com imported from Launchpad
- [nb] Kjartan Maraas
- [pt] Duarte Loreto
- [sl] Matej Urbančič
- [sv] Daniel Nylander
Version 2.21.5
--------------
New features:
First development release as GNOME module.
Misc improvements/fixes:
* Move GUI to gnome-control-center mouse capplet
* Remove autostart handling
* Misc changes for GNOME migration
New and updated translations:
- Gerd Kohlberger [de]
- Francesco Fumanti [it] [fr]
|