-
Notifications
You must be signed in to change notification settings - Fork 7
/
ChangeLog
5408 lines (3888 loc) · 160 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 ce95a180da34d7fd128bf6672b3ad16a9963c466
Author: Brian Bidulock <bidulock@openss7.org>
Date: Wed Mar 27 00:21:54 2024 -0600
update release files for date change
AUTHORS | 2 +-
ChangeLog | 28 +++++++++++++++++++---------
NEWS | 9 +++++----
README | 6 +++---
README.md | 6 +++---
RELEASE | 2 +-
RELEASE.md | 2 +-
configure.ac | 4 ++--
index.md | 6 +++---
9 files changed, 38 insertions(+), 27 deletions(-)
commit 6a4d0f14f197e654de508c888ab6b08e479fd095
Author: Brian Bidulock <bidulock@openss7.org>
Date: Wed Mar 27 00:18:09 2024 -0600
update release files
AUTHORS | 2 +-
ChangeLog | 129 +++++++++++++++++++++---------------------
Makefile.am | 19 +++++--
NEWS | 164 ++++++++++++------------------------------------------
README | 24 ++++----
README.md | 24 ++++----
RELEASE | 32 +++++++----
RELEASE.md | 32 +++++++----
RELEASE.md.in | 34 +++++++++++
configure.ac | 10 ++--
index.md | 24 ++++----
11 files changed, 233 insertions(+), 261 deletions(-)
commit 0381d5b4410ea97d2623ad0f6c492d333f886741
Author: Brian Bidulock <bidulock@openss7.org>
Date: Tue Mar 26 23:06:00 2024 -0600
new cflags
configure.sh | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
commit f29742822c17591fbbbed44b4a47f6b6e5dc2e03
Author: Brian Bidulock <bidulock@openss7.org>
Date: Tue Jun 6 10:49:10 2023 -0600
do not set zero width or height
src/adwm.c | 4 ++--
src/layout.c | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
commit 89b3b60660320aaa6cb9a59d17cb0578bbbe5357
Author: Brian Bidulock <bidulock@openss7.org>
Date: Tue Jun 6 10:41:07 2023 -0600
update configure.sh
configure.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 4d230293cc479590fb9bafa5a5bfb7534f37e7eb
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri Feb 17 19:41:21 2023 -0700
fight unused direct deps
configure.sh | 3 +++
1 file changed, 3 insertions(+)
commit 6ce9257e739114ac38b74adaac57642dafd0755a
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri Jan 27 22:21:19 2023 -0700
add some XF86 keysyms commented out
data/styles/Default/keysrc | 202 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 202 insertions(+)
commit 0a15a4f978b46a6d9a6eae949d7f9b98635b899e
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri Jan 27 22:20:37 2023 -0700
minor fix for error detected by gcc
src/icons.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
commit fcfb1ffec64033cb7f17fd160e7a987c5c5bfb5e
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri Jan 28 03:30:08 2022 -0700
post-release update
ChangeLog | 25 ++++++++++++++++---------
NEWS | 3 ++-
2 files changed, 18 insertions(+), 10 deletions(-)
commit 35e488c185cf2fb9d6a71e316f7fd6cd82240eee
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri Jan 28 03:28:03 2022 -0700
update release files
AUTHORS | 2 +-
ChangeLog | 156 +++++++++++++++++++++++++++++--------------------------
NEWS | 70 ++++++++++++++-----------
README | 24 ++++-----
README.md | 24 ++++-----
RELEASE | 18 ++++---
configure.ac | 10 ++--
index.md | 24 ++++-----
8 files changed, 175 insertions(+), 153 deletions(-)
commit aacfee40b992ae836c12b0777c503fb528ce5ff6
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri Jan 28 03:25:43 2022 -0700
update copyright dates
LICENSE | 2 +-
src/adwm.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
commit b7f376e9d98b51a17cc1e5315c32ce4db03837e1
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri Jan 28 03:12:41 2022 -0700
update release notes
RELEASE.md | 18 +++++++++++-------
1 file changed, 11 insertions(+), 7 deletions(-)
commit c0f0ca5b2e131264c451a3ae6be3b2eb0c9d1463
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri Jan 28 02:41:41 2022 -0700
reverse scroll wheel on root
data/styles/Default/buttonrc | 4 ++--
doc/adwm-buttons.5.in | 26 ++++++++++++--------------
src/adwm.c | 4 ++--
src/buttons.c | 6 +++---
4 files changed, 19 insertions(+), 21 deletions(-)
commit 24f065acda02abafb5c7767d8686b17c549fe73e
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri Jan 28 01:35:28 2022 -0700
update build flags
configure.sh | 2 ++
1 file changed, 2 insertions(+)
commit d5844d9c1d495d733b999797d259d727d3aa394f
Author: Brian Bidulock <bidulock@openss7.org>
Date: Thu Jan 27 21:41:57 2022 -0700
updates to adwm keysrc file
- fix key conflicts
- add preferred application support
- swap brightness/contrast controls
- add microphone volume and muting controls
data/keysrc | 58 ++++++++++++++++++++++++++++++++++-----------------------
1 file changed, 35 insertions(+), 23 deletions(-)
commit 563ab035c4b36651f3ea158643dcd435e7951866
Author: Brian Bidulock <bidulock@openss7.org>
Date: Thu Jan 27 21:41:39 2022 -0700
use preferred applications
data/styles/Default/keysrc | 36 ++++++++++++++++++------------------
1 file changed, 18 insertions(+), 18 deletions(-)
commit 5ce84d017dc23537f3d481de20e30d99f5ef8d20
Author: Brian Bidulock <bidulock@openss7.org>
Date: Thu Jan 27 19:41:40 2022 -0700
update build flags
configure.sh | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
commit 48f9f60c832926d152cba9797a1bbea859e858e0
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat Dec 11 23:51:23 2021 -0700
post-release update
ChangeLog | 27 +++++++++++++++++----------
NEWS | 3 ++-
2 files changed, 19 insertions(+), 11 deletions(-)
commit a300930287689b3a269a5ec48e8c4e42e88b2d30
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat Dec 11 23:48:48 2021 -0700
update release files
AUTHORS | 2 +-
ChangeLog | 118 +++++++++++++++++++++++++++++--------------------------
NEWS | 71 ++++++++++++++++-----------------
README | 24 +++++------
README.md | 24 +++++------
RELEASE | 9 ++---
RELEASE.md | 9 ++---
configure.ac | 12 +++---
index.md | 24 +++++------
9 files changed, 147 insertions(+), 146 deletions(-)
commit f433118b67814d1e2142a8f538cf3e87f8cd1916
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat Dec 11 23:42:51 2021 -0700
add index.md to distribution script
dist.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 0b35c709e911c9720f932d574b6b559169ed37bc
Author: Brian Bidulock <bidulock@openss7.org>
Date: Thu Dec 9 15:50:24 2021 -0700
add dependencies
README | 96 ++++++++++++++++++++++++++++++++++++++++++++++----------
README.md | 95 +++++++++++++++++++++++++++++++++++++++++++++----------
README.md.in | 75 ++++++++++++++++++++++++++++++++++++++-----
TODO | 6 ++++
index.md | 95 +++++++++++++++++++++++++++++++++++++++++++++----------
5 files changed, 309 insertions(+), 58 deletions(-)
commit 4758fd7dab6e09d0f37937bae21c141156fca291
Author: Brian Bidulock <bidulock@openss7.org>
Date: Thu Dec 9 14:45:00 2021 -0700
prepare to use JSON-C library
configure.ac | 23 ++++++++++++++++++-----
src/Makefile.am | 4 +++-
src/adwm.h | 4 ++++
3 files changed, 25 insertions(+), 6 deletions(-)
commit 491c0a9d567eb22a9dbafe8f0560da7793713d22
Author: Brian Bidulock <bidulock@openss7.org>
Date: Thu Dec 9 14:26:06 2021 -0700
get rid of type punning
src/layout.c | 29 +++++++++++++++--------------
1 file changed, 15 insertions(+), 14 deletions(-)
commit 057dbe0fb950afb47342cc318f79a9a1764caa14
Author: Brian Bidulock <bidulock@openss7.org>
Date: Thu Dec 9 03:46:16 2021 -0700
build index.md
Makefile.am | 3 +++
index.md | 24 ++++++++++++------------
2 files changed, 15 insertions(+), 12 deletions(-)
commit 11b22886f471d8ef866b5cbbfcef3a3c51621db1
Author: Brian Bidulock <bidulock@openss7.org>
Date: Thu Dec 9 02:14:30 2021 -0700
post-release update
ChangeLog | 28 ++++++++++++++++------------
NEWS | 3 ++-
2 files changed, 18 insertions(+), 13 deletions(-)
commit 062e3049f30f0e13ac9d6bb7e94396338506d312
Author: Brian Bidulock <bidulock@openss7.org>
Date: Thu Dec 9 02:13:10 2021 -0700
update release files
AUTHORS | 2 +-
ChangeLog | 365 ++++++++++++++++++++++++++++++-------------------------
NEWS | 72 +++++++----
README | 24 ++--
README.md | 24 ++--
RELEASE | 5 +-
RELEASE.md | 5 +-
configure.ac | 10 +-
8 files changed, 280 insertions(+), 227 deletions(-)
commit 8c10112f02c629162bff1df35082daa8e045d15b
Author: Brian Bidulock <bidulock@openss7.org>
Date: Thu Dec 9 02:04:40 2021 -0700
Revert "don't know why it has to be this way"
This reverts commit 72c9b7423b35212a94738ddbb2f47cf309cd98af.
It doesn't have to be this way.
src/adwm.c | 6 +++---
src/adwm_adwm.c | 2 +-
src/config.c | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
commit f888feffa4d0662d892bce97c974f1e6b70e04d0
Author: Brian Bidulock <bidulock@openss7.org>
Date: Thu Dec 9 02:00:51 2021 -0700
is this the issue???
src/layout.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 72c9b7423b35212a94738ddbb2f47cf309cd98af
Author: Brian Bidulock <bidulock@openss7.org>
Date: Thu Dec 9 01:25:45 2021 -0700
don't know why it has to be this way
src/adwm.c | 6 +++---
src/adwm_adwm.c | 2 +-
src/config.c | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
commit 9c7b6928f0e899102179a5790d346417809b4f40
Author: Brian Bidulock <bidulock@openss7.org>
Date: Thu Dec 9 01:10:48 2021 -0700
cannot use divs for some reason
README | 36 +++++++++---------------------------
README.md | 36 +++++++++---------------------------
README.md.in | 36 +++++++++---------------------------
index.md | 36 +++++++++---------------------------
4 files changed, 36 insertions(+), 108 deletions(-)
commit 583fb3d5bae4d660204c75f7df1407b5831e61f9
Author: Brian Bidulock <bidulock@openss7.org>
Date: Thu Dec 9 01:06:59 2021 -0700
describe screenshots
README | 35 +++++++++++++++++++++++++++++++++++
README.md | 35 +++++++++++++++++++++++++++++++++++
README.md.in | 35 +++++++++++++++++++++++++++++++++++
index.md | 35 +++++++++++++++++++++++++++++++++++
4 files changed, 140 insertions(+)
commit 21d7df0e83dd9bf1c06b54d3dbc485a6babbb0f5
Author: Brian Bidulock <bidulock@openss7.org>
Date: Thu Dec 9 01:00:43 2021 -0700
correct image path
README | 21 ++++++++++-----------
README.md | 18 +++++++++---------
README.md.in | 18 +++++++++---------
index.md | 18 +++++++++---------
4 files changed, 37 insertions(+), 38 deletions(-)
commit fc268ace0f9e89c57a68ba8876669e68b74853e4
Author: Brian Bidulock <bidulock@openss7.org>
Date: Thu Dec 9 00:58:22 2021 -0700
add some sample screenshots
.gitignore | 3 +
README | 66 +++++++++++++-------
README.md | 64 ++++++++++++-------
README.md.in | 64 ++++++++++++-------
index.md | 125 +++++++++++++++++++++++--------------
scrot/airforce_theme.jpg | Bin 0 -> 322707 bytes
scrot/airforce_theme_xeyes.jpg | Bin 0 -> 331169 bytes
scrot/floating.jpg | Bin 0 -> 430645 bytes
scrot/floating_menus.jpg | Bin 0 -> 418168 bytes
scrot/floating_winmenu.jpg | Bin 0 -> 413768 bytes
scrot/tiled.jpg | Bin 0 -> 370681 bytes
scrot/tiled_bar.jpg | Bin 0 -> 379413 bytes
scrot/tiled_decorated.jpg | Bin 0 -> 380951 bytes
scrot/tiled_master_left.jpg | Bin 0 -> 371608 bytes
14 files changed, 211 insertions(+), 111 deletions(-)
commit 7ff4141a58b683a6ab4291caee614264e5bd7bc6
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat Dec 4 16:28:03 2021 -0700
update README with release file
README | 89 ++++++++++++++++++++++++++++++--------------------------
README.md | 88 +++++++++++++++++++++++++++++--------------------------
README.md.in | 88 +++++++++++++++++++++++++++++--------------------------
3 files changed, 141 insertions(+), 124 deletions(-)
commit 36d969c5f7d310a1ed039d8caa686ccdd94cc60d
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat Dec 4 16:16:04 2021 -0700
add RELEASE file to repo
RELEASE | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
commit c01329384baa5abffef648017a56dfdcdedf8173
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat Dec 4 16:10:34 2021 -0700
remove test
README | 2 --
README.md | 2 --
README.md.in | 2 --
3 files changed, 6 deletions(-)
commit d96a524e5d3254468dd55656e7590a1d0f936295
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat Dec 4 02:47:14 2021 -0700
github looks here first
README | 22 ++++++++++++----------
1 file changed, 12 insertions(+), 10 deletions(-)
commit c332d64045d2da15b99801c61e4e99ff45d6a6dc
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat Dec 4 02:44:32 2021 -0700
try a few things with gh-pages
README.md | 22 ++++++++++++----------
README.md.in | 2 ++
_config.yml | 2 +-
index.md | 2 ++
4 files changed, 17 insertions(+), 11 deletions(-)
commit 52a5f9a675950bc8b3a450e6fa407c659d0a4cbc
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat Dec 4 02:15:58 2021 -0700
add gh-pages
_config.yml | 4 +
adwm.svg | 682 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
index.md | 140 ++++++++++++
logo.png | Bin 0 -> 10554 bytes
4 files changed, 826 insertions(+)
commit fb32ed30d8b169a14dbf3b23b2fc5f172c807e82
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri Dec 3 04:25:23 2021 -0700
put traps back
src/adwm.c | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
commit a18bc8bce29d60ee2e72da7d6ff7f37467928737
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri Dec 3 04:22:13 2021 -0700
even better corrections for format-security
src/adwm.c | 2 +-
src/adwm_adwm.c | 2 +-
src/config.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
commit 7025b460f2508065f42b8b20309cf396d18490bc
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri Dec 3 04:00:14 2021 -0700
better corrections to format-security
src/adwm.c | 2 +-
src/adwm_adwm.c | 2 +-
src/config.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
commit 7f33587f5bedd9ec50a9db0071ba8afbc3d794cf
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri Dec 3 02:15:50 2021 -0700
post-release update
ChangeLog | 24 +++++++++++++++---------
NEWS | 3 ++-
2 files changed, 17 insertions(+), 10 deletions(-)
commit e566469493d0099b2c971eb4952e953494009f10
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri Dec 3 02:12:38 2021 -0700
update release files
AUTHORS | 3 +-
ChangeLog | 164 ++++++++++++++++++++++++++-----------------------------
NEWS | 62 +++++++++++++--------
README | 20 +++----
README.md | 22 ++++----
RELEASE.md | 10 ++--
configure.ac | 10 ++--
7 files changed, 147 insertions(+), 144 deletions(-)
commit a02b5e431c74fef1a2b608a3bcd3389866352673
Merge: 92b29d9 ffc97df
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri Dec 3 01:59:51 2021 -0700
Merge branch 'master' of github.com:bbidulock/adwm
commit 92b29d9832d649ae812148903a8053e264c0a3f1
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri Dec 3 01:59:14 2021 -0700
new gnu install file
INSTALL | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
commit 8c2eb43347a1647fc776e7dfa1c7dc09ee51a411
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri Dec 3 01:58:44 2021 -0700
handle -Werror=format-security
src/adwm.c | 2 +-
src/adwm_adwm.c | 2 +-
src/config.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
commit 438f18c2830d50f00616ddb0584c06d555eb4640
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri Dec 3 01:58:06 2021 -0700
test builds for new Arch Linux cflags
configure.sh | 6 ++++++
1 file changed, 6 insertions(+)
commit ffc97df5d9cdf11d28dc75619ddb0a818bcfbf06
Merge: d269f02 8f92e61
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat Aug 7 18:07:03 2021 -0600
Merge pull request #16 from LittleSOiLent999/patch-1
Let users compile it even faster
commit 8f92e610d8a4eb27b47019c64e291d8d1816a330
Author: LittleSOiLent999 <87983064+LittleSOiLent999@users.noreply.github.com>
Date: Sat Jul 31 16:49:46 2021 +0300
Update README.md
Making compiling faster
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit d269f021675a9f8082718ee18267026e0faeac66
Author: Brian Bidulock <bidulock@openss7.org>
Date: Mon Jul 5 19:29:21 2021 -0600
fix a few compile issues
src/adwm.c | 6 ++++--
src/layout.c | 2 +-
2 files changed, 5 insertions(+), 3 deletions(-)
commit bec9879aefb4cdebae3ff3eaa8a1899d472d5f0a
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat May 8 22:27:46 2021 -0600
post-release update
ChangeLog | 24 +++++++++++++++---------
NEWS | 3 ++-
2 files changed, 17 insertions(+), 10 deletions(-)
commit 8d3fb079abcd2ef6e37232cf817b66a650819ec9
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat May 8 22:26:11 2021 -0600
update release files
AUTHORS | 2 +-
ChangeLog | 116 +++++++++++++++++++++++++++----------------------------
NEWS | 79 ++++++++++++++++---------------------
README | 20 +++++-----
README.md | 20 +++++-----
RELEASE.md | 8 ++--
configure.ac | 10 ++---
7 files changed, 120 insertions(+), 135 deletions(-)
commit 20f616826f34d030a08e63626145e0dee634ba5c
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat May 8 22:21:23 2021 -0600
updates for autoconf 2.71
configure.ac | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
commit 4d930dcf681d99f7ce0bb4a33a02bdac211cdc7d
Author: Brian Bidulock <bidulock@openss7.org>
Date: Tue Apr 27 00:59:47 2021 -0600
update copyright dates
LICENSE | 2 +-
src/adwm.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
commit 03441ce017da116ca607d87ad8669a72326c7065
Author: Brian Bidulock <bidulock@openss7.org>
Date: Wed Dec 30 19:06:32 2020 -0700
update configure.ac for autoconf 2.70
configure.ac | 117 ++++++++++++++++++++-----------------------------------
1 file changed, 42 insertions(+), 75 deletions(-)
commit 1591805efe392b54efde196b318d13f01fec1f13
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat Dec 26 12:49:58 2020 -0700
swap brightness keys, add audio mic control keys
data/styles/Default/keysrc | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
commit 99eb8dd530cf61d177db414a9e5bb7ee2467bf4e
Author: Brian Bidulock <bidulock@openss7.org>
Date: Wed Jun 10 00:29:29 2020 -0600
update copyright date
LICENSE | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit c4b08e8c32c200e6e6f5aef3002df5c977a49349
Author: Brian Bidulock <bidulock@openss7.org>
Date: Wed Jun 10 00:22:19 2020 -0600
post release update
ChangeLog | 26 ++++++++++++++------------
NEWS | 3 ++-
2 files changed, 16 insertions(+), 13 deletions(-)
commit 82eaefc15c9e8c76c675041c3168ca1e716763bf
Author: Brian Bidulock <bidulock@openss7.org>
Date: Wed Jun 10 00:20:37 2020 -0600
update release files
AUTHORS | 2 +-
ChangeLog | 334 +++++++++++++++++++++++++++++--------------------------
NEWS | 90 +++++++--------
README | 20 ++--
README.md | 20 ++--
configure.ac | 10 +-
6 files changed, 248 insertions(+), 228 deletions(-)
commit 89e68ad1d265953b18649134edfc8b96a667f718
Author: Brian Bidulock <bidulock@openss7.org>
Date: Wed Jun 10 00:18:03 2020 -0600
update release notes
RELEASE.md | 17 ++++++++---------
1 file changed, 8 insertions(+), 9 deletions(-)
commit d843a4adf78aea1befe0d3bb3f08d0da1c0dccb3
Author: Brian Bidulock <bidulock@openss7.org>
Date: Wed Jun 10 00:15:13 2020 -0600
changes for gcc 10.1 compiler
src/adwm.c | 4 ++--
src/ewmh.h | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
commit abe6cb51225a7b6952694275222aec0359db14e9
Author: Brian Bidulock <bidulock@openss7.org>
Date: Tue May 12 21:45:50 2020 -0600
do not add new window to lists till configured
- do not add a newly managed window to _NET_WM_CLIENT_LIST or
_NET_WM_CLIENT_LIST_STACKING until it is fully configured
- otherwise, libwnck reports the window with non-final geometry
and zero desktop and other incorrect values
- in general, it is good practice to not add to client lists
until all other EWMH/NetWM properties are properly set on the
newly managed window.
- this does not apply to moving windows from screen to screen.
src/adwm.c | 4 ++++
src/ewmh.c | 8 ++++++++
src/ewmh.h | 1 +
3 files changed, 13 insertions(+)
commit 545a966b87ecd5360ccf33611f7c5e7c6f578175
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri May 8 11:59:26 2020 -0600
note some deficiencies
COMPLIANCE | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit 75ee8584e130876e8fcb9bd9b9e320b921960e43
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri May 8 11:57:41 2020 -0600
note compliance to _NET_WM_{MOVING,RESIZING}
COMPLIANCE | 3 +++
1 file changed, 3 insertions(+)
commit fd759e5ebb86a05bfef67067434ae64c079d6332
Author: Brian Bidulock <bidulock@openss7.org>
Date: Wed May 6 04:16:48 2020 -0600
cannot believe these have been reversed so long
src/ewmh.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit acd312320f9203988bc7164ae8005902ed716f8d
Author: Brian Bidulock <bidulock@openss7.org>
Date: Mon May 4 20:59:41 2020 -0600
a few more custom properties for xde-sound
src/adwm.c | 2 ++
src/adwm.h | 6 +++++-
src/config.c | 1 +
src/draw.c | 2 ++
src/ewmh.c | 42 ++++++++++++++++++++++++++++++++++++++++++
src/ewmh.h | 3 +++
src/layout.c | 1 +
7 files changed, 56 insertions(+), 1 deletion(-)
commit 3367ab75e5dcb1c9a8db615b400f7764ba267195
Author: Brian Bidulock <bidulock@openss7.org>
Date: Mon May 4 20:20:44 2020 -0600
correct key conflict
data/styles/Default/keysrc | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
commit 8169d45468d049196e614d1fd9ab32c20098d629
Author: Brian Bidulock <bidulock@openss7.org>
Date: Mon May 4 03:00:11 2020 -0600
use _NET_WM_{MOVING,RESIZING} instead of MOVERESIZE
src/adwm.h | 5 ++++-
src/ewmh.c | 2 ++
src/layout.c | 20 ++++++++++----------
3 files changed, 16 insertions(+), 11 deletions(-)
commit 92ebf66bb9273914c1a25e5c8f22602617146de3
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat May 2 03:36:53 2020 -0600
do better job guessing snap position
src/layout.c | 46 ++++++++++++++++++++++++++++++++--------------
1 file changed, 32 insertions(+), 14 deletions(-)
commit 2567d174fbfd879547c06e4edaf18d257256f2a4
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat May 2 03:27:53 2020 -0600
try to mark location of snap/unsnap
src/layout.c | 62 +++++++++++++++++++++++++++++++++++++++++++++++---------
1 file changed, 52 insertions(+), 10 deletions(-)
commit 2d77c10b22f99685b1613edca2eb75c937ffb0fe
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat May 2 02:54:07 2020 -0600
tell others when move or resize snaps or unsnaps
src/layout.c | 138 ++++++++++++++++++++++++++++++++-----------------------
1 file changed, 80 insertions(+), 58 deletions(-)
commit c69acaafa5e34c1b270fe239781f3dbb74c87794
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat May 2 01:38:33 2020 -0600
do not overwrite _NET_WM_MOVERESIZE_CANCEL
src/layout.c | 2 --
1 file changed, 2 deletions(-)
commit 118005e1a6b9038d8ad7ae3d1469be1340244a9d
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat May 2 01:20:13 2020 -0600
add _NET_WM_MOVERESIZE to win on move or resize
src/layout.c | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
commit 49c01a930dfd6676f7639cce7dfb34ffe1d5d973
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sun Apr 5 01:00:07 2020 -0600
better SNR in logs
src/adwm.c | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
commit bfb5317deae23ab11ffa839a213fb9e20f150047
Author: Brian Bidulock <bidulock@openss7.org>
Date: Tue Feb 11 08:25:50 2020 -0700
whoops
autogen.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 224d56b4d36011a262069aeb8868e496ea6f774c
Author: Brian Bidulock <bidulock@openss7.org>
Date: Tue Feb 11 04:36:04 2020 -0700
post-release update
ChangeLog | 23 ++++++++++++++---------
NEWS | 3 ++-
2 files changed, 16 insertions(+), 10 deletions(-)
commit 6a16a26d042474938f516a145374417efdd850fa
Author: Brian Bidulock <bidulock@openss7.org>
Date: Tue Feb 11 04:34:41 2020 -0700
update release files
AUTHORS | 2 +-
ChangeLog | 24 +++++++++++++++---------
NEWS | 7 ++++---
README | 6 +++---
README.md | 6 +++---
configure.ac | 4 ++--
6 files changed, 28 insertions(+), 21 deletions(-)
commit ac4c74d99c5386635bb72ef129d73e8d55e3c900
Author: Brian Bidulock <bidulock@openss7.org>
Date: Tue Feb 11 04:33:28 2020 -0700
update release files
AUTHORS | 3 +-
ChangeLog | 6590 +++++++++++++++++++++++++++---------------------------
NEWS | 157 +-
README | 20 +-
README.md | 20 +-
RELEASE.md | 17 +-
configure.ac | 10 +-
7 files changed, 3471 insertions(+), 3346 deletions(-)
commit 31d27b10950f85eac3bc0d401c8b53b94dd19935
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat Feb 8 20:39:15 2020 -0700
simpler MDOCDATE and cscope
autogen.sh | 8 ++++++--
configure.sh | 3 ---
2 files changed, 6 insertions(+), 5 deletions(-)
commit c0a54bafed4ae166d6179ea15ac79f70084f6048
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat Feb 8 20:38:44 2020 -0700
some additional documentation
doc/adwm.1.in | 106 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 106 insertions(+)
commit 55974407976a97f76b1cb483869321fc85ea80af
Author: Brian Bidulock <bidulock@openss7.org>
Date: Wed Dec 4 03:14:21 2019 -0700
unset DESKTOP_STARTUP_ID in environment
- this caused some issues with children: the desktop
application is supposed to unset DESKTOP_STARTUP_ID
environment variable so it is not passed inadvertently
to spawned children. Some xde-ctools applications were
taking the time stamp from DESKTOP_STARTUP_ID from when
the window manager was launched and passing this time
stamp to gtk_menu_popup(). The very old time stamp was
keeping the menu from popping.
src/ewmh.c | 3 +++
1 file changed, 3 insertions(+)
commit 4ad0b68cfbb981416f0b6b0b3ed8d6a837bbb5ca
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sun Dec 1 22:19:42 2019 -0700
correct saving screen directives
src/save.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
commit 440317f1cd7765050e74e4ece49236cc5a2c74f1
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sun Dec 1 21:37:30 2019 -0700
honor modality set by MOTIF_WM_HINTS
src/adwm.c | 22 ++++++++++++++++++++++
src/ewmh.c | 10 +++++-----
2 files changed, 27 insertions(+), 5 deletions(-)
commit 68ccd4cd12e1e6539862917762328b485e0d1ef5
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sun Dec 1 17:01:06 2019 -0700
fixup for -Wextra
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit ca18c59e0a9d0303b8beef3e89f79875e0ae2722
Author: Brian Bidulock <bidulock@openss7.org>
Date: Sat Nov 23 15:59:01 2019 -0700
undo some changes in image.c
src/image.c | 76 ++++++++++++++++++++++++++++-----------------------------
1 file changed, 37 insertions(+), 39 deletions(-)
commit 848bae891e4c0f138293889c93118f5f865c5bd5
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri Nov 8 04:53:05 2019 -0700
add missing type
.indent.pro | 1 +
1 file changed, 1 insertion(+)
commit e22a5f727e7778f470cdee85aea318136a7fcde5
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri Nov 8 04:52:17 2019 -0700
handle extra warnings
- mostly signedness comparisons and unused parameters
- some call fallthroughs
src/actions.c | 235 +++++++++++++++++++++++++---------------------------
src/adwm.c | 135 +++++++++++++++++-------------
src/adwm.h | 53 ++++++------
src/adwm_adwm.c | 139 ++++++++++++++++---------------
src/buttons.c | 4 +-
src/config.c | 20 ++---
src/draw.c | 15 ++--
src/ewmh.c | 81 ++++++++++--------
src/ewmh.h | 5 +-
src/ewmhpanel.c | 8 +-
src/icons.c | 12 +--
src/image.c | 93 +++++++++++----------
src/layout.c | 98 +++++++++++++---------
src/layout.h | 12 +--
src/parse.c | 100 +++++++++++-----------
src/render.c | 33 ++++++--
src/session.c | 22 ++++-
src/tags.c | 10 +--
src/texture.c | 49 ++++++-----
src/util.c | 2 +-
src/xcairo.c | 26 +++++-
src/ximage.c | 34 ++++++--
src/xlib.c | 41 +++++++--
23 files changed, 696 insertions(+), 531 deletions(-)
commit dea240d91325d9d2fc0efebcae8ec13e5b4fa011
Author: Brian Bidulock <bidulock@openss7.org>
Date: Fri Nov 8 04:52:01 2019 -0700
turn on extra warnings
configure.sh | 4 ++--