forked from ice-wm/icewm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
6478 lines (4899 loc) · 210 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
# created with git log --stat=76 -M -C -500|fmt -sct -w80
commit 2739fe6b65f9d65fea8af43ef9e19f3a6c177515
Merge: d2e88d18 faa6a4fa
Author: Bert Gijsbers <[email protected]>
Date: Mon Nov 14 18:42:32 2022 +0100
Merge branch 'icewm-1-4-BRANCH'
commit faa6a4fa835cf16edabf5a53bb2f60f55811f61d
Merge: cd85845a 724f43f0
Author: Bert Gijsbers <[email protected]>
Date: Mon Nov 14 18:36:51 2022 +0100
Merge remote-tracking branch 'upstream/icewm-1-4-BRANCH' into
icewm-1-4-BRANCH
commit 724f43f0549d1d0261d68a4d8c9bf1ff1fbb70cb
Author: Bert Gijsbers <[email protected]>
Date: Mon Nov 14 17:52:18 2022 +0100
Use AM_V_GEN before the sed desktop files.
lib/Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 43842279c3fcee0007e270e45e0d6f7fc16f3356
Author: Bert Gijsbers <[email protected]>
Date: Mon Nov 14 13:32:28 2022 +0100
Update pot files.
po/ar.po | 218 ++++++++++++++++++++++++++++--------------------------
po/be.po | 218 ++++++++++++++++++++++++++++--------------------------
po/bg.po | 218 ++++++++++++++++++++++++++++--------------------------
po/ca.po | 222 +++++++++++++++++++++++++++++--------------------------
po/cs.po | 218 ++++++++++++++++++++++++++++--------------------------
po/da.po | 218 ++++++++++++++++++++++++++++--------------------------
po/de.po | 218 ++++++++++++++++++++++++++++--------------------------
po/el.po | 218 ++++++++++++++++++++++++++++--------------------------
po/en.po | 218 ++++++++++++++++++++++++++++--------------------------
po/es.po | 222 +++++++++++++++++++++++++++++--------------------------
po/fi.po | 218 ++++++++++++++++++++++++++++--------------------------
po/fr.po | 222 +++++++++++++++++++++++++++++--------------------------
po/he.po | 218 ++++++++++++++++++++++++++++--------------------------
po/hr.po | 218 ++++++++++++++++++++++++++++--------------------------
po/hu.po | 218 ++++++++++++++++++++++++++++--------------------------
po/icewm.pot | 220 ++++++++++++++++++++++++++++--------------------------
po/id.po | 218 ++++++++++++++++++++++++++++--------------------------
po/it.po | 218 ++++++++++++++++++++++++++++--------------------------
po/ja.po | 222 +++++++++++++++++++++++++++++--------------------------
po/ko.po | 218 ++++++++++++++++++++++++++++--------------------------
po/lt.po | 218 ++++++++++++++++++++++++++++--------------------------
po/lv.po | 218 ++++++++++++++++++++++++++++--------------------------
po/mk.po | 218 ++++++++++++++++++++++++++++--------------------------
po/nb.po | 218 ++++++++++++++++++++++++++++--------------------------
po/nl.po | 222 +++++++++++++++++++++++++++++--------------------------
po/no.po | 218 ++++++++++++++++++++++++++++--------------------------
po/pl.po | 218 ++++++++++++++++++++++++++++--------------------------
po/pt.po | 218 ++++++++++++++++++++++++++++--------------------------
po/pt_BR.po | 221 ++++++++++++++++++++++++++++--------------------------
po/ro.po | 218 ++++++++++++++++++++++++++++--------------------------
po/ru.po | 222 +++++++++++++++++++++++++++++--------------------------
po/sk.po | 222 +++++++++++++++++++++++++++++--------------------------
po/sl.po | 218 ++++++++++++++++++++++++++++--------------------------
po/sv.po | 218 ++++++++++++++++++++++++++++--------------------------
po/tr.po | 218 ++++++++++++++++++++++++++++--------------------------
po/uk.po | 218 ++++++++++++++++++++++++++++--------------------------
po/vi.po | 218 ++++++++++++++++++++++++++++--------------------------
po/zh_CN.po | 218 ++++++++++++++++++++++++++++--------------------------
po/zh_TW.po | 218 ++++++++++++++++++++++++++++--------------------------
39 files changed, 4501 insertions(+), 4034 deletions(-)
commit c1a7ccf0cac8457a090afb23b847f0b4d7d39a79
Author: Bert Gijsbers <[email protected]>
Date: Mon Nov 14 12:45:18 2022 +0100
One suffices.
src/wmclient.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit f17c7dd583da6a2a94c8ba2e87dc93780c300147
Author: Bert Gijsbers <[email protected]>
Date: Sun Nov 13 21:41:15 2022 +0100
Fix for GCC 4.8.5.
src/icesh.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit dce1f028ae7e20a162503a6a3209bb93e98df62b
Author: Naveen <[email protected]>
Date: Sun Nov 13 13:14:17 2022 -0600
Include githubactions in the dependabot config (#655)
.github/dependabot.yml | 6 ++++++
1 file changed, 6 insertions(+)
commit 172c86c3691adf316c1d50d19e0a1d080d8bfc75
Author: Pino Toscano <[email protected]>
Date: Sun Nov 13 20:12:06 2022 +0100
Drop LSM file (#660)
The LSM format is a very old format for software, and it is dead for
many years already. Since keeping the .lsm up-to-date is basically not
much of use, simply drop it altogether.
.gitignore | 1 -
Makefile.am | 7 ++-----
autogen.sh | 1 -
icewm.lsm.in | 15 ---------------
icewm.spec.in | 1 -
5 files changed, 2 insertions(+), 23 deletions(-)
commit a6ec7dc87f55300bab05c0f91c2e7f0c46b09507
Author: Bert Gijsbers <[email protected]>
Date: Sun Nov 13 20:04:46 2022 +0100
Let Escape cancel the entire menu chain and closes #677.
src/ymenu.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 4c72eacf95e21f39af21ca0ed8c9aee09c891e12
Author: Bert Gijsbers <[email protected]>
Date: Sun Nov 13 19:24:22 2022 +0100
Add menu entry to rename the window title manually for #644.
man/icewm-preferences.pod | 4 ++--
src/default.h | 4 ++--
src/wmaction.h | 1 +
src/wmapp.cc | 2 ++
src/wmclient.cc | 11 ++++-------
src/wmclient.h | 2 ++
src/wmframe.cc | 25 +++++++++++++++++++++++++
src/wmframe.h | 1 +
src/wmwinlist.cc | 1 +
9 files changed, 40 insertions(+), 11 deletions(-)
commit 9f04c866cd97b59ffbf26147fe07f4a27a651116
Author: Bert Gijsbers <[email protected]>
Date: Sun Nov 13 16:25:34 2022 +0100
Adapt absolute paths in .desktop files for CMake build.
lib/CMakeLists.txt | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
commit 5ff1f7f0a84897043418c17ae43810c6c86d5af5
Author: Bert Gijsbers <[email protected]>
Date: Sun Nov 13 12:37:42 2022 +0100
Move all calls to XKillClient in one place.
src/wmclient.cc | 25 +++++++++++++------------
src/wmclient.h | 1 +
src/wmframe.cc | 9 ++++-----
3 files changed, 18 insertions(+), 17 deletions(-)
commit 6b376fa589a90caabd31d7918b0738c57467abbf
Author: Bert Gijsbers <[email protected]>
Date: Sun Nov 13 12:31:09 2022 +0100
Only sort Alt+Tab on WM_CLASS when persistent for #685.
src/wmswitch.cc | 60 +++++++++++++++++++++++++++--------------------------
1 file changed, 31 insertions(+), 29 deletions(-)
commit 20bf9964a8c378d7c689e09c0fb56c02d6660e39
Author: Bert Gijsbers <[email protected]>
Date: Sun Nov 13 12:28:32 2022 +0100
Adapt absolute paths in .desktop files to install prefix for #684.
lib/Makefile.am | 5 +++++
1 file changed, 5 insertions(+)
commit ef56635c2475ccd8d9cd0705059fb30a2586d5c0
Author: Bert Gijsbers <[email protected]>
Date: Sat Nov 12 14:02:01 2022 +0100
Much improved sorting in the window list window.
Make the window list more tab-savvy.
src/wmwinlist.cc | 199 +++++++++++++++++++++++++++++++++++++--------------
src/wmwinlist.h | 1 +
2 files changed, 146 insertions(+), 54 deletions(-)
commit 6e17af902926fd3025ca1779d940c8eaefd6213b
Author: Bert Gijsbers <[email protected]>
Date: Sat Nov 12 14:00:02 2022 +0100
Restore winoption named frame tabs when recovering from a crash.
src/wmmgr.cc | 62 ++++++++++++++++++++++++++++++++------------------------
src/wmmgr.h | 15 +++++++-------
2 files changed, 43 insertions(+), 34 deletions(-)
commit d4841d424f2c73f4a99efbded56ebf0760ce5128
Author: Bert Gijsbers <[email protected]>
Date: Sat Nov 12 13:57:37 2022 +0100
Update window list after an untab.
Preserve non-fullscreen geometry across restarts.
Try harder to avoid a non-focused situation.
src/wmframe.cc | 52 +++++++++++++++++++++++++++++++---------------------
1 file changed, 31 insertions(+), 21 deletions(-)
commit a59a1ee2849cfcafb1fb909ef7f255bb06af1d3e
Author: Bert Gijsbers <[email protected]>
Date: Sat Nov 12 13:48:45 2022 +0100
Add client actions close, kill and untab.
src/wmclient.cc | 31 ++++++++++++++++++++++++-------
src/wmclient.h | 1 +
2 files changed, 25 insertions(+), 7 deletions(-)
commit af62c67f8c5c5816806db74e93880aedba35b3ea
Author: Bert Gijsbers <[email protected]>
Date: Sat Nov 12 13:47:40 2022 +0100
Menu add after, haveCommand and removeCommand.
src/ymenu.cc | 33 ++++++++++++++++++++++++---------
src/ymenu.h | 3 +++
2 files changed, 27 insertions(+), 9 deletions(-)
commit a5d759678430fd790ba5b32679c24e7bf3a16e43
Author: Bert Gijsbers <[email protected]>
Date: Sat Nov 12 13:46:43 2022 +0100
Find item within bounds.
src/ylistbox.cc | 8 ++++++++
src/ylistbox.h | 5 ++++-
2 files changed, 12 insertions(+), 1 deletion(-)
commit f7d421f861f3b438e0204c96b3a61eab9272ec50
Author: Bert Gijsbers <[email protected]>
Date: Sat Nov 12 13:46:16 2022 +0100
Faster find.
src/yarray.h | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
commit 7981ac162ad5fd6e8cf0d09e9ddc83d8f675ead9
Author: Bert Gijsbers <[email protected]>
Date: Sat Nov 12 13:43:52 2022 +0100
Also sort Alt+Tab on 'order' winoption.
src/wmswitch.cc | 6 ++++++
1 file changed, 6 insertions(+)
commit 13d384d352a10ebdface07c1b821b0c8c971f209
Author: Bert Gijsbers <[email protected]>
Date: Wed Nov 9 22:05:27 2022 +0100
Freeze the task pane layout while Alt is pressed for #549.
src/atasks.cc | 12 ++++++------
src/wmtaskbar.cc | 2 +-
2 files changed, 7 insertions(+), 7 deletions(-)
commit d2e88d18268e0532fd6523fe4c403f04b9dfd5a5
Author: Bert Gijsbers <[email protected]>
Date: Tue Nov 8 17:33:40 2022 +0100
Prepare 3.2.1 release
AUTHORS | 9 +-
ChangeLog | 496 +++++++++++++++++++++++++------------------------------
NEWS | 94 +++++------
README.md | 38 ++---
RELEASE.md | 2 +-
VERSION | 2 +-
configure.ac | 10 +-
po/ar.po | 50 +++---
po/be.po | 50 +++---
po/bg.po | 50 +++---
po/ca.po | 50 +++---
po/cs.po | 50 +++---
po/da.po | 50 +++---
po/de.po | 50 +++---
po/el.po | 50 +++---
po/en.po | 50 +++---
po/es.po | 180 ++++++++++----------
po/fi.po | 50 +++---
po/fr.po | 180 ++++++++++----------
po/he.po | 50 +++---
po/hr.po | 50 +++---
po/hu.po | 50 +++---
po/icewm.pot | 52 +++---
po/id.po | 176 ++++++++++----------
po/it.po | 50 +++---
po/ja.po | 50 +++---
po/ko.po | 50 +++---
po/lt.po | 50 +++---
po/lv.po | 50 +++---
po/mk.po | 50 +++---
po/nb.po | 50 +++---
po/nl.po | 50 +++---
po/no.po | 50 +++---
po/pl.po | 50 +++---
po/pt.po | 50 +++---
po/pt_BR.po | 50 +++---
po/ro.po | 50 +++---
po/ru.po | 50 +++---
po/sk.po | 50 +++---
po/sl.po | 50 +++---
po/sv.po | 50 +++---
po/tr.po | 50 +++---
po/uk.po | 50 +++---
po/vi.po | 50 +++---
po/zh_CN.po | 50 +++---
po/zh_TW.po | 50 +++---
46 files changed, 1469 insertions(+), 1520 deletions(-)
commit 6599d8b1a6ea3df9c591f008bff54d42d707b65c
Merge: c3685c6a cd85845a
Author: Bert Gijsbers <[email protected]>
Date: Tue Nov 8 17:31:01 2022 +0100
Merge branch 'icewm-1-4-BRANCH'
commit cd85845a3be57f7a5e36cb2e66584b84e5393b1e
Merge: 9823b86f d3e9d274
Author: Bert Gijsbers <[email protected]>
Date: Tue Nov 8 17:27:43 2022 +0100
Merge remote-tracking branch 'upstream/icewm-1-4-BRANCH' into
icewm-1-4-BRANCH
commit d3e9d274450070ca8fed2b062dda76ddbe26e7dc
Author: Bert Gijsbers <[email protected]>
Date: Tue Nov 8 05:23:26 2022 +0100
Add array moveto to reduce copying.
src/testarray.cc | 17 +++++++++++++++++
src/wmdock.cc | 4 +---
src/wmswitch.cc | 6 ++----
src/yarray.cc | 16 ++++++++++++++++
src/yarray.h | 1 +
5 files changed, 37 insertions(+), 7 deletions(-)
commit 1a3688a76ffc8edb957b2462fee79fb8dc843143
Author: Bert Gijsbers <[email protected]>
Date: Mon Nov 7 23:09:45 2022 +0100
When moving a tab to a new frame, activate it.
src/wmframe.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 664e47251dd62c95d774bb00abfdd0a73e181fe3
Author: Bert Gijsbers <[email protected]>
Date: Mon Nov 7 18:34:28 2022 +0100
Check that active Alt+Tab item is visible. Also sort Alt+Tab items on
WM_CLASS. Fix GCC 4.8.5 compile error and closes ice-wm/icewm#99.
src/wmswitch.cc | 48 +++++++++++++++++++++++++++++++++++++++++++-----
1 file changed, 43 insertions(+), 5 deletions(-)
commit cc2ae1024b6f9e4bcf3a1677c0db48e1761c7d70
Author: Bert Gijsbers <[email protected]>
Date: Mon Nov 7 18:33:35 2022 +0100
Don't attempt to focus NoInput windows.
src/wmframe.cc | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
commit 9899fa287467abf3a6e1467bda8e3fd2c509fe1a
Author: Stéphane LASSALVY <[email protected]>
Date: Sun Nov 6 18:38:06 2022 +0000
Translated using Weblate (French)
Currently translated at 100.0% (519 of 519 strings)
po/fr.po | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
commit 9fdd494808c4357d7bb8e13d1f377a3c9b92bb7c
Author: Wallon <[email protected]>
Date: Sun Nov 6 17:12:52 2022 +0000
Translated using Weblate (French)
Currently translated at 100.0% (519 of 519 strings)
po/fr.po | 65 ++++++++++++++++++++++++++++++------------------------------
1 file changed, 33 insertions(+), 32 deletions(-)
commit 7ea7636be4cd658152b99371970faa158e5fb771
Author: Stéphane LASSALVY <[email protected]>
Date: Sun Nov 6 17:08:41 2022 +0000
Translated using Weblate (French)
Currently translated at 100.0% (519 of 519 strings)
po/fr.po | 90 ++++++++++++++++++++++++++++++------------------------------
1 file changed, 45 insertions(+), 45 deletions(-)
commit 33666e7522d771297c94fda4e11cf5afa4f0a02d
Author: Bert Gijsbers <[email protected]>
Date: Sun Nov 6 16:50:23 2022 +0100
Add QuickSwitchPersistence pref to enable stateful Alt+Tab for issue #683.
man/icewm-preferences.pod | 4 ++++
src/default.h | 2 ++
src/wmmgr.cc | 3 ++-
src/wmswitch.cc | 5 +++--
4 files changed, 11 insertions(+), 3 deletions(-)
commit ab1dd61636093c075b27ad30a5faf51d0738da99
Author: Bert Gijsbers <[email protected]>
Date: Sat Nov 5 16:16:18 2022 +0100
Demarcate workspaces in Alt+Tab for QuickSwitchToAllWorkspaces.
Fix the quick switch vertical size calculations.
src/wmswitch.cc | 26 +++++++++++++++++++++-----
src/wmswitch.h | 1 +
2 files changed, 22 insertions(+), 5 deletions(-)
commit 9ca15cbc50b70f89a1183fda20ab18dbe359b0e5
Author: Bert Gijsbers <[email protected]>
Date: Sat Nov 5 12:26:04 2022 +0100
Update the quick switch list after changing workspace when
QuickSwitchToAllWorkspaces=0 for issue #683.
src/wmswitch.cc | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
commit ba613461c78029230e3b7113251447379305ecdc
Author: Bert Gijsbers <[email protected]>
Date: Fri Nov 4 19:57:00 2022 +0100
Fix KeySysSwitchClass history for issue #673.
src/wmprog.cc | 3 ++-
src/wmswitch.cc | 10 ++++++----
src/wmswitch.h | 2 +-
3 files changed, 9 insertions(+), 6 deletions(-)
commit b2c1dc9aa0d89afe30c6c09befb22c6143feb2d7
Author: Bert Gijsbers <[email protected]>
Date: Fri Nov 4 19:55:33 2022 +0100
Close other tabs first.
src/wmframe.cc | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
commit f975b81505700dea0dd4bc46e5bf27d9cceee6c5
Author: Kukuh Syafaat <[email protected]>
Date: Fri Nov 4 03:17:10 2022 +0000
Translated using Weblate (Indonesian)
Currently translated at 100.0% (519 of 519 strings)
po/id.po | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
commit 2e50443b46d7418eb10a708ea5e369d5677484dc
Author: Victor hck <[email protected]>
Date: Thu Nov 3 17:05:01 2022 +0000
Translated using Weblate (Spanish)
Currently translated at 100.0% (519 of 519 strings)
po/es.po | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
commit 4dea3ca3e91112b02e01cabb208891036c52aee5
Author: Bert Gijsbers <[email protected]>
Date: Thu Nov 3 18:53:04 2022 +0100
Update version to 3.2.0.
README.md | 4 ++--
VERSION | 2 +-
configure.ac | 8 ++++----
3 files changed, 7 insertions(+), 7 deletions(-)
commit c3685c6ab21fa177ac7bdcc222250f8b68c90c40
Author: Bert Gijsbers <[email protected]>
Date: Wed Nov 2 22:31:11 2022 +0100
Prepare 3.2.0 release
AUTHORS | 4 +-
ChangeLog | 654 +++++++++++++++++++++++++++++--------------------------
NEWS | 107 ++++-----
README.md | 38 ++--
RELEASE.md | 2 +-
VERSION | 2 +-
configure.ac | 10 +-
po/ar.po | 60 ++---
po/be.po | 60 ++---
po/bg.po | 60 ++---
po/ca.po | 60 ++---
po/cs.po | 60 ++---
po/da.po | 60 ++---
po/de.po | 60 ++---
po/el.po | 60 ++---
po/en.po | 60 ++---
po/es.po | 60 ++---
po/fi.po | 60 ++---
po/fr.po | 60 ++---
po/he.po | 60 ++---
po/hr.po | 60 ++---
po/hu.po | 60 ++---
po/icewm.pot | 62 +++---
po/id.po | 60 ++---
po/it.po | 60 ++---
po/ja.po | 60 ++---
po/ko.po | 60 ++---
po/lt.po | 60 ++---
po/lv.po | 60 ++---
po/mk.po | 136 ++++++------
po/nb.po | 60 ++---
po/nl.po | 60 ++---
po/no.po | 60 ++---
po/pl.po | 60 ++---
po/pt.po | 60 ++---
po/pt_BR.po | 60 ++---
po/ro.po | 60 ++---
po/ru.po | 60 ++---
po/sk.po | 60 ++---
po/sl.po | 60 ++---
po/sv.po | 60 ++---
po/tr.po | 60 ++---
po/uk.po | 60 ++---
po/vi.po | 60 ++---
po/zh_CN.po | 60 ++---
po/zh_TW.po | 60 ++---
46 files changed, 1637 insertions(+), 1598 deletions(-)
commit 2d82a1ff7bd7a5c9c2b962cec534c54c222d32c0
Merge: 8aa693a5 9823b86f
Author: Bert Gijsbers <[email protected]>
Date: Wed Nov 2 22:19:33 2022 +0100
Merge branch 'icewm-1-4-BRANCH'
commit 9823b86f88f26c1566b1d44d9a2721fbcfbc9884
Merge: da90a4d8 231b87c7
Author: Bert Gijsbers <[email protected]>
Date: Wed Nov 2 22:04:38 2022 +0100
Merge remote-tracking branch 'upstream/icewm-1-4-BRANCH' into
icewm-1-4-BRANCH
commit 231b87c75df5ed14b259c919df02b6dca12a49af
Author: Bert Gijsbers <[email protected]>
Date: Wed Nov 2 22:02:43 2022 +0100
Add missing override.
src/wmswitch.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit da90a4d8d7132abd7ba4e0c652039af84ea27ee2
Merge: dd144756 4f06285d
Author: Bert Gijsbers <[email protected]>
Date: Wed Nov 2 21:54:23 2022 +0100
Merge remote-tracking branch 'upstream/icewm-1-4-BRANCH' into
icewm-1-4-BRANCH
commit 4f06285d64d4bcbfbf831993d761b42fdc8b2a62
Author: Bert Gijsbers <[email protected]>
Date: Wed Nov 2 13:04:32 2022 +0100
Force fullscreen windows as focused, even if their input hint is False,
for TaskBarFullscreenAutoShow in issue ice-wm/icewm#73.
src/wmmgr.cc | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
commit a3aef47487ada21c8b91a4867284c61bb55a94f7
Author: Bert Gijsbers <[email protected]>
Date: Wed Nov 2 00:23:22 2022 +0100
Ensure KeySysWinNext and KeySysWinPrev work for rolled up windows for
issue ice-wm/icewm#98.
src/wmframe.cc | 24 ++++++++++++++++++------
1 file changed, 18 insertions(+), 6 deletions(-)
commit 0324816929b6c1ae711367ee85fd37f661add203
Author: Bert Gijsbers <[email protected]>
Date: Wed Nov 2 00:21:30 2022 +0100
When activating a rolled up window, set focus to IceTopWin, for issue
ice-wm/icewm#98.
src/wmmgr.cc | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
commit 2affac139b1a8905c4b9894ff66cf8a0d19bae5a
Author: Bert Gijsbers <[email protected]>
Date: Wed Nov 2 00:11:42 2022 +0100
Permit a rolled up frame to take focus even if its client has a globally
active focus model for issue ice-wm/icewm#98.
src/wmmgr.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit e874cbcbb955a65b194d5613deeeb3f236153dd4
Author: Bert Gijsbers <[email protected]>
Date: Tue Nov 1 17:47:20 2022 +0100
Mention Alt+Tab raise candidate in the icewm manpage.
man/icewm.pod | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
commit b169106566497adb10f00d2fb74af41df3b3a185
Author: Bert Gijsbers <[email protected]>
Date: Tue Nov 1 17:46:29 2022 +0100
Add "untab" command to icesh to give each client its own frame.
man/icesh.pod | 9 +++++++++
src/icesh.cc | 50 ++++++++++++++++++++++++++++++++++++++++++++++++--
2 files changed, 57 insertions(+), 2 deletions(-)
commit ff0a37b19e65afc3e1eed78b803513179dd9a8c4
Author: Bert Gijsbers <[email protected]>
Date: Tue Nov 1 12:21:30 2022 +0100
Fix Alt+Tab prioritization for issue #673.
src/wmswitch.cc | 28 +++++++++++++---------------
1 file changed, 13 insertions(+), 15 deletions(-)
commit 6502c0aa5e06dfc46eb121d027cdd1d128855621
Author: Bert Gijsbers <[email protected]>
Date: Mon Oct 31 23:36:05 2022 +0100
Let the Alt+Tab preserve a history for 30 seconds for issue #673.
The next Alt+Tab will then continue where the previous one left off.
src/wmframe.cc | 23 +++++++--------
src/wmframe.h | 2 +-
src/wmmgr.cc | 20 +++++++++----
src/wmmgr.h | 1 +
src/wmswitch.cc | 81 +++++++++++++++++++++++++++++++++--------------------
src/wmswitch.h | 10 +++++--
src/yxapp.cc | 6 ++++
src/yxapp.h | 1 +
8 files changed, 94 insertions(+), 50 deletions(-)
commit 9886e39b3f7288a584edacab897d57dc8d5819be
Author: Bert Gijsbers <[email protected]>
Date: Sun Oct 30 23:38:39 2022 +0100
Let icesh check all atoms in the -Property filter.
Improve the window synchronization in icesh.
src/icesh.cc | 62 ++++++++++++++++++++++++++++++++++----------------------
1 file changed, 38 insertions(+), 24 deletions(-)
commit 9b83a7b5e3ce840c5f3a4822d40b03831238ed5f
Author: Bert Gijsbers <[email protected]>
Date: Sun Oct 30 23:36:45 2022 +0100
Explain cursors.
man/icewm.pod | 13 +++++++++++++
1 file changed, 13 insertions(+)
commit 55f73ea750ab900d3060be68c07e3fc2742326f2
Author: Bert Gijsbers <[email protected]>
Date: Sun Oct 30 14:28:12 2022 +0100
Add "stacking" and "reverse" commands to icesh for issue ice-wm/icewm#98.
src/icesh.cc | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
commit 2e71cd0f88f518b91360d4d4fd1c2db3fa5f5a63
Author: Bert Gijsbers <[email protected]>
Date: Sun Oct 30 13:27:09 2022 +0100
Add "stacking" and "reverse" commands to icesh for issue ice-wm/icewm#98.
man/icesh.pod | 8 ++++++++
1 file changed, 8 insertions(+)
commit cf34227e089fa676550994ca22454dd50e9bf486
Author: Bert Gijsbers <[email protected]>
Date: Sun Oct 30 12:46:44 2022 +0100
Support edge switching when dragging a window for issue #681.
src/movesize.cc | 18 ++++++++++++++----
src/wmframe.cc | 20 ++++++++++++++++++++
src/wmframe.h | 3 ++-
src/wmmgr.cc | 44 ++++++++++++++++++++++++++------------------
src/wmmgr.h | 2 ++
src/wmtitle.cc | 1 +
src/yxapp.cc | 9 +++++++++
src/yxapp.h | 1 +
8 files changed, 75 insertions(+), 23 deletions(-)
commit 686d567849d7e780bf17eb36b8fc96fc486b9040
Author: Bert Gijsbers <[email protected]>
Date: Sun Oct 30 12:00:56 2022 +0100
When switching to a tab with size limitations, adapt the frame geometry.
Prevent the flashing when switching tabs.
src/wmframe.cc | 53 ++++++++++++++++++++++++++++++++---------------------
1 file changed, 32 insertions(+), 21 deletions(-)
commit cadace9baf452f551c081dd90a44630acfd86bbd
Author: Bert Gijsbers <[email protected]>
Date: Sat Oct 29 12:28:18 2022 +0200
Fix maximize and fullscreen for tabs with different normal sizes.
src/wmframe.cc | 14 +++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)
commit 3af6071427408946dac7c25d5376f689f8866f3a
Author: Bert Gijsbers <[email protected]>
Date: Fri Oct 28 19:01:29 2022 +0200
Only popup the grouping menu on a task button on the first button click
without key modifiers. This makes it easier to immediately select or
minimize the active application by using the shift or control modifier.
src/atasks.cc | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
commit 88601d97795f3e0ca6379b905e7baa2ab99bb724
Author: Bert Gijsbers <[email protected]>
Date: Thu Oct 27 18:17:19 2022 +0200
Update a visible quick switch when a frame removes one of its tabs.
src/wmframe.cc | 3 +--
src/wmmgr.cc | 11 ++++++++---
src/wmmgr.h | 1 +
src/wmswitch.cc | 8 +++++---
4 files changed, 15 insertions(+), 8 deletions(-)
commit 00d36ffa31c4088f1525d87e76f98329be7b0a06
Author: Bert Gijsbers <[email protected]>
Date: Wed Oct 26 20:01:18 2022 +0200
Add the icesh command "tabto" to move a number of windows as tabs to a
new frame.
man/icesh.pod | 5 +++
src/icesh.cc | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++++---
2 files changed, 93 insertions(+), 5 deletions(-)
commit 7e725639028f62122ed4839ca3b397e41999dfc3
Author: Bert Gijsbers <[email protected]>
Date: Wed Oct 26 19:55:28 2022 +0200
Update the title bar shape when switching to a different tab and when
removing a tab.
Set the desktop, the layer and the state window properties when creating
a tab.
Always add a new tab to the window list.
src/decorate.cc | 6 +++++-
src/wmclient.cc | 6 +++---
src/wmclient.h | 2 +-
src/wmframe.cc | 49 ++++++++++++++++++++++++++++++++++++++-----------
src/wmframe.h | 6 +++++-
src/wmtitle.cc | 12 ++++--------
6 files changed, 56 insertions(+), 25 deletions(-)
commit f1d50770254bc44ec027257cce8d677dc980794f
Author: Bert Gijsbers <[email protected]>
Date: Wed Oct 26 19:54:26 2022 +0200
Show the time of day when reporting an unknown window option.
src/wmoption.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 992bb0cb0dcb85d8473ec60f662c67302427d91d
Author: Bert Gijsbers <[email protected]>
Date: Wed Oct 26 19:52:45 2022 +0200
Update _NET_CLIENT_LIST when adding more tabs.
src/wmmgr.cc | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
commit ff39e0b3305eac16db6e09bb32f656c9a0fc8b09
Author: Eduard Bloch <[email protected]>
Date: Tue Oct 25 16:52:04 2022 +0200
feature: special filtered view and flat rendering
man/icewm-menu-fdo.pod | 30 +++++++++++-
src/fdomenu.cc | 117 ++++++++++++++++++++++++++++++++++++++++-----
2 files changed, 134 insertions(+), 13 deletions(-)
commit f806e829bb24a5735e46819e6a4caf591b5bf630
Author: Eduard Bloch <[email protected]>
Date: Mon Oct 24 18:59:45 2022 +0200
DRY, simplify, some flags/folders separation
src/CMakeLists.txt | 93 +++++++++++++++++++++-----------------------------
1 file changed, 39 insertions(+), 54 deletions(-)
commit 731fdda3be247b4234c137e20748d751d63b1078
Author: Kristijan Fremen Velkovski <[email protected]>
Date: Mon Oct 24 07:36:34 2022 +0000
Translated using Weblate (Macedonian)
Currently translated at 36.2% (188 of 519 strings)
po/mk.po | 29 ++++++++++++-----------------
1 file changed, 12 insertions(+), 17 deletions(-)
commit 8aa693a54ba9aa810e16741abf3c9cbcf11e9d61
Author: Bert Gijsbers <[email protected]>
Date: Mon Oct 24 01:42:17 2022 +0200
Prepare 3.1.0 release
AUTHORS | 8 +-
ChangeLog | 657 +++++++++++++++++++++++++++++++------------------------
NEWS | 101 ++++-----
README.md | 38 ++--
RELEASE.md | 2 +-
VERSION | 2 +-
configure.ac | 10 +-
po/ar.po | 86 ++++----
po/be.po | 86 ++++----
po/bg.po | 86 ++++----
po/ca.po | 86 ++++----
po/cs.po | 86 ++++----
po/da.po | 86 ++++----
po/de.po | 86 ++++----
po/el.po | 86 ++++----
po/en.po | 86 ++++----
po/es.po | 86 ++++----
po/fi.po | 86 ++++----
po/fr.po | 90 ++++----
po/he.po | 86 ++++----
po/hr.po | 86 ++++----
po/hu.po | 86 ++++----
po/icewm.pot | 88 ++++----
po/id.po | 86 ++++----
po/it.po | 86 ++++----
po/ja.po | 86 ++++----
po/ko.po | 86 ++++----
po/lt.po | 86 ++++----
po/lv.po | 86 ++++----
po/mk.po | 86 ++++----
po/nb.po | 86 ++++----
po/nl.po | 86 ++++----
po/no.po | 86 ++++----
po/pl.po | 86 ++++----
po/pt.po | 86 ++++----
po/pt_BR.po | 89 ++++----
po/ro.po | 86 ++++----
po/ru.po | 86 ++++----
po/sk.po | 86 ++++----
po/sl.po | 86 ++++----
po/sv.po | 86 ++++----
po/tr.po | 86 ++++----
po/uk.po | 86 ++++----
po/vi.po | 86 ++++----
po/zh_CN.po | 86 ++++----
po/zh_TW.po | 86 ++++----
46 files changed, 2125 insertions(+), 2056 deletions(-)
commit 27708152b38933f5ea5f43227ad07d40f26b0bf7
Merge: f20ff627 dd144756
Author: Bert Gijsbers <[email protected]>
Date: Mon Oct 24 01:37:15 2022 +0200
Merge branch 'icewm-1-4-BRANCH'
commit dd1447569fd2ea3e1a8899e2ce084798c01f50be
Merge: cc8d3180 50c4791e
Author: Bert Gijsbers <[email protected]>
Date: Mon Oct 24 01:36:17 2022 +0200
Merge remote-tracking branch 'upstream/icewm-1-4-BRANCH' into
icewm-1-4-BRANCH
commit 50c4791e4b20449e1abbc2dc6b6a3295d7b4ca88
Author: Bert Gijsbers <[email protected]>
Date: Mon Oct 24 01:18:16 2022 +0200
Fix warning on delete.
src/wmmgr.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 429d528d8e38aaef97cd4351cd710962744def97
Author: Bert Gijsbers <[email protected]>
Date: Sun Oct 23 21:32:17 2022 +0200
Add winoption "frame" to group new clients as tabs in a single frame.
man/icewm-winoptions.pod | 4 ++++
src/wmclient.cc | 43 +++++++++++++++++++++++++++++++++++++++++++
src/wmclient.h | 1 +
src/wmframe.cc | 15 +++++++++++++++
src/wmframe.h | 8 +++++---
src/wmmgr.cc | 31 +++++++++++++++++++++++++------
src/wmoption.cc | 6 +++++-
src/wmoption.h | 1 +
8 files changed, 99 insertions(+), 10 deletions(-)
commit 06ef4f455957e37aed771346db0245911d05f3ae
Author: Bert Gijsbers <[email protected]>
Date: Sun Oct 23 17:21:17 2022 +0200
Revert "Revisiting header files and making them self-sufficient"
This reverts commit 1859cae6c437bc1c7f6419b47d16e51a0e338ba1.
src/aapm.h | 2 --
src/acpustatus.h | 6 ------
src/amemstatus.h | 4 ----
src/applet.h | 4 ----
src/apppstatus.h | 7 -------
src/browse.h | 2 --
src/genpref.cc | 1 -
src/logevent.h | 2 --
src/objbar.h | 2 --
src/themable.h | 1 -
src/wmoption.h | 1 +
src/wmsession.h | 4 ----
src/wmswitch.h | 3 ---
src/wmtitle.h | 4 ----
src/wmwinmenu.h | 3 ---
src/ybidi.h | 2 --
src/yconfig.h | 1 -
src/ycursor.h | 2 --
src/yicon.h | 3 ---
src/yimage.h | 3 +--
src/ylist.h | 2 --
src/yrect.h | 4 ----
src/yxcontext.h | 5 -----
23 files changed, 2 insertions(+), 66 deletions(-)
commit d13fbd7b5210a73769b9b1dd62e9f704eb799ef1
Author: Eduard Bloch <[email protected]>
Date: Sat Oct 22 22:28:14 2022 +0200
[cmake] Various improvements
- increased minimum required version to stop printing warnings
- use target_link_options where it makes sense so that linker options are
passed through explicitly as raw linker arguments instead of abusing the
library list for this purpose
- Intl_INCLUDE_DIRS passed explicitly as include directory list (it
would break
before if there are more than one directory exported)
- removing duplicates in the linked libraries while creating a unified
list,
also removing duplicates from include folders
- optional discovery of the related header files (visual sugar for
IDE users)
- dropping legacy hints and upgrading to newer cmake version requirement
- unified handling of extra linker flags and extra libraries
- using the new -flto=... option with value to avoid warnings when building
with ENABLE_LTO
doc/CMakeLists.txt | 2 +-
lib/CMakeLists.txt | 2 +-
po/CMakeLists.txt | 2 +-
src/CMakeLists.txt | 153 ++++++++++++++++++++++++++++++-------------------
4 files changed, 97 insertions(+), 62 deletions(-)
commit 1859cae6c437bc1c7f6419b47d16e51a0e338ba1