forked from bk138/gromit-mpx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
2527 lines (1671 loc) · 73.7 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 39be16bec4cd9204862d42a8a0ccb8c19d7737ae
Author: Christian Beier <[email protected]>
Date: Thu Dec 3 15:47:04 2020 +0100
AppStream: update release date
commit 86d674a1c26769cd228962885117a49c209cecc5
Author: Christian Beier <[email protected]>
Date: Thu Dec 3 15:46:29 2020 +0100
AppStream: update screenshots
commit 711e4a32b91f1c5df375c9dce6516e07cfbd6b74
Author: Christian Beier <[email protected]>
Date: Thu Dec 3 15:41:46 2020 +0100
Resize screenshots to 1600x900
commit d075609b118197e241f29dd33448aaa4cb31332d
Author: Christian Beier <[email protected]>
Date: Thu Dec 3 15:33:12 2020 +0100
Add screenshots
commit 1f8460f4ca77a17dea1b9e6b07d0bb6fc872df89
Author: Christian Beier <[email protected]>
Date: Thu Dec 3 14:35:03 2020 +0100
AppStream: fix main description linter issues
commit 8df2159684380ae772422e7542165e0d86d3af33
Author: Christian Beier <[email protected]>
Date: Thu Dec 3 14:21:22 2020 +0100
AppStream: shorten 1.3.1 release description
commit 89f1f5bafea9799c5edf55f9ea3da16b07b218f0
Author: Christian Beier <[email protected]>
Date: Thu Dec 3 14:19:22 2020 +0100
AppStream: add 1.4 release
commit 8ca7a8d3acdc01e9f0d4b1d81b6bd2576c18e023
Author: Christian Beier <[email protected]>
Date: Thu Dec 3 14:00:24 2020 +0100
AppStream: make linter a bit happier
commit 561b3151cbdac19be9768d2f032894668be32052
Author: Christian Beier <[email protected]>
Date: Thu Dec 3 12:06:06 2020 +0100
AppStream: update description texts
commit b5a592f6fa03f6e88cbf0cf38b250e228ffd2d5e
Author: Christian Beier <[email protected]>
Date: Thu Dec 3 11:36:49 2020 +0100
NEWS: update
commit 3c3334fa7b3169d9ebebeb28eddf35f551f69b42
Author: Christian Beier <[email protected]>
Date: Thu Dec 3 11:20:19 2020 +0100
README: update XFCE potential problem section
commit 22d4fa8d1647c2a8ed516fa23de7902ec51c7b3a
Author: Christian Beier <[email protected]>
Date: Thu Dec 3 11:19:02 2020 +0100
manpage: mention XFCE pecularities
commit 136b8b41c9ee158f608b6d8b0b031391b096dc0e
Author: Christian Beier <[email protected]>
Date: Thu Dec 3 11:15:04 2020 +0100
manpage: update email
commit 2846a4e778dcea23f457814a4215009a94d1d4a6
Author: Christian Beier <[email protected]>
Date: Thu Dec 3 11:13:19 2020 +0100
manpage: update Environment section
commit 1577fa7e9f6a629ce625049a0742097f8bd017d7
Author: Christian Beier <[email protected]>
Date: Thu Dec 3 10:54:24 2020 +0100
callbacks: update About section
commit c464e47ce99fe9e911d357be39771c50452b527b
Author: Christian Beier <[email protected]>
Date: Thu Dec 3 10:47:46 2020 +0100
Update AUTHORS
commit b5204642b546f3785dd8290a90651dd32697a671
Author: Christian Beier <[email protected]>
Date: Thu Dec 3 10:45:06 2020 +0100
Revert "Add menu item to display man page"
This reverts commit d7133eeecc9de21247144fa5b46108a853633803.
commit 767f9a82b5fd9d1aa357c910b0f3a2fc4e6e692c
Author: Christian Beier <[email protected]>
Date: Thu Dec 3 10:30:33 2020 +0100
Fix tool selection for drawing tablet pens
...by changing the tool selection strategy from 'lower button wins
over higher button' to 'higher button wins over lower button'.
Closes #16
re #50
commit 55ebf3d790e417b8b2add2818c80ff106d093bad
Author: Christian Beier <[email protected]>
Date: Fri Nov 20 09:51:59 2020 +0100
Provide a better out-of-the-box experience for XFCE users
...by using different default hot keys.
re #77
commit b4c18892fdddc3cedc542105246211b1db9ca475
Author: Christian Beier <[email protected]>
Date: Wed Nov 18 22:03:22 2020 +0100
TODO: remove
We're using issue tracking and release grouping to plan ahead nowadays.
commit f7a76980249ebd3fab98eabc48d5be0c6893f40b
Author: Christian Beier <[email protected]>
Date: Wed Nov 18 21:59:34 2020 +0100
Document that only single keysyms can be defined as hotkeys
Closes #107
commit d2ec1acf6789ae4cad386cd0a34703d3182189fa
Author: Christian Beier <[email protected]>
Date: Tue Nov 17 22:44:25 2020 +0100
callbacks: disable event compression when a tablet pen starts drawing
...to enable smoother lines. When another type of device starts
drawing again, we re-enable the default of dropping events, as
otherwise (at least for a Thinkpad touchpad), drawn lines were only
fully drawn to the end on button release.
Closes #90
commit 0bda6418ca0c54ac97f7256089f14e68c11659fd
Author: Christian Beier <[email protected]>
Date: Tue Nov 17 19:32:28 2020 +0100
config: don't use harcoded /etc/ locations
Simply rely on what's defined by the build system instead.
commit 5ea63fa60779065a3ce48eacead10b7d0dd5fad3
Author: Christian Beier <[email protected]>
Date: Tue Nov 17 11:23:44 2020 +0100
README: document XFCE hotkey conflict
re #77
commit 4b771355b471fcb009c334eb520c54a4ee711c4d
Author: Christian Beier <[email protected]>
Date: Sun Nov 15 19:39:26 2020 +0100
callbacks: log modifier state in buttonpress debug as well
commit 3199dafb8d84177c093d5c5ad8c38ce88c466664
Author: Christian Beier <[email protected]>
Date: Sun Nov 15 13:49:27 2020 +0100
README: list Mutter and KWin instead of Compiz and xcompmgr
We're not in the 2000's anymore.
commit 3ad760681e1fa0acce333e12a400b48d3163e433
Author: Christian Beier <[email protected]>
Date: Sun Nov 15 13:39:10 2020 +0100
README: make intro more concise and list key features
commit 64ca6e2c7e23741fdf763dfedbf0fcea94e87ea9
Author: Christian Beier <[email protected]>
Date: Sun Nov 15 12:49:02 2020 +0100
.gitignore: update
commit d71d7a974ecff4c0e83aa82e29fe473594e3955c
Author: Christian Beier <[email protected]>
Date: Sun Nov 15 12:41:55 2020 +0100
CMake: increment minor version
commit 1d62dc006a13421054a066a9cdb97982f2108451
Author: Christian Beier <[email protected]>
Date: Sun Nov 15 12:36:54 2020 +0100
flatpak: allow access to host dconf
This allows setting global hotkeys for a GNOME host.
re #27
commit 6501486df975205eb202f06b7b1da3883d65e5f9
Author: Christian Beier <[email protected]>
Date: Sun Nov 15 12:31:59 2020 +0100
input: set hotkeys in compositor if running under (X)Wayland
As Wayland has no other possibility to globally listen for hotkey
events than via the compositor, set the hotkeys there. This is not
device-specific anymore of course.
Currently supports GNOME, more hopefully to follow.
re #27
commit b53b98d244d231e350691d42fff623c57fdc6890
Author: Christian Beier <[email protected]>
Date: Sat Nov 14 13:28:58 2020 +0100
README: mention similar Unix tools
commit 539aafdd1576c680e3b54e772400cc6ce504940c
Author: Christian Beier <[email protected]>
Date: Sat Nov 14 13:23:10 2020 +0100
README: mention EpicPen for Windows
commit c0febcbf86f3ef5a5042070a4a20d09054c67e3a
Author: Christian Beier <[email protected]>
Date: Sat Nov 14 13:22:13 2020 +0100
README: remove mention of Compiz-related tools
I guess no-one is using Compiz nowadays...
commit b8981c4d16199337f4fff350f2a42b10366eb222
Author: Christian Beier <[email protected]>
Date: Sat Nov 14 13:20:43 2020 +0100
README: move similar tools into own secton
commit 56a6fb6e8530ca96def45c51d645900c3deee96d
Author: Christian Beier <[email protected]>
Date: Tue Nov 10 10:06:37 2020 +0100
input: fix draw-cursor not appearing over Wayland-only windows
re #27
commit c4c0ac62b8c4ff52ce5ad432a06eea5a05d9e2d6
Author: Christian Beier <[email protected]>
Date: Sun Nov 8 17:25:46 2020 +0100
input: remove GDK backend check
We only support 'x11' for the time being.
re #27
commit 81c2bd289df64ed110598187a29ecade70b7ac16
Author: Christian Beier <[email protected]>
Date: Sun Nov 8 17:18:38 2020 +0100
Set GDK backend to x11 explicitly
While this does not fix all issues when running on Wayland,
we at least get no hang when using GtkSelection and also can
get some basic drawing after the app was activated via the tray
icon. No keyboard shortcuts though.
re #27
commit d7133eeecc9de21247144fa5b46108a853633803
Author: Christian Beier <[email protected]>
Date: Sat Nov 7 13:02:06 2020 +0100
Add menu item to display man page
commit 7ad3bbf7accad416092989f76cdb81769aa66545
Author: Christian Beier <[email protected]>
Date: Thu Nov 5 18:53:39 2020 +0100
Add (preliminary) AppStream metadata
commit 0df21e1879e91d9cd75980c402408d8ea60c02c1
Author: Christian Beier <[email protected]>
Date: Thu Nov 5 17:52:26 2020 +0100
Add icon to be used/exported with the .desktop file
commit 03a5a58f7b9864b3c5df9ad351bab66e7e28b948
Author: Christian Beier <[email protected]>
Date: Thu Nov 5 16:50:04 2020 +0100
Prefix .desktop file
commit 7ae0682617b560326a22bbb9d6fe8132b1207344
Author: Christian Beier <[email protected]>
Date: Thu Nov 5 16:48:10 2020 +0100
Add Flatpak manifest
commit d52c608240140f70d89ccfd73235b956df960d05
Author: Christian Beier <[email protected]>
Date: Wed Nov 4 22:53:56 2020 +0100
Add Flatpak shared-modules git submodule
commit 4ea7a7a5eb9b908500d8d81104bf322156188fcc
Author: Christian Beier <[email protected]>
Date: Wed Nov 4 22:29:13 2020 +0100
config: look for Flatpak config location, rework fallback logic
commit 8f696110b5a933f5a1ebba07de05a97753b0640a
Author: Christian Beier <[email protected]>
Date: Thu Oct 22 12:20:03 2020 +0200
Let system tray icon indicate grab/active status
Closes #57
commit 7ca9c353ea9d85d6f2f439ce4dc99951714cb615
Author: Christian Beier <[email protected]>
Date: Thu Oct 22 11:30:25 2020 +0200
input: factor grab status get over devices into separate functions
commit fd334fdddedec9ce671885b3d0f1b13f3beab1f2
Author: Christian Beier <[email protected]>
Date: Thu Oct 22 10:09:33 2020 +0200
input: let toggle_grab for all get status from each device
...instead of tracking status based on toggle on/off.
When using toggle_grab(NULL), all_grabbed would be set to TRUE, when
then using toggle_grab(some_device), not all devices would be grabbed
anymore, but the global all_grabbed would still say so.
commit b95ee61f49fbf9c8083fd754d84f6c4e91d2fda1
Author: Christian Beier <[email protected]>
Date: Wed Oct 21 20:44:36 2020 +0200
Make Gromit-MPX fallback to non-device-specific paint toggle on KDE
Closes #72
commit 6da1b2dda8fe5c24357f8ff6f68dc116af259d1e
Author: Christian Beier <[email protected]>
Date: Wed Oct 21 18:04:54 2020 +0200
Make Gromit-MPX persist opacity setting
Opacity is set from the UI and is thus OK to be persisted in the .ini
key file.
re #96
commit e7b9594b9ec7015ef019377c8fac7b2aea2b19bf
Author: Christian Beier <[email protected]>
Date: Wed Oct 21 13:00:42 2020 +0200
README: add autostart instructions
Closes #96
commit 7f906f5049d052d6e559e96e44be91b5f342dd12
Author: Eshant Gupta <[email protected]>
Date: Wed Oct 21 15:40:02 2020 +0530
TravisCI: add CI for PPC64LE
commit c22f20205a37574836b6b98da5f7e6033598560c
Author: Christian Beier <[email protected]>
Date: Sun Oct 18 18:54:54 2020 +0200
TravisCI: use Bionic instead of Trusty
commit 6ee7c6f09fd0b589be8f3c1bbf7a13db8ff37dc4
Author: Christian Beier <[email protected]>
Date: Sun Oct 18 18:54:17 2020 +0200
CMake: declare that we need GTK 3.22
...for gtk_show_uri_on_window ()
commit bb8cb60b991a36114d70c9bbfc82c8cb1ea97222
Author: Christian Beier <[email protected]>
Date: Sun Oct 18 18:45:04 2020 +0200
Add support options to tray menu
commit f37ca17b6e34907e841ae3b8cc1bfaf55150a8a7
Author: Christian Beier <[email protected]>
Date: Sun Oct 18 18:43:06 2020 +0200
FUNDING.yml: use existing PayPal button link
commit 69b3de5e88d9ec963b6f8f0d000528be7f8ba76d
Author: Christian Beier <[email protected]>
Date: Sun Oct 18 17:11:13 2020 +0200
.gitignore: update
commit 5bd3ad707d3c73104e2f96f995fb7dcb375ea50f
Author: Christian Beier <[email protected]>
Date: Sun Oct 18 17:07:47 2020 +0200
FUNDING.yml: add PayPal link
commit cce9ba7e3274146d8943b2dc52ee890653c1b678
Author: Christian Beier <[email protected]>
Date: Tue Oct 13 20:56:26 2020 +0200
Add -V and --version cmdline args
commit 6a3dd1596516d8ac4526218742386073b54f170c
Author: Christian Beier <[email protected]>
Date: Tue Oct 13 20:29:50 2020 +0200
README: mention needed version for hotkeys by cfg
Closes #99
commit 3d0e31c2b9011459c0ce1b144d81440dbacd2b5a
Author: Christian Beier <[email protected]>
Date: Mon Sep 28 20:19:59 2020 +0200
README: update email contact address
commit 3ac0a74e3a95c9f2d117dc8c8782c5cc3b8a5d24
Author: Christian Beier <[email protected]>
Date: Mon Sep 28 20:19:25 2020 +0200
README: don't list license under Problems
commit 4d6a357031f9968bd5c00a9c6310545921ff8c66
Author: Christian Beier <[email protected]>
Date: Tue Aug 4 17:08:14 2020 +0200
Detect GDK_CORE_DEVICE_EVENTS and act accordingly
Closes #95
commit a587772200cb02ce0d49473dd3903936367e868f
Author: Christian Beier <[email protected]>
Date: Tue Aug 4 14:02:59 2020 +0200
input: use accessor function instead of g_object_get()
re #95 #49
commit 8d552715663c45fefa851754d0b1b05eaaa57a07
Author: Christian Beier <[email protected]>
Date: Sat Aug 1 13:52:11 2020 +0200
callbacks: update Copyright year
commit 40a734ab333bb27ecc30a3a185792f8c42284a7e
Author: Christian Beier <[email protected]>
Date: Sat Aug 1 13:51:38 2020 +0200
CMake: patchlevel up
commit af1d87618667f8be5601308306de00e1c85d862b
Author: Christian Beier <[email protected]>
Date: Sat Aug 1 13:44:33 2020 +0200
ChangeLog: update
commit b5a3eeb9ba40455aff354c07ee6d49849b9d32e5
Author: Christian Beier <[email protected]>
Date: Sat Aug 1 13:43:55 2020 +0200
NEWS: update
commit de164aeb380f2037d706511292b28db3957685c1
Author: Christian Beier <[email protected]>
Date: Sat Aug 1 13:39:17 2020 +0200
Update AUTHORS
commit ca2347a326176b41d17a7bdf0fb7981dfe700406
Author: Christian Beier <[email protected]>
Date: Sat Aug 1 12:38:02 2020 +0200
NEWS: rename, markdownify and link
commit 92d3ea144b2bcd33889e6d970db73f7c6f4dc93d
Author: Christian Beier <[email protected]>
Date: Sat Aug 1 12:23:36 2020 +0200
input: show user-visible gui dialogs on key grab fail
Closes #77
commit 009eef7c107eb598d59b41a10fd6e20292486ad0
Author: Christian Beier <[email protected]>
Date: Sat Aug 1 11:50:50 2020 +0200
callbacks: add a very simple donation hint
TODO: link website
commit 7c83680253929e5bec4b882b763704653a679196
Author: Christian Beier <[email protected]>
Date: Sun May 17 19:13:17 2020 +0200
README: mention how to set eraser for some touchpads
re #16
commit 8d5aa920270439bacf423bbbdb30610bbbbd7f54
Author: Christian Beier <[email protected]>
Date: Sun May 17 18:57:13 2020 +0200
README: document how to disable drawing for all but one input device
Closes #86
commit 997f2c58cf36bbe18802d944c0f982e8265ad617
Author: Christian Beier <[email protected]>
Date: Sun May 17 18:53:49 2020 +0200
README: fix typo
commit a451a1c055e61188a4258850cc3907f1c4809c6c
Author: Christian Beier <[email protected]>
Date: Sun May 17 15:16:40 2020 +0200
README: document how to configure minsize
re #85
commit dd50fcfaa05277484aa81b4603a992fb17f76234
Author: Christian Beier <[email protected]>
Date: Fri May 1 14:55:47 2020 +0200
README: add a Gitter badge
commit ffe968214c27689a182559b150f008d1d40c411d
Author: Christian Beier <[email protected]>
Date: Sat Apr 25 12:56:18 2020 +0200
CMake: make sure compile_commands.json is readable by ccls
commit fbda8bd2d1997381e2b8aa9ea9bf944d642207ac
Author: Christian Beier <[email protected]>
Date: Sat Apr 18 17:43:26 2020 +0200
README: document how to set hotkeys w/ config file
re #81
commit 6964494b2a99e425867aed463d5e5244848a5947
Author: Julián Unrrein <[email protected]>
Date: Sun Mar 29 15:38:14 2020 -0300
config: set hot key and undo key only if they weren't changed from their default values already (#80)
commit 0c9e6924ab5feef64f23ceeb837bddc0cba95dfb
Author: Julián Unrrein <[email protected]>
Date: Fri Mar 27 11:08:26 2020 -0300
Add the ability to configure the Hot key and Undo key in gromit-mpx.cfg (#78)
Closes #40
commit d9b1627c92d3a96b96a048d972da229ec36bc0ce
Author: Christian Beier <[email protected]>
Date: Fri Mar 27 14:44:10 2020 +0100
input: log when hotkey or undo key grabbing fails
re #77
commit cc85db2f23c86b9fb608598a738a9b8ae2902e6c
Author: Christian Beier <[email protected]>
Date: Sat Mar 21 14:54:13 2020 +0100
.gitignore: add ccls cache dir
commit 317e78471953194533d664c3cf60609dbf78490a
Author: Christian Beier <[email protected]>
Date: Sat Mar 21 14:50:12 2020 +0100
config: change default undo key to F8
F10 seems to be grabbed by somehting else on at least GNOME 3.22.
Also, F10 is a common menu popup hotkey.
commit 16cc6cc8ec5a81c873d12a64048500f0bf099c22
Author: Christian Beier <[email protected]>
Date: Sat Mar 21 14:39:36 2020 +0100
input: log which keys are to be grabbed
commit ffeb900f56f6f64cc4513df65c2ad9c059fe34a2
Author: Christian Beier <[email protected]>
Date: Sun Jul 7 17:30:39 2019 +0200
input: fix 4 deprecation warnings
commit 0b2054be8f1a54207f6872f1773da46b4e09bec6
Author: Christian Beier <[email protected]>
Date: Wed Jul 3 18:55:58 2019 +0200
Update issue templates
commit 38c8fdd036c3da5ba1179ebe473f6086d781ae37
Author: Christian Beier <[email protected]>
Date: Wed Jul 3 16:17:04 2019 +0200
FUNDING.yml: update issuehunt
commit e42a627143bc7dabb1e8387136b52ea67254367c
Author: Christian Beier <[email protected]>
Date: Wed Jul 3 14:47:02 2019 +0200
FUNDING.yml: add issuehunt
commit 07aaa6b8da1cfad49fa67f61dfb48f41252ef918
Author: Christian Beier <[email protected]>
Date: Wed Jun 26 14:21:40 2019 +0200
README: update paypal badge
commit cb0bcb46a4c651b5575eeab25c35cf9f5528d49e
Author: Christian Beier <[email protected]>
Date: Wed Jun 26 14:20:43 2019 +0200
README: update liberapay badge
commit 3be3d0ffaebe9f6959ca7ab13b95bd246e8727e7
Author: Christian Beier <[email protected]>
Date: Wed Jun 26 14:15:43 2019 +0200
README: add patreon badge
commit 6283d0ff89407998d9e639544a6d558f5d817489
Author: Christian Beier <[email protected]>
Date: Wed Jun 26 14:02:54 2019 +0200
FUNDING.yml: add patreon
commit 753fd58ff7cb69efe1a72c944598513f4a2154b5
Author: Christian Beier <[email protected]>
Date: Wed Jun 26 12:11:27 2019 +0200
FUNDING.yml: fix syntax problems
commit 48ebec6aad2dfa883d5691cd7f1d3e6d896477fd
Author: Christian Beier <[email protected]>
Date: Wed Jun 26 12:09:18 2019 +0200
Create FUNDING.yml
commit a0b7d5ba44bf7283777948874c895d655dd38bb4
Author: Christian Beier <[email protected]>
Date: Thu Apr 11 11:40:23 2019 +0200
CMake: export compile setttings for LSP
commit bf5a8ef2747931b2307c8926cf4fa6c218d87ced
Author: Christian Beier <[email protected]>
Date: Fri Dec 28 18:19:34 2018 +0100
README: add LiberaPay button
commit 978d2079f228bbed0b1d4f520a4b96225cb0c470
Author: Christian Beier <[email protected]>
Date: Fri Dec 28 17:25:30 2018 +0100
README: add a PayPal donate button
commit 7594796c48a786dd5dc3ca821a4b3537f649a4ca
Author: Christian Beier <[email protected]>
Date: Fri Dec 28 16:39:41 2018 +0100
Update ChangeLog
commit b4ed990916d40c2c418d5e12f43672a8b2ddead8
Author: Christian Beier <[email protected]>
Date: Fri Dec 28 16:37:58 2018 +0100
Update TODO
commit 4bcaee501994817355eb4a87510dd6f072a592aa
Author: Christian Beier <[email protected]>
Date: Fri Dec 28 16:30:28 2018 +0100
Update NEWS
commit 05341fa4d17eb4c5a9eb63a5e04ddcc69992fec8
Author: Christian Beier <[email protected]>
Date: Fri Dec 28 16:16:04 2018 +0100
Update AUTHORS
commit 718738752aa14efa172a57a618cba5c81caf77bc
Merge: a185c56 c5506dd
Author: Christian Beier <[email protected]>
Date: Fri Dec 28 15:44:39 2018 +0100
Merge branch 'fix-slavehandling'
commit c5506dd1025771bc23ee9f5855a52cf06f3e26c5
Author: Christian Beier <[email protected]>
Date: Fri Dec 28 15:42:07 2018 +0100
Allow configuration of slave devices, too
This is a rework of 58bdef4d49ab4269fedda55e825ce8ad8a62076c.
commit a185c564fd94759190d6c9363c5a66b04abfd7a7
Author: Christian Beier <[email protected]>
Date: Sun Dec 2 23:22:12 2018 +0100
README: fix issues pointed out by markdownlint
commit 032d46f5e3a20d428c5a071178ae4f328e429454
Author: Christian Beier <[email protected]>
Date: Sun Dec 2 23:03:30 2018 +0100
CMake: fix build-config.h template header guard
commit 2b21482e16a010f026d1a81d822b8876429584fa
Author: Christian Beier <[email protected]>
Date: Sun Dec 2 22:41:34 2018 +0100
Add stdint.h to define intptr_t on all compilers
commit 53062c7427983d5f2c6669ecc127bf8870ceccdb
Author: Christian Beier <[email protected]>
Date: Mon Nov 26 22:11:15 2018 +0100
Remove proximity event handling
It is not supported in XInput2.
commit b16c685e6b1ad9787481c93d1ef7516c8392c255
Author: Christian Beier <[email protected]>
Date: Mon Nov 26 13:10:51 2018 +0100
Remove last slave handling remnants
commit cc3c090a96c91d758299cfafdfecd361450c9dd2
Author: Christian Beier <[email protected]>
Date: Mon Nov 26 12:42:30 2018 +0100
Revert "Add reasonably complete support for slave devices."
This reverts commit 58bdef4d49ab4269fedda55e825ce8ad8a62076c.
Closes #29
commit bd47b373fedd6aecf066644a08c8eb68247a9e40
Author: Christian Beier <[email protected]>
Date: Mon Nov 26 12:12:54 2018 +0100
Revert "Only grab master devices."
This reverts commit 335ff721b4416a4d5cd03a987f81716101e03540.
commit 017c4f4b5d033e6686e99a8e57fd220d6da2f93b
Author: Christian Beier <[email protected]>
Date: Mon Nov 19 17:10:48 2018 +0100
README: fix typo
commit a751b83a303a865fa5dc157e9f40b05c92c4f58d
Author: Christian Beier <[email protected]>
Date: Mon Nov 19 11:10:02 2018 +0100
README: fix linking
commit 080282e14b5235bd9176636b68d9f01b32777cdb
Author: Christian Beier <[email protected]>
Date: Mon Nov 19 11:07:11 2018 +0100
README: add instructions on how to setup MPX
Closes #59
commit c451f01410b30827d317be0856ba4be614359142
Author: Christian Beier <[email protected]>
Date: Mon Nov 19 10:22:34 2018 +0100
README: move the 'Configuration' section into 'How to use'
commit 2f7ca97200b14bdaed8c5d7e47212e5d6e9bc929
Author: Christian Beier <[email protected]>
Date: Mon Nov 19 10:11:11 2018 +0100
README: fix headings
commit ee6815e458eb1710e703ed41b3f097501099023b
Author: Christian Beier <[email protected]>
Date: Sun Nov 4 17:53:57 2018 +0100
config: use pre glib-2.44 style
commit 1eef4b5d27648d88926ad3932f135ea75f8ebab8
Author: Christian Beier <[email protected]>
Date: Sun Nov 4 16:22:46 2018 +0100
Add an introduction screen
This replaces the old poor-man's help screen and hopefully serves its
purpose of telling users about the hotkeys better.
In the wake of adding this, Gromit-MPX also received a basic config
system based on GKeyFile, which some day might replace the handwritten
config parser we rely on now.
GKeyFile was not there when Simon started the original Gromit (it
appeared around 2004), so he had to resort to GScanner.
Closes #56
commit d96106f9a30b2bc377a5f9a1c3d95f3dcbf37719
Author: Christian Beier <[email protected]>
Date: Sat Nov 3 16:28:00 2018 +0100
README: fix typo
commit f3ddd27ab65787d4afbc40ce40ff716d293a1fdb
Author: Christian Beier <[email protected]>
Date: Sat Nov 3 13:21:32 2018 +0100
CMake: add xpms to sources
commit 07e3dd3d322032f86047889b38fc793b7cb77ca2
Author: Christian Beier <[email protected]>
Date: Sat Nov 3 13:10:30 2018 +0100
Remove the now-obsolete help menu entry
commit 487a6e3035b57b02421a4c1a9bb180a072500514
Author: Christian Beier <[email protected]>
Date: Sat Nov 3 12:55:09 2018 +0100
Update man page date
commit a7122e4cdea2ba7e238202f6ebb25b0fadefeb18
Author: Christian Beier <[email protected]>
Date: Sat Nov 3 12:52:39 2018 +0100
Order options in manpage alphabetically
commit 0022af97aec57f6db0cf1f8ddb49e0537f083697
Author: Christian Beier <[email protected]>
Date: Sat Nov 3 12:49:28 2018 +0100
Add opacity-setting to man page
Closes #54
commit 2c8dd6391e733723a93098bdcfcb3ef9d13c478a
Author: Christian Beier <[email protected]>
Date: Sat Nov 3 12:46:47 2018 +0100
Make the opacity error message locale-independent
commit 4c2eb4f3eb7a519fbe62f5fde6a9d399b03308d1
Author: Christian Beier <[email protected]>
Date: Sat Nov 3 12:29:18 2018 +0100
Directly show hotkeys in the menu
re #42 #56
commit a4103b2fa1c40965df2f219d126b0a9596689a3f
Author: Christian Beier <[email protected]>
Date: Mon Oct 29 13:16:47 2018 +0100
Add screen size values to on-change debug log
re #55
commit 40f928f1bcfdc1e47aa6d8ee2eb29f5551c231c1
Author: Christian Beier <[email protected]>
Date: Sun Oct 28 22:53:35 2018 +0100
Update copyright year
commit 3f85689b9fe3e371873643c2a8fd9d5605b8738f
Author: Christian Beier <[email protected]>
Date: Sun Mar 18 15:28:19 2018 +0100
Make select_tool debug logs a bit clearer
commit 73caad9023dbeb1037830f2d0d3984aad723aefc
Author: Christian Beier <[email protected]>
Date: Sun Mar 18 15:07:20 2018 +0100
Prefix select_tool debug logs
commit 6cc126bf4a4a5608d02aaeb488583bfaaa849aa2
Author: Christian Beier <[email protected]>
Date: Thu Mar 8 01:56:43 2018 +0100
README: add a note about maybe-missing sys tray
Closes #47.
commit df4194b332dbfad5eb6341b9f8a19b32b47a489c
Merge: 295a34b 5ce93ee
Author: Christian Beier <[email protected]>
Date: Sun Feb 25 18:12:58 2018 +0100
Merge pull request #48 from Fusl/master
Allow not grabbing undo-key
commit 5ce93ee0e32950f6fdfc7ddd391e8820ef7b9e5d
Author: Katie Holly <[email protected]>
Date: Wed Feb 14 03:09:28 2018 +0100
Adding `build/` directory to .gitignore (documented in README.md)
Signed-off-by: Katie Holly <[email protected]>
commit b67083b32d077e0bd4e0b623adc515230acc9880
Author: Katie Holly <[email protected]>
Date: Wed Feb 14 03:08:31 2018 +0100
Allow unbinding undo-key
Signed-off-by: Katie Holly <[email protected]>
commit 295a34b164788d8826892bd108eb2edfc90cc204
Merge: 218e75a d627d3c
Author: Christian Beier <[email protected]>
Date: Sun Dec 4 18:07:01 2016 +0100
Merge pull request #39 from barak/upstream
add ENVIRONMENT and FILES man page sections
commit d627d3c05e432750fcf0e4ec540ee4f3ab97be87
Author: Barak A. Pearlmutter <[email protected]>
Date: Sun Dec 4 17:12:38 2016 +0100
add ENVIRONMENT and FILES man page sections
commit 218e75a593f5268a244f1e50a750d9b3486b4863
Merge: ad169c9 cfc916f
Author: Christian Beier <[email protected]>
Date: Sun Nov 20 12:35:57 2016 +0100
Merge pull request #36 from barak/tweaks
cmake installation dirs
commit cfc916f63803e3a8e1dde7a35c5fc5191d7711eb
Author: Barak A. Pearlmutter <[email protected]>
Date: Sat Nov 19 15:19:28 2016 +0000
cmake installation dirs
commit ad169c97034fecc9768cbec9033fad7c65ba7e03
Author: Christian Beier <[email protected]>
Date: Fri Nov 18 19:37:59 2016 +0100
Next version will be 1.3.
commit a11478c3bdbc26e443a7cd4ab8d0f9e1f0683481
Author: Christian Beier <[email protected]>
Date: Fri Nov 18 19:36:39 2016 +0100
Remove Autotools, CMake now is the only build system.
commit eba556e20bc1b3abc556d8c73ff12beeb838b839
Author: Christian Beier <[email protected]>
Date: Fri Nov 18 14:31:40 2016 +0100
TravisCI: swtich to cmake as default build system
commit a835decff6d0186bd96075bca8ed31144f2ff9e2
Author: Christian Beier <[email protected]>
Date: Wed Nov 16 22:44:50 2016 +0100
Update ChangeLog.
commit c2b4d4a044edea046494e6c628c01ea26e8246a5