-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathchangelog.upstream
7692 lines (5076 loc) · 233 KB
/
changelog.upstream
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
commit 2b78e9973552423b74b7c77a955a66b348e0dc7e
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Apr 1 08:19:29 2025 -0400
Revert "Add xfce4-notifyd to essential GUI packages"
This reverts commit a67215bd620232a0ce6381cccb37dfa825d73818.
mate-notification-daemon is better since it has not a 32 characters notification message maximum by default.
commit 0691a08b60b95dd85839d2511435796d1aca4b54
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Mar 27 08:41:58 2025 +0000
bumped changelog version
commit 831aeee3e3a3a9d7a14a8e11c5395542c44ad51c
Merge: 6f2dc63 a67215b
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Mar 27 04:00:01 2025 -0400
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/notifyd'
commit a67215bd620232a0ce6381cccb37dfa825d73818
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Wed Mar 26 22:55:50 2025 -0500
Add xfce4-notifyd to essential GUI packages
commit 6f2dc63c81f389f978f9829468d2e9421de144ef
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Mar 26 09:16:01 2025 +0000
bumped changelog version
commit cae49ed13a8c1a3ad5c0586337dba538d9d611de
Merge: 99c6c8c 0a8be74
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Mar 26 04:41:08 2025 -0400
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/sysmaint-panel'
commit 0a8be74c2435ce64a8ee21127a58f585fc963691
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Tue Mar 25 23:33:49 2025 -0500
Add sysmaint-panel to kicksecure-desktop-applications-xfce
commit 99c6c8c8ca6ec6acf0649ea4f2f3fb18fee5b0e1
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Feb 4 09:46:40 2025 +0000
bumped changelog version
commit fc28cfce1a6d7fd282dc4e16b2a5b2557958e770
Merge: 7e302a5 d183520
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Feb 3 06:10:17 2025 -0500
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/fix-thunar-icons-qubes'
commit d1835201d2eb28978a34e86ed404e61f1b43d1e9
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Fri Jan 31 16:13:32 2025 -0600
Fix Thunar icons in Kicksecure Qubes template
commit 7e302a5230b2567c88011402ddfffcabdf784504
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jan 23 16:22:12 2025 +0000
bumped changelog version
commit 05fbdfc3c21a638c94578fc20bdfc0be6759c1b5
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jan 23 11:10:41 2025 -0500
copyright
commit edc5c6e66db6ca62e76fcea5b59a8182a0dc5596
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jan 20 10:24:46 2025 +0000
bumped changelog version
commit 970bdb3b6c492f5752e2c01f3f7ed8317da87348
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jan 20 05:23:52 2025 -0500
Revert "Make kicksecure-qubes-cli and kicksecure-qubes-gui suitable for use with qubes-whonix"
This reverts commit f64178586827b93889aaa8706620c835f378fd2d.
commit 3af969f96c62dd1f14da282964ce60643f934a1f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jan 20 10:09:44 2025 +0000
bumped changelog version
commit dc6a7195b46296e5b0aa7d88b48eeb2e18057841
Merge: 354aa87 f641785
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jan 20 05:06:32 2025 -0500
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/kicksecure-qubes-merge'
commit f64178586827b93889aaa8706620c835f378fd2d
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Wed Jan 15 22:39:25 2025 -0600
Make kicksecure-qubes-cli and kicksecure-qubes-gui suitable for use with qubes-whonix
commit 354aa87c2582848e59fbc5340c231d37e6af01c9
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Jan 15 15:50:26 2025 +0000
bumped changelog version
commit c87514925bafab6fd9144f6c0fe5f026e2e3541e
Merge: e9959be 5ae1e33
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Jan 15 10:44:47 2025 -0500
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/kicksecure-qubes'
commit 5ae1e3328181ca271c7097fd5cdd4e5e47d0479b
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Wed Jan 15 00:20:57 2025 -0600
Improve Kicksecure Qubes metapackages
commit e9959be128ccd521ac5b99a6f74aac0d1fb7dc64
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Dec 31 18:35:46 2024 +0000
bumped changelog version
commit 849eb6e265f025f34abfd3c9a81d042c2afd6fb8
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Dec 31 13:26:18 2024 -0500
copyright
commit aca227d6ecc94b96f792978f6321f075556a3c05
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 7 16:12:57 2024 +0000
bumped changelog version
commit b3cbd6264f0525260380411bf4cab216abf1d73d
Merge: fdf11ea ad51863
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Nov 7 11:06:30 2024 -0500
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/relocate-packages'
commit ad5186308e111cfaa19f0345f0f6012bd713604f
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Wed Nov 6 18:03:08 2024 -0600
Adjust location of packages in metapackages for consistency, add Vim for developer convenience
commit fdf11ea7dfea48a4ebebca5666765173b0d13312
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Oct 30 09:40:49 2024 +0000
bumped changelog version
commit f5c4ee737ae10b07ace3e4dc46ac8cb590fa527f
Merge: 7bcbe79 c94731f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Oct 26 03:40:15 2024 -0400
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/btrfs-support'
commit c94731f8575e1e4d1fb649728d6d454a9e1b132c
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Fri Oct 25 15:33:10 2024 -0500
Add btrfs-progs to kicksecure-recommended-cli
commit 7bcbe794783901d4beb53b3569cd7e81def6f82a
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Oct 3 07:20:39 2024 +0000
bumped changelog version
commit 6e6b90d016edf52d7de88be6aa76e3281820acf8
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Oct 3 02:34:09 2024 -0400
add `gnome-keyring` to `kicksecure-desktop-environment-essential-xfce`
to fix error message
> Error storing passphrase in keyring (The name org.freedesktop.secrets was not provided by any .service files)
https://forums.kicksecure.com/t/error-storing-passphrase-in-keyring-the-name-org-freedesktop-secrets-was-not-provided-by-any-service-files/582
commit d7eb861b7abe66c52240f4e9ffe497ef601d723a
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 25 01:01:36 2024 +0000
bumped changelog version
commit 69f52690c7a9bd9d44d319def9faccf801c8e506
Merge: b0be9cf 61904fd
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Sep 24 20:31:39 2024 -0400
Merge remote-tracking branch 'ArrayBolt3/master'
commit 61904fdf5ae5e57b62ab9ee7e13025a6c6bcd431
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Tue Sep 24 12:45:55 2024 -0500
Fix ISO build failure (missing 's' in accountsservice)
commit e461c9582e4997b93c33831ad40297905867ce94
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Tue Sep 24 12:45:34 2024 -0500
Add xdg-desktop-portal(-gtk)
commit b0be9cfdf4bd8ffc7d3dc0640a962ca9b59a8267
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 18 11:00:06 2024 +0000
bumped changelog version
commit 0312c9acefb97bc80cf127853aa35865b6ba09f7
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 18 06:56:32 2024 -0400
no longer install `alsa-utils` by default
https://forums.whonix.org/t/port-from-pulseaudio-to-pipewire-for-audio-support/16879/45
commit 1f544bfdf9c140603e9e1843101348a3052d172b
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 18 06:51:04 2024 -0400
add `accountservice` to `kicksecure-desktop-environment-essential-xfce`
fixes
> localhost lightdm[911]: Error getting user list from org.freedesktop.Accounts: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Accounts was not provided by any .service files
package `lightdm` `Suggests:` `accountservice`
commit ccf7f1611ab3d90d6364a6f0cf40da50af82887c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 18 06:13:10 2024 -0400
allow `pipewire-media-session-pulseaudio` as an alternative to `wireplumber`
commit 5470f9b8f784433611f1496d46031a64b7c25f84
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Sep 17 06:50:15 2024 -0400
fix ability to install pulseaudio
commit 61081126f7a937bd7052de87928b464cf6c4eb0f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Sep 17 06:48:43 2024 -0400
add `dbus-user-session` to `kicksecure-recommended-cli`
as required by PipeWire
commit 89a2974aa52db1cf941e96b1c4bb84f9f78b9dfd
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Sep 16 18:02:47 2024 +0000
bumped changelog version
commit 663b1a5162c5e950fb8e67375dbcb928dc0654f2
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Sep 16 13:59:08 2024 -0400
add `rtkit` to `non-qubes-audio`
to prevent rtkit related errors in pipewire journal log
commit 9bc00125c833b9d12ea1512135ef37a221455a48
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Sep 16 13:31:24 2024 -0400
add `debian-keyring` to `kicksecure-recommended-cli`
useful to verify a Debian ISO
commit ea99152114f382f5196cf6d606ac44f53f906ebf
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Sep 16 13:30:01 2024 -0400
add `gawk` to `kicksecure-dependencies-cli`
missing dependency by dracut-core
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1081005
commit e3820ba405d13a28247ece70c1637244a540aadf
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Sep 10 14:27:23 2024 +0000
bumped changelog version
commit 91999368c4429ef1a1418220bfa1f3f101de863c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Sep 10 10:27:07 2024 -0400
signed commit
commit bf2f2943022974d082ffba42214d69044cce5148
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Sep 10 14:17:49 2024 +0000
bumped changelog version
commit f82c5aa08391bb57c33978621a5ce160105d6c94
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Sep 10 10:17:38 2024 -0400
signed commit
commit aa49eeed2d7ef2890bcdddb519857f92d1106fa4
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Sep 10 14:13:11 2024 +0000
bumped changelog version
commit 4e3d17c59f3a656e9efce1b3d53ba3a1cc4b2b2c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Sep 10 10:13:01 2024 -0400
signed commit
commit 20578e256d7e694c8dba5fa0c5404dad9b918c3e
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Sep 10 14:07:26 2024 +0000
bumped changelog version
commit ada0d5e6ee034d5287b11162bd789604fc52e4d8
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Sep 10 08:28:33 2024 -0400
* add `mesa-vulkan-drivers` to `kicksecure-desktop-environment-essential-gui`
* add `mesa-utils` to `kicksecure-recommended-cli`
commit 64703b85621da7936581e5d5fb09a9e12892e23c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Jul 28 22:14:23 2024 +0000
bumped changelog version
commit 6e95e417fd3458658acdc1d1f5c8573f7dd56258
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Jul 28 18:13:04 2024 -0400
fix installation of msgcollector-gui
commit 91996c6961f3a58720a8bcd2099f389a4beba8a1
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jul 27 16:02:58 2024 +0000
bumped changelog version
commit 914c8cc1b5e189e0d93c8788a73b393516465155
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jul 27 12:02:43 2024 -0400
comment
commit 0ff75ea87eebd27467500c6a2c679741c2a0856d
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jul 27 12:02:13 2024 -0400
description
commit b26694eb02b0162bd4aa6757a788c7a3627de224
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jul 27 15:48:51 2024 +0000
bumped changelog version
commit 521135e30abb464239bc1160630e38b16d2ea7cd
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jul 27 11:48:13 2024 -0400
remove dependency on hardened-malloc
https://www.kicksecure.com/wiki/Hardened_Malloc#Deprecation_in_Kicksecure
commit 4b22e4483233c7efefad21613be1130779efe846
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jul 27 15:26:14 2024 +0000
bumped changelog version
commit 5308f74fea34544ad7aaa224f668b8459316f1fd
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jul 27 11:25:39 2024 -0400
remove firmware-intelwimax
because unavailable in Debian bookwor and above
commit 96a5672c5e321c1b22f9bc63ceb86307afc7a0fc
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jul 27 15:02:01 2024 +0000
bumped changelog version
commit 45616d7ed02adc9e0244ad7443b66a2c28c20219
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jul 27 11:01:29 2024 -0400
* add non-qubes-enhancements-cli to kicksecure-cli-host
* add non-qubes-enhancements-gui to kicksecure-shared-host-xfce
commit c8c841e699ba4d1a9c30e2a850868db2d03ba9b4
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jul 27 10:52:24 2024 -0400
remove vm-config-dist from non-qubes-enhancements-cli and add to kicksecure-cli-vm
commit 2aa0e54f2d1847c0cee6cde7305996e2f718af25
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jul 27 10:49:52 2024 -0400
rename non-qubes-enhancements-gui -> non-qubes-enhancements-gui
commit 0c4419dc47c734f0a25944d05b4fc221950a1fea
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jul 27 10:47:57 2024 -0400
rename non-qubes-vm-enhancements-cli to non-qubes-enhancements-cli
to make it re-usable on Kicksecure Host ISO
commit 1e6435187893d9c5c0e9164aa37fee9ba6242755
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Jul 26 20:14:52 2024 +0000
bumped changelog version
commit 4756a1b238651944baf12767fa1667324916e792
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Jul 26 16:14:36 2024 -0400
wrap-and-sort
commit 9f6322840f465b6875d039a4f7dd5b84b8fb846d
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Jul 26 16:11:16 2024 -0400
add to `firmware-nonfreedom`:
`atmel-firmware`
`firmware-ath9k-htc`
`firmware-intelwimax`
`firmware-ralink`
commit ffea21c4169bdf7c61cfca129681e2f1fee033a4
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Jul 26 09:38:22 2024 +0000
bumped changelog version
commit 633d17fb9acc4415204f7db4051f4829519fa8cd
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Jul 24 08:24:44 2024 -0400
add `catfish` to `kicksecure-default-applications-cli`
https://forums.whonix.org/t/install-catfish-file-searching-tool-xfce-de-by-default/19837
commit c8acf2e9c206b56b1db5e39e5f384623b252a71c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jul 13 14:58:26 2024 +0000
bumped changelog version
commit 7e1f48731315da5cb6371ac24c154f9f73415a3a
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jul 13 10:19:45 2024 -0400
add `iproute2` (contains `ip`) and `traceroute` to `kicksecure-recommended-cli`
commit e5aafd3be6c933be0b0a9b098b664d42abfdc25d
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Jul 13 07:34:53 2024 -0400
add `distro-info-data` to `kicksecure-recommended-cli`
commit 09bc2e6edc8febfedc2b5062e8a2cec9cca9990b
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Jul 5 20:50:57 2024 +0000
bumped changelog version
commit 2b3ae363e9396b5ea79d7c128ee1f9a5c251595a
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Jul 5 16:35:47 2024 -0400
* add to `kicksecure-recommended-cli`: `pcmciautils`, `usbutils`, `eject`
* add to `kicksecure-shared-host-xfce`: `laptop-detect`, `discover`
commit 0488838af823c2483740f97099e3073b44707203
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon May 20 14:34:34 2024 +0000
bumped changelog version
commit b003e4e78f3ff735ae83f57e86a6925b032ba726
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon May 20 10:11:39 2024 -0400
Revert "install auditd by default"
This reverts commit 306f575c3560b9be14ef26a382eca262a3941e58.
commit 6a26d0f5b7d55b3bf8237a1e334f5502c43ad516
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Apr 25 13:19:02 2024 +0000
bumped changelog version
commit 5ea1388dac8ba39275075cdcbe22e981205a2289
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Apr 25 08:35:55 2024 -0400
add msgcollector-gui, icon-pack-dist to kicksecure-shared-host-xfce
commit ac9468b121ee4cf5b57155bac438ca25c07dd0fc
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jan 22 12:40:10 2024 +0000
bumped changelog version
commit f6b2e2acb125b4f4ef470f58394acb6b0c1f0a71
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jan 22 07:22:21 2024 -0500
add usrmerge to kicksecure-dependencies-cli
commit c1db3d8043e8072b5edefcc0ac3921d5103c709f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jan 1 15:30:41 2024 +0000
bumped changelog version
commit ca0a164deef10648546042d1f448ff862fe238da
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jan 1 10:30:09 2024 -0500
add ddrescueview to kicksecure-shared-host-xfce
commit c177648974ab0f1661f3dc5163eda1f02eb68d35
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jan 1 10:32:12 2024 -0500
fix: ddrescue -> gddrescue
commit 48f443bb612c3523eaec699795cde6677f1f9cd7
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Dec 31 14:46:22 2023 +0000
bumped changelog version
commit bb2bbfe230061de359ebb518ce586e2a7b598fb3
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Dec 31 09:37:12 2023 -0500
typo
commit 4bc5a31cbd981b511c51b289a3d0028d6bc61afa
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Dec 31 09:36:24 2023 -0500
add kicksecure-desktop-applications-xfce to kicksecure-qubes-gui
commit 1f430c224a96af7fd13166d8dc26e89988c9e25e
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Dec 30 02:08:00 2023 +0000
bumped changelog version
commit 9bcbb363c2396ab8f792db953aedaa11453a3d92
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Dec 29 21:07:24 2023 -0500
install by default on host operating system:
gnome-disk-utility,
gsmartcontrol,
smartmontools,
smart-notifier,
nvme-cli,
pv,
lshw,
hwinfo,
ddrescue,
lm-sensors,
psensor
commit bf25d236055ee92d7620725a45a60f61ebdc5c85
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Dec 25 19:18:03 2023 +0000
bumped changelog version
commit c6ff51ed70894b34d90ea8573f2be1cc37b22d5a
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Dec 25 14:17:29 2023 -0500
Revert "add grub-theme-breeze to kicksecure-cli-host-packages-recommended"
This reverts commit ea063e4a5ae7014dfdc6e4f09425f88e04fae2d9.
commit d0927902d2432f33f912bc9c98e89e63a7e34568
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Dec 16 18:24:13 2023 +0000
bumped changelog version
commit 9c44121054d244166b6bb7e44b63c9a5dd47b07b
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Dec 16 13:23:36 2023 -0500
add boot-info-script to kicksecure-recommended-cli
commit 010d3dd9a9d7ea72debdcdb2e0ae023d315067f1
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Dec 11 13:38:31 2023 +0000
bumped changelog version
commit ea063e4a5ae7014dfdc6e4f09425f88e04fae2d9
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Dec 11 08:37:53 2023 -0500
add grub-theme-breeze to kicksecure-cli-host-packages-recommended
commit d3e623c20acccf2c45877929ea64a1e43529d493
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Nov 20 13:12:46 2023 +0000
bumped changelog version
commit 7af6c227666a90e389964082a1aab9a2e6a4575f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Nov 20 04:47:19 2023 -0500
wrap-and-sort
commit 4f8fc42a52077ecd2f3528f5bcfaea013e126383
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Nov 20 04:39:12 2023 -0500
add libpam-tmpdir to kicksecure-recommended-cli
https://github.com/Kicksecure/security-misc/pull/147
https://github.com/Kicksecure/security-misc/issues/169
commit bdcc84324441a0702ebc1134cebcafd3865de900
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Nov 11 20:17:02 2023 +0000
bumped changelog version
commit e8e32d443f206ef8e11fc6acefdd2011c22cd034
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Nov 11 13:41:27 2023 -0500
change license to AGPL-3+
https://forums.whonix.org/t/license-change-to-agplv3/17455
commit 225b5e19031f47dfad699b8332b7ade64157e267
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Oct 21 10:53:17 2023 -0400
bumped changelog version
commit b66485f3178c87a16bb2508e0f813a6f64de90ff
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Oct 21 10:52:57 2023 -0400
pipewire-audio | pulseaudio
to avoid held back packages
commit 15bab4110ef413e1407fe65ea45ed8e0cdb30d42
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Oct 21 10:45:41 2023 -0400
refactoring
commit 2f4292f0d7aefa7385fcbac2b4b7dee6e33880f7
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Oct 21 10:45:07 2023 -0400
refactoring
commit 7631919a4b06d42f0946135a9f29da51e925ad51
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Oct 21 10:44:34 2023 -0400
remove
Conflicts: pulseaudio
Replaces: pulseaudio
Provides: pulseaudio
commit be722ab7c8fab9f99592e56dbefeab71018177d8
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Oct 21 10:38:31 2023 -0400
bumped changelog version
commit ac6603e4dc8a08835e0bf54b9a315b8d4ab44fb8
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Oct 21 10:38:11 2023 -0400
non-qubes-audio: Provides: pulseaudio
commit 96520e1397495a6761ce6fa271dda099015bf8fb
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Oct 21 10:34:21 2023 -0400
bumped changelog version
commit 657a406e55da1b442da5b5877d7cb5dbd99747da
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Oct 21 10:33:55 2023 -0400
non-qubes-audio: Replaces: pulseaudio
commit 65d24570ea0a3530aa672f18bf4080acebbbdb8d
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Oct 21 10:28:49 2023 -0400
bumped changelog version
commit a33aac0d01b894f77c703bd772e281bd3e1fa859
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Oct 21 10:27:40 2023 -0400
non-qubes-audio: Conflicts: pulseaudio
commit 774fc0059d5a91f2fe7cf82d7ea93f8609e50f37
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Oct 9 00:34:00 2023 -0400
bumped changelog version
commit 3990de289db252719763131e1ea8274a5fc98af0
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Oct 9 00:32:26 2023 -0400
port `non-qubes-audio` from `pulseaudio` to `pipewire`
https://forums.whonix.org/t/port-from-pulseaudio-to-pipewire-for-audio-support/16879
commit d44cc7ad409a18dcf31c5f971ae9e28e01a80fa0
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jul 20 07:38:48 2023 -0400
bumped changelog version
commit 69281ee7adbace3a84b59cf35b00bdbbaa11f82e
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jul 20 07:34:09 2023 -0400
drop dependency on busybox since no longer needed
since Kicksecure was ported to dracut
https://forums.whonix.org/t/note-installing-waydroid-will-remove-busybox-which-is-a-dep-to-kicksecure-dependencies-cli/16910
commit 0e914831fc28835fb6452cc1d3db9b76163ef34e
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jul 17 11:45:29 2023 -0400
bumped changelog version
commit f4e894a14a9909b914339520054feed3a5176f0e
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jul 17 11:18:21 2023 -0400
Kicksecure
commit 06ceeee7ab7359645a700055e76fa819b07786e1
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Jul 14 07:30:35 2023 -0400
bumped changelog version
commit 8abbd6c2180fd0fa590af351f93d190ccff7a574
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Jul 14 07:30:10 2023 -0400
fix
commit fedc3ef9939651c19890533f4ed9b03ea35f70f0
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Jul 14 07:27:38 2023 -0400
bumped changelog version
commit 630466b2568791bb83581d5c69412212920fae93
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Jul 14 07:27:12 2023 -0400
fix, install `tirdad` by default on Kicksecure Hosts
commit c1282185acac784c82727bb0953fafdb2c473cd9
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Jul 14 07:19:44 2023 -0400
refactoring
commit 2c791a411dcc5ec6f0a4171cdbd18a3b9914df87
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Jul 5 10:17:33 2023 -0400
bumped changelog version
commit 306f575c3560b9be14ef26a382eca262a3941e58
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Jul 5 10:09:46 2023 -0400
install auditd by default
useful for aa-logprof
commit 38841b3add2c2a780992fd8ffa4bc9076996c51d
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Jun 23 10:12:10 2023 +0000
bumped changelog version
commit 9ce618d595e965ce1e2f7a45be630733fab22015
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Jun 23 10:05:35 2023 +0000
lightdm
https://forums.whonix.org/t/display-manager-lightdm-gdm3-sddm-or-no-display-manager-startx/12457
commit 736cdb86e707a62452176cc2dd0560f945d6436f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Jun 21 10:03:45 2023 +0000
bumped changelog version
commit 1e28a3cb7a12dc11bb1c8ed8ca6784d6e50c9e53
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Jun 21 09:50:38 2023 +0000
remove dependency on `apt-transport-https` because now integrated in `apt`
commit 88b2c8b9f70eac4fe50ebe268983821368ef5cea
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Jun 21 09:48:45 2023 +0000
`policykit-1` -> `polkitd`, `pkexec`
commit 2c7d47bc6737c0a76140ec39387422d5bfe009e2
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Jun 21 09:30:28 2023 +0000
bumped changelog version
commit c6bd70c5be32368907bd16a3629b2832871b7aaa
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Jun 21 09:11:28 2023 +0000
bookworm
commit 28cb9772e41e08150ab8069de69b627c0f183c4e
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Jun 16 10:58:43 2023 +0000
bumped changelog version
commit 14951054611f08ccb7b81320b663659310e667e3
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Jun 16 10:49:02 2023 +0000
readme
commit c61e14a8eaca69dec0d627bcd67205c18c38c505
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jun 15 17:01:58 2023 +0000
bumped changelog version
commit 5949f79132211463dc52057d76f1be4b0d01630c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Jun 14 13:14:45 2023 +0000
copyright
commit 8ad329038df28491a18fdda6e5b9f12a6b107747
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Jun 14 09:57:04 2023 +0000
bumped changelog version
commit a16af601eb1e185d881135886044ca69a89a8360
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Jun 13 08:28:06 2023 +0000
bookworm
commit 028fb83cae60c11a3c4f0e65e869c49fa50d6d7c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jun 12 17:54:42 2023 +0000
bumped changelog version
commit 96ca44c107b2dddad3e58d9d01a6efdcd6403b20
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jun 12 16:22:29 2023 +0000
Standards-Version: 4.6.1.0
commit aac5e498c532c7e5d0019d4f385c774fe39c6f89
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jun 12 15:20:44 2023 +0000
bumped changelog version
commit c0eb37d6406636efd6f8146ddce2d876c81ead52
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Jun 12 14:51:58 2023 +0000
update copyright year
commit ce7e1add0029e88c677c3e7f7a22f6ac180f8c1f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat May 13 08:46:28 2023 +0000
bumped changelog version
commit 23599d314786ef9d6b5a265b1882bb583c0e5a45
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat May 13 08:44:09 2023 +0000
install xscreensaver by default
by adding `xscreensaver` to `kicksecure-shared-host-xfce`
https://forums.kicksecure.com/t/kicksecure-no-screen-lock-installed/221
commit d29ed4545a5a344b69b8005f7703a7df5a84bd21
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri May 5 17:10:11 2023 +0000
bumped changelog version
commit 295ebf289e3d19fca367c802c6d8f81b0d353b16
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri May 5 17:08:30 2023 +0000
add `fuse` to `kicksecure-default-applications-cli`
because `fuse` is required when
* running `flatpak` as user,
* by appimages.
https://forums.whonix.org/t/installation-of-monero-gui-from-flatpak-fails-without-sudo-su/16616/
commit 8317fa05bd8bf8cae517eeca2b2ad75eb2dd6361
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Mar 18 07:24:13 2023 -0400
bumped changelog version
commit 36dc33aaaf635fafaead2beecb3a883b2cae6404
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Mar 15 19:37:43 2023 -0400
add torsocks to kicksecure-recommended-cli
useful to download from onions using curl
(such as Linux installers)
commit 6a878dc0465906885cd8b649358a2f8aebd77582
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Mar 15 12:00:59 2023 -0400
bumped changelog version
commit 1016e0bb3b9616ec6414fcb2c1171044d0c195ba
Author: Patrick Schleizer <adrelanos@whonix.org>