-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
1494 lines (1053 loc) · 30.4 KB
/
NEWS
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
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