-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
ChangeLog
3667 lines (2396 loc) · 105 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 0355bf35d89248edd48b468fa5b16a1a561408ad
Author: Christian Beier <[email protected]>
Date: Mon Sep 9 20:38:10 2024 +0200
AppStream: add 1.7.0 release notes
commit 64a29e6678f431e98b75f912780e748ef50b6f41
Author: Christian Beier <[email protected]>
Date: Mon Sep 9 20:34:20 2024 +0200
CMake: bump minor version
commit ef20a8ecd978438535fa2556cdb21054ae8ad92b
Author: Christian Beier <[email protected]>
Date: Mon Sep 9 20:33:22 2024 +0200
NEWS: update
commit 21a6d248020d5c9dcb6bb97e11e62c6a1b4655e9
Author: Christian Beier <[email protected]>
Date: Sat Mar 30 08:10:54 2024 +0100
AppStream: augment description
commit 65444415c90dc00896086f973630657ea47eeccf
Author: Christian Beier <[email protected]>
Date: Sat Mar 30 00:38:44 2024 +0100
po: translate "Edit Config" menu item in all languages
re #110
commit df8114a6e85ce041678e4153b8b5b730c123f9df
Author: Christian Beier <[email protected]>
Date: Sat Mar 30 00:31:19 2024 +0100
main,callbacks: add menu entry for easy user config file editing
re #110
commit c7ff625b2372a1aaf550357df22b7bb299f280ed
Author: Christian Beier <[email protected]>
Date: Fri Mar 29 23:44:54 2024 +0100
data: include all tools and link to README in default config
re #110
commit 14b1953c6c0aa03dfc86bdec0dd081b05a57898f
Author: Christian Beier <[email protected]>
Date: Fri Mar 29 23:02:08 2024 +0100
test: add tool multi-user integration test
Rather hacked up quickly but does the job for now...
Closes #204
commit 2ff2061d3d2f86059f14e8992c1dd200de4d1016
Author: Christian Beier <[email protected]>
Date: Mon Mar 25 20:28:00 2024 +0100
coordlist_ops: fix header guard naming
commit 91a8dffd9868ea1716f19421cc39f8e7df9e355e
Author: Christian Beier <[email protected]>
Date: Mon Mar 25 20:26:30 2024 +0100
drawing: move coord_list* functions to coordlist_ops
commit 70e8f697513288f57166365d490144a00ebebc40
Author: Christian Beier <[email protected]>
Date: Mon Mar 25 20:01:24 2024 +0100
README: link tool screencasts
commit 4a90787531aa5b616c1177f6162bf567f38fb0f3
Author: Christian Beier <[email protected]>
Date: Mon Mar 25 18:10:17 2024 +0100
Add animated tool screencasts
...made by Pascal Niklaus.
commit 4a19157ff85714553145578f5d05b99705cacb90
Author: pascal-niklaus <[email protected]>
Date: Sun Mar 24 11:04:22 2024 +0100
main: add unlimited (100x) undo buffer with compression
* main: compression
* main: undo buffer lz4 compression
* main: undo buffer lz4 compression
* undo-unrelated code removed
* undo-unrelated code removed, 2nd attempt
* CMakelist fixed
* --amend
---------
Co-authored-by: Christian Beier <[email protected]>
commit ecd22fe4cb1cbdcd4673b60fe24748634b1ea418
Author: Christian Beier <[email protected]>
Date: Sun Mar 24 10:16:30 2024 +0100
.clang-format: add
re #196
commit 19a55699e23ff63106c12f34f30aa8f093a44c65
Author: pascal-niklaus <[email protected]>
Date: Fri Mar 22 09:51:22 2024 +0100
src: add new tools SMOOTH and ORTHOGONAL
* new tools
* ortho and smooth rebased on current master
* closed-curve now also for orthogonal pen
* closed-curve now also for orthogonal pen
* coordlist fixed again for smooth
* orthogonal and smooth now configurable
* smooth renamed to coordlist_ops, smooth_priv.h removed
* config, callbacks: snapdist was uninitialized in config; redundant lines removed in callbacks
* callback: prevent crash upon empty coordlist
* README: smooth and orthogonal tool descriptions
commit f9f1090e8f4a8a613488ce1feba7b16ca52d338a
Author: Christian Beier <[email protected]>
Date: Thu Mar 21 20:02:29 2024 +0100
README: make it clearer what to expect under Wayland
re #197, #127, #121, #106, #103
commit 040ca1eabd4f136d87cfa9e2c2667b1fbfb6f6a3
Author: Christian Beier <[email protected]>
Date: Tue Mar 12 14:22:36 2024 +0100
AppStream: shorten summary
commit 744e81b23f462808770399ad1f078d01bba27442
Author: Christian Beier <[email protected]>
Date: Tue Mar 12 08:52:36 2024 +0100
ChangeLog: update
commit 7db82a00a236f9b5f2dcfa2f660ce1c9b336d0c2
Author: Christian Beier <[email protected]>
Date: Tue Mar 12 08:51:33 2024 +0100
AppStream: add 1.6.0 release notes
commit b2b7fe7a7e687db4322c5367600f58ccad1c23d9
Author: Christian Beier <[email protected]>
Date: Tue Mar 12 08:47:44 2024 +0100
CMake: bump minor version
commit e54b9ba4bc155781a70ccfbb22d2b913c19e007c
Author: Christian Beier <[email protected]>
Date: Tue Mar 12 08:47:12 2024 +0100
NEWS: update
commit 502c1a55d1c0cd62ce8869bd8ed1437a8d7a8b59
Author: Christian Beier <[email protected]>
Date: Mon Mar 11 11:40:14 2024 +0100
README: document arrowtype config
commit aa1c807f80f485f18102598f10b41f22fa1e3058
Author: pascal-niklaus <[email protected]>
Date: Mon Mar 11 08:54:38 2024 +0100
drawing,config,callbacks: add arrowtype option that allows to set arrow position
* drawing, config, callbacks: add arrowtype option allowing arrow heads at both line ends
re #67
* main.h: enum names changed for arrow types
* config: don't set arrow type to none when size is defined
---------
Co-authored-by: Christian Beier <[email protected]>
commit c0886ec86a61e0ef9c3db6119a5d536507bb7ec2
Author: Christian Beier <[email protected]>
Date: Mon Mar 11 08:49:50 2024 +0100
README: fix typo
commit ed1456349e9e13a9ade584514a33b17823c4406b
Author: Christian Beier <[email protected]>
Date: Sat Mar 2 22:47:42 2024 +0100
po: update Portuguese (Brazil) translation
commit 0dd37bd0b1978a8baae2968f99467f07358737b4
Author: Renato Lima <[email protected]>
Date: Fri Oct 15 02:44:46 2021 -0300
po: add Portuguese (Brazil) translation
commit 4cec82eb984ad7bd94ec5339f4ec5222b1743150
Author: Christian Beier <[email protected]>
Date: Sat Mar 2 13:27:55 2024 +0100
README: document LINE and RECT tools
re #67
commit e914dc0bc829077bfdfc4cac7190da81dea78856
Author: Christian Beier <[email protected]>
Date: Sat Mar 2 13:18:04 2024 +0100
callbacks: update copyright year
commit 42c9e30e1f938ac1a278257f28e79dccab6da1f1
Author: Christian Beier <[email protected]>
Date: Sat Mar 2 13:17:24 2024 +0100
callbacks: update authors in About dialog
commit ec726f438e2a81dd02414427cd87ccc1f54c16d7
Author: Christian Beier <[email protected]>
Date: Sat Mar 2 12:37:33 2024 +0100
AUTHORS: update
commit 3cf1116bbbfabce635f196f1c7c98b77c3a04567
Author: Christian Beier <[email protected]>
Date: Sat Mar 2 12:24:34 2024 +0100
main,callbacks: rename temp_buffer to aux_backbuffer
commit 53db4941588a9dfa8764d16270d8e8f2b62172ca
Author: pascal-niklaus <[email protected]>
Date: Thu Feb 22 20:51:04 2024 +0100
config, callbacks: add RECT and LINE tools
commit 1ac43435b222f13c2c7d6221abb5ac97996f1aed
Author: Christian Beier <[email protected]>
Date: Mon Feb 26 10:44:20 2024 +0100
po: add original translator to Persian language team
commit c99df3452f8818487c9bcf8d18313b92afdb7007
Author: Christian Beier <[email protected]>
Date: Mon Feb 26 10:41:29 2024 +0100
po: update all translations w/ report-bug/feature-request string
Closes #138
commit f076166b2c47276749f99de4ec15f65e910e745e
Author: Christian Beier <[email protected]>
Date: Mon Feb 26 10:31:08 2024 +0100
main,callbacks: add a report-bug/request-feature menu item
Re #138
commit 6d4c7f37ab656b758b031e01f81b722fc3241862
Author: Christian Beier <[email protected]>
Date: Mon Feb 26 09:46:17 2024 +0100
flatpak: update GNOME runtime to v44
commit 39994f2e0b1fc78c50ffcd17b81e04d905a833fb
Author: Christian Beier <[email protected]>
Date: Sun Feb 25 20:27:07 2024 +0100
.github: add an apt update step to CI
commit 2446a4f7b7ddefc83c4c68ec0eb0d5a8b5b087c3
Author: pascal-niklaus <[email protected]>
Date: Sun Feb 25 20:22:23 2024 +0100
callbacks: change '!' in comparison to '!='
Closes #188
commit c5d17947d22c4f903bfa3365549d96bc2c0c7430
Author: Christian Beier <[email protected]>
Date: Sun Dec 17 13:09:17 2023 +0100
README: update link to input device manager
commit c88af5ed8baa29107d90b614781025a65b0f5b35
Author: Christian Beier <[email protected]>
Date: Sat Dec 16 09:09:35 2023 +0100
.gitignore: add .cache
commit 6084ce88681ba826b36761dc8574dfaab709a065
Author: Christian Beier <[email protected]>
Date: Sun Nov 5 09:08:27 2023 +0100
README: update release checklist
commit 8da79062a7e1ce7eae06da2daa631e4b5e60bdf4
Author: Christian Beier <[email protected]>
Date: Sun Oct 22 20:51:02 2023 +0200
ChangeLog: update
commit 59605e513beb58445019ddb0cdcaf3f8c7ab60e8
Author: Christian Beier <[email protected]>
Date: Sun Oct 22 20:49:53 2023 +0200
AppStream: add 1.5.1 release notes
commit d6a33160db888edac0c29dceb9278da9f8596b9c
Author: Christian Beier <[email protected]>
Date: Sun Oct 22 20:48:45 2023 +0200
CMake: patchlevel up
commit a8c1ca3aa27fa0f2baea0e96138a7f7c7ca37575
Author: Christian Beier <[email protected]>
Date: Sun Oct 22 20:48:26 2023 +0200
NEWS: update
commit 1242a929a01ba4f2a7ed41eda12d3c15fd18643d
Author: Christian Beier <[email protected]>
Date: Sun Oct 22 20:18:48 2023 +0200
config: fix .ini file read-only check
Needs to be tested for existence as well.
Follow-up to ef56fd1f2589720efeb39c6ff5b0f1a0b09d6ad9.
re #182
Closes #114
commit 3b6731d03d33382c9ac2ebd66abe0b0c3db7fdfd
Author: Christian Beier <[email protected]>
Date: Wed Oct 11 22:32:36 2023 +0200
flatpak: switch back to --socket=x11
To make flatpak-builder-lint happy.
commit b7c548396955654cb4a40e1703298418c7313aeb
Author: Christian Beier <[email protected]>
Date: Wed Oct 11 22:09:00 2023 +0200
ChangeLog: update
re #181
commit c19df113b2b400a6753fcad8bf680a16a2b1018d
Author: Christian Beier <[email protected]>
Date: Wed Oct 11 22:04:18 2023 +0200
CMake: set full triplet version
re #181
commit 07aabaf44443b07f107eb4802f82268ecc20a494
Author: Christian Beier <[email protected]>
Date: Wed Oct 11 22:02:55 2023 +0200
AppStream: add 1.5.0 release notes
re #181
commit c3a4295fbb9fcf8d081ef7fcbd3b928ab645e89c
Author: Christian Beier <[email protected]>
Date: Wed Oct 11 21:53:17 2023 +0200
NEWS: update
re #181
commit 88ad45f14dffe41fff037664c115f92b3696ac11
Author: Christian Beier <[email protected]>
Date: Wed Oct 11 21:37:54 2023 +0200
NEWS: fix headline indent
commit 9f2c27ad803e4805261278327a92a9a2d0b7143e
Author: Christian Beier <[email protected]>
Date: Wed Oct 11 21:32:17 2023 +0200
main,callbacks: handle SIGINT, SIGTERM
Closes #114
commit ef56fd1f2589720efeb39c6ff5b0f1a0b09d6ad9
Author: Christian Beier <[email protected]>
Date: Wed Oct 11 19:47:30 2023 +0200
config: don't overwrite read-only .ini file
Closes #182
commit 806baf6aa5d33ea1bbfbcda5d0ffa05acab5b669
Author: Christian Beier <[email protected]>
Date: Fri Sep 29 12:05:30 2023 +0200
README: update release instructions
commit 2c11b9f869c20b29f6a7bc9a3851fdf17bde1849
Author: Christian Beier <[email protected]>
Date: Fri Sep 29 12:05:00 2023 +0200
AUTHORS: update
commit ec99424bc6c68fd020665a11b94a22652eea5351
Author: Christian Beier <[email protected]>
Date: Fri Sep 29 12:03:15 2023 +0200
callbacks: update authors in About dialog
commit 00eed7608e37dfba00f177b9216ee49f0fa36919
Author: Christian Beier <[email protected]>
Date: Fri Sep 29 11:54:57 2023 +0200
callbacks: update copyright year in About dialog
commit d30f9b83e681e72ce1ee54de3ac81088fb0bdf9b
Author: Ashwin Rajesh <[email protected]>
Date: Mon Sep 11 19:07:46 2023 +1000
Add functionality to draw lines via command
* action: add a --line command line option for drawing lines
* targets: add GA_LINE and GA_LINEDATA targets to allow cli to send
parameters to the main app
* chore: remove debug logs
* chore: formatting fixes
* callbacks: free line_ctx, might prevent potential memory leak
* README: add docs for --line command
* callbacks: fix memory leak
* main: indentation fixes
* cmdline: failsafe checks
* cmdline: fix minor failsafe check bug
* README: add line example
* README: indentation error
* README: add quotes around color argument
commit e47c6c8a81b3045c43906052c62c9e586d0f90df
Author: Christian Beier <[email protected]>
Date: Thu Sep 7 15:08:50 2023 +0200
README: add make install to build instructions
commit cff41ddc8724fef93652136a3fcede0295422916
Author: Christian Beier <[email protected]>
Date: Wed May 17 08:50:13 2023 +0200
flatpak: update GNOME runtime to v43
commit e3c3c85a18bba4aefe8f3329f26289d49e91b30e
Author: Christian Beier <[email protected]>
Date: Wed Apr 26 20:30:30 2023 +0200
AppStream: remove <em> tags
Although
https://freedesktop.org/software/appstream/docs/chap-Metadata.html#tag-description
says this works, the flathub website does not display them correctly,
at least currently.
Closes https://github.com/flathub/net.christianbeier.Gromit-MPX/issues/3
commit db0c147a36d7c70c4f964d4fa26daa2b2fad77d4
Author: Christian Beier <[email protected]>
Date: Sun Sep 25 14:42:56 2022 +0200
AppStream: add 1.4.3 release notes
commit e2c747cf0955b83feaed3a7592e3a0573426bbec
Author: Christian Beier <[email protected]>
Date: Sun Sep 25 14:40:19 2022 +0200
callbacks: update authors
commit 036557fb02d8b986ebf14cb6232bc6656908cb8c
Author: Christian Beier <[email protected]>
Date: Sun Sep 25 14:37:33 2022 +0200
NEWS: add v1.4.3 entry
commit 2f9c6d2b9ff25f4038330d04faf4919a269bde94
Author: godmar <[email protected]>
Date: Fri Aug 19 15:01:42 2022 -0400
input: look for 'GNOME' as substring of XDG_CURRENT_DESKTOP
...instead of checking whether XDG_CURRENT_DESKTOP equals `GNOME` when installing hotkeys into the compositor under Wayland. This will support both `GNOME` and `ubuntu:GNOME` for instance, the latter is the setting on Ubuntu 22.
Closes #164
commit a8e5ce4668fe7bb3d025360611b1719be1039817
Author: Christian Beier <[email protected]>
Date: Tue Aug 16 21:21:38 2022 +0200
input: don't mess with compositor when no keys are set at all
re #162
commit 794b7306ba3e4aeef1040885a4202b5e0fa04bbd
Author: Christian Beier <[email protected]>
Date: Tue Aug 16 21:10:19 2022 +0200
input: adapt debug logs to no-hotkeys-set case
re #162
commit f94531cdc72623c8370c4d296759e0858c1336ce
Author: Christian Beier <[email protected]>
Date: Tue Aug 16 21:07:45 2022 +0200
input: fill device table also when no hotkeys are defined
Closes #162
commit aeac571d7ad48f5364b67423cdfa1501e1d8ec74
Author: Christian Beier <[email protected]>
Date: Fri Jul 8 14:33:08 2022 +0200
README: link future milestones as roadmap
commit 90acdda9717a3c34f5e0db4ec61129e8d1cc5317
Author: Christian Beier <[email protected]>
Date: Mon Jul 4 12:38:56 2022 +0200
TravisCI: delete .travis.yml
commit 9b4327d109698d74f99feabe0dd50acfa7f9d10c
Author: Christian Beier <[email protected]>
Date: Mon Jul 4 12:38:23 2022 +0200
README: use GitHub CI status badge instead of TravisCI one
commit 77e747950af7bce4fd3c1adcaff03b99535b19b6
Author: Christian Beier <[email protected]>
Date: Mon Jul 4 12:36:09 2022 +0200
Add GitHub CI workflow
commit 43628bce90fd41897c6e6ad8d79997b5f3fc4c83
Author: avma <[email protected]>
Date: Sat Jul 2 18:26:58 2022 +0300
po: add Hebrew translation
* Add Hebrew translation
Add he.po file
* po:add Hebrew translation
Add 'he' language code to CMakeLists.txt
* po: add hebrew translation
add he.po
* po:add Hebrew Translation (fix)
Fix empty lines (Missing / surplus) in file CMakeLists.txt.
commit 3773ead60c9cbccc46db24f3281ab263931d9317
Author: bbhtt <[email protected]>
Date: Sun Jun 12 14:03:13 2022 +0530
flatpak: bump runtime to 42
- Switch to fallback-x11. This is a GTK3 application.
- Update gnome-settings-daemon to 42.2
- Update dconf to 0.40.0
Closes #141
commit 87f96df64f0bdfeeba3903b2ef3075ba8d4bb372
Author: Christian Beier <[email protected]>
Date: Mon Jun 13 20:51:52 2022 +0200
flatpak: update shared-modules
re #141
commit 30a566424f5025fe26f655c8ccbffb96266c09dc
Author: Adam Chyła <[email protected]>
Date: Mon Apr 25 09:44:51 2022 +0200
main: fix use after free
commit 2ae017a54efa01acb0af9d4672c973dc0c08254c
Author: komeil Parseh <[email protected]>
Date: Wed Mar 16 11:10:12 2022 +0330
po:add Farsi (Persian) translation
commit 5e1d965a86ed2fecdd4867bca7232e4f590a776f
Author: Christian Beier <[email protected]>
Date: Wed Mar 9 10:10:22 2022 +0100
Update bug issue template
commit 5e9bf6afdccf206f259d57ed9e173dce75c82a68
Author: Christian Beier <[email protected]>
Date: Mon Feb 28 10:44:24 2022 +0100
README: document that RGBA colours can be set for tools as well
re #87
commit 367d78426077aa8c3c429ac95e70e2a857eec8e3
Author: Christian Beier <[email protected]>
Date: Sat Feb 12 16:24:10 2022 +0100
AppStream: add 1.4.2 release notes
commit 558b2f2c57fb8f55e2ccb3b8ae2fcbb9a34bfac8
Author: Christian Beier <[email protected]>
Date: Sat Feb 12 16:20:32 2022 +0100
NEWS: update
commit 721d8cd70d5ffb70553a893ac497d1dc31ccfce8
Author: Christian Beier <[email protected]>
Date: Tue Feb 8 21:36:08 2022 +0100
callbacks: let on_toggle_paint_all wait a bit under X11
Closes #149
commit 2536b9a90acec280ded5e574d8fe32c22d93d6e2
Author: Christian Beier <[email protected]>
Date: Mon Feb 7 13:36:58 2022 +0100
main: add separator above Quit menu item
commit 88e448d306fd8ec2835d3afbb9502c776582445f
Author: Christian Beier <[email protected]>
Date: Mon Feb 7 13:30:35 2022 +0100
CMake: minor up
commit 03619070a234faed96441ee1183af3f752d137a0
Author: Christian Beier <[email protected]>
Date: Fri Feb 4 14:40:16 2022 +0100
input: correctly document add_hotkeys_for_compositor
commit 23596f02a556da89a74c548412f95748aa259657
Author: Christian Beier <[email protected]>
Date: Fri Feb 4 14:39:54 2022 +0100
Revert "input: document add_hotkeys_for_compositor"
This reverts commit 4f3ed369e1aeb2c2e5275fe04897e82d0690e0fd.
commit 9efe01d9ee2b47c03c682ee34bc01753424cb46c
Author: Christian Beier <[email protected]>
Date: Fri Feb 4 14:24:43 2022 +0100
README: format problems section, link to open bugs
commit 4f3ed369e1aeb2c2e5275fe04897e82d0690e0fd
Author: Christian Beier <[email protected]>
Date: Fri Feb 4 14:11:57 2022 +0100
input: document add_hotkeys_for_compositor
re #121 #127
commit b7bb607e5789fa5a10416d5e9937428c48f68647
Author: Christian Beier <[email protected]>
Date: Fri Feb 4 13:20:50 2022 +0100
input: force redraw when changing input shape under Wayland
Closes #136
commit 570b8832e282b6694eddc1dde80ddbaae0d56d61
Author: Christian Beier <[email protected]>
Date: Fri Feb 4 12:53:32 2022 +0100
input: hide unpainted window in ungrab-all case, too
commit 9228e716922fbcde25ed9e32b0bca9217e6bf0cd
Author: Christian Beier <[email protected]>
Date: Fri Feb 4 12:06:44 2022 +0100
callbacks: add a faint pink background in DEBUG mode
re #106 #121 #127 #136
commit de31837c0af97c3dd9f1f891ccd2dfa4265e0094
Author: Christian Beier <[email protected]>
Date: Fri Feb 4 11:04:23 2022 +0100
main: check for org.kde.StatusNotifierWatcher dbus name
...instead of XDG_CURRENT_DESKTOP=KDE
Closes #149
commit 837f93aae8d987907965fdd4e14d5f23376360eb
Author: Christian Beier <[email protected]>
Date: Thu Feb 3 21:14:33 2022 +0100
AppStream: add 1.4.1 release notes
commit 2c2165ab8c987e692b4b8c5c6c51bdd30058b963
Author: Christian Beier <[email protected]>
Date: Thu Feb 3 21:06:54 2022 +0100
callbacks: update Copyright year
commit 92b52b51d1516fc984d01815c5e13a1e5f92fc9e
Author: Christian Beier <[email protected]>
Date: Thu Feb 3 20:56:23 2022 +0100
NEWS: update
commit 95496afbf98236868a07acb858a00f283daca9c6
Author: Christian Beier <[email protected]>
Date: Thu Feb 3 21:19:26 2022 +0100
README: add release checklist
commit b255c3d206ca3241e8bcd1067e6eaca492a33bcb
Author: Christian Beier <[email protected]>
Date: Thu Feb 3 19:40:21 2022 +0100
NEWS: add release dates
commit 804819fe08346e7a4721efe88bb977df8a06368b
Author: Christian Beier <[email protected]>
Date: Wed Feb 2 21:29:37 2022 +0100
Update bug issue template
commit c2ef92691f434b307e979bd24ad33b1eadbdd166
Author: Christian Beier <[email protected]>
Date: Fri Jan 14 11:45:31 2022 +0100
README: document device-specific cmdline toggling
Closes #145
commit 6820b206fc3fdefc51cb39d9c87e4236b6be4de8
Author: Christian Beier <[email protected]>
Date: Tue Sep 21 14:16:28 2021 +0200
README: mention XFCE 4.14 pecularities
Closes #142
commit 2592af4866098ffe56022cf8994e9a1146ec7c78
Author: Christian Beier <[email protected]>
Date: Thu Jul 1 12:43:21 2021 +0200
main: set 'modified' after undo/redo, add explicit draw in reshape()
Closes #122
commit 65bb19958fc763457437fbcce7c3958ef36b03fd
Author: Christian Beier <[email protected]>
Date: Wed Jun 30 17:36:29 2021 +0200
README: document valid opacity values
re #139
commit a100b4a42fbf65e140c5d9fbdb11d977b0293c02
Author: Christian Beier <[email protected]>
Date: Wed Jun 30 12:16:19 2021 +0200
README: explain in more detail how opacity is set
Closes #139
commit 32661b66ed62477b21a06bd90e5cfd4eef898d16
Author: Christian Beier <[email protected]>
Date: Tue Jun 22 21:59:00 2021 +0200
flatpak: build dconf and hint gsettings at its install location
* dconf-override.patch and dconf build config: from https://github.com/flathub/ca.desrt.dconf-editor
* GIO_EXTRA_MODULES hint from: https://src.fedoraproject.org/flatpaks/dconf-editor/c/9a91b41133369cfbc5424bc7e3cb1e2df86d7dae?branch=stable
Closes #135
commit 6e02425275896e2a0a7c95808f79567740b3070a
Author: Christian Beier <[email protected]>
Date: Wed May 26 09:46:17 2021 +0200
README: mention that XWayland is required for the time being
Closes #132
commit 2c7589da3f0e8108335295fca65859fe8c63a0e1
Author: Christian Beier <[email protected]>
Date: Fri May 14 13:10:08 2021 +0200
README: document maxsize config parameter
re #129, #115
commit dc5900395f9b0ef61b6b6c145bcdda01e51c0a13
Author: Christian Beier <[email protected]>
Date: Mon May 10 09:54:17 2021 +0200
README: mention Flatpak config location
commit d2fa774f26e022737259731945838022bcef6219
Author: Christian Beier <[email protected]>
Date: Mon May 10 09:39:01 2021 +0200
README: document Flatpak autostart
commit 444b1fdbaed9287a1ef347f59bde69f16d1d4cd1
Author: Christian Beier <[email protected]>
Date: Sun Apr 11 07:11:08 2021 +0200
README: remove stray square brackets
commit 9f02e7d588192f9f8f288beb4671760aefc714eb
Author: Christian Beier <[email protected]>
Date: Sun Apr 11 07:08:25 2021 +0200
README: link one screenshot
commit 1920bc1e4c7742b4b368544d25e99a0117916578
Author: Renato Candido <[email protected]>
Date: Sat Mar 13 09:22:32 2021 -0300
po: fix Italian translation
I tried to compile the project and got an error in this line.
Fixed it by removing one of the quotation marks.
commit 922b934679aea6bcf0367287466a4134fc6742b1
Author: Christian Beier <[email protected]>
Date: Tue Mar 9 21:40:54 2021 +0100
CMake: use Italian translation
commit 05004fc8a87dca18391b8d1bd88ac6a5e7302a30
Author: albanobattistella <[email protected]>
Date: Mon Mar 8 22:00:21 2021 +0100
po: add Italian translation
commit becd840e46a6955dbc44b9bec6f1bc3356e35e6e
Author: Christian Beier <[email protected]>
Date: Sun Mar 7 22:12:09 2021 +0100
callbacks: update icon name for About dialog
commit 65aa3c9589969513f2e3066bfc3eca3e4c409210
Author: Christian Beier <[email protected]>
Date: Sun Mar 7 22:02:10 2021 +0100
Prefix all icons
Fixes tray icon display when running in flatpak on Ubuntu.
commit fe5aa8bd0548b2aab97021c06ebccd6b53f10dba
Author: Christian Beier <[email protected]>
Date: Sun Mar 7 21:54:46 2021 +0100
Remove XPM icon
commit c5714a6de7bf6b54e64f2badf23f3f07929dafa7
Author: Christian Beier <[email protected]>
Date: Sun Mar 7 20:24:57 2021 +0100
flatpak: fix appindicator not showing up in Ubuntu
Fixes https://github.com/bk138/gromit-mpx/issues/123#issuecomment-792043568
https://github.com/ubuntu/gnome-shell-extension-appindicator/issues/74
has some background.
commit 631ee675c3abd10c398e8c9f2d7cd026a497363c
Author: Christian Beier <[email protected]>
Date: Sun Mar 7 19:24:51 2021 +0100
flatpak: update README
commit 2a838303154df4a90495c4f93741846cbd63d37f
Author: Christian Beier <[email protected]>
Date: Tue Feb 16 22:29:46 2021 +0100
CMake,main: prefer ayatana-appindicator, fallback to appindicator
Closes #111
commit b8ed91cfca25e14338d980e12cd73fd37eefbc85
Author: Christian Beier <[email protected]>
Date: Fri Feb 5 13:53:09 2021 +0100
Rename gromit-mpx.[c|h] to main.[c|h]
commit da6b7d42d176d4e25f442ff6f6cbd105893ee94c
Author: Christian Beier <[email protected]>
Date: Fri Feb 5 13:46:47 2021 +0100
Factor out pixel drawing functions into drawing.[c|h]
commit 9e5280553be6714f27cf5e72311718176c249b4d
Author: Christian Beier <[email protected]>
Date: Fri Feb 5 11:40:09 2021 +0100
po: update German translation
commit 9c8804d5831e18c343293530620cfded8aa3b470
Author: Christian Beier <[email protected]>
Date: Fri Feb 5 11:39:39 2021 +0100
po: update Spanish translation
commit a3777d1e0c378ec2a55c3ed04c471c20d361e6d3
Author: Christian Beier <[email protected]>
Date: Fri Feb 5 11:33:19 2021 +0100
config: let .cfg parse return and alert instead of exit()ing on fail
Closes #118
commit 176469f5d1d1365f2772370ef2cfb03be59b1fb2
Author: Christian Beier <[email protected]>
Date: Thu Feb 4 19:32:42 2021 +0100
CMake: use spanish translation
Closes #116
commit 0036f47fce1769a793b64728c0f20889a84a5179
Author: Christian Beier <[email protected]>
Date: Thu Feb 4 19:32:18 2021 +0100
po: add Spanish translation
commit 696865ef5aba2a266d3eb5c484ece7b42aa337ba
Author: Christian Beier <[email protected]>
Date: Mon Feb 1 23:01:47 2021 +0100
CMake: use German translation
re #116
commit fc41027356120a54e573fe01c9dba8105a5fb21a
Author: Christian Beier <[email protected]>
Date: Mon Feb 1 23:01:23 2021 +0100
po: add German translation
re #116
commit f09aa2ee1693658ff355449dc618a57745fb99ac
Author: Christian Beier <[email protected]>
Date: Mon Feb 1 22:06:34 2021 +0100
po: add README and xgettext helper script
re #116