forked from ArcticaProject/nx-libs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
13681 lines (9443 loc) · 461 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
2023-06-28 Mike Gabriel
* release 3.5.99.27 (HEAD -> 3.6.x, tag: 3.5.99.27)
* Merge branch 'Ionic-bugfix/nxdialog-rpm-hashbang' into 3.6.x
(cb929010f)
2023-06-27 Mihai Moldovan
* nx-libs.spec: fix hashbang when manually replacing instead of using
pathfix.py. (e925e37f0)
2023-04-28 Mike Gabriel
* Merge branch 'uli42-pr/bump_years' into 3.6.x (4e70e0cb0)
2022-04-29 Ulrich Sibiller
* Update Copyright years (390887b74)
2023-04-28 Mike Gabriel
* Merge branch 'uli42-pr/silence_imake' into 3.6.x (70df7168c)
2022-01-28 Ulrich Sibiller
* silence imake for normal builds (637a170e7)
2023-04-28 Mike Gabriel
* Merge branch 'mjtrangoni-move-to-stream' into 3.6.x (fb0f8c1b7)
2022-03-28 Mario Trangoni
* GHActions: Move to CentOS stream images (d6acd9253)
2023-04-27 Mike Gabriel
* Merge branch 'uli42-pr/various9' into 3.6.x (9b94209f5)
2021-12-22 Ulrich Sibiller
* Screen.c: use %s / __func__ for fprintf (16f6803f1)
2021-11-18 Ulrich Sibiller
* Imakefiles: delete trailing whitespace (acd7de885)
* nx-X11/config: whitespace fixes (f8a664e65)
* testscripts: whitespace fixes (446a8ad69)
* nxcomp: delete trailing whitespace (b40d0b1aa)
* nxagent: delete trailing whitespace in many files (36c6f0943)
* Loop.cpp: spelling fix (75c10f342)
* Compext.c: spelling fixes (2d26be7da)
* Compext.c: fix typo in datatype (9859a79d6)
2021-11-15 Ulrich Sibiller
* Pointer.c: fix trailing whitespace (eaa532710)
2023-04-27 Mike Gabriel
* Merge branch 'uli42-pr/update_libX11_2022' into 3.6.x (91d9218c0)
2022-01-19 Ulrich Sibiller
* Update libNX_X11 to upstream's libX11-1.7.3.1-10-gd60ede78
(4875a15ca)
2023-04-27 Mike Gabriel
* Merge branch 'uli42-pr/extend_readme' into 3.6.x (a502149a8)
2021-12-29 Ulrich Sibiller
* README.md: add references to maintained opennx, rxclient and freenx
repos (091e06e47)
2023-02-23 Mihai Moldovan
* nx-libs.spec: only depend upon pathfix.py for Fedora 27+ and RHEL
7+. (288394c18)
* nx-libs.spec: fix TIRPC usage on *SuSE 15.3+. (b536e9f91)
* debian/rules: fix version detection on testing and unstable.
(ec4f09add)
* nx-libs.spec: add BR: upon pathfix.py. (f16808513)
* nx-libs.spec: fix nxdialog hashbang selection, especially on *SuSE.
(d35c5d011)
2022-01-29 Ulrich Sibiller
* Merge pull request #1028 from uli42/pr/fix_clipboard_callbacks
(8129c1f6b)
* Merge pull request #1033 from uli42/pr/nxclient_geometry
(106d6c8d4)
* Merge pull request #1035 from gratuxri/ubuntu_jammy (ae9a6b2e4)
2022-01-16 gratuxri
* Add Ubuntu 22.04 (1a1b5e9c2)
2021-12-29 Ulrich Sibiller
* Screen.c: fix handling of AllScreens without a running window
manager (c8553c70e)
Fixes: ArcticaProject/nx-libs#1030
2021-11-10 Ulrich Sibiller
* NXdispatch.c: use defined value CurrentTime instead of 0
(a8d7b0c8c)
2021-11-15 Ulrich Sibiller
* Clipboard.c: fix some comments (5ec4d7b8a)
2021-11-11 Ulrich Sibiller
* Events.c: fix typo in comment (ce9782280)
2021-11-10 Ulrich Sibiller
* Clipboard.c: use a TimeStamp datatype for lastTimeChanged as dix
does (7b22b2d40)
* Clipboard.c: fix typo in array name (a86957b91)
* Clipboard.c: re-add callbacks (1d9ba187b)
2021-10-30 Mike Gabriel
* Merge branch 'uli42-pr/various8' into 3.6.x (b06b6b1ef)
2021-10-28 Ulrich Sibiller
* Clipboard.c: fix/reformat some comments (70fde4c74)
2021-10-25 Ulrich Sibiller
* Screen.c, Window.c: use "None" everywhere for FullscreenWindow
(5323e2cea)
* Screen.c: Fix wrong format specifier (cf5bb486d)
2021-10-18 Ulrich Sibiller
* Imakefiles: whitespace fixes (3ab28297c)
* Args.c: remove superfluous SAFE_free() call (5a6928f86)
* Args.c: fix wrong comment (4bdf03add)
* Args.c: remove some empty lines (2e99e6234)
2021-06-08 Ulrich Sibiller
* nxdialog: use os.linesep to make it work on other systems
(e23efeb11)
* nxdialog: rework comments (6090ab111)
2021-10-30 Mike Gabriel
* Merge branch 'uli42-pr/extend_x2go_check' into 3.6.x (1ef24c379)
2021-10-18 Ulrich Sibiller
* nxagent: extend x2go check (3d76ed45e)
2021-10-30 Mike Gabriel
* Merge branch 'sunweaver-pr/debian-use-tirpc-in-ghactions' into
3.6.x (c26b9b291)
* .github/workflows/nx-libs.ym: Always build with -DUseTIRPC=YES.
(00cc40a3b)
2021-10-18 Ulrich Sibiller
* github actions: Use TIRPC for debian:sid (d207d02f1)
2021-10-30 Mike Gabriel
* Merge branch 'AlexGhiti-int/alex/riscv64_support' into 3.6.x
(2124e2fae)
2021-09-10 Alexandre Ghiti
* nx-X11: Add support for riscv64 architecture (460562852)
2021-10-18 Mike Gabriel
* Merge branch 'uli42-pr/many_clipboard_fixes' into 3.6.x (b7034724a)
2021-09-11 Mike Gabriel
* debian/rules: Define -DUseTIRPC=1 for nx-X11 build on Debian and
Ubuntu versions that already have libtirpc. (31057d00b)
* debian/control: Add B-D: libtirpc-dev. (46b75d818)
* debian/rules: Define -DUseTIRPC=1 for nx-X11 build on Debian and
Ubuntu versions that already have libtirpc. (b67b910a6)
* debian/control: Add B-D: libtirpc-dev. (6be4f87c6)
2021-06-21 Ulrich Sibiller
* Clipboard.c: Add debug output when selection is already cleared
(8264b03e8)
2021-06-20 Ulrich Sibiller
* Clipboard.c: check for invalid index (987402309)
* Events.c: add another comment (5da2be394)
2021-06-16 Ulrich Sibiller
* Fix Xfixes event handling (7aa969cd4)
2021-06-22 Ulrich Sibiller
* NXdispatch.c: add an explaining comment (15ee25b7d)
2021-06-21 Ulrich Sibiller
* Clipboard.c: print debug message if selection is already cleared
(bbf9d74c4)
2021-06-20 Ulrich Sibiller
* Clipboard.c: Only take full clipboard clearing action if non-empty
(65d29df13)
2021-06-18 Ulrich Sibiller
* Clipboard.c: improve some comments (eae0eff3a)
* Clipboard.c: remove superflous check (289ac3dfd)
* Clipboard.c: restruct setSelectionOwnerOnXServer (30e9b82ce)
* Clipboard.c: do not process requests if we do not have a local
owner (5e017044f)
2021-06-16 Ulrich Sibiller
* Clipboard.c: extend setSelectionOwnerOnXServer() (423caaf0f)
* Clipboard.c: remove obsolete (disabled) code (1c8869b92)
* Clipboard.c: add missing target cache invalidation to some
(currently unused) code (9b4602847)
* Events.c: fix unused variable (2b156c397)
* Clipboard.c: rename nxagentFindLastSelectionOwnerIndex()
(c775bedbc)
* Clipboard.c: rename intermediate variable (62775ed67)
* Clipboard.c: fix format specifier (d42ebd2ae)
* Clipboard.c: fix typos in comment (15a60b1c1)
2021-06-14 Ulrich Sibiller
* Clipboard.c: Fix: forward the correct type and format (e65e71512)
* Clipboard.c: improve output for PRINT_CLIPBOARD_CONTENT_ON_DEBUG
(ad69d4a0e)
* Clipboard.c: extend comment (4eba9d6b1)
* Clipboard.c: add helper variable (e8217798d)
2021-06-11 Ulrich Sibiller
* Clipboard.c: remove superfluous brackets (f03c589ab)
* Clipboard.c: remove old code (9fb5949b0)
2021-06-10 Ulrich Sibiller
* Clipboard.c: harmonize naming regarding internal/local (55af71edc)
* Clipboard.c: use NXAGENT_ONSTART macro on one more location
(535104db2)
* Clipboard.c: improve some comments as requested by reviewer
(34e1413cd)
2021-03-17 Ulrich Sibiller
* NXEvents.c: improve debugging (bee3d3205)
2021-03-10 Ulrich Sibiller
* Clipboard.c: add FIXMEs (0631eece9)
* Clipboard.c: improve debug output in special case (ba898dfcd)
2021-03-02 Ulrich Sibiller
* Clipboard.c: improve comments (1723afb64)
* Clipboard.c: always flush after XConvertSelection() call
(6fe8bf8fb)
* Clipboard.c: sanity check for invalid resource (124f5a5c6)
* Clipboard.c: print more debug details for reply (9293348c8)
* Clipboard.c: print clipboard content only on explicit request
(03502b36e)
* Clipboard.c: fix wrong debug message (5c205f57a)
2021-02-12 Ulrich Sibiller
* Clipboard.c: check target cache for valid targets (d97e5022e)
* Clipboard.c: fix some comments, add FIXME (04ca25eb1)
* Clipboard.c: move comment to correct location (9eb76cf5d)
* Clipboard.c: delete property before/after certain operations
(6ba180937)
* Clipboard.c: improve debugging output once more (65c260edf)
2021-01-30 Ulrich Sibiller
* Clipboard.c: do not handle unknown selections in Callback handler
(d335fc8fb)
* Clipboard.c: limit selection nxagentFindCurrentSelectionIndex can
return (9d8771562)
* Clipboard.c: rework nxagentFind*SelectionIndex() helpers
(f578b86d3)
2020-12-23 Ulrich Sibiller
* Clipboard.c: make index the first argument everywhere (75acbbf29)
2020-12-14 Ulrich Sibiller
* Clipboard.c: move property transfer to separate function
(7a2c743ac)
2020-12-02 Ulrich Sibiller
* Clipboard.c: extend target caching for the other direction
(51dae621f)
2020-11-25 Ulrich Sibiller
* Clipboard.c: add another FIXME (1fd98b193)
* Clipboard.c: cancel pending requests in certain situations
(ff4a1967c)
* Clipboard.c: introduce replyPendingRequestSelectionToXServer helper
(8f182cd74)
* Clipboard.c: move some (currently commented) code to inner scope
(7746358b6)
2020-11-24 Ulrich Sibiller
* Events.c: use already available variable instead of repeating
conversion (b7021c675)
* Clipboard.c: reset lastServer[].requestor on reconnect (cf85c7258)
2020-11-18 Ulrich Sibiller
* Clipboard.c: improve some comments (55f9c94b2)
* Clipboard.c: implement target caching (99a2d6e29)
* Clipboard.c: fix indentation (63ef52c63)
2020-11-17 Ulrich Sibiller
* Clipboard.c: correctly pass back failure to real X server
(41ea3b684)
* Clipboard.c: fix: return after denying request (53c03eaf3)
2020-11-16 Ulrich Sibiller
* Clipboard.c: remove obsolete FIXME comment (7e548faa2)
2020-11-13 Ulrich Sibiller
* Clipboard.c: once again improved DEBUG output (6a1ee6c0b)
2020-11-12 Ulrich Sibiller
* Clipboard.c: fix: remove wrong optimization (177d76179)
2020-11-02 Ulrich Sibiller
* Clipboard.c: use NullClient instead of NULL where appropriate
(b66b99a83)
2020-10-30 Ulrich Sibiller
* Events.c: use index instead of i (9ca972705)
2020-10-29 Ulrich Sibiller
* Clipboard.c: fix transfer from agent to X server (2d4b0f846)
* Clipboard.c: fix some whitepace, comments and FIXMEs (e42ab9831)
* Clipboard: init variable (a8b375079)
* Clipboard.c: print separator when receiving events/requests in
debug mode (a4f2dd3fe)
* Clipboard.c: another round of debug improvements (6b659fe4a)
* Clipboard.c: replace loop by helper (a296b437d)
* Clipboard.c: disable TEXT and COMPOUND_TEXT (710d5c5f9)
2020-10-26 Ulrich Sibiller
* nxagent: add option -textclipboard (90947c1f7)
* Clipboard.c: extend comments (9ec417484)
* Clipboard.c: add TARGET_SIZES (533f08ddb)
2020-09-24 Ulrich Sibiller
* Clipboard.c: add FIXMEs (ba02ad3ad)
* Clipboard.c: add some more selection atoms (8316d614a)
2020-09-23 Ulrich Sibiller
* Clipboard.c: target forwarding (Part 2/2) (a87ee1e8f)
* Clipboard.c: target forwarding (Part 1/2) (eba654ea7)
2020-10-13 Ulrich Sibiller
* Clipboard.c: fix: use XlibWindow instead of Window (9dd509c01)
* Clipboard.c: fix type in status output (87eb4236a)
* Clipboard.c: avoid superflous atom conversion (855ddf281)
* Atoms.c: ensure to always return a valid string... (a470de000)
* Clipboard.c: make use of the new helpers from Atoms.c (204bbef04)
* Atoms.c: add helper to easily print Atom names in debugging
(27ecb8959)
* Clipboard.c: compact clipboard status output (a31353bdd)
* Clipboard.c: fix comment position and init array pointer
(29413b32a)
* Clipboard.c: drop clientCLIPBOARD (59ee58ee7)
2020-10-12 Ulrich Sibiller
* Clipboard.c: move selection Atoms into separate arrays (9d3683896)
* Clipboard.c: rephrase FIXME (bff23cb94)
* Clipboard.c: restructure request accumulation code (bf0e05fd1)
2020-10-11 Ulrich Sibiller
* Clipboard.c: use for loops everywhere. (6753eb592)
2020-10-03 Ulrich Sibiller
* Clipboard.c: fix memleaks in DEBUG mode (d32b4f5b1)
* Clipboard.c: split if clause (278ebeb70)
2020-09-23 Ulrich Sibiller
* Clipboard.c: remove superflous index determination (a3adf6641)
* Clipboard.c: always print SelectionCallBackKind in debug output
(d79db429d)
* Clipboard.c: mark self-initiated event (3682be594)
* Clipboard.c: rename function to better reflect meaning (d2370a1ba)
* Clipboard.c: have lastServer* per selection (a8d09f815)
2020-09-22 Ulrich Sibiller
* Clipboard.c: fix nxagentConvertSelection (e526e1cd0)
* Clipboard.c: improve debug/test messages (4701db7bc)
* Clipboard.c: simplify nxagentHandleSelectionRequestFromXServer
(e8b00edb5)
2020-10-03 Ulrich Sibiller
* Clipboard.c: use index everywhere (0ad6b8bd6)
2020-09-22 Ulrich Sibiller
* Clipboard.c: introduce translateLocalToRemote* helpers (edfea3cd1)
* Clipboard.c: rename selection fields to {int,rem}Selection
(550742511)
2020-10-03 Ulrich Sibiller
* Clipboard.c: reformat for better readability (619236b98)
* Clipboard.c: improve function names once more (717661b1d)
2020-09-20 Ulrich Sibiller
* Clipboard.c: rework LastClient stuff to work _per selection_
(94fd5f590)
2020-10-03 Ulrich Sibiller
* Clipboard.c: catch selection failure from real X server (e9a25e794)
2020-09-20 Ulrich Sibiller
* Clipboard.c: do not set stage to new value if already set to that
value (60380a6a5)
2020-09-19 Ulrich Sibiller
* Clipboard.c: print times unsigned (12ed2c635)
2020-09-20 Ulrich Sibiller
* Clipboard.c: improve explanations/FIXMEs (2742fde00)
2020-10-02 Ulrich Sibiller
* Clipboard.c: improve debugging output (32e194d46)
* Clipboard.c: improve error message (18c91fd94)
* Clipboard.c: add/fix comments (972a92cab)
2021-06-08 Mike Gabriel
* Merge branch 'uli42-pr/various7' into 3.6.x (59a0620f6)
2021-05-01 Ulrich Sibiller
* nxagent: add missing command line switches to usage text
(fcc1b57fb)
2021-03-30 Ulrich Sibiller
* Trap.h: fix type of traps (9f1d0a807)
* nxagent: fix some variable types in Init (18a8a3610)
* nxagent: make nxagentX2go a Boolean everywhere (4a6ca0033)
* nxagent: make nxagentAlpha* Booleans (a6d018bef)
2021-03-29 Ulrich Sibiller
* nxagent: treat enableBackingStore as Boolean (af5cf2659)
* nxagent: make nxagentCompositeEnable a Boolean (3823b0a5b)
* Composite.c: fix comment (31c456bf3)
* nxagent: add command line switch to enable composite (555cbcb32)
2021-03-17 Ulrich Sibiller
* Compext.c: fix comparisons of 16bit sequence numbers (2739d0868)
2021-03-10 Ulrich Sibiller
* Compext.c: fix misleading error message (3228dcfc5)
* Compext.c: print received vs expected sequence number (e9a0f94d0)
2021-03-09 Ulrich Sibiller
* Compext.c: document function return codes (d3573613f)
2021-03-07 Ulrich Sibiller
* document additional options only nxagent knows about (9b1dd3401)
* Error.c: untabify (5271eed2d)
2021-02-09 Ulrich Sibiller
* nxagent: drop NXAGENT_SHAPE2 define (3fcb7ae3f)
* nxagent: drop NXAGENT_SHAPE define (666c4d16a)
* nxagent: make X2GO support optional (111ac2eed)
* Use NXAGENT_ONSTART define at more locations (8fe2c1140)
2021-03-07 Ulrich Sibiller
* Compext.c: add specific DEBUG and TEST macros (906aa0714)
* Compext.c: some scope improvements (f0f91ed26)
2021-06-08 Mike Gabriel
* Merge branch 'Ponce-binutils-2.36' into 3.6.x (6208dade8)
2021-04-05 ponce
* fix building with binutils >= 2.36. (605a26691)
2021-06-08 Mike Gabriel
* Merge branch 'uli42-pr/fix_randr_crash' into 3.6.x (b73374805)
2021-03-17 Ulrich Sibiller
* randr: Do not update ConnectionInfo if NULL (a14e1a59a)
2021-06-08 Mike Gabriel
* Merge branch 'uli42-pr/fix_async_replies' into 3.6.x (1bd98ef77)
2021-03-17 Ulrich Sibiller
* Compext.c: fix comparisons of 16bit sequence numbers (1b4ebce2c)
2021-06-08 Mike Gabriel
* Merge branch 'vatral-support_cygwin64' into 3.6.x (00711f914)
* nxcomp/src/BlockCacheSet.cpp: Amend comment behind if-clause
closure. (ff0c2b148)
2021-03-10 Vadim Troshchinskiy
* nxcomp: Support Cygwin64. (46258974d)
2021-06-08 Mike Gabriel
* Merge branch 'uli42-pr/dialog_text' into 3.6.x (9815f32d5)
2021-02-28 Ulrich Sibiller
* nxagent: fix RESIZE dialog text to not end with a linefeed
(5dcb19b3d)
* nxcomp/Children.cpp: print a message if the dialog could not be
displayed (1338cffc9)
* nxcomp/Children.cpp: reformat code (2e3fe61d1)
* nxcomp/Children.cpp: also try searching nxdialog, not only nxclient
(31beb51df)
* nxcomp/Children.cpp: add macro checks around some log/stderr prints
(90ff3d025)
* nxcomp/Children.cpp: display dialog text in output (d7a49834e)
2021-06-08 Mike Gabriel
* Merge branch 'uli42-pr/forward_clientmessages' into 3.6.x
(c3476b6a8)
2021-05-02 Ulrich Sibiller
* Forward ClientMessages to nxproxy side (36f804e54)
2021-06-07 Mike Gabriel
* Merge branch
'sunweaver-pr/fix-ci-builds-against-fedora-greater-than-33'
into 3.6.x (90728fadc)
* nx-libs.spec: In Fedora 34 and beyond, files from
xorg-x11-xkb-utils-devel have been moved into bin:pkg
xkbcomp-devel. (bbc59f214)
* .github/workflows/nx-libs.yml: In Fedora 34 and beyond, files from
xorg-x11-xkb-utils-devel have been moved into bin:pkg
xkbcomp-devel. (940b7843f)
* Merge branch 'uli42-pr/pylint_fixes' into 3.6.x (5c09159ae)
2021-02-07 Ulrich Sibiller
* nxdialog: fix/suppress some pylint findings (420754489)
2021-06-07 Mike Gabriel
* Merge branch 'mjtrangoni-fix-shellcheck-issues' into 3.6.x
(1fc5c689e)
* shellcheck: Fix SC2230 issue (6bada8f63)
2021-02-06 Mario Trangoni
* shellcheck: Fix SC2022 issue (71ae04011)
* shellcheck: Fix SC2064 issues (dfee5a988)
2021-02-05 Mario Trangoni
* shellcheck: Fix SC2164 issues (ffba3aab3)
2021-06-07 Mike Gabriel
* Merge branch 'test-github-actions' into 3.6.x (f4d654e6b)
2021-02-07 Mario Trangoni
* Add pylint to GitHub Actions (69864ad11)
* Install build-essentials on clang (b42544cf4)
* Add linter references (077089c4e)
* Fix missing quilt on CentOS7 (d570730e6)
2021-02-06 Mario Trangoni
* Build nx-libs on different architectures (899c2a6f1)
* linters: Enable shellcheck (3dfd7a711)
2021-01-31 Mario Trangoni
* Move PVS run to GitHub Actions (3da6e9c3a)
* Replace TravisCI with GitHub Actions (1620c93f0)
* Add shellcheck and cppcheck linters (637d6d733)
2021-01-30 Mario Trangoni
* Add build jobs on containers (763a9ee0e)
2020-12-19 Mario Trangoni
* Implement github actions basics (e0e999f4c)
2021-02-04 Mike Gabriel
* release 3.5.99.26 (0e2b79713) (tag: 3.5.99.26)
2021-02-03 Mike Gabriel
* Merge branch 'mjtrangoni-fix-shellcheck-issues' into 3.6.x
(3e02494cb)
2021-01-30 Ulrich Sibiller
* Screen.c: rephrase comment (9d0364198)
* Screen.c: Fix fullscreen (onescreen) at startup (b09f5e03e)
2021-02-03 Ulrich Sibiller
* Window.c: add another FIXME (6d8ccec75)
2021-01-31 Ulrich Sibiller
* NXproperty.c: reorder functions (82028465c)
2021-01-30 Ulrich Sibiller
* NXproperty.c, dix.c: simplify ProcDeleteProperty() (da9ac92e9)
* NXproperty.c: GetWindowProperty(): add more comments, restruct
prototype (969d9af23)
* NXproperty.c: simplify and reformat GetWindowProperty() (3cabdfa2a)
* NXproperty.c: clean returns (513418ace)
* Window.c: Fix 32bit code path (19b639b91)
* nxagent: drop unused nxagentVisibility variables (150e9bda9)
2021-02-03 Mike Gabriel
* Merge branch 'uli42-pr/fix_onescreen' into 3.6.x (f696a57f8)
2021-01-30 Ulrich Sibiller
* Screen.c: rephrase comment (06724dfe0)
* Screen.c: Fix fullscreen (onescreen) at startup (f92e1a5a2)
2021-02-03 Mike Gabriel
* Merge branch 'uli42-pr/windowfixes' into 3.6.x (770f468cd)
2021-02-03 Ulrich Sibiller
* Window.c: add another FIXME (cbd9875e5)
2021-01-31 Ulrich Sibiller
* NXproperty.c: reorder functions (5121188f0)
2021-01-31 Mario Trangoni
* shellcheck: Fix SC2061 issue (8ce12d613)
* shellcheck: Fix SC2048 issue (407651b39)
* shellcheck: Fix SC2196 issues (afe0c1473)
* shellcheck: Fix SC2034 issue (930fbe08b)
* shellcheck: Fix SC2002 issue (22b40e690)
* shellcheck: Fix SC2045 issue (2168bc689)
* shellcheck: Fix some SC2086 issues (747a33744)
* shellcheck: Fix SC2059 issue (18aca1f69)
* shellcheck: Fix SC2148 issues (cb6e3b7d3)
* shellcheck: Fix SC2162 issue (daeb82e33)
* shellcheck: Fix SC2006 issue (5b628e2d7)
2021-01-30 Ulrich Sibiller
* NXproperty.c, dix.c: simplify ProcDeleteProperty() (d627e948f)
* NXproperty.c: GetWindowProperty(): add more comments, restruct
prototype (b8b1edb2b)
* NXproperty.c: simplify and reformat GetWindowProperty() (8b2b41113)
* NXproperty.c: clean returns (5a00da5ec)
* Window.c: Fix 32bit code path (ee60cc50c)
* nxagent: drop unused nxagentVisibility variables (57e662b83)
2021-01-18 Mike Gabriel
* debian/patches: Drop
2002_xserver-xext_set-securitypolicy-path.debian.patch.
Not required anymore since 689f811b. (e5746df80)
* Merge branch 'uli42-pr/drop_alternative_securitypolicy' into 3.6.x
(24b903be5)
2021-01-16 Ulrich Sibiller
* Xext: drop NX_ALTERNATIVEPOLICYFILE (a26011503)
* Xext: use $USRDATADIR/SecurityPolicy (689f811ba)
2021-01-18 Mike Gabriel
* Merge branch 'uli42-pr/fix_fullscreen' into 3.6.x (f4782bbd2)
2021-01-16 Ulrich Sibiller
* Args.c: improve usage string for -geometry (e156bdc03)
* Screen.c: remove superflous code that produces a crash (a83ec33d5)
2021-01-16 Mike Gabriel
* Merge branch 'uli42-pr/musl_fixes' into 3.6.x (f60ac5777)
2021-01-04 Ulrich Sibiller
* Xext: include limits.h (46c9c493f)
* Mesa: make compilation with work with musl (8b6d454cf)
2021-01-16 Mike Gabriel
* Merge branch 'uli42-pr/pvs_findings' into 3.6.x (8c3bb2715)
2021-01-15 Ulrich Sibiller
* Display.c: fix and reformat broken comment (1b80750f6)
2021-01-04 Ulrich Sibiller
* Window.c: suppress warning (669299de3)
* fix formatting and spelling in various files (12b96fd9a)
* nxagent: Drop unused nxagentRootTileWindow (0a06ee77a)
2020-12-31 Ulrich Sibiller
* Handlers.c: add FIXME (7aec57a40)
* Screen.c: clarify that characters are compared (cc781ae2e)
2020-12-30 Ulrich Sibiller
* Client.h: conditionally add unused field (d1136ea2f)
2020-11-09 Ulrich Sibiller
* Handlers.c: use the same boolean values as in NXdispatch.c
(f64fac47e)
* manpage: document defaults for options -defer and -tile (eef306c2d)
2020-11-08 Ulrich Sibiller
* NXDispatch.c: remove double nxagentFreeAtomMap() (35556cac9)
2021-01-16 Mike Gabriel
* Merge branch 'uli42-pr/various6' into 3.6.x (b66699555)
2021-01-04 Ulrich Sibiller
* Window.c: check for malloc failure (4d95e29b8)
* Window.c: check for malloc failure (5ad0b4dde)
* Screen.c: check for malloc failures (6214c71b3)
* Splash.c: remove unneccessary check (a57097ad0)
* Rootless.c: prevent PVS error (1251e8347)
* Render.c: Init BoxRec (c1cae3c66)
* Reconnect.c: fix possible realloc() memory loss (8bb77997f)
* NXglyph.c: check for malloc error (948bbe50a)
* Keyboard.c: fix possible NULL pointer dereference (7443fea69)
* Drawable.c: Prevent PVS Studio warning (e664d8201)
* Display.c: prevent PVS Studio realloc warning (67c7513bf)
* Atoms.c: add explanation for PVS Studio warning (db134de3b)
2020-08-03 Ulrich Sibiller
* NXpicture.c: remove unneccessary check (5871100dd)
* Keyboard.c: simplify code (41bf83979)
* Colormap.c: remove unneccessary check (5735e164e)
* Colormap.c: fix parentheses (28fef3bc0)
* Atoms.c: silence PVS Studio warning (36d7e152f)
* Atoms.c: cosmetics in nxagentWriteAtom() (e991dbae9)
* Atoms.c: fix strlen(NULL) (1529b3217)
2021-01-15 Ulrich Sibiller
* Display.c: fix and reformat broken comment (97a69b95a)
2021-01-04 Ulrich Sibiller
* Window.c: suppress warning (21c631f4d)
* fix formatting and spelling in various files (6aff5bfdf)
* nxagent: Drop unused nxagentRootTileWindow (c7f9ff0b6)
2020-12-31 Ulrich Sibiller
* Handlers.c: add FIXME (63a39619c)
* Screen.c: clarify that characters are compared (599334aff)
2020-12-30 Ulrich Sibiller
* Client.h: conditionally add unused field (dd5d8bc89)
2020-11-09 Ulrich Sibiller
* Handlers.c: use the same boolean values as in NXdispatch.c
(c1843ef88)
* manpage: document defaults for options -defer and -tile (432cc0ca4)
2020-11-08 Ulrich Sibiller
* NXDispatch.c: remove double nxagentFreeAtomMap() (7c22dbfda)
2021-01-15 Mike Gabriel
* Merge branch 'uli42-pr/fullscreen_select' into 3.6.x (3523d15e2)
2020-12-30 Ulrich Sibiller
* nxagent: make full screen mode selectable at startup (e7b4440f2)
2021-01-15 Mike Gabriel
* Revert "CVE-2020-14360: Check SetMap request length carefully."
(125756157)
* Merge branch 'uli42-pr/fix_unusable_mouse_in_fullscreen' into 3.6.x
(013a6ba3c)
2020-12-31 Ulrich Sibiller
* nxagent: nxagent(Default)WindowIsVisible() are Booleans (f8b759263)
* Keyboard.c: noXkbExtension is a Boolean (108ed9d92)
* Font.c: Use Booleans where appropriate (f4dd9d76a)
* nxagent: make nxagentXkbState.Initialized a Boolean (d2ba4ddb8)
* Events.h: fix wrong prototype (f10e9d9ac)
* nxagent: make nxagentXFixesInfo.Initialized a Boolean (af7d8e3fa)
* Drawable.c: make doRoundRobin a Boolean (b9c2db67b)
* Handlers.c: make synchronize a Boolean variable (9aa339176)
* nxagent: make nxagentSkipImage a Boolean (90178b548)
* nxagent: make nxagentForceSynchronization a Boolean (48279ae79)
* Drawable.c: make abort flag a Boolean (1ed28c85b)
* Client.c: cleanup Boolean handling for nxagentNeedWakeup*() macros
(ab83e4688)
* GC.c: make internal variable and function Boolean (15cf1eee0)
* GCOps.c: make internal variable an function Booleans (e8a5e3287)
* nxagent: make nxagentBlocking an Boolean (db3efd45c)
* Render.c: improve Boolean handling of
nxagentCheckPictureRemoteValue (af2964c7e)
* nxagent: improve Boolean handling for Reconnect functions
(99ca67c2f)
* nxagent: make XDMCP variables Booleans (6c09c0b7e)
2020-12-30 Ulrich Sibiller
* GCOps.c: make internal function Boolean (1b91c8ac1)
* GCOps.c: handle some internal variables as Booleans (4303b1131)
* Drawable.c: make some variables Booleans (acf3e21f1)
* nxagent: handle RegionNil macro as Boolean (f6b386e65)
* Split.c, Image.c: make some internal variables Booleans (059a37205)
* nxagent: rework some Boolean checks (5920e36e1)
* nxagent: make nxagentUserDefinedFontPath a Boolean (6f4dbefbf)
* nxagent: make nxagentShadowResize a Boolean (1b7f37a80)
* nxagent: make nxagentDoFullgeneration a Boolean (3e093f9eb)
* nxagent: some more Boolean improvements (090742b3b)
* nxagent: treat nxagentLastWindowDestroyed as Boolean (92c8325f3)
* nxagent: treat all Traps as Booleans everywhere (616d8619f)
* nxagent: make nxagentVerbose a Boolean (c3b6dfe2e)
* nxagent: make Desktop, Rootless and Binder options Booleans (again)
(8bb7d2cd1)
* Options.h: mark Booleans (1e4d8e32b)
* nxagent: make nxagentOption Shadow a Boolean (acb861df4)
* nxagent: treat several nxagentOptions as real Booleans (2565484f5)
* nxagent: treat DesktopResize and nxagentResizeDesktopAtStartup as
Booleans (ca5a14743)
* nxagent: make Fullscreen and AllScreens Booleans (6e9b3a7f8)
* Handlers.c: ensure regular yields if suspended (262fe771c)
2020-12-10 Mike Gabriel
* CVE-2020-14360: Check SetMap request length carefully. (4eba4f53a)
2021-01-15 Mike Gabriel
* Merge branch 'uli42-pr/rework_booleans_v2' into 3.6.x (faae65fb3)
2020-12-31 Ulrich Sibiller
* nxagent: nxagent(Default)WindowIsVisible() are Booleans (b44ecc0f8)
* Keyboard.c: noXkbExtension is a Boolean (d78837ec3)
* Font.c: Use Booleans where appropriate (91cef61a0)
* nxagent: make nxagentXkbState.Initialized a Boolean (0bca321fb)
* Events.h: fix wrong prototype (9e9568028)
* nxagent: make nxagentXFixesInfo.Initialized a Boolean (feb7b9773)
* Drawable.c: make doRoundRobin a Boolean (b76dddcdc)
* Handlers.c: make synchronize a Boolean variable (b814aef39)
* nxagent: make nxagentSkipImage a Boolean (a9d3050c5)
* nxagent: make nxagentForceSynchronization a Boolean (c035ddead)
* Drawable.c: make abort flag a Boolean (5d7b6db0c)
* Client.c: cleanup Boolean handling for nxagentNeedWakeup*() macros
(54dd29cc6)
* GC.c: make internal variable and function Boolean (2ce0fa8f0)
* GCOps.c: make internal variable an function Booleans (3151736d3)
* nxagent: make nxagentBlocking an Boolean (e2ff39e04)
* Render.c: improve Boolean handling of
nxagentCheckPictureRemoteValue (94fd6d234)
* nxagent: improve Boolean handling for Reconnect functions
(41d75f6b2)
* nxagent: make XDMCP variables Booleans (3cb0a134d)
2020-12-30 Ulrich Sibiller
* GCOps.c: make internal function Boolean (714a212fd)
* GCOps.c: handle some internal variables as Booleans (1239dffec)
* Drawable.c: make some variables Booleans (f98114c95)
* nxagent: handle RegionNil macro as Boolean (b8017065d)
* Split.c, Image.c: make some internal variables Booleans (06833b964)
* nxagent: rework some Boolean checks (84bad7324)
* nxagent: make nxagentUserDefinedFontPath a Boolean (f4adcbc59)
* nxagent: make nxagentShadowResize a Boolean (fbc4a9158)
* nxagent: make nxagentDoFullgeneration a Boolean (41f7a8b4a)
* nxagent: some more Boolean improvements (73bdca0f8)
* nxagent: treat nxagentLastWindowDestroyed as Boolean (a72f77fc9)
* nxagent: treat all Traps as Booleans everywhere (fec462906)
* nxagent: make nxagentVerbose a Boolean (42f76ddee)
* nxagent: make Desktop, Rootless and Binder options Booleans (again)
(bd336c92b)
* Options.h: mark Booleans (7b299a4ce)
* nxagent: make nxagentOption Shadow a Boolean (f6cebfd85)
* nxagent: treat several nxagentOptions as real Booleans (2b4ccc30a)
* nxagent: treat DesktopResize and nxagentResizeDesktopAtStartup as
Booleans (a85adf5ea)
* nxagent: make Fullscreen and AllScreens Booleans (de5eb54c6)
2021-01-15 Mike Gabriel
* Merge branch 'uli42-pr/fix_resume' into 3.6.x (d545afdf3)
2021-01-12 Ulrich Sibiller
* Init.c: Initialize nxagentGrabServerInfo (89b37de7c)
2020-12-30 Ulrich Sibiller
* Handlers.c: ensure regular yields if suspended (e7d5ba4e5)
2020-12-10 Mike Gabriel
* CVE-2020-14360: Check SetMap request length carefully. (d5a3b4401)
2020-12-03 Ulrich Sibiller
* Events.c: fix leftover DEBUG and TEST definitions (ad275d507)
2020-11-04 Mike Gabriel
* NXdixfonts.c: Regression fix for db45683a. Fix typo in libXfont1
function call (FreeFontName -> FreeFontNames). Fixes FTBFS
on Ubuntu 14.04 and 16.04. (5ca9a6b1e)
* release 3.5.99.25 (f2973029d) (tag: 3.5.99.25)
* Merge branch 'uli42-pr/various5' into 3.6.x (48b914810)