-
Notifications
You must be signed in to change notification settings - Fork 99
/
ChangeLog
9471 lines (7090 loc) · 308 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 -300|fmt -sct -w80
commit a7e96a0284a4647b2f779a9cacfa5ebb8164f5dd
Author: Benoît Monin <[email protected]>
Date: Sat Jul 22 18:01:44 2017 +0000
Translated using Weblate (French)
Currently translated at 88.4% (244 of 276 strings)
po/fr.po | 31 +++++++++++++++----------------
1 file changed, 15 insertions(+), 16 deletions(-)
commit 8e500228e6a716be9ab212de97ae04d3ffa4d553
Author: Karl Ove Hufthammer <[email protected]>
Date: Sat Jul 22 11:50:45 2017 +0000
Translated using Weblate (Norwegian Nynorsk)
Currently translated at 40.5% (112 of 276 strings)
po/nn.po | 236 +++++++++++++++++++++++++++++------------------------------
1 file changed, 118 insertions(+), 118 deletions(-)
commit 22a2d425264767e8e553f7f57c9a0af91227dd0d
Author: Bert Gijsbers <[email protected]>
Date: Tue Jul 18 18:53:19 2017 +0200
Document icewm signals.
doc/icewm.man | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
commit 194e96d5107d7a9dd1a3319d1b5e8296c78da4a9
Author: Efstathios Iosifidis <[email protected]>
Date: Wed Jul 12 13:39:42 2017 +0000
Translated using Weblate (Greek)
Currently translated at 90.9% (251 of 276 strings)
po/el.po | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
commit 24b85aaf13f06cba00d1f620837a152cc806fee1
Author: Karl Ove Hufthammer <[email protected]>
Date: Tue Jul 11 19:31:06 2017 +0000
Added translation using Weblate (Norwegian Nynorsk)
po/nn.po | 1422 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 1422 insertions(+)
commit 215d8bb301caeab8edb37a10f1dd03a5606f7137
Author: Bert Gijsbers <[email protected]>
Date: Tue Jul 11 20:56:02 2017 +0200
man intro + semitransparency.
doc/icewm.man | 35 ++++++++++++++++++++++-------------
1 file changed, 22 insertions(+), 13 deletions(-)
commit cf370ce615accec8d1223517221b9964228769d3
Author: Bert Gijsbers <[email protected]>
Date: Sun Jul 9 22:26:14 2017 +0200
Document applet details.
doc/icewm.man | 24 +++++++++++++++++++++++-
1 file changed, 23 insertions(+), 1 deletion(-)
commit 7b678e11569c8b41f617642388f63a80dbd2f5ec
Author: Bert Gijsbers <[email protected]>
Date: Sun Jul 9 02:04:06 2017 +0200
Document mouse bindings.
doc/icewm.man | 58 +++++++++++++++++++++++++++++++++++++++++++++++++------
1 file changed, 52 insertions(+), 6 deletions(-)
commit 8c73dd82e5c097f84059c0168c02b1f8b94ee329
Merge: 53c35578 1d2e2c56
Author: openSUSE Weblate <[email protected]>
Date: Fri Jul 7 17:48:09 2017 +0000
Merge remote-tracking branch 'origin/icewm-1-3-BRANCH' into
icewm-1-3-BRANCH
commit 1d2e2c5699174ff46ad66b7b50152402f076c211
Author: Bert Gijsbers <[email protected]>
Date: Fri Jul 7 19:47:24 2017 +0200
Document window placement, window layers and workspaces.
doc/icewm.man | 88 +++++++++++++++++++++++++++++++++++++++++++++++++++++--
1 file changed, 85 insertions(+), 3 deletions(-)
commit 53c35578e9ef917ba1d5b52aac5bd120f9f66c1f
Author: Kukuh Syafaat <[email protected]>
Date: Wed Jul 5 07:27:48 2017 +0000
Translated using Weblate (Indonesian)
Currently translated at 100.0% (276 of 276 strings)
po/id.po | 90 +++++++++++++++++++++++++++++++++++-------------------------
1 file changed, 53 insertions(+), 37 deletions(-)
commit 9e0701990854ca65a9d3d6da666e07bb1b715fb8
Author: Bert Gijsbers <[email protected]>
Date: Tue Jul 4 21:06:59 2017 +0200
Fix option parsing for --theme/--config for icewmbg.
src/icewmbg.cc | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
commit bd611f0481d9c4024d79ab5837464d1e60b598ef
Author: Alessio Adamo <[email protected]>
Date: Mon Jul 3 16:21:21 2017 +0000
Translated using Weblate (Italian)
Currently translated at 100.0% (276 of 276 strings)
po/it.po | 46 +++++++++++++++++++++++++++++-----------------
1 file changed, 29 insertions(+), 17 deletions(-)
commit 58ca46a6e676e863d9ad8fd1964cbee91260ebae
Author: Bert Gijsbers <[email protected]>
Date: Sun Jul 2 20:21:21 2017 +0200
Document the QuickSwitch window and all keyboard shortcuts.
doc/icewm.man | 317 +++++++++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 316 insertions(+), 1 deletion(-)
commit f59bfacb7cdcea7c5613d24201b0aee1a7f719fa
Author: Bert Gijsbers <[email protected]>
Date: Sun Jul 2 11:03:12 2017 +0200
Document focus mode and the taskbar.
doc/icewm.man | 205 ++++++++++++++++++++++++++++++++++++++++++++++++------
1 file changed, 185 insertions(+), 20 deletions(-)
commit c9b5424b05d510032c293bf30af7005c40f39253
Author: Bert Gijsbers <[email protected]>
Date: Fri Jun 30 19:36:32 2017 +0200
Prevent 3 warnings when compiling with clang++.
src/acpustatus.h | 1 -
src/icewmbg.cc | 4 +++-
src/ypointer.h | 2 +-
3 files changed, 4 insertions(+), 3 deletions(-)
commit e0147cb16643dae200231da680804380c4e1f13f
Author: Alessio Adamo <[email protected]>
Date: Fri Jun 30 11:59:35 2017 +0000
Translated using Weblate (Italian)
Currently translated at 99.2% (274 of 276 strings)
po/it.po | 71 ++++++++++++++++++++++++++++++++++++------------------------
1 file changed, 43 insertions(+), 28 deletions(-)
commit b7b9ef81033e3a0c4a6088287d87ca7616f4bd02
Author: Guillaume GARDET <[email protected]>
Date: Wed Jun 28 12:26:37 2017 +0000
Translated using Weblate (French)
Currently translated at 85.5% (236 of 276 strings)
po/fr.po | 76 +++++++++++++++++++++++++-----------------------------------
1 file changed, 32 insertions(+), 44 deletions(-)
commit 9b477d7b50d72e8c6d846ade8c4c7ccef2df88c2
Author: Bert Gijsbers <[email protected]>
Date: Tue Jun 27 23:05:16 2017 +0200
Manual page: add "icehelp" to the list of IceWM programs.
doc/icewm.man | 3 +++
1 file changed, 3 insertions(+)
commit b792a580a4b2b233fb2f8a8995544ce8d7afe6ad
Author: Bert Gijsbers <[email protected]>
Date: Tue Jun 27 23:00:06 2017 +0200
icehelp didn't accept standard IceWM options.
If no help file was given then use the standard ICEHELPIDX location.
This allows to start icehelp from the command line by just typing
"icehelp".
src/icehelp.cc | 30 ++++++++++++++++++++++--------
1 file changed, 22 insertions(+), 8 deletions(-)
commit fcd44ba80e8ae0c8d0a310416dfe463add322fa4
Author: Bert Gijsbers <[email protected]>
Date: Mon Jun 26 23:03:38 2017 +0200
Improve man page documentation about "icewm-session".
doc/icewm.man | 25 ++++++++++++++++++++-----
1 file changed, 20 insertions(+), 5 deletions(-)
commit bd6d45f2c4f345f90cc464e5b229c64cce7c0a8b
Author: jc sl <[email protected]>
Date: Fri Jun 23 21:37:48 2017 +0000
Translated using Weblate (Spanish)
Currently translated at 97.8% (270 of 276 strings)
po/es.po | 114 +++++++++++++++++++++++++++++++++++++----------------------
1 file changed, 71 insertions(+), 43 deletions(-)
commit f1d3f9d8305a08a1232f582648e66a88410d9521
Author: Andriy Bandura <[email protected]>
Date: Thu Jun 22 15:25:02 2017 +0000
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (276 of 276 strings)
po/uk.po | 96 ++++++++++++++++++++++++++++++++++++++----------------------
1 file changed, 61 insertions(+), 35 deletions(-)
commit 988f245d73cc94c214facf5c26085088be97d4c4
Author: Brian Bidulock <[email protected]>
Date: Wed Jun 21 18:13:39 2017 -0600
update po files
po/ar.po | 2 +-
po/be.po | 2 +-
po/bg.po | 2 +-
po/ca.po | 6 +++---
po/cs.po | 2 +-
po/da.po | 2 +-
po/de.po | 6 +++---
po/el.po | 2 +-
po/en.po | 2 +-
po/es.po | 2 +-
po/fi.po | 2 +-
po/fr.po | 2 +-
po/he.po | 2 +-
po/hr.po | 2 +-
po/hu.po | 2 +-
po/icewm.pot | 4 ++--
po/id.po | 42 +++++++++++++++++++++---------------------
po/it.po | 2 +-
po/ja.po | 6 +++---
po/ko.po | 2 +-
po/lt.po | 2 +-
po/lv.po | 2 +-
po/mk.po | 2 +-
po/nb.po | 2 +-
po/nl.po | 6 +++---
po/no.po | 2 +-
po/pl.po | 2 +-
po/pt_BR.po | 6 +++---
po/ro.po | 2 +-
po/ru.po | 2 +-
po/sk.po | 23 +++++++----------------
po/sl.po | 2 +-
po/sv.po | 2 +-
po/tr.po | 2 +-
po/uk.po | 2 +-
po/vi.po | 2 +-
po/zh_CN.po | 2 +-
po/zh_TW.po | 2 +-
38 files changed, 75 insertions(+), 84 deletions(-)
commit d7050508166dcff9b60a5a092accb1b158549a9c
Author: Bert Gijsbers <[email protected]>
Date: Wed Jun 21 23:55:56 2017 +0200
Fix issue #143: remove theme Natural.
icewm.spec.in | 4 +--
lib/Makefile.am | 86 +----------------------------------------------------
2 files changed, 2 insertions(+), 88 deletions(-)
commit ab2f3d3a35b14cf5556c177bca1739e0a23584dd
Author: Luiz Fernando Ranghetti <[email protected]>
Date: Sun Jun 18 22:08:19 2017 +0000
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (276 of 276 strings)
po/pt_BR.po | 30 +++++++++++++++---------------
1 file changed, 15 insertions(+), 15 deletions(-)
commit 17bc80b095dd0bc15940767b92f6ee2ce1cba915
Author: Sarah Kriesch <[email protected]>
Date: Sun Jun 18 17:35:19 2017 +0000
Translated using Weblate (German)
Currently translated at 100.0% (276 of 276 strings)
po/de.po | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
commit 6853d8d15475223623289c2db0ba69001ccbdbd8
Author: Bert Gijsbers <[email protected]>
Date: Sun Jun 18 18:20:55 2017 +0200
Memory leak fix: don't call newstr on parameters passed to
YStringArray::append, because that one already does a newstr on the
received parameter.
src/wmprog.cc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit e07c3808cfa0f33845585e7541a2d6cb7696e05a
Author: Kukuh Syafaat <[email protected]>
Date: Sun Jun 18 07:16:06 2017 +0000
Translated using Weblate (Indonesian)
Currently translated at 90.9% (251 of 276 strings)
po/id.po | 103 +++++++++++++++++++++++++++++++++++------------------------
1 file changed, 62 insertions(+), 41 deletions(-)
commit 5a950ca80c5d95ec364c4f1743fcda708789cb87
Author: Sarah Kriesch <[email protected]>
Date: Sat Jun 17 20:33:54 2017 +0000
Translated using Weblate (German)
Currently translated at 99.2% (274 of 276 strings)
po/de.po | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit 9e3e995c32be9f55bbdfe92a01e9f704709fa409
Author: David Medina <[email protected]>
Date: Sun Jun 11 14:13:04 2017 +0000
Translated using Weblate (Catalan)
Currently translated at 100.0% (276 of 276 strings)
po/ca.po | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
commit a2d25f85dec0038ce5e0d79fb381498c393e8c3a
Author: Sarah Kriesch <[email protected]>
Date: Sat Jun 17 16:53:36 2017 +0000
Translated using Weblate (German)
Currently translated at 98.9% (273 of 276 strings)
po/de.po | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
commit f8be932ca43f665dadc0bd0be4e1f481d22383d6
Author: Ferdinand Galko <[email protected]>
Date: Sat Jun 17 17:54:29 2017 +0000
Translated using Weblate (Slovak)
Currently translated at 97.8% (270 of 276 strings)
po/sk.po | 30 +++++++++++++++++++++++++++---
1 file changed, 27 insertions(+), 3 deletions(-)
commit c65b6f23245698f2f5d3d13dff28ff717aad9b58
Author: Ferdinand Galko <[email protected]>
Date: Sat Jun 17 17:33:36 2017 +0000
Translated using Weblate (Slovak)
Currently translated at 94.2% (260 of 276 strings)
po/sk.po | 76 +++++++++++++++++++++++++++++++++++-------------------------
1 file changed, 44 insertions(+), 32 deletions(-)
commit f9bb2cdc86da1b96b39947e95415db6ce1707305
Author: Bert Gijsbers <[email protected]>
Date: Sat Jun 17 09:38:31 2017 +0200
Document the "focus_mode" file.
doc/icewm.man | 14 ++++++++++++++
1 file changed, 14 insertions(+)
commit 7ac2a60906c1a5914fc6689873ae05d4aa967fc5
Author: Bert Gijsbers <[email protected]>
Date: Sat Jun 17 03:31:00 2017 +0200
Add wpixres.cc to ICEWM_SRCS.
src/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 8a2b54feb2cae3123eb6160d73009fa8d0146c5a
Author: Bert Gijsbers <[email protected]>
Date: Sat Jun 17 03:28:12 2017 +0200
Document the "env" file.
doc/icewm.man | 13 +++++++++++++
1 file changed, 13 insertions(+)
commit e974ba00923a1ab4a3fe9710874265c3293b404d
Author: Yasuhiko Kamata <[email protected]>
Date: Fri Jun 16 22:57:51 2017 +0000
Translated using Weblate (Japanese)
Currently translated at 100.0% (276 of 276 strings)
po/ja.po | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
commit 5666a1e929953bd3d2c2f98f3178f733c093711d
Author: Freek de Kruijf <[email protected]>
Date: Fri Jun 16 22:23:24 2017 +0000
Translated using Weblate (Dutch)
Currently translated at 100.0% (276 of 276 strings)
po/nl.po | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
commit 356c5586f819cd35ce8b99052edc77eeff945137
Author: Rodrigo Macedo <[email protected]>
Date: Sat Jun 17 00:41:11 2017 +0000
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (276 of 276 strings)
po/pt_BR.po | 57 +++++++++++++++++++++++++++++++++++++++++----------------
1 file changed, 41 insertions(+), 16 deletions(-)
commit 6991ae998b839acb83b345340a4d91211bfa5af8
Author: Brian Bidulock <[email protected]>
Date: Fri Jun 16 12:21:36 2017 -0600
de.po after merge
po/de.po | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit 7231363c3657519e2e6e80ae9c162a01a53efb3a
Author: Brian Bidulock <[email protected]>
Date: Fri Jun 16 12:19:58 2017 -0600
update po files
po/ar.po | 2 +-
po/be.po | 2 +-
po/bg.po | 2 +-
po/ca.po | 2 +-
po/cs.po | 2 +-
po/da.po | 2 +-
po/el.po | 2 +-
po/en.po | 2 +-
po/es.po | 2 +-
po/fi.po | 2 +-
po/fr.po | 2 +-
po/he.po | 2 +-
po/hr.po | 2 +-
po/hu.po | 2 +-
po/icewm.pot | 4 ++--
po/id.po | 2 +-
po/it.po | 2 +-
po/ja.po | 2 +-
po/ko.po | 2 +-
po/lt.po | 2 +-
po/lv.po | 2 +-
po/mk.po | 2 +-
po/nb.po | 2 +-
po/nl.po | 2 +-
po/no.po | 2 +-
po/pl.po | 2 +-
po/pt_BR.po | 6 +++---
po/ro.po | 2 +-
po/ru.po | 2 +-
po/sk.po | 2 +-
po/sl.po | 2 +-
po/sv.po | 2 +-
po/tr.po | 2 +-
po/uk.po | 2 +-
po/vi.po | 2 +-
po/zh_CN.po | 2 +-
po/zh_TW.po | 2 +-
37 files changed, 40 insertions(+), 40 deletions(-)
commit 6995126d81b46c83fb449e34e3e4916756f9032f
Author: Brian Bidulock <[email protected]>
Date: Fri Jun 16 12:19:27 2017 -0600
correct again
po/de.po | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
commit 5fd89d07e81835407dfad95daf626f34d5326705
Merge: 10bba09f 93106848
Author: Stanislav Brabec <[email protected]>
Date: Fri Jun 16 17:55:24 2017 +0000
Merge remote-tracking branch 'weblate/icewm-1-3-BRANCH' into
icewm-1-3-BRANCH
commit 93106848bfd85d669299cc70aa01a76719db034e
Author: Luiz Fernando Ranghetti <[email protected]>
Date: Fri Jun 16 15:58:31 2017 +0000
Translated using Weblate (Portuguese (Brazil))
Currently translated at 97.8% (272 of 278 strings)
po/pt_BR.po | 58 +++++++++++++++++++++++++++++----------------------------
1 file changed, 30 insertions(+), 28 deletions(-)
commit 8b286a1903952b745773092c8d3b4b1d9a2988d4
Author: Sarah Kriesch <[email protected]>
Date: Fri Jun 16 17:35:26 2017 +0000
Translated using Weblate (German)
Currently translated at 98.5% (274 of 278 strings)
po/de.po | 142 ++++++++++++++++++++++++++++++++++++++---------------------
1 file changed, 93 insertions(+), 49 deletions(-)
commit 10bba09f4e84b40e3ed28e7003c6a8951646c79a
Author: Brian Bidulock <[email protected]>
Date: Fri Jun 16 11:36:17 2017 -0600
corrections
po/de.po | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
commit a6130dd999145462a0e48c242d1524231477e25e
Merge: d8ceb70b fcd2da5d
Author: Brian Bidulock <[email protected]>
Date: Fri Jun 16 11:32:50 2017 -0600
Merge branch 'icewm-1-3-BRANCH' of github.com:bbidulock/icewm into
icewm-1-3-BRANCH
commit d8ceb70bc8963c465d638ec254cd29c4ce075ea2
Author: Brian Bidulock <[email protected]>
Date: Fri Jun 16 11:30:51 2017 -0600
updated po files
po/ar.po | 264 ++++++++++++++++++++++++++-------------------------
po/be.po | 264 ++++++++++++++++++++++++++-------------------------
po/bg.po | 264 ++++++++++++++++++++++++++-------------------------
po/ca.po | 262 +++++++++++++++++++++++++-------------------------
po/cs.po | 264 ++++++++++++++++++++++++++-------------------------
po/da.po | 264 ++++++++++++++++++++++++++-------------------------
po/de.po | 266 +++++++++++++++++++++++++--------------------------
po/el.po | 264 ++++++++++++++++++++++++++-------------------------
po/en.po | 251 ++++++++++++++++++++++++------------------------
po/es.po | 264 ++++++++++++++++++++++++++-------------------------
po/fi.po | 264 ++++++++++++++++++++++++++-------------------------
po/fr.po | 266 +++++++++++++++++++++++++--------------------------
po/he.po | 257 ++++++++++++++++++++++++-------------------------
po/hr.po | 260 +++++++++++++++++++++++++-------------------------
po/hu.po | 271 ++++++++++++++++++++++++++--------------------------
po/icewm.pot | 253 ++++++++++++++++++++++++-------------------------
po/id.po | 264 ++++++++++++++++++++++++++-------------------------
po/it.po | 262 +++++++++++++++++++++++++-------------------------
po/ja.po | 264 +++++++++++++++++++++++++--------------------------
po/ko.po | 264 ++++++++++++++++++++++++++-------------------------
po/lt.po | 264 ++++++++++++++++++++++++++-------------------------
po/lv.po | 261 +++++++++++++++++++++++++-------------------------
po/mk.po | 264 ++++++++++++++++++++++++++-------------------------
po/nb.po | 264 ++++++++++++++++++++++++++-------------------------
po/nl.po | 264 +++++++++++++++++++++++++--------------------------
po/no.po | 264 ++++++++++++++++++++++++++-------------------------
po/pl.po | 264 ++++++++++++++++++++++++++-------------------------
po/pt_BR.po | 266 +++++++++++++++++++++++++--------------------------
po/ro.po | 264 ++++++++++++++++++++++++++-------------------------
po/ru.po | 266 +++++++++++++++++++++++++--------------------------
po/sk.po | 284 ++++++++++++++++++++++++++++---------------------------
po/sl.po | 264 ++++++++++++++++++++++++++-------------------------
po/sv.po | 264 ++++++++++++++++++++++++++-------------------------
po/tr.po | 264 ++++++++++++++++++++++++++-------------------------
po/uk.po | 264 ++++++++++++++++++++++++++-------------------------
po/vi.po | 264 ++++++++++++++++++++++++++-------------------------
po/zh_CN.po | 264 ++++++++++++++++++++++++++-------------------------
po/zh_TW.po | 264 ++++++++++++++++++++++++++-------------------------
38 files changed, 5028 insertions(+), 4997 deletions(-)
commit fcd2da5df11e5ef5c27a9c96186d48ecc9cf42f9
Author: Bernhard Wiedemann <[email protected]>
Date: Fri Jun 16 15:29:56 2017 +0000
Translated using Weblate (German)
Currently translated at 89.9% (250 of 278 strings)
po/de.po | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
commit ec9da82b4fe791465e4d528a2ccbbe26777dfb94
Merge: b0cbfa66 17219d24
Author: Brian Bidulock <[email protected]>
Date: Fri Jun 16 07:40:07 2017 -0600
Merge branch 'icewm-1-3-BRANCH' of github.com:bbidulock/icewm into
icewm-1-3-BRANCH
commit 17219d248099b39c7fa2602556e6cff152f2fd8c
Merge: 3daf1161 4839606b
Author: openSUSE Weblate <[email protected]>
Date: Thu Jun 15 21:40:49 2017 +0000
Merge remote-tracking branch 'origin/icewm-1-3-BRANCH' into
icewm-1-3-BRANCH
commit 3daf1161dce138ccff9659d6ba91ca77f4a2bb07
Author: Luiz Fernando Ranghetti <[email protected]>
Date: Thu Jun 15 19:03:17 2017 +0000
Translated using Weblate (Portuguese (Brazil))
Currently translated at 93.8% (261 of 278 strings)
po/pt_BR.po | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
commit 4839606becee8a88dcd9cf7d5cfb386839348807
Author: Bert Gijsbers <[email protected]>
Date: Thu Jun 15 23:40:30 2017 +0200
Make some tests compile.
src/icelist.cc | 2 ++
src/icesame.cc | 8 ++++++--
src/strtest.cc | 1 +
src/testarray.cc | 6 +++---
src/testlocale.cc | 2 +-
src/testmap.cc | 2 +-
6 files changed, 14 insertions(+), 7 deletions(-)
commit 4b54eebccf231b24798ff988052bc9d15f2d47d3
Author: Bert Gijsbers <[email protected]>
Date: Thu Jun 15 20:03:04 2017 +0200
Make all configure --enable/--disable options compile again.
src/genpref.cc | 6 ++++--
src/misc.cc | 2 +-
src/mstring.h | 1 -
src/objbar.cc | 2 +-
src/udir.cc | 1 +
src/wmabout.cc | 2 ++
src/wmbutton.cc | 32 +++++++++++++++++++++++---------
src/wmclient.cc | 4 ++++
src/wmclient.h | 6 ++++++
src/wmconfig.cc | 4 +++-
src/wmcontainer.cc | 2 ++
src/wmframe.cc | 6 +++++-
src/wmtaskbar.cc | 37 ++++++++++++++++++++-----------------
src/wmwinlist.cc | 6 ++++++
src/wpixmaps.h | 2 +-
src/wpixres.cc | 2 ++
src/yconfig.cc | 4 ++--
src/ycursor.cc | 11 +++++------
src/yinput.cc | 1 +
src/ylib.h | 2 --
src/ylocale.cc | 2 ++
src/ymsgbox.cc | 4 +++-
src/ypaint.h | 4 +---
src/ytimer.h | 1 -
src/ywindow.cc | 2 ++
25 files changed, 97 insertions(+), 49 deletions(-)
commit c13075d5b098f2ceb1534ef39607deff64c77a00
Author: Bert Gijsbers <[email protected]>
Date: Thu Jun 15 20:01:45 2017 +0200
Remove unused headers.
src/ybase.h | 10 ----------
src/yutil.h | 9 ---------
2 files changed, 19 deletions(-)
commit f0f84e899a99334ba57648240fd86b336fd6f4a0
Author: Bert Gijsbers <[email protected]>
Date: Thu Jun 15 09:09:55 2017 +0200
Typo: fix missing 2 in taskbar2Pixres.
src/wpixres.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 8caa2e9082f3207b121e316851c6bfd97df654b4
Author: Bert Gijsbers <[email protected]>
Date: Wed Jun 14 20:44:19 2017 +0200
Concentrate nearly all pixmap .xpm loading in one place.
More controlled loading of pixmaps, would allow to extend it to PNG
and SVG.
Remove the CONFIG_LOOK_* preprocessor symbols
as they were not usefully implemented and just cluttered.
Streamline wmLook and make it print useful info in --postpreferences.
Make stderr line buffered.
src/Makefile.am | 5 +-
src/aapm.cc | 21 +--
src/aclock.cc | 33 ++--
src/aclock.h | 13 --
src/amailbox.cc | 8 +-
src/atasks.cc | 1 +
src/atray.cc | 1 +
src/aworkspaces.cc | 9 +-
src/aworkspaces.h | 8 -
src/decorate.cc | 39 +----
src/icewmbg.cc | 3 +-
src/objbar.cc | 7 +-
src/objbutton.h | 6 -
src/wmapp.cc | 398 ++--------------------------------------------
src/wmapp.h | 5 +
src/wmbutton.cc | 75 +++------
src/wmbutton.h | 9 --
src/wmconfig.cc | 95 ++++++-----
src/wmdialog.cc | 2 +-
src/wmdialog.h | 6 -
src/wmframe.cc | 22 +--
src/wmframe.h | 32 ----
src/wmmgr.h | 2 -
src/wmstatus.cc | 3 +-
src/wmswitch.cc | 2 +-
src/wmswitch.h | 5 -
src/wmtaskbar.cc | 154 ++----------------
src/wmtaskbar.h | 19 ---
src/wmtitle.cc | 42 +----
src/wpixmaps.h | 111 +++++++++++++
src/wpixres.cc | 421 +++++++++++++++++++++++++++++++++++++++++++++++++
src/wpixres.h | 12 ++
src/yapp.cc | 1 +
src/yapp.h | 2 -
src/ybutton.cc | 7 +-
src/ybutton.h | 8 -
src/ydialog.cc | 2 +-
src/ydialog.h | 6 -
src/ylabel.cc | 3 +-
src/ylistbox.cc | 2 +-
src/ylistbox.h | 6 -
src/ymenu.cc | 10 ++
src/ypaths.cc | 54 ++++---
src/ypaths.h | 21 +--
src/yprefs.h | 134 ++--------------
src/yscrollbar.cc | 24 ---
src/yxapp.cc | 36 -----
47 files changed, 764 insertions(+), 1121 deletions(-)
commit 16f930c7f1fde21008f934a728693ee71fe9e7d6
Author: Ferdinand Galko <[email protected]>
Date: Wed Jun 14 18:30:52 2017 +0000
Translated using Weblate (Slovak)
Currently translated at 92.4% (257 of 278 strings)
po/sk.po | 30 +++++++++++++++---------------
1 file changed, 15 insertions(+), 15 deletions(-)
commit b0cbfa6643785d692a447475d151f9c5817cd50d
Author: Brian Bidulock <[email protected]>
Date: Tue Jun 13 17:24:00 2017 -0600
update po files
po/ar.po | 2 +-
po/be.po | 2 +-
po/bg.po | 2 +-
po/ca.po | 10 +++++-----
po/cs.po | 2 +-
po/da.po | 2 +-
po/de.po | 2 +-
po/el.po | 2 +-
po/en.po | 2 +-
po/es.po | 2 +-
po/fi.po | 2 +-
po/fr.po | 2 +-
po/he.po | 2 +-
po/hr.po | 2 +-
po/hu.po | 2 +-
po/icewm.pot | 4 ++--
po/id.po | 2 +-
po/it.po | 6 +++---
po/ja.po | 18 +++++++++++-------
po/ko.po | 2 +-
po/lt.po | 2 +-
po/lv.po | 2 +-
po/mk.po | 2 +-
po/nb.po | 2 +-
po/nl.po | 10 +++++-----
po/no.po | 2 +-
po/pl.po | 2 +-
po/pt_BR.po | 2 +-
po/ro.po | 2 +-
po/ru.po | 2 +-
po/sk.po | 2 +-
po/sl.po | 2 +-
po/sv.po | 2 +-
po/tr.po | 2 +-
po/uk.po | 2 +-
po/vi.po | 2 +-
po/zh_CN.po | 2 +-
po/zh_TW.po | 2 +-
38 files changed, 59 insertions(+), 55 deletions(-)
commit 70be6fca17decf2926930b757a30861cb2092fd9
Author: Bert Gijsbers <[email protected]>
Date: Tue Jun 13 21:23:34 2017 +0200
Sort menu entries with collate (strcoll).
src/ymenu.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 5bfca9b16992084c279022c1086e555476131987
Author: Bert Gijsbers <[email protected]>
Date: Tue Jun 13 21:21:38 2017 +0200
Make PRECONDITION usable in isolation by compile time define PRECON.
src/debug.h | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
commit fc7b078869f6c41bba1348fe40ef62ca2747d05f
Author: Bert Gijsbers <[email protected]>
Date: Tue Jun 13 21:20:24 2017 +0200
Use adir to have browse menus sorted. Make file+folder icons not static
but local.
src/browse.cc | 30 +++++++-----------------------
1 file changed, 7 insertions(+), 23 deletions(-)
commit 84ade15ae957a7755993297693e17bdcf712304b
Author: Bert Gijsbers <[email protected]>
Date: Tue Jun 13 21:18:29 2017 +0200
Add support for sorted directory access (locale sensitive).
src/strtest.cc | 48 ++++++++++++-
src/udir.cc | 207 +++++++++++++++++++++++++++++++++++++++++++++++++----
src/udir.h | 58 +++++++++++++++
3 files changed, 297 insertions(+), 16 deletions(-)
commit 38901d1dcafb7e27a829d69e4aaa54605700a048
Author: Bert Gijsbers <[email protected]>
Date: Tue Jun 13 21:15:18 2017 +0200
Add collate to support locale sensitive comparison using strcoll.
Fix an obscure bug in mstring::searchAndReplaceAll (unlikely to occur).
src/mstring.cc | 21 ++++++++++++++-------
src/mstring.h | 1 +
2 files changed, 15 insertions(+), 7 deletions(-)
commit 4e7bc080cdece6170a330d37a97f6942db92b5a4
Author: Freek de Kruijf <[email protected]>
Date: Tue Jun 13 11:18:02 2017 +0000
Translated using Weblate (Dutch)
Currently translated at 100.0% (278 of 278 strings)
po/nl.po | 123 ++++++++++++++++++++++++++++++++++-------------------------
1 file changed, 72 insertions(+), 51 deletions(-)
commit fbd0a796f714781a70f9c825c2cfae5eb31ad762
Author: Bert Gijsbers <[email protected]>
Date: Mon Jun 12 22:46:28 2017 +0200
Add 4 new themes: CrystalBlue, Helix, NanoBlue, Natural.
Don't use anymore: gtk2, nice, nice2, warp3, warp4, yellowmotif.
icewm.spec.in | 27 +-
lib/Makefile.am | 353 +++++++++--
lib/themes/CrystalBlue/close.xpm | 1 +
lib/themes/CrystalBlue/closeA.xpm | 107 ++++
lib/themes/CrystalBlue/closeO.xpm | 109 ++++
lib/themes/CrystalBlue/default.theme | 158 +++++
lib/themes/CrystalBlue/dframeAB.xpm | 1 +
lib/themes/CrystalBlue/dframeABL.xpm | 1 +
lib/themes/CrystalBlue/dframeABR.xpm | 1 +
lib/themes/CrystalBlue/dframeAL.xpm | 1 +
lib/themes/CrystalBlue/dframeAR.xpm | 1 +
lib/themes/CrystalBlue/dframeAT.xpm | 1 +
lib/themes/CrystalBlue/dframeATL.xpm | 1 +
lib/themes/CrystalBlue/dframeATR.xpm | 1 +
lib/themes/CrystalBlue/dframeIB.xpm | 1 +
lib/themes/CrystalBlue/dframeIBL.xpm | 1 +
lib/themes/CrystalBlue/dframeIBR.xpm | 1 +
lib/themes/CrystalBlue/dframeIL.xpm | 1 +
lib/themes/CrystalBlue/dframeIR.xpm | 1 +
lib/themes/CrystalBlue/dframeIT.xpm | 1 +
lib/themes/CrystalBlue/dframeITL.xpm | 1 +
lib/themes/CrystalBlue/dframeITR.xpm | 1 +
lib/themes/CrystalBlue/frameAB.xpm | 9 +
lib/themes/CrystalBlue/frameABL.xpm | 9 +
lib/themes/CrystalBlue/frameABR.xpm | 9 +
lib/themes/CrystalBlue/frameAL.xpm | 7 +
lib/themes/CrystalBlue/frameAR.xpm | 7 +
lib/themes/CrystalBlue/frameAT.xpm | 48 ++
lib/themes/CrystalBlue/frameATL.xpm | 64 ++
lib/themes/CrystalBlue/frameATR.xpm | 64 ++
lib/themes/CrystalBlue/frameIB.xpm | 1 +
lib/themes/CrystalBlue/frameIBL.xpm | 1 +
lib/themes/CrystalBlue/frameIBR.xpm | 1 +
lib/themes/CrystalBlue/frameIL.xpm | 1 +
lib/themes/CrystalBlue/frameIR.xpm | 1 +
lib/themes/CrystalBlue/frameIT.xpm | 1 +
lib/themes/CrystalBlue/frameITL.xpm | 1 +
lib/themes/CrystalBlue/frameITR.xpm | 1 +
lib/themes/CrystalBlue/ledclock/a.xpm | 39 ++
lib/themes/CrystalBlue/ledclock/colon.xpm | 41 ++
lib/themes/CrystalBlue/ledclock/dot.xpm | 43 ++
lib/themes/CrystalBlue/ledclock/m.xpm | 43 ++
lib/themes/CrystalBlue/ledclock/n0.xpm | 41 ++
lib/themes/CrystalBlue/ledclock/n1.xpm | 45 ++
lib/themes/CrystalBlue/ledclock/n2.xpm | 45 ++
lib/themes/CrystalBlue/ledclock/n3.xpm | 45 ++
lib/themes/CrystalBlue/ledclock/n4.xpm | 43 ++
lib/themes/CrystalBlue/ledclock/n5.xpm | 45 ++
lib/themes/CrystalBlue/ledclock/n6.xpm | 41 ++
lib/themes/CrystalBlue/ledclock/n7.xpm | 45 ++
lib/themes/CrystalBlue/ledclock/n8.xpm | 38 ++
lib/themes/CrystalBlue/ledclock/n9.xpm | 41 ++
lib/themes/CrystalBlue/ledclock/p.xpm | 41 ++
lib/themes/CrystalBlue/ledclock/slash.xpm | 45 ++
lib/themes/CrystalBlue/ledclock/space.xpm | 44 ++
lib/themes/CrystalBlue/maximize.xpm | 1 +
lib/themes/CrystalBlue/maximizeA.xpm | 107 ++++
lib/themes/CrystalBlue/maximizeO.xpm | 109 ++++
lib/themes/CrystalBlue/menuButtonA.xpm | 1 +
lib/themes/CrystalBlue/menuButtonI.xpm | 1 +
lib/themes/CrystalBlue/menubg.xpm | 48 ++
lib/themes/CrystalBlue/menusel.xpm | 40 ++
lib/themes/CrystalBlue/minimize.xpm | 1 +
lib/themes/CrystalBlue/minimizeA.xpm | 106 ++++
lib/themes/CrystalBlue/minimizeO.xpm | 105 ++++
lib/themes/CrystalBlue/restore.xpm | 1 +
lib/themes/CrystalBlue/restoreA.xpm | 106 ++++
lib/themes/CrystalBlue/restoreO.xpm | 108 ++++
lib/themes/CrystalBlue/rolldown.xpm | 1 +
lib/themes/CrystalBlue/rolldownA.xpm | 107 ++++
lib/themes/CrystalBlue/rolldownO.xpm | 105 ++++
lib/themes/CrystalBlue/rollup.xpm | 1 +
lib/themes/CrystalBlue/rollupA.xpm | 107 ++++
lib/themes/CrystalBlue/rollupO.xpm | 105 ++++
lib/themes/CrystalBlue/taskbar/collapse.xpm | 45 ++
lib/themes/CrystalBlue/taskbar/desktop.xpm | 37 ++
lib/themes/CrystalBlue/taskbar/expand.xpm | 45 ++
lib/themes/CrystalBlue/taskbar/icewm.xpm | 38 ++
lib/themes/CrystalBlue/taskbar/taskbarbg.xpm | 53 ++
.../CrystalBlue/taskbar/taskbuttonactive.xpm | 54 ++
lib/themes/CrystalBlue/taskbar/taskbuttonbg.xpm | 53 ++
.../CrystalBlue/taskbar/taskbuttonminimized.xpm | 53 ++
lib/themes/CrystalBlue/taskbar/toolbuttonbg.xpm | 53 ++
lib/themes/CrystalBlue/taskbar/windows.xpm | 34 ++
lib/themes/CrystalBlue/titleAB.xpm | 63 ++
lib/themes/CrystalBlue/titleAJ.xpm | 63 ++
lib/themes/CrystalBlue/titleAM.xpm | 66 +++
lib/themes/CrystalBlue/titleAP.xpm | 66 +++
lib/themes/CrystalBlue/titleAQ.xpm | 63 ++
lib/themes/CrystalBlue/titleAS.xpm | 1 +
lib/themes/CrystalBlue/titleAT.xpm | 60 ++
lib/themes/CrystalBlue/titleIB.xpm | 1 +
lib/themes/CrystalBlue/titleIJ.xpm | 1 +
lib/themes/CrystalBlue/titleIM.xpm | 1 +
lib/themes/CrystalBlue/titleIP.xpm | 1 +
lib/themes/CrystalBlue/titleIQ.xpm | 1 +
lib/themes/CrystalBlue/titleIS.xpm | 1 +
lib/themes/CrystalBlue/titleIT.xpm | 1 +
lib/themes/Helix/closeA.xpm | 56 ++
lib/themes/Helix/closeI.xpm | 55 ++
lib/themes/Helix/default.theme | 52 ++
lib/themes/Helix/maximizeA.xpm | 56 ++
lib/themes/Helix/maximizeI.xpm | 54 ++
lib/themes/Helix/menuButtonA.xpm | 56 ++
lib/themes/Helix/menuButtonI.xpm | 54 ++
lib/themes/Helix/minimizeA.xpm | 56 ++
lib/themes/Helix/minimizeI.xpm | 54 ++
lib/themes/Helix/restoreA.xpm | 56 ++