-
-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathChangeLog
More file actions
3964 lines (2588 loc) · 114 KB
/
ChangeLog
File metadata and controls
3964 lines (2588 loc) · 114 KB
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 9992e30b2c184375dae4688f3f9b9a37ee45279f
Author: Christian Beier <info@christianbeier.net>
Date: Wed Mar 18 19:59:55 2026 +0100
AppStream: add v1.9.0 release notes
commit 934fd9a2f4407f5429ae8391539cb7ab108ab1ed
Author: Christian Beier <info@christianbeier.net>
Date: Wed Mar 18 19:59:14 2026 +0100
NEWS: update for v1.9.0
commit a35c250a20ee73a2dd3e149a79165b1f265e8102
Author: Christian Beier <info@christianbeier.net>
Date: Wed Mar 18 19:55:08 2026 +0100
CMake: bump minor version
commit f58e99b01e0f034a84c9ca12017431541f97c8a0
Author: Christian Beier <info@christianbeier.net>
Date: Wed Mar 18 19:53:43 2026 +0100
AUTHORS: update
commit 193d91568c82dcf8f6549687d7e2d00db5e6372f
Author: Christian Beier <info@christianbeier.net>
Date: Wed Mar 18 19:52:51 2026 +0100
callbacks: update Authors
commit 9a4c98a57afa45b428424bfade94ef34826d2d21
Author: Christian Beier <info@christianbeier.net>
Date: Wed Mar 18 19:52:02 2026 +0100
callbacks: update Copyright year
commit 26b88f91d03df32b3587b050ddefa7ff1e4e4802
Author: markovka <59536783+mark00vka@users.noreply.github.com>
Date: Wed Mar 18 18:04:21 2026 +0100
Add functionality to show length label for LINE tool
* drawing: add text label showing line length in pixels
When applied, this commit will add a text label displaying the line length in pixels at the midpoint of lines.
* config: add text size parameter
Adds textsize tool config options for line length label. Can be set in gromit-mpx.cfg, e.g. LINE (color="red" textsize=16). Default is textsize=14.
* config: add euclidean distance calculation parameter
Add distance tool config options for line length calculation. Can be set in gromit-mpx.cfg, e.g. LINE (color="red" distance="euclidean").
* config: add separate axis distance calculation option
e.g. LINE (color="red" distance="axis").
Also adds an option for calculating both euclidean and axis distance (distance="both").
* config: change distance param to showlength and remove axis option
e.g. LINE (color="red" showlength).
* README: add showlength documentation
* README: update showlength documentation
Closes #251
commit 4b439f8e195441a3f53a50221af73e79d0a142e5
Author: Christian Beier <info@christianbeier.net>
Date: Thu Mar 5 08:01:41 2026 +0100
CMake: include CPack
commit e3a227ff99d9e03d7a63ea01334b1e954ca3022d
Author: Christian Beier <info@christianbeier.net>
Date: Thu Mar 5 07:59:02 2026 +0100
CMake: use CMake's 'PROJECT_VERSION' instead of custom 'version'
commit b54838c0b15a840aa3131b9ea8f8148c82480c85
Author: Christian Beier <info@christianbeier.net>
Date: Tue Feb 24 16:34:26 2026 +0100
main: plug minimal memleak in client program
This would be reclaimed by the OS anyway since as a client we're super
short-lived, but do it for code quality anyway.
Closes #206
commit 23c6c685a29e84b3cc8c45a6fc490dd7b3a9c119
Author: Ekaterine Papava <papava.e@gtu.ge>
Date: Tue Feb 24 19:20:07 2026 +0400
po: Add Georgian translation
commit 8e4d666f9f01a6068809f1290cbdeda4f61b96ac
Author: Christian Beier <info@christianbeier.net>
Date: Thu Dec 4 20:36:35 2025 +0100
callbacks,main: set subpixel antialiasing
...instead of the default one. Might yield some quality improvements.
Closes #245
commit 2ebc0cb435eaa4fb7995e36e7cf4b84c35c64b3d
Author: Christian Beier <info@christianbeier.net>
Date: Tue Nov 11 22:19:23 2025 +0100
ChangeLog: update
commit 5d4939221746867915928db26599f0781d39bc30
Author: Christian Beier <info@christianbeier.net>
Date: Tue Nov 11 22:18:04 2025 +0100
README: fix flathub badge link
commit 56e0338530674d2d7086bfc5dba3cf54719d23c1
Author: Christian Beier <info@christianbeier.net>
Date: Tue Nov 11 22:09:45 2025 +0100
AppStream: add 1.8.0 release notes
commit 398a0eee5a0d34a088c6d1aeb3046c3dc11fbca7
Author: Christian Beier <info@christianbeier.net>
Date: Tue Nov 11 22:05:49 2025 +0100
callbacks: update Authors
commit 1ecc7448214b5bfd9ae4c8e5533451af4f075bc1
Author: Christian Beier <info@christianbeier.net>
Date: Tue Nov 11 22:01:08 2025 +0100
AUTHORS: update
commit 9477d62a4c4b8b6e975f0aa2e96087d5a81d216b
Author: Christian Beier <info@christianbeier.net>
Date: Tue Nov 11 21:56:18 2025 +0100
callbacks: update Copyright year
commit b03b094bc212af0503f08f1da8baf95c5eb730cb
Author: Christian Beier <info@christianbeier.net>
Date: Tue Nov 11 21:54:48 2025 +0100
CMake: bump minor version
commit b05684c0826e27b6109b532998abfb869004e589
Author: Christian Beier <info@christianbeier.net>
Date: Tue Nov 11 21:53:50 2025 +0100
NEWS: update for v1.8.0
commit 9514f275ab6c9e81708d0e0a3d7e95f7fd29b14b
Author: Christian Beier <info@christianbeier.net>
Date: Tue Nov 11 21:46:06 2025 +0100
README,data: add animation for CIRCLE tool
commit 4271019388735107faedf24d092935a18846248c
Author: Marcin Orlowski <MarcinOrlowski@users.noreply.github.com>
Date: Tue Nov 11 21:28:01 2025 +0100
Add CIRCLE tool
Adds support for CIRCLE as outline or filled variant. All colours (and alpha) configurable separately.
Co-authored-by: Christian Beier <info@christianbeier.net>
commit b84571a36dc457d6fc9e74988b50b3039bcb18c8
Author: gavine99 <63904295+gavine99@users.noreply.github.com>
Date: Wed Nov 5 07:35:33 2025 +1100
main: use root window width/height
... instead of screen width/height to determine overlay window width/height.
Fixes Gromit-MPX for usage with RandR virtual monitors while still working with other setups.
See https://github.com/bk138/gromit-mpx/pull/236 for details.
commit e3b501d497374da083b97d0b3bbd40c5c766d2d1
Author: Andrew Marshall <andrew@johnandrewmarshall.com>
Date: Sun Oct 12 09:59:16 2025 -0400
CMake: fix compatibility with newer CMake
CMake 4.0 removed compatibility for CMake < 3.5. This increases to
explicitly declare support for up to 3.10 (the oldest non-deprecated
version), thereby fixing the build on CMake 4.0.
commit b834353fd1114724bdd57e76c30dc5aad8304f36
Author: Christian Beier <info@christianbeier.net>
Date: Mon Aug 25 22:01:27 2025 +0200
flatpak: update GNOME runtime to v48
commit f882032a557cd1e4b586c55708b0ccb2af2a6732
Author: Christian Beier <info@christianbeier.net>
Date: Mon Aug 25 21:57:25 2025 +0200
main,build: change cursor sources from XPM to PNG
Newer gdk-pixbuf versions have the XPM loader disabled, so change our
cursor sources to be PNG. This has the side effect that cursors can
nwo be changed after build time by exchanging the PNG file contents.
Closes #219
Closes #22
commit 4f774596ad47d2a70bdc220cd92b7dd87c059704
Author: Christian Beier <info@christianbeier.net>
Date: Mon Aug 25 20:45:46 2025 +0200
flatpak: update shared-modules
commit 396b167df94f927e00e459bf0a39fba03491921e
Author: woodhead2019 <52210283+woodhead2019@users.noreply.github.com>
Date: Sun Jun 29 16:59:02 2025 +0800
Update CMakeLists.txt (Add zh_CN, zh_TW, zh_HK, zh_SG translations)
commit 4d2e7d5e30ddcbf2efdc83f8f8528b1fcf68e473
Author: woodhead2019 <52210283+woodhead2019@users.noreply.github.com>
Date: Sun Jun 29 16:54:13 2025 +0800
Add zh_CN, zh_TW, zh_HK, zh_SG translations for Gromit-MPX
commit 6f9c7a08580e410600dcdbcac23c0a3db25c4810
Author: Leonardo Taccari <leot@NetBSD.org>
Date: Sun May 4 22:09:11 2025 +0200
coordlist_ops: adjust memcpy call for macro
In some SSP implementations - like NetBSD ssp(3) - memcpy(3) can be a
macro and the build will fail because the macro will see 8 arguments
instead of 3.
commit a9826854c223bd0c27660c68045117e3cf802c7d
Author: yzemaze <dev@yzemaze.de>
Date: Mon Jan 27 14:15:44 2025 +0100
main: change typos of simpilfy to simplify
commit e8473cf0e0a397fc43913247f48cf9cfc64f12f2
Author: yzemaze <dev@yzemaze.de>
Date: Mon Jan 20 20:17:29 2025 +0100
config, main, callbacks, drawing: enable smaller increments of arrows
* change arrowsize & -width to float to enable smaller increments (instead of up to 150 % increase from one size to the next)
* use default value if configured one is too small
* arrowsize = 1 + width = 1 still lead to no arrow at all
commit 4131e05239e79d37eaaddf40376a091d50b11cc7
Author: Christian Beier <info@christianbeier.net>
Date: Fri Jun 7 08:51:55 2024 +0200
flatpak: update GNOME runtime to v46
re #210
commit 1805896e595c5c99a7165e9256804aefaba214e2
Author: Christian Beier <info@christianbeier.net>
Date: Mon Sep 9 22:19:32 2024 +0200
AppStream: add branding colours
commit 7ae3b8cf4b9c644b003057915786b21aea02df0d
Author: Christian Beier <info@christianbeier.net>
Date: Mon Sep 9 21:09:30 2024 +0200
flatpak: use cmake-ninja instead of cmake
commit ee4a15023443786031698e89c5fca37fd48062c2
Author: Christian Beier <info@christianbeier.net>
Date: Mon Sep 9 21:08:41 2024 +0200
flatpak: add --share=ipc to manifest
As required by manifest checker.
commit c2a669c581675155146e3df7377a134a75dfbec2
Author: Christian Beier <info@christianbeier.net>
Date: Mon Sep 9 21:06:57 2024 +0200
flatpak: update README w/ manifest check instructions
commit 305da6eb8e5a58c0f8af374467d34bcd10ec3073
Author: Christian Beier <info@christianbeier.net>
Date: Mon Sep 9 20:39:05 2024 +0200
ChangeLog: update
commit 0355bf35d89248edd48b468fa5b16a1a561408ad
Author: Christian Beier <info@christianbeier.net>
Date: Mon Sep 9 20:38:10 2024 +0200
AppStream: add 1.7.0 release notes
commit 64a29e6678f431e98b75f912780e748ef50b6f41
Author: Christian Beier <info@christianbeier.net>
Date: Mon Sep 9 20:34:20 2024 +0200
CMake: bump minor version
commit ef20a8ecd978438535fa2556cdb21054ae8ad92b
Author: Christian Beier <info@christianbeier.net>
Date: Mon Sep 9 20:33:22 2024 +0200
NEWS: update
commit 21a6d248020d5c9dcb6bb97e11e62c6a1b4655e9
Author: Christian Beier <info@christianbeier.net>
Date: Sat Mar 30 08:10:54 2024 +0100
AppStream: augment description
commit 65444415c90dc00896086f973630657ea47eeccf
Author: Christian Beier <info@christianbeier.net>
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 <info@christianbeier.net>
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 <info@christianbeier.net>
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 <info@christianbeier.net>
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 <info@christianbeier.net>
Date: Mon Mar 25 20:28:00 2024 +0100
coordlist_ops: fix header guard naming
commit 91a8dffd9868ea1716f19421cc39f8e7df9e355e
Author: Christian Beier <info@christianbeier.net>
Date: Mon Mar 25 20:26:30 2024 +0100
drawing: move coord_list* functions to coordlist_ops
commit 70e8f697513288f57166365d490144a00ebebc40
Author: Christian Beier <info@christianbeier.net>
Date: Mon Mar 25 20:01:24 2024 +0100
README: link tool screencasts
commit 4a90787531aa5b616c1177f6162bf567f38fb0f3
Author: Christian Beier <info@christianbeier.net>
Date: Mon Mar 25 18:10:17 2024 +0100
Add animated tool screencasts
...made by Pascal Niklaus.
commit 4a19157ff85714553145578f5d05b99705cacb90
Author: pascal-niklaus <pascal.niklaus@ieu.uzh.ch>
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 <info@christianbeier.net>
commit ecd22fe4cb1cbdcd4673b60fe24748634b1ea418
Author: Christian Beier <info@christianbeier.net>
Date: Sun Mar 24 10:16:30 2024 +0100
.clang-format: add
re #196
commit 19a55699e23ff63106c12f34f30aa8f093a44c65
Author: pascal-niklaus <pascal.niklaus@ieu.uzh.ch>
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 <info@christianbeier.net>
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 <info@christianbeier.net>
Date: Tue Mar 12 14:22:36 2024 +0100
AppStream: shorten summary
commit 744e81b23f462808770399ad1f078d01bba27442
Author: Christian Beier <info@christianbeier.net>
Date: Tue Mar 12 08:52:36 2024 +0100
ChangeLog: update
commit 7db82a00a236f9b5f2dcfa2f660ce1c9b336d0c2
Author: Christian Beier <info@christianbeier.net>
Date: Tue Mar 12 08:51:33 2024 +0100
AppStream: add 1.6.0 release notes
commit b2b7fe7a7e687db4322c5367600f58ccad1c23d9
Author: Christian Beier <info@christianbeier.net>
Date: Tue Mar 12 08:47:44 2024 +0100
CMake: bump minor version
commit e54b9ba4bc155781a70ccfbb22d2b913c19e007c
Author: Christian Beier <info@christianbeier.net>
Date: Tue Mar 12 08:47:12 2024 +0100
NEWS: update
commit 502c1a55d1c0cd62ce8869bd8ed1437a8d7a8b59
Author: Christian Beier <info@christianbeier.net>
Date: Mon Mar 11 11:40:14 2024 +0100
README: document arrowtype config
commit aa1c807f80f485f18102598f10b41f22fa1e3058
Author: pascal-niklaus <pascal.niklaus@ieu.uzh.ch>
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 <info@christianbeier.net>
commit c0886ec86a61e0ef9c3db6119a5d536507bb7ec2
Author: Christian Beier <info@christianbeier.net>
Date: Mon Mar 11 08:49:50 2024 +0100
README: fix typo
commit ed1456349e9e13a9ade584514a33b17823c4406b
Author: Christian Beier <info@christianbeier.net>
Date: Sat Mar 2 22:47:42 2024 +0100
po: update Portuguese (Brazil) translation
commit 0dd37bd0b1978a8baae2968f99467f07358737b4
Author: Renato Lima <natenho@gmail.com>
Date: Fri Oct 15 02:44:46 2021 -0300
po: add Portuguese (Brazil) translation
commit 4cec82eb984ad7bd94ec5339f4ec5222b1743150
Author: Christian Beier <info@christianbeier.net>
Date: Sat Mar 2 13:27:55 2024 +0100
README: document LINE and RECT tools
re #67
commit e914dc0bc829077bfdfc4cac7190da81dea78856
Author: Christian Beier <info@christianbeier.net>
Date: Sat Mar 2 13:18:04 2024 +0100
callbacks: update copyright year
commit 42c9e30e1f938ac1a278257f28e79dccab6da1f1
Author: Christian Beier <info@christianbeier.net>
Date: Sat Mar 2 13:17:24 2024 +0100
callbacks: update authors in About dialog
commit ec726f438e2a81dd02414427cd87ccc1f54c16d7
Author: Christian Beier <info@christianbeier.net>
Date: Sat Mar 2 12:37:33 2024 +0100
AUTHORS: update
commit 3cf1116bbbfabce635f196f1c7c98b77c3a04567
Author: Christian Beier <info@christianbeier.net>
Date: Sat Mar 2 12:24:34 2024 +0100
main,callbacks: rename temp_buffer to aux_backbuffer
commit 53db4941588a9dfa8764d16270d8e8f2b62172ca
Author: pascal-niklaus <pascal.niklaus@ieu.uzh.ch>
Date: Thu Feb 22 20:51:04 2024 +0100
config, callbacks: add RECT and LINE tools
commit 1ac43435b222f13c2c7d6221abb5ac97996f1aed
Author: Christian Beier <info@christianbeier.net>
Date: Mon Feb 26 10:44:20 2024 +0100
po: add original translator to Persian language team
commit c99df3452f8818487c9bcf8d18313b92afdb7007
Author: Christian Beier <info@christianbeier.net>
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 <info@christianbeier.net>
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 <info@christianbeier.net>
Date: Mon Feb 26 09:46:17 2024 +0100
flatpak: update GNOME runtime to v44
commit 39994f2e0b1fc78c50ffcd17b81e04d905a833fb
Author: Christian Beier <info@christianbeier.net>
Date: Sun Feb 25 20:27:07 2024 +0100
.github: add an apt update step to CI
commit 2446a4f7b7ddefc83c4c68ec0eb0d5a8b5b087c3
Author: pascal-niklaus <pascal.niklaus@ieu.uzh.ch>
Date: Sun Feb 25 20:22:23 2024 +0100
callbacks: change '!' in comparison to '!='
Closes #188
commit c5d17947d22c4f903bfa3365549d96bc2c0c7430
Author: Christian Beier <info@christianbeier.net>
Date: Sun Dec 17 13:09:17 2023 +0100
README: update link to input device manager
commit c88af5ed8baa29107d90b614781025a65b0f5b35
Author: Christian Beier <info@christianbeier.net>
Date: Sat Dec 16 09:09:35 2023 +0100
.gitignore: add .cache
commit 6084ce88681ba826b36761dc8574dfaab709a065
Author: Christian Beier <info@christianbeier.net>
Date: Sun Nov 5 09:08:27 2023 +0100
README: update release checklist
commit 8da79062a7e1ce7eae06da2daa631e4b5e60bdf4
Author: Christian Beier <info@christianbeier.net>
Date: Sun Oct 22 20:51:02 2023 +0200
ChangeLog: update
commit 59605e513beb58445019ddb0cdcaf3f8c7ab60e8
Author: Christian Beier <info@christianbeier.net>
Date: Sun Oct 22 20:49:53 2023 +0200
AppStream: add 1.5.1 release notes
commit d6a33160db888edac0c29dceb9278da9f8596b9c
Author: Christian Beier <info@christianbeier.net>
Date: Sun Oct 22 20:48:45 2023 +0200
CMake: patchlevel up
commit a8c1ca3aa27fa0f2baea0e96138a7f7c7ca37575
Author: Christian Beier <info@christianbeier.net>
Date: Sun Oct 22 20:48:26 2023 +0200
NEWS: update
commit 1242a929a01ba4f2a7ed41eda12d3c15fd18643d
Author: Christian Beier <info@christianbeier.net>
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 <info@christianbeier.net>
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 <info@christianbeier.net>
Date: Wed Oct 11 22:09:00 2023 +0200
ChangeLog: update
re #181
commit c19df113b2b400a6753fcad8bf680a16a2b1018d
Author: Christian Beier <info@christianbeier.net>
Date: Wed Oct 11 22:04:18 2023 +0200
CMake: set full triplet version
re #181
commit 07aabaf44443b07f107eb4802f82268ecc20a494
Author: Christian Beier <info@christianbeier.net>
Date: Wed Oct 11 22:02:55 2023 +0200
AppStream: add 1.5.0 release notes
re #181
commit c3a4295fbb9fcf8d081ef7fcbd3b928ab645e89c
Author: Christian Beier <info@christianbeier.net>
Date: Wed Oct 11 21:53:17 2023 +0200
NEWS: update
re #181
commit 88ad45f14dffe41fff037664c115f92b3696ac11
Author: Christian Beier <info@christianbeier.net>
Date: Wed Oct 11 21:37:54 2023 +0200
NEWS: fix headline indent
commit 9f2c27ad803e4805261278327a92a9a2d0b7143e
Author: Christian Beier <info@christianbeier.net>
Date: Wed Oct 11 21:32:17 2023 +0200
main,callbacks: handle SIGINT, SIGTERM
Closes #114
commit ef56fd1f2589720efeb39c6ff5b0f1a0b09d6ad9
Author: Christian Beier <info@christianbeier.net>
Date: Wed Oct 11 19:47:30 2023 +0200
config: don't overwrite read-only .ini file
Closes #182
commit 806baf6aa5d33ea1bbfbcda5d0ffa05acab5b669
Author: Christian Beier <info@christianbeier.net>
Date: Fri Sep 29 12:05:30 2023 +0200
README: update release instructions
commit 2c11b9f869c20b29f6a7bc9a3851fdf17bde1849
Author: Christian Beier <info@christianbeier.net>
Date: Fri Sep 29 12:05:00 2023 +0200
AUTHORS: update
commit ec99424bc6c68fd020665a11b94a22652eea5351
Author: Christian Beier <info@christianbeier.net>
Date: Fri Sep 29 12:03:15 2023 +0200
callbacks: update authors in About dialog
commit 00eed7608e37dfba00f177b9216ee49f0fa36919
Author: Christian Beier <info@christianbeier.net>
Date: Fri Sep 29 11:54:57 2023 +0200
callbacks: update copyright year in About dialog
commit d30f9b83e681e72ce1ee54de3ac81088fb0bdf9b
Author: Ashwin Rajesh <46510831+VanillaViking@users.noreply.github.com>
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 <info@christianbeier.net>
Date: Thu Sep 7 15:08:50 2023 +0200
README: add make install to build instructions
commit cff41ddc8724fef93652136a3fcede0295422916
Author: Christian Beier <info@christianbeier.net>
Date: Wed May 17 08:50:13 2023 +0200
flatpak: update GNOME runtime to v43
commit e3c3c85a18bba4aefe8f3329f26289d49e91b30e
Author: Christian Beier <info@christianbeier.net>
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 <info@christianbeier.net>
Date: Sun Sep 25 14:42:56 2022 +0200
AppStream: add 1.4.3 release notes
commit e2c747cf0955b83feaed3a7592e3a0573426bbec
Author: Christian Beier <info@christianbeier.net>
Date: Sun Sep 25 14:40:19 2022 +0200
callbacks: update authors
commit 036557fb02d8b986ebf14cb6232bc6656908cb8c
Author: Christian Beier <info@christianbeier.net>
Date: Sun Sep 25 14:37:33 2022 +0200
NEWS: add v1.4.3 entry
commit 2f9c6d2b9ff25f4038330d04faf4919a269bde94
Author: godmar <godmar@gmail.com>
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 <info@christianbeier.net>
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 <info@christianbeier.net>
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 <info@christianbeier.net>
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 <info@christianbeier.net>
Date: Fri Jul 8 14:33:08 2022 +0200
README: link future milestones as roadmap
commit 90acdda9717a3c34f5e0db4ec61129e8d1cc5317
Author: Christian Beier <info@christianbeier.net>
Date: Mon Jul 4 12:38:56 2022 +0200
TravisCI: delete .travis.yml
commit 9b4327d109698d74f99feabe0dd50acfa7f9d10c
Author: Christian Beier <info@christianbeier.net>
Date: Mon Jul 4 12:38:23 2022 +0200
README: use GitHub CI status badge instead of TravisCI one
commit 77e747950af7bce4fd3c1adcaff03b99535b19b6
Author: Christian Beier <info@christianbeier.net>
Date: Mon Jul 4 12:36:09 2022 +0200
Add GitHub CI workflow
commit 43628bce90fd41897c6e6ad8d79997b5f3fc4c83
Author: avma <avi.markovitz@gmail.com>
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 <62639087+bbhtt@users.noreply.github.com>
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 <info@christianbeier.net>
Date: Mon Jun 13 20:51:52 2022 +0200
flatpak: update shared-modules
re #141
commit 30a566424f5025fe26f655c8ccbffb96266c09dc
Author: Adam Chyła <adam@chyla.org>
Date: Mon Apr 25 09:44:51 2022 +0200
main: fix use after free
commit 2ae017a54efa01acb0af9d4672c973dc0c08254c
Author: komeil Parseh <ahmdparsh129@gmail.com>
Date: Wed Mar 16 11:10:12 2022 +0330
po:add Farsi (Persian) translation
commit 5e1d965a86ed2fecdd4867bca7232e4f590a776f
Author: Christian Beier <info@christianbeier.net>
Date: Wed Mar 9 10:10:22 2022 +0100
Update bug issue template
commit 5e9bf6afdccf206f259d57ed9e173dce75c82a68
Author: Christian Beier <info@christianbeier.net>
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 <info@christianbeier.net>
Date: Sat Feb 12 16:24:10 2022 +0100
AppStream: add 1.4.2 release notes
commit 558b2f2c57fb8f55e2ccb3b8ae2fcbb9a34bfac8
Author: Christian Beier <info@christianbeier.net>
Date: Sat Feb 12 16:20:32 2022 +0100
NEWS: update
commit 721d8cd70d5ffb70553a893ac497d1dc31ccfce8
Author: Christian Beier <info@christianbeier.net>
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 <info@christianbeier.net>
Date: Mon Feb 7 13:36:58 2022 +0100
main: add separator above Quit menu item
commit 88e448d306fd8ec2835d3afbb9502c776582445f
Author: Christian Beier <info@christianbeier.net>
Date: Mon Feb 7 13:30:35 2022 +0100
CMake: minor up
commit 03619070a234faed96441ee1183af3f752d137a0
Author: Christian Beier <info@christianbeier.net>
Date: Fri Feb 4 14:40:16 2022 +0100
input: correctly document add_hotkeys_for_compositor
commit 23596f02a556da89a74c548412f95748aa259657
Author: Christian Beier <info@christianbeier.net>
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 <info@christianbeier.net>
Date: Fri Feb 4 14:24:43 2022 +0100
README: format problems section, link to open bugs
commit 4f3ed369e1aeb2c2e5275fe04897e82d0690e0fd
Author: Christian Beier <info@christianbeier.net>
Date: Fri Feb 4 14:11:57 2022 +0100
input: document add_hotkeys_for_compositor