forked from bk138/gromit-mpx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
1528 lines (1019 loc) · 45.3 KB
/
ChangeLog
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
commit c2b4d4a044edea046494e6c628c01ea26e8246a5
Author: Christian Beier <[email protected]>
Date: Wed Nov 16 22:34:09 2016 +0100
Make the line thickness changer applicable to mouse drawing as well.
This commit removes the special mouse handling by settings default
pressure to full-on. Thus, dynamic line thickness will be taken into account
for mouse events as well now.
commit 5b50ba374d5c46e5cc3ee3e9e5d9d3501e6ce5ad
Author: Christian Beier <[email protected]>
Date: Wed Nov 16 20:04:38 2016 +0100
CMake: mark all libs as required.
commit d38cb4217a9eb42178285a12716bd4308bebcd8d
Author: Christian Beier <[email protected]>
Date: Wed Nov 16 11:51:10 2016 +0100
Update man page a bit.
commit 1b6c55804e80a1483cdf66afaa7c1e6db101c25a
Author: Christian Beier <[email protected]>
Date: Tue Nov 15 20:13:59 2016 +0100
Fix help dialog formatting.
Was broken by 463afe30133b5e8cc814c77aef4e186696d55eca.
commit fc00515902d387dc4b99c6aa5eb80f04cc714d14
Author: Christian Beier <[email protected]>
Date: Tue Nov 15 19:42:53 2016 +0100
Update NEWS.
commit 806562e917c1a148e36be56fe427c1fc93967928
Author: Christian Beier <[email protected]>
Date: Tue Nov 15 19:25:31 2016 +0100
Update TODO.
commit b09bc0117fd65965570771360e8854c52e35f920
Merge: 8cf5da1 ce06532
Author: Christian Beier <[email protected]>
Date: Tue Nov 15 19:22:38 2016 +0100
Merge pull request #33 from russel/cmake-build
Add a first cut at a CMake build system
commit ce065329e314ee63564ea0d36fdd72e0626b5296
Author: Russel Winder <[email protected]>
Date: Sun Nov 13 08:10:09 2016 +0000
Add a first cut at a CMake build system – allows for use of CLion as IDE.
commit 8cf5da19e10cab9b985e84852942a2e1b6cea1cb
Author: Christian Beier <[email protected]>
Date: Mon Nov 14 10:46:46 2016 +0100
TravisCI: add a build badge to README.md.
commit 35bb13f2846f32add7700c4a14981020d8417e2e
Author: Christian Beier <[email protected]>
Date: Mon Nov 14 10:43:35 2016 +0100
TravisCI: switch to a more recent Ubuntu.
commit 4d72eb7c0f1827626261590a04b55e07a58e6918
Author: Christian Beier <[email protected]>
Date: Mon Nov 14 09:26:04 2016 +0100
Add automake to Travis build deps.
commit ac31c08f81452b3834a922658b3468e6a961d12d
Author: Christian Beier <[email protected]>
Date: Mon Nov 14 09:19:07 2016 +0100
Add a .travis.yml file.
commit 7a3c494425d70e37076f86c18380f29ed017da41
Merge: a3bd7ab 620bc36
Author: Christian Beier <[email protected]>
Date: Mon Nov 14 08:57:18 2016 +0100
Merge pull request #34 from barak/upstream
minor matters noted while packaging latest development version
commit 620bc3677d130722a235035052c74b81a0c1ac7e
Author: Barak A. Pearlmutter <[email protected]>
Date: Sun Nov 13 23:05:43 2016 +0000
add desktop file keywords, silencing lintian tag desktop-entry-lacks-keywords-entry
commit 463afe30133b5e8cc814c77aef4e186696d55eca
Author: Barak A. Pearlmutter <[email protected]>
Date: Sun Nov 13 22:35:01 2016 +0000
address gcc -Werror=format-security
commit 545f5e84265fc1e18927d8b2f453c77b1c8e66ad
Author: Barak A. Pearlmutter <[email protected]>
Date: Sun Nov 13 22:28:06 2016 +0000
AX_CFLAGS_WARN_ALL and automake subdir-objects
commit 13a967101475409d57fb96a6514683b3d5cc0e75
Author: Barak A. Pearlmutter <[email protected]>
Date: Sun Nov 13 22:12:33 2016 +0000
git ignore build debris
commit a3bd7ab8028d4544d7396e9bcf69abdf2862356a
Author: Christian Beier <[email protected]>
Date: Sun Nov 13 01:04:29 2016 +0100
Only use the X11-specific bits in input device setup when actually running on an X11 display.
commit efb3e4a603e33487c9b51e9eb92e65ba42555a4a
Author: Christian Beier <[email protected]>
Date: Sat Nov 12 20:34:40 2016 +0100
Use a commonly available font for the SVG icon.
commit 6ca9dc53a55e07bcb9c4edc0870664017a1d6487
Author: Christian Beier <[email protected]>
Date: Sat Nov 12 20:29:58 2016 +0100
Update SVG icon.
commit 20dee4f7aac4da4fa1c45c53b9da19846175eef5
Author: Christian Beier <[email protected]>
Date: Sat Nov 12 20:10:58 2016 +0100
Convert the tray icon code to be compatible to Ubuntu-Unity.
commit b9df54f24b9100653268423039c3acdab28a1a78
Author: Christian Beier <[email protected]>
Date: Sun Oct 16 17:57:30 2016 +0200
Add a poor man's help dialog displaying at least the hot key commands.
commit b98a9ef9da63afa1093d15dea5e606f4c9921126
Author: Christian Beier <[email protected]>
Date: Sun Oct 16 15:50:03 2016 +0200
Add (still empty) help menu item.
commit 9db0439a2ec9ec9ad79827ad0cf8c15530c462c6
Author: Christian Beier <[email protected]>
Date: Sun Oct 16 14:03:39 2016 +0200
Version up.
commit 519767765d9bf91e85a6f09776ffc82460268e16
Author: Christian Beier <[email protected]>
Date: Sun Oct 16 14:03:03 2016 +0200
Get the About dialog version from the build system.
commit 5fc19c7f68fa4151b7e3bf20824e31bfb1d308a4
Author: Christian Beier <[email protected]>
Date: Sat Oct 15 16:51:28 2016 +0200
Rework try icon menu to be device-specific.
Problem though is that GDK always reports the core pointer, event if another
master clicked the menu. mhhh.
commit f83c153ea76e17825ddbfc333754eb208a5deb28
Author: Christian Beier <[email protected]>
Date: Fri Oct 14 16:43:56 2016 +0200
Revert "flatten into single Makefile.am"
This reverts commit 2bb6f900f144332b08016d390450fc42b7d8f889.
It made developing cumbersome as make has to be called from outside the
source directory.
commit d632a9a823500bc650e8e9c526216fc9199eaebe
Author: Christian Beier <[email protected]>
Date: Fri Oct 14 15:04:53 2016 +0200
Fix two more warnings.
commit 917d8c10f11db115d328ed5738056d536bbfb34f
Author: Christian Beier <[email protected]>
Date: Fri Oct 14 15:03:30 2016 +0200
Convert all deprecated GdkColor stuff to GdkRGBA.
commit 04bb86fa5bb82ee0443dbfe4fbef7a1739467df2
Author: Christian Beier <[email protected]>
Date: Fri Oct 14 14:38:42 2016 +0200
Add an About dialog.
Version still hardcoded...
commit c8ea7dd4e0fc54e4d54093a6bdf8d9235622af4c
Author: Christian Beier <[email protected]>
Date: Mon Oct 10 20:16:58 2016 +0200
Rework ther systray icon find logic to something that actually works.
commit 4ebf4c89f29a14a764e6667cd74166546e132899
Author: Christian Beier <[email protected]>
Date: Mon Oct 10 10:23:44 2016 +0200
Fix path to installed systray icons.
commit 721dd2afc936a1322beae43fba970d29bbd82501
Author: Christian Beier <[email protected]>
Date: Mon Oct 10 10:20:46 2016 +0200
Use the SVG icon for the tray.
commit 52ffa118ff4c2f8923681198507301a2e55b5165
Author: Christian Beier <[email protected]>
Date: Mon Oct 10 10:20:25 2016 +0200
Fix font and clipping on SVG icon.
commit 7bc446198a164ad10f7936aa883f0b5f1808ff30
Author: Christian Beier <[email protected]>
Date: Mon Oct 10 10:03:19 2016 +0200
Change the SVG icon to more resemble the original PNG one.
commit ded5df902b3b1b4c674e9edf65981c747b218318
Author: Christian Beier <[email protected]>
Date: Mon Oct 10 09:52:10 2016 +0200
Try to load tray icon from different locations.
commit 3ed28df1135898529b78e94a3dcaba7bc015187d
Author: Christian Beier <[email protected]>
Date: Sun Oct 9 15:58:29 2016 +0200
Replace some more deprecated calls in callbacks.c.
commit 1ec34cfeedec9504ccd6e559ca42b176de344c79
Author: Christian Beier <[email protected]>
Date: Sun Oct 9 15:56:57 2016 +0200
Replace some deprecated GTK/GDK functions.
commit 7bc5f21fd2f8033320d927c5765e47705a9dd81f
Author: Christian Beier <[email protected]>
Date: Sat Oct 8 18:34:45 2016 +0200
Get rid of the X11 intrinsics to find the paired device in snoop_key_press().
commit 53f981df8e469f1e3c2c19fd2ae1eec0c2d80619
Author: Christian Beier <[email protected]>
Date: Sat Oct 8 17:12:30 2016 +0200
Add a motion debug log.
commit 6d463e7a7b38c74ea5ba7d29ca672fad9b965a87
Merge: 2abb29b 7374264
Author: Christian Beier <[email protected]>
Date: Fri Oct 7 01:18:59 2016 +0200
Merge pull request #26 from tobias47n9e/patch-1
README: Add some required packages for building
commit 73742645a5d55bba88c23024d1c883457be8af34
Author: Tobias Schönberg <[email protected]>
Date: Thu Oct 6 20:57:24 2016 +0200
README: Add some required packages for building
commit 2abb29b9ba6aeee5644602bf65aba44664b16e03
Merge: 98e92c2 2bb6f90
Author: Christian Beier <[email protected]>
Date: Thu Aug 27 12:29:01 2015 +0200
Merge pull request #21 from barak/tweaks
Tweaks from barak
commit 98e92c282e160889db2c17330945e897cd59093a
Merge: fe9f718 bb5688e
Author: Christian Beier <[email protected]>
Date: Mon Aug 24 12:35:47 2015 +0200
Merge pull request #20 from Tuxilero/master
Opacity support
commit bb5688e9cee6551d66c2c4ae5479aad352d411a1
Author: Lukas Hermann <[email protected]>
Date: Sat Aug 22 17:50:48 2015 +0200
Update README.md
commit ecb5d9f022bd736190d7d0c91ecb2f8aefcce496
Merge: 344c69a 4ea5ed0
Author: Lukáš Hermann <[email protected]>
Date: Fri Aug 21 13:50:05 2015 +0200
Merge branch 'master' of https://github.com/Tuxilero/gromit-mpx
commit 344c69a2fd59db2070b5f8f4ec8d84393655802d
Author: Lukáš Hermann <[email protected]>
Date: Fri Aug 21 13:49:33 2015 +0200
Opacity menu entry, argument fix
commit 4ea5ed078c4df3f666a61a349c003b4d8baa20a0
Author: Lukas Hermann <[email protected]>
Date: Fri Aug 21 11:58:57 2015 +0200
Update README.md
commit 188dd42cbf1db93606e4108f1f52500279f42a4d
Author: Lukáš Hermann <[email protected]>
Date: Fri Aug 21 11:57:07 2015 +0200
Opacity support
commit fe9f718c932aea8828a06f5df096c52d8d08f57b
Merge: a506290 bb51710
Author: Christian Beier <[email protected]>
Date: Sun May 10 18:03:09 2015 +0200
Merge pull request #17 from wavexx/minwidth
Add minsize as a pen setting (defaulting to 1).
commit 2bb6f900f144332b08016d390450fc42b7d8f889
Author: Barak A. Pearlmutter <[email protected]>
Date: Thu May 7 16:19:24 2015 +0100
flatten into single Makefile.am
commit db7d9bf8990b4b7b56d53b031fe30c19795cb9e2
Author: Barak A. Pearlmutter <[email protected]>
Date: Thu May 7 16:13:48 2015 +0100
fix clipped svg icon
commit 5a7f6333b06e268b0d83e10c2c725d888f9cff1f
Author: Barak A. Pearlmutter <[email protected]>
Date: Thu May 7 16:03:50 2015 +0100
update construct in configure.ac
commit bb51710f4f3371480030ae7f9d6da91a1f37e6ea
Author: Yuri D'Elia <[email protected]>
Date: Thu May 7 14:39:03 2015 +0200
Add minwidth as a pen setting (defaulting to 1).
commit a506290adff369962a4eab3c2865285221af223e
Author: Christian Beier <[email protected]>
Date: Tue Feb 3 14:01:04 2015 +0100
Add debug output if user conf file not found.
commit a9a76ac0c97ef3852c22c099e59145a576101d67
Merge: 964b161 05a2c0b
Author: Christian Beier <[email protected]>
Date: Sun Mar 30 06:38:05 2014 +0200
Merge pull request #14 from barak/upstream
install README.md
commit 05a2c0bff71d5747b599a04727d428e89ce40fa0
Merge: fb3c7f8 964b161
Author: Barak A. Pearlmutter <[email protected]>
Date: Sat Mar 29 22:40:24 2014 +0000
Merge remote-tracking branch 'upstream/master' into upstream
commit 964b1615700b5c84c5fc8a1d41e86092bb4876a2
Merge: 4f9e690 16aba76
Author: Christian Beier <[email protected]>
Date: Sat Mar 29 06:37:58 2014 +0100
Merge pull request #13 from mehmetaergun/patch-2
typo fix without the i
commit 16aba766e6d3a7e7c5df296e6d208c51e859895f
Author: Mehmet Atif Ergun <[email protected]>
Date: Sat Mar 29 00:33:44 2014 -0400
typo fix without the i
commit fb3c7f8f54961226d9cde7f137522b90f9d4e7d3
Author: Barak A. Pearlmutter <[email protected]>
Date: Thu Mar 20 13:46:14 2014 +0000
inform build system that README is now README.md
commit 4f9e690f2b98743fcc2164e0c666372a54101725
Merge: 2bac387 a7ba808
Author: Christian Beier <[email protected]>
Date: Wed Mar 19 15:16:08 2014 +0100
Merge pull request #11 from barak/upstream
Upstream
commit a7ba80827b0a14682dacd99758f1cc727ed73b91
Author: Barak A. Pearlmutter <[email protected]>
Date: Wed Mar 19 13:31:00 2014 +0000
further markdown-ify README.md
commit 59573f69df610295a918408a45fca2c4edd07b50
Author: Barak A. Pearlmutter <[email protected]>
Date: Wed Mar 19 13:27:11 2014 +0000
markdown-ify README.md
commit e9ee9c5689be5da8df89c8f3fd18b3a8e0b94772
Author: Barak A. Pearlmutter <[email protected]>
Date: Wed Mar 19 13:05:20 2014 +0000
mv README README.md
commit aa7be9975835e9e3c86c50470f812e9adc34f111
Author: Barak A. Pearlmutter <[email protected]>
Date: Wed Mar 19 12:58:45 2014 +0000
trim whitespace in README
commit 2bac387a5bf84029ce69a0f33757b4c6fe52372a
Merge: 6112ffa 41c09e1
Author: Christian Beier <[email protected]>
Date: Tue Mar 18 12:38:00 2014 +0100
Merge pull request #10 from TaoK/patch-1
Update README to reference similar tools
commit 41c09e16f35f2247a22727add4896cd2f873d8f9
Author: Tao Klerks <[email protected]>
Date: Mon Mar 17 15:58:25 2014 -0400
Update README to reference similar tools
Adding some references to equivalent or similar utilities for Windows (and Linux) works both ways - would make it easier to find this if you know the windows tools, and helps those who (like me) find the Linux utility but have a hard time finding the windows equivalent.
commit 6112ffaa144b37fd785475976de23db652acedf1
Author: Christian Beier <[email protected]>
Date: Mon Nov 4 18:14:41 2013 +0100
Put the backend check into the backend specific file.
commit 717b7d6d241209d7565b7141695c8c01b8bda52d
Author: Christian Beier <[email protected]>
Date: Mon Nov 4 17:33:04 2013 +0100
Add GDK platform support check.
commit 64a46929326323f32eb99625e8b2253fcbea8273
Author: Christian Beier <[email protected]>
Date: Sat Nov 2 15:15:26 2013 +0100
Move X11 specific stuff into input.c, prepping for native Wayland support some time.
commit 1e4e806d46c6836b57531eefc83fb6b0a9d6db52
Merge: 1f34d32 42c44ca
Author: Christian Beier <[email protected]>
Date: Thu Oct 17 13:35:53 2013 -0700
Merge pull request #8 from nwhitehead/undo
Add simple undo functionality.
commit 42c44caa4f505454d08898a34694cac759ab686e
Author: Nathan Whitehead <[email protected]>
Date: Wed Oct 16 12:03:55 2013 -0700
Document undo/redo hotkey binding.
commit a649282cf2532751b26e448f444efa6573380852
Author: Nathan Whitehead <[email protected]>
Date: Wed Oct 16 11:57:50 2013 -0700
Add undo/redo hotkey.
Press of undo hotkey is undo, shift-press is redo.
No action when window is hidden.
commit 974cb7bbf7f94eb6f061a3a1042935e93e268eb7
Author: Nathan Whitehead <[email protected]>
Date: Wed Oct 16 11:07:00 2013 -0700
Add undo/redo menu items to systray menu.
commit d05872ea6ef9ff508877abba184b0589b496257f
Author: Nathan Whitehead <[email protected]>
Date: Wed Oct 16 10:34:04 2013 -0700
Update documentation for undo/redo.
commit 3f94c3e1fce50c46a2223b52a5160f62f5160f14
Author: Nathan Whitehead <[email protected]>
Date: Wed Oct 16 10:24:38 2013 -0700
Add multiple levels of undo/redo.
Allows undo/redo using --undo and --redo commands. Currently preallocates
large surfaces to save entire drawing state, wastes memory.
commit bc7b69e463c87559162f82b1529dbc2a20cb1624
Author: Nathan Whitehead <[email protected]>
Date: Wed Oct 16 00:12:22 2013 -0700
Add simple undo functionality.
An extra backing surface is used to record the screen state between
strokes. Adds "gromit-mpx --undo" and "gromit-mpx --redo" commands.
Both have the same effect, swap undo backing surface and current
backing surface. Prepares for future multiple levels of undo and redo.
commit 1f34d327397f0fa6d1c8171fe3beb4f3eaaf393f
Merge: e24553c 51043ae
Author: Christian Beier <[email protected]>
Date: Sat Aug 31 08:27:10 2013 -0700
Merge pull request #4 from AlisterH/patch-1
Update README: correct references to the config file and its location
commit 51043aeef906412fb66856d8fa8c7ca32604ccdd
Author: AlisterH <[email protected]>
Date: Sat Aug 31 16:39:02 2013 +1200
Update README: correct references to the config file and its location
commit e24553c6bf42fc8dffe3a4ab341e42469059d62c
Author: Christian Beier <[email protected]>
Date: Mon Aug 19 20:58:19 2013 +0200
Update version to 1.1.
commit 2d0542bdca5f1ba2d5fad8b0b7dfc4cddd9f4e1a
Author: Christian Beier <[email protected]>
Date: Sun Aug 18 14:23:55 2013 +0200
Update README with more precise build instructions.
commit 1f3714d8d0f178d2267d3d3b6db678a2420fc7bb
Merge: e3af81c 78cfa4f
Author: Christian Beier <[email protected]>
Date: Tue Aug 13 10:51:59 2013 -0700
Merge pull request #1 from barak/upstream-tweaks
Merge work done by Barak A. Pearlmutter: autotools update, icon and desktop file update, silence compiler warnings etc.
commit 78cfa4fdb33d41123997fe77a15a51afc97e8bad
Author: Barak A. Pearlmutter <[email protected]>
Date: Tue Aug 13 00:42:21 2013 +0200
update URL to new upstream home
commit fd49ec62fe87c540c8f029a3aa0cdacf9fc2d4c6
Merge: e9fe472 e3af81c
Author: Barak A. Pearlmutter <[email protected]>
Date: Tue Aug 13 00:35:02 2013 +0200
Merge branch 'upstream' into upstream-tweaks
commit e3af81c48baba3cd12538d94c670e5e6f7fcf0bd
Author: Christian Beier <[email protected]>
Date: Tue Aug 13 00:04:29 2013 +0200
Rename Gromit mentions in stderr to Gromit-MPX.
commit 142c4ed39d66d4ae613bb5987f3bda517406eb6c
Author: Christian Beier <[email protected]>
Date: Tue Aug 13 00:02:27 2013 +0200
Do not use a leading . for files stored in $XDG_CONFIG_HOME.
commit e9fe4723bd263e50f6bc2af7afe2e7fd719d35bc
Author: Barak A. Pearlmutter <[email protected]>
Date: Sat Feb 16 23:52:42 2013 +0000
line thickener menu item
commit 1e45014a2bbb352f666e87983f7c6fb987aff69b
Author: Barak A. Pearlmutter <[email protected]>
Date: Mon Feb 11 10:12:36 2013 +0000
thicken MPX on icon for visibility
commit 726aed3a2baa83a80e88c519c8fdb891a79e4d33
Author: Barak A. Pearlmutter <[email protected]>
Date: Fri Feb 8 14:22:01 2013 +0000
remove debian subdirectory from package proper
commit 07a3eed9489a63f8542ae1cab846516fd8f4d964
Author: Barak A. Pearlmutter <[email protected]>
Date: Fri Feb 8 14:21:43 2013 +0000
move man page into package proper
commit fd0df3ba22d9f493c7199e66b9ba1ca3b37f7a26
Author: Barak A. Pearlmutter <[email protected]>
Date: Sun Feb 10 23:14:50 2013 +0000
add cpp macro DEFAULT_HOTKEY that can be -D'ed at compile time
commit 8798bbec36f4798fd3bca68030e15e917d42da03
Author: Barak A. Pearlmutter <[email protected]>
Date: Sun Feb 10 15:19:31 2013 +0000
change font of "MPX" in scalable icon
commit 2f6c3c759aff912f680188e7889d44a3dfc053d9
Author: Barak A. Pearlmutter <[email protected]>
Date: Thu Feb 7 16:46:53 2013 +0000
Add "MPX" to scalable icon.
commit 358b6c43bb19b7fd852ab1eec07caf2895298251
Author: Barak A. Pearlmutter <[email protected]>
Date: Thu Feb 7 16:38:59 2013 +0000
Add scalable icon, copied from debian gromit git repo; inform Makefile.am
The scalable icon is installed in .../icons/scalable/apps/
commit 7ed810b2185df1cc5d3af919260e03787c2ce1e2
Author: Barak A. Pearlmutter <[email protected]>
Date: Thu Feb 7 10:37:42 2013 +0000
Git ignore build debris.
commit aa95fa9407228a26d1110216ce2eb8f1b5411caf
Author: Barak A. Pearlmutter <[email protected]>
Date: Thu Feb 7 10:36:18 2013 +0000
Update autotools.
Delete autogen.sh as this script is unnecessary.
Just use: autoreconf --install
Run autoupdate, autoscan.
Remove gromit_mpxdocdir; docdir is standard and points to the correct
package-specific documentation directory.
Remove -lm from Makefile.am, instead support in configure.ac
Appropriate AC_SUBSTs are done inside PKG_CHECK_MODULES, can remove
from configure.ac.
Pass libraries from configure to make via standard interface: LIBS.
Prune configure.ac debugging support (-DDEBUG is unused) and
migrate remaining extra compiler warning options to Makefile.am.
Add correct package bug report pointer and homepage.
Delete INSTALL, as it is created by autoreconf (if foreign is removed.)
Automake maintainer-mode is goo is deprecated, remove.
commit 753fc6e876f502dc3556f6ee3098dd161840ba62
Author: Barak A. Pearlmutter <[email protected]>
Date: Thu Feb 7 16:05:33 2013 +0000
Snarf desktop file tweaks from repo: git://github.com/pld-linux/gromit
commit ac6aeebe20173ea3a7435f6b5447849b3b688450
Author: Barak A. Pearlmutter <[email protected]>
Date: Thu Feb 7 11:04:37 2013 +0000
Address desktop-file-validate issues.
commit fe1c5b1ad0fbee9768c0e954ec9c0ab9c22e0bc8
Author: Barak A. Pearlmutter <[email protected]>
Date: Thu Feb 7 15:55:56 2013 +0000
Remove unused variable have_key.
commit f6296ed45397d38bb531cd4e738ced3e8babc132
Author: Barak A. Pearlmutter <[email protected]>
Date: Thu Feb 7 15:52:28 2013 +0000
Silence sign/size compiler warnings.
commit 5b224b9792ccdb52f50740ca3c124331bf707049
Author: Christian Beier <[email protected]>
Date: Mon Sep 3 16:33:29 2012 +0200
Use XDG .config dir for user config file.
commit 335ff721b4416a4d5cd03a987f81716101e03540
Author: Christian Beier <[email protected]>
Date: Mon Sep 3 16:25:39 2012 +0200
Only grab master devices.
If we grab slaves as well, we get no input at all.
commit 58bdef4d49ab4269fedda55e825ce8ad8a62076c
Author: Monty Montgomery <[email protected]>
Date: Mon Sep 3 16:03:47 2012 +0200
Add reasonably complete support for slave devices.
The current code doesn't see slave devices. I'm guessing it all worked
when you originally updated the code since most of the support was already
there, but it got broken by further shifts in the XI2 model.
1) I have a thinkpad tablet and the old gromit (which otherwise worked
rather poorly) let me configure the
trackpad/touchpoint/touchscreen/wacom pen and wacom eraser separately.
Gromit-mpx only sees 'Virtual Core Pointer'. This patch adds
(updates?) slave visibility through XI2.
2) Proximity events are deprecated (they're still in the headers but
do nothing). I've eliminated that code and gone to a strategy of
doing 'proximity' events through mouse motion.
commit e5d460eca4ccc3021ddd3eb8ea7aa08700afc21a
Author: Christian Beier <[email protected]>
Date: Mon Sep 3 15:49:41 2012 +0200
Enable silent make if available.
commit 16a8dfcf8909f74ee303d23d33a5bf304ff42918
Author: Monty Montgomery <[email protected]>
Date: Mon Sep 3 15:18:44 2012 +0200
Reduce the requested height in the size_request by one.
The GNOME3 panel doesn't hide then when gromit-mpx is activated.
It looks like the panel is doing this on purpose because we're on top
and it thinks we want full screen.
commit 13d2e8e19868737d80fe6c1d9ab480cddb62eb1c
Author: Christian Beier <[email protected]>
Date: Thu Oct 27 01:50:53 2011 +0200
Add libm to linker flags.
commit 761b882b422a4fcb7ce556a40e04a356bbc906dc
Author: Christian Beier <[email protected]>
Date: Thu Jul 14 00:01:56 2011 +0200
Add libx11 dependency since we're using XSync().
commit f2d99ce4d55374cd0d7901f6db30fe4593d7e346
Author: Christian Beier <[email protected]>
Date: Mon May 9 18:37:21 2011 +0200
Fix crash when grabbed device goes away.
commit 31219f4243849174ebcac230b726333f8fb97e66
Author: Christian Beier <[email protected]>
Date: Fri Apr 29 18:40:44 2011 +0200
Get rid of extra build flags.
commit 73c52d654c9e54f73d0a05dc5134d8544a6a68a1
Author: Christian Beier <[email protected]>
Date: Fri Apr 29 18:37:46 2011 +0200
Use XSync() instead of gdk_flush().
commit baa86b20462083bbb03b7239a463cddf1f3c26d3
Author: Christian Beier <[email protected]>
Date: Fri Apr 29 18:36:17 2011 +0200
Fix build dep.
commit 43f73854d457856064df21dab7381cc97bb005ac
Author: Christian Beier <[email protected]>
Date: Sat Feb 12 17:52:01 2011 +0100
Some more tray icon work.
commit e8e09bd806bbbe1f4dab0e1b1e442c075c043bda
Author: Christian Beier <[email protected]>
Date: Sat Feb 12 16:33:07 2011 +0100
Fix a runtime warning.
commit 0403cae96db2b44e5361c96f9a1d8d36922a4db2
Author: Christian Beier <[email protected]>
Date: Sat Feb 12 16:26:59 2011 +0100
First stab at tray icon.
commit acebbb960fcb7b8aa562292e6e6b6391818baa01
Author: Christian Beier <[email protected]>
Date: Thu Feb 10 23:59:33 2011 +0100
Last ChangeLog update for 1.0.
commit a0341543c2e0f1e008d798d70f9d80c89ba6cc81
Author: Christian Beier <[email protected]>
Date: Thu Feb 10 23:52:15 2011 +0100
Make debian packaging lintian conform.
commit ec91795dc79e5d31a4122a9a1853caed9696cffb
Author: Christian Beier <[email protected]>
Date: Thu Feb 10 23:42:35 2011 +0100
Small fix to manpage.
commit 8702b40b71698e30aa7bc65329ecfe9df5e9e0ce
Author: Christian Beier <[email protected]>
Date: Thu Feb 10 23:31:27 2011 +0100
Update ChangeLog.
commit 794c2ddd6c60620608d68aa9bfca2e6dcc8288cd
Author: Christian Beier <[email protected]>
Date: Thu Feb 10 23:27:08 2011 +0100
Bring manpage up to date.
commit f56f54fb5862042f300ff51713a03beede912f25
Author: Christian Beier <[email protected]>
Date: Thu Feb 10 23:21:34 2011 +0100
Update debian packaging.
commit 725f8727a07e1385e8c16b01db93ff6878165254
Author: Christian Beier <[email protected]>
Date: Thu Feb 10 23:12:54 2011 +0100
Raise version to 1.0
commit d1542b0893a6f99fda8a79526b7a035be3997b35
Author: Christian Beier <[email protected]>
Date: Thu Feb 10 23:12:11 2011 +0100
Raise GTK version requirement.
commit 94486f4aa9588565bddaa9684ae85a4c5a8db63d
Author: Christian Beier <[email protected]>
Date: Mon Jan 31 19:41:48 2011 +0100
Adapt to changed GTK3 API.
commit a3e8cbd1505fbd86e2e36e29136c90d5ee43cb3d
Author: Christian Beier <[email protected]>
Date: Thu Jan 27 18:14:09 2011 +0100
Use a PNG icon instead of XPM.
commit 29ae56a653fb8e5b486f7356b9c6e708740713e6
Author: Christian Beier <[email protected]>
Date: Thu Jan 27 17:44:26 2011 +0100
Adapt README, update NEWS.
commit 62df11b02a8ec9d0c7a345a2dfe5236e6da631a2
Author: Christian Beier <[email protected]>
Date: Thu Jan 27 16:41:03 2011 +0100
Turn of anti-aliasing when running non-composited.
commit de2613eae0214082c75d8132060ab1680aa084e2
Author: Christian Beier <[email protected]>
Date: Thu Jan 27 16:04:03 2011 +0100
Remove commented out code.
commit 39f9608635e15257e8fc5f802be18ecfaac33ec7
Author: Christian Beier <[email protected]>
Date: Thu Jan 27 16:01:52 2011 +0100
Rename data->shape.
commit 232007b03a78a0acef6b67ab73c7b44323a4bdc8
Author: Christian Beier <[email protected]>
Date: Thu Jan 27 15:56:44 2011 +0100
Rename shape_gc and fg_color.
commit 709a2a77937ea1214de8f2cda6ed697ac590fd11
Author: Christian Beier <[email protected]>
Date: Thu Jan 27 15:47:10 2011 +0100
Remove unneeded define.
commit 37b30ef249b09fa2ce06e697cbccba07158eb0f7
Author: Christian Beier <[email protected]>
Date: Thu Jan 27 14:11:16 2011 +0100
Handle compositing support change. Invalidate window when needed.
commit 2f0528a2bafb056d2afaf709f16bcf6f164d5c03
Author: Christian Beier <[email protected]>
Date: Thu Jan 27 00:02:55 2011 +0100
Remove obsolete README part.
commit b146e4314763013f641beacddce367732bab386e
Author: Christian Beier <[email protected]>
Date: Thu Jan 27 00:00:00 2011 +0100
Set input shape mask every time we change the shape.
commit 1d7c2acddf8508c8df3dc93f9329868584e21646
Author: Christian Beier <[email protected]>
Date: Wed Jan 26 23:10:35 2011 +0100
Remove unneeded changing of window background colour.
commit 46ab12cf8715b44fa6c4350fa2865fd0397bc5ea
Author: Christian Beier <[email protected]>
Date: Wed Jan 26 22:42:47 2011 +0100
Fix some warnings.
commit 0e649b7028edf37f44681729b42b703a8a861262
Author: Christian Beier <[email protected]>
Date: Wed Jan 26 22:08:14 2011 +0100
Draw with 75% opacity to make annotations slightly transparent.
commit 29013ae51a89c271a2d5eacc288c7148845b1217
Author: Christian Beier <[email protected]>
Date: Wed Jan 26 21:12:57 2011 +0100
Make use of XCOMPOSITE where available. Really fast drawing!
commit b88b4134ca0153ebe08f65c556fb16bf0e02ae67
Author: Christian Beier <[email protected]>
Date: Wed Jan 26 21:07:36 2011 +0100
Update NEWS.
commit 5e4b3f1b7c80ac34cd6fb862734ea9cc61f4855e
Author: Christian Beier <[email protected]>
Date: Wed Jan 26 21:05:51 2011 +0100
Set drawn stuff transparent for input.
commit 4cfaa61e1ffa77aa9c56da767ee29291331fd8e3
Author: Christian Beier <[email protected]>
Date: Wed Jan 26 00:04:45 2011 +0100
Possibility to add an alpha channel to main window.
commit 89c1985b87f62b71d5bbbc2be442ea0a6cc07550
Author: Christian Beier <[email protected]>
Date: Tue Jan 25 19:39:16 2011 +0100
Update TODO.
commit 34221c550a982294795b8c16282d69787ae31120
Author: Christian Beier <[email protected]>
Date: Fri Jan 21 00:04:01 2011 +0100
Get rid of that extra drawing widget.
commit a7aa282f51749ca99d5e7f22092ad90e602929f2
Author: Christian Beier <[email protected]>
Date: Thu Jan 20 23:46:33 2011 +0100
Update NEWS + TODO.
commit 92cebc419ec2c0761f1d3ef69c7645a08e34d4ea
Author: Christian Beier <[email protected]>
Date: Thu Jan 20 23:01:08 2011 +0100
Get rid of one useless drawing context. Fix arrow drawing as well.
commit 47bbd2706bb85bbcc0f59fa2451b4c910dbb52ad
Author: Christian Beier <[email protected]>
Date: Thu Jan 20 22:01:59 2011 +0100
Fix redraw after unhide.
Before, everything was restored with the same colour.
commit d31fded484482740dabc251ef21d45821dc202c2
Author: Christian Beier <[email protected]>
Date: Thu Jan 20 21:35:23 2011 +0100
Use right signal.
commit 65834551d1c949cfbeceb1745139c7a8547df3f9
Author: Christian Beier <[email protected]>
Date: Thu Jan 20 20:38:43 2011 +0100
Update TODO.