-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathchangelog.upstream
More file actions
4916 lines (3311 loc) · 142 KB
/
Copy pathchangelog.upstream
File metadata and controls
4916 lines (3311 loc) · 142 KB
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 80434091cb836ac1fe4389d571ce53cf051dadac
Merge: aea866a f35fd45
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Aug 12 03:03:04 2026 -0400
Merge remote-tracking branch 'refs/remotes/ArrayBolt3/arraybolt3/trixie'
commit f35fd45a21cabddccb1af3b1d8175d5aa8858a75
Author: Aaron Rainbolt <arraybolt3@gmail.com>
Date: Sun Aug 9 12:23:10 2026 -0400
Add TODO, shorten comment
commit 84418d41fa684678ff8c6917ba3d904e34a4f223
Merge: c26ffd8 f60068b
Author: Aaron Rainbolt <arraybolt3@gmail.com>
Date: Sun Aug 9 12:10:18 2026 -0400
Merge branch 'ai' into arraybolt3/trixie
commit f60068b191c7542026a30d1ca510d497d53f49ed
Merge: f38e8fc c867a92
Author: claude (dev163 38f9745c-aed1-4fb4-b6ae-9899f20f8de2) <noreply@anthropic.com>
Date: Fri Aug 7 13:40:10 2026 -0400
Merge org-ai-assisted/master into ai
The branch was created from a stale local master, so its PR diff showed
master's newer commits -- including a changelog version bump -- as REMOVALS.
Merging rather than rebasing, per the no-history-rewrites rule.
commit f38e8fc294d700a68990f7f1fd361fadc9b0e935
Author: claude (dev163 38f9745c-aed1-4fb4-b6ae-9899f20f8de2) <noreply@anthropic.com>
Date: Fri Aug 7 13:39:56 2026 -0400
setup-wizard-dist: R-010 strict mode, and fix a printf typo in both error paths
The launcher checks that /usr/bin/setup-wizard-dist exists and is executable,
then runs it.
REAL BUG: both guards printed with '%s\m'
--------------------------------------------
printf has no '\m' escape. Measured:
printf "%s\m" "MESSAGE" -> MESSAGE\m (and no newline)
So both error messages -- "does not exist!" and "not executable!" -- reached the
user with a literal backslash-m appended and no line break, running straight
into whatever printed next. Both are now '%s\n'.
Otherwise just the preamble; there are no nounset traps and no deliberate word
splitting in the file.
Testing
-------
Gate exit 0 in an ISOLATED checkout.
1 same, 2 expected-differ, 0 failing
Three cases: the target present and executable, missing, and present but not
executable. The two guard cases are ASSERTED rather than compared -- the test
requires the OLD output to contain the literal '\m' and the NEW output not to,
so it fails if the typo returns or if it was never there to begin with.
commit c867a9258462796e3b805e70393b4837a167233d
Merge: aea866a ef53ba0
Author: assisted-by-ai (Bot Account) (Machine Account) <228987186+assisted-by-ai@users.noreply.github.com>
Date: Sat Aug 1 05:01:58 2026 -0400
Merge pull request #2 from org-ai-assisted/ai
add CodeQL consumer workflows (actions, python)
commit ef53ba011a8556e7ec8b0005b91943ab907efc61
Author: claude (dev142 b93fb2c6-e15f-4d45-8566-f3ded893b70e) <noreply@anthropic.com>
Date: Fri Jul 31 12:57:56 2026 -0400
add CodeQL consumer workflows (actions, python)
- Replaces GitHub default-setup CodeQL (web-UI state, no file
representation) with the org's file-based consumer wrappers.
- Byte-identical copies of
developer-meta-files/consumer-templates/.github/workflows/.
- No .github/dm-consumer.yml needed: consumer-codeql-actions.yml
passes no dm-consumer-section, and codeql-python's section is
optional (ci/dm-consumer-load.sh soft-skips when absent).
- queries stays the reusable's default security-and-quality,
a superset of the security-extended suite default setup used.
Generated with assistance from Claude Code.
commit aea866a38bfaed40a68da2dd855757e5e3e162ef
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Jul 21 11:09:18 2026 +0000
bumped changelog version
commit f2fdfda72d15c24e118a0291a83e3153eb1cca89
Merge: c26ffd8 e546946
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Jul 21 06:24:29 2026 -0400
Merge remote-tracking branch 'refs/remotes/org-ai-assisted/master'
commit e54694606f4d5bf50ca1526ca28250d2d865bfdf
Author: claude (dev92 b0a94b99-0fcd-41d5-b10b-58aaf93a2ec8) <noreply@anthropic.com>
Date: Sat Jul 18 07:53:55 2026 -0400
CI: add weston + qtwayland5 for the Wayland headless render test
The headless render test now covers Wayland as well as X11 and does not skip,
so the CI container must provide weston and the qtwayland plugin in addition to
xvfb + the xcb libraries.
## AI-Assisted
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
commit 51b75ef238e98685f4eabf5fe6fea813c6df51fc
Author: claude (dev92 b0a94b99-0fcd-41d5-b10b-58aaf93a2ec8) <noreply@anthropic.com>
Date: Sat Jul 18 07:36:32 2026 -0400
CI: install xvfb + xcb libs for the headless render test
The dist-ai suite now includes a headless render test that drives the wizard on
a real (virtual) X server via xvfb-run + the xcb platform plugin. Add xvfb,
xauth, and the Qt xcb runtime libraries so CI runs it rather than skipping.
## AI-Assisted
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
commit e76c1d7045650fade4ae31955fbb27c1c663ba3b
Author: claude (dev92 b0a94b99-0fcd-41d5-b10b-58aaf93a2ec8) <noreply@anthropic.com>
Date: Sat Jul 18 07:12:37 2026 -0400
Opt in to dist-ai CI test suite
Add the universal consumer-dist-ai-tests.yml wrapper (byte-identical from
developer-meta-files) so this repo's comprehensive suite (setup-wizard-dist-tests,
in org-ai-assisted/dist-ai) gates PRs and pushes to master. dm-consumer.yml
supplies python3-pyqt5 for the offscreen PyQt5 tests and checks out
helper-scripts (the wizard imports guimessages from it). CLAUDE.md / AGENTS.md
point at where the tests live.
## AI-Assisted
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
commit 15535e4117b43ff64a0e0040a770478c7d325fbb
Author: assisted-by-ai (Bot Account) (Machine Account) <228987186+assisted-by-ai@users.noreply.github.com>
Date: Sat Jul 18 06:54:58 2026 -0400
Hide Back button when the wizard has only one page (#1)
Set the NoBackButtonOnStartPage option when the wizard has a single page, so the Back button (which has nowhere to go) is hidden reliably and survives QWizard rebuilding its button layout on show(). Verified live with PyQt.
## AI-Assisted
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
commit c26ffd85d05dc022803a985da95e0dde5fc4541b
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed May 20 22:21:47 2026 +0000
bumped changelog version
commit 15b69401e3689bfd2834538e08774c972d7944bf
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed May 20 16:57:15 2026 -0400
genmkfile uch
commit e38cb4eda62648890d28bb3c5c79181a57274def
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Mar 28 09:54:02 2026 +0000
bumped changelog version
commit bcdd23889aaf233c47fe4a940e72ac3b15dd4d24
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Mar 28 05:30:50 2026 -0400
readme
commit c319c37c83a3f234226474dcdcd78eab087015ea
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Mar 28 05:27:03 2026 -0400
signed commit
commit 62eecba727a963bec3e14e0d0870ccb0fdf087cb
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Nov 14 06:22:22 2025 +0000
bumped changelog version
commit 9d8c43223e4006d9ea0be15722cbe1a92b317d35
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Nov 14 00:48:28 2025 -0500
port to package-installed-check
commit 208fd59db05ed3cde90a69d494351f622d700a9f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Nov 14 00:45:19 2025 -0500
refactoring
commit 4527ef576aac4358347518f6fe76d265a5ddda52
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Oct 29 09:36:41 2025 +0000
bumped changelog version
commit b2ff109981063bdc1392353e5f9fcfb42e86fc63
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Oct 29 05:34:11 2025 -0400
output
commit acebbd84496562fb4587713caca73f359d48ce49
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Oct 29 05:33:44 2025 -0400
lower debugging
commit a3529c056571f2e4718ddaeed55788a8c7ef38a2
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Oct 29 05:31:27 2025 -0400
autostart setup-wizard-dist in case file
`/etc/systemcheck.d/autostart` or
`/usr/local/etc/systemcheck.d/autostart`
exits
(developers feature)
commit 8753c440ad3bcc2c8df45dab195f809cfd9ca8d6
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Oct 29 05:25:42 2025 -0400
skip finish page inside Qubes
commit dc0551a645a145c408888cda1f1b890acd469ef1
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Oct 29 05:24:40 2025 -0400
refactoring
commit 77e005e59ec03aea76d9a31a765f03361e79a41f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Oct 29 05:21:18 2025 -0400
comment
commit ef5337b959303ca0f6b46a580efe961845a18522
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Oct 29 05:14:11 2025 -0400
output
commit f70c4e696a2b0259e122cacf1eb180028ff29152
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Oct 29 05:09:03 2025 -0400
show which done file has been found
commit 8e7a28f45e2a5c51faf72cad7562a93e25619433
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Oct 29 05:04:37 2025 -0400
fix
commit 6c008876f49ffe5abe115bff5465d4c9c0930e4e
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Oct 29 05:04:07 2025 -0400
output
commit 5a3ec4e9dc5d08522dd2a551722dac4bb3ce8085
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Oct 29 05:02:54 2025 -0400
output
commit fbf68400556f4ad579bdcb85f3e51c7d40ddc4f1
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Oct 29 05:01:26 2025 -0400
debugging
commit 5749e22efff5c1809e1b23ea21ccc46fcb72897b
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Oct 29 05:00:21 2025 -0400
refactoring
commit 06c7f5a3b673a05ac51eaec6338df52449acb4aa
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Oct 29 04:58:32 2025 -0400
refactoring
commit 05da7d135f4a78e62cfe558484ce17e4c07bc2de
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Sep 28 21:10:27 2025 +0000
bumped changelog version
commit 1d5fc3f065c37b1052c72534144c002abc24cbeb
Merge: 739add8 3395e19
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Sep 28 17:00:58 2025 -0400
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/trixie'
commit 3395e197287a26bf6d717d2bca72ef001f67624d
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Sun Sep 28 14:16:58 2025 -0500
Fix keyboard layout change instructions for Whonix-Gateway
commit 739add8fffcda280e2e5491599273f41551b134e
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Sep 2 15:26:59 2025 +0000
bumped changelog version
commit 8de53237997929f56e5d569a5a484ecdd5e6fa02
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Aug 27 19:32:14 2025 +0000
bumped changelog version
commit 1f8456fce9e398f440163aadafbbf59fd09cbc9a
Merge: cd490d5 f8598d6
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Aug 27 12:34:43 2025 -0400
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/trixie'
commit f8598d65abec469cc4c0893df733d639bfbacfc5
Merge: 0bb8802 cd490d5
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Tue Aug 26 19:20:47 2025 -0500
Merge branch 'master' into arraybolt3/trixie
commit cd490d518228ba908941a662e1ed0577846e24ed
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Aug 26 09:17:24 2025 +0000
bumped changelog version
commit cc624f198d3b12b0c1fb2664a346979c82fc42f3
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Aug 26 05:17:22 2025 -0400
re-generate man pages (generated using "genmkfile manpages")
commit 0bb880276eeeb759921a48e81d9cff0b1d33000b
Merge: c7b8eec 2d38805
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Thu Aug 21 20:12:07 2025 -0500
Merge branch 'master' into arraybolt3/trixie
commit c7b8eec32115787ecbd11a3b7662a9f73274a482
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Thu Aug 21 18:45:20 2025 -0500
Adjust keyboard layout change instructions for labwc
commit 2d3880558688b582eeddb4474593212efc3cc977
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Aug 20 06:57:30 2025 -0400
bumped Standards-Version
commit b9f19d1ab3b1abf76729daec10a52289fc2d3383
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Aug 20 06:25:36 2025 -0400
readme
commit 2428ed5afedf4752e519ee51b1f7663fb49792a8
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Tue Aug 5 22:58:07 2025 -0500
Port to Trixie.
commit 0c2b96a942e56d92fd877705d548925229f78977
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jul 24 06:45:38 2025 +0000
bumped changelog version
commit 523a737136f31ebb1172a064c72d30c41d95206e
Merge: 9838c92 e96a67b
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jul 24 02:23:02 2025 -0400
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/browser-choice'
commit e96a67be759c36485a06de446d602e4b107bb3af
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Tue Jul 22 21:06:41 2025 -0500
Add mention of browser-choice for Kicksecure, fix outdated boot mode string
commit 9838c92b8a0e23e3aa481e4cbb291f1fc13a900b
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed May 7 06:42:09 2025 +0000
bumped changelog version
commit 9546447b0335f0b111c5ddb7e26eced9683c2063
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed May 7 02:36:44 2025 -0400
python -su
commit ac82475bbfcf97b431462ef9b1ad9d9e5f55aaad
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Apr 25 11:19:48 2025 +0000
bumped changelog version
commit 51e5ddefb57c94f091590ab454f222afcdb6bb10
Merge: d47cbc4 764eeca
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Apr 25 07:19:11 2025 -0400
Merge remote-tracking branch 'github-kicksecure/master'
commit 764eeca9e56fbea163e95dd422bc8d5bdb305565
Merge: d47cbc4 03ed73a
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Apr 25 07:18:28 2025 -0400
Merge pull request #1 from JeremyRand/distutils
Remove `distutils` dependency
commit 03ed73a7c2bb55def42357dd3c6f35da489c9e54
Author: Jeremy Rand <jeremyrand@danwin1210.de>
Date: Fri Apr 25 04:32:19 2025 +0000
Remove distutils dependency
distutils was removed in Python 3.12, per deprecation in PEP
632. It is not present in Debian Trixie and higher.
Removing distutils from Kicksecure dependencies fixes issues
when distro-morphing Debian Trixie and higher to Kicksecure. It
is also necessary for installing Kicksecure on ports-only
architectures such as ppc64.
As best I can tell, setup-wizard-dist is not actually using
distutils anywhere, so no code changes or new dependencies
should be necessary. If I am mistaken on this,
python3-setuptools is supposedly a drop-in replacement.
commit d47cbc4a068a23108b61b2e9d1f1cd3007d895f6
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Apr 10 11:38:42 2025 +0000
bumped changelog version
commit 3c35ea51247615d72c0f23a351397eed10fe8736
Merge: 2c3c9b4 f3540f9
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Apr 10 06:10:53 2025 -0400
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/rename-boot-modes'
commit f3540f95d4896e66f3e618f04ac2a4b47ccae304
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Wed Apr 9 20:51:46 2025 -0500
Mass-change "PERSISTENCE mode USERNAME" to "PERSISTENCE Mode - USERNAME Session"
commit 2c3c9b4370aedb6cc2ce326edaebb68b3fde594e
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Apr 9 15:16:25 2025 +0000
bumped changelog version
commit 90ab7a980899e92ddfadc647aaf31f094e3ca552
Merge: 78774f3 2df7da1
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Apr 9 11:03:00 2025 -0400
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/no-assume-sysmaint'
commit 2df7da1a3ceee5e9cdd7d78095f370c46f836599
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Tue Apr 8 19:15:00 2025 -0500
Don't assume user-sysmaint-split is installed
commit 78774f394c82dda556f34f20a759c5b17f27c056
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Mar 28 14:45:35 2025 +0000
bumped changelog version
commit 5d9057ae146f578cdf364fcc83fa090b40cc3d61
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Mar 28 09:13:06 2025 -0400
typo
commit df23aa44289858e81f3195e53114f042cb19084a
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Mar 27 12:38:58 2025 +0000
bumped changelog version
commit ef3775be3580400a03fa222eb90f662a1f5edb7c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Mar 27 05:01:35 2025 -0400
comment
commit f9225813424170e8bad8b890ed1c27640be52753
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Mar 27 04:57:41 2025 -0400
simplify Kicksecure version detection code
commit 6b814bdc14db33646591584d16697a2698160758
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Mar 18 11:42:43 2025 +0000
bumped changelog version
commit 001fad6a4da1c8a415eb8acabe321e3b6b733ad6
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Mar 18 07:42:24 2025 -0400
disable until fixed in Kicksecure
commit 748f2043eeb0729484508e6cc0bf23213932ee64
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Mar 18 07:40:25 2025 -0400
improvements
commit c13052b576a8339952103624547db4b2ea3b7134
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Mar 17 10:46:08 2025 +0000
bumped changelog version
commit 0bd48e680f74873615982bab56dfec0f1b6f66f3
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Mar 17 06:42:42 2025 -0400
output
commit ecc56979860ade417f028ea25a663968d2d0c0d1
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Mar 17 06:41:57 2025 -0400
cleanup
commit 551cf7932c232039493f3efa20f3a135dc8dfa8f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Mar 17 06:30:38 2025 -0400
fix
commit 75603532453a98d507700d8e00f6e62a60884e64
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Mar 17 06:29:14 2025 -0400
comment
commit a3e5261fae507e662a49439d165276ffa01ea30a
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Mar 17 06:27:16 2025 -0400
do not start in live mode
commit e256f82f417c8704c228601517786cbe1399187e
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Mar 17 06:22:51 2025 -0400
cleanup
commit ddd46e099e5f68aa384895c94d2baff2e4c1dbea
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Mar 17 06:21:56 2025 -0400
identd style
commit 68927e90bfab3abd66291a4198cf6c812877ea22
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Mar 17 06:21:16 2025 -0400
cleanup
commit 0112339c0f2147a18ef9eb5177aa8d9faaa2dfe3
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Mar 17 06:20:30 2025 -0400
identd style
commit 2c50b55a654089e40127a550ca3859aa816db85d
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Mar 17 06:16:10 2025 -0400
comments
commit 3164c02fd90aaf93d6f75476c9df2bc4e48a92e2
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Mar 17 06:14:46 2025 -0400
improve detection in which Kicksecure version to run setup-wizard-dist
commit 02fa9711992b04a86468b8c1b1318d5f0c59bd0a
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Mar 17 08:53:38 2025 +0000
bumped changelog version
commit affe9444696fc2cf720622d70365fa4f92cf7363
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Mar 17 04:15:39 2025 -0400
improve grub-live detection
commit 3d664cc9d664914fa6fff07020bfa491742f9269
Merge: ef4cbc3 2a47963
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Mar 17 02:59:47 2025 -0400
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/autologin'
commit 2a47963ae240df9f940b5a9d5342adf7cdcf18c7
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Sun Mar 16 13:42:59 2025 -0500
Enable wizard for Kicksecure, refuse to run in live mode
commit ef4cbc316f59b0e38faf54ede664d28e9a5787b4
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Mar 15 10:52:40 2025 +0000
bumped changelog version
commit 5035bbf4c0dc3b774a332c7044ed8f288c3822b9
Merge: 60a110b 40ce9c2
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Mar 15 06:42:38 2025 -0400
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/autologin'
commit 40ce9c2ce415c0ca48f3d6fecb2427a058c39439
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Thu Mar 6 21:35:52 2025 -0600
Add autologin documentation, make links actually work rather than just wiping the text view when clicked
commit 60a110bfa9c4d750baaa22cf2fa8e5932e80efa9
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Feb 6 17:41:57 2025 +0000
bumped changelog version
commit b37304988cdb9baee535567fa7abbe12973dda4f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Feb 6 12:37:29 2025 -0500
remove reverted finish_page_sudoless
commit 1a01b6a7c621b12d0fac943349f6911a7555ad0e
Merge: 2daebc9 c9ec529
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Feb 6 12:33:52 2025 -0500
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/fix-spacing'
commit 2daebc9071e87de5155780386673384608cbd1e0
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Feb 6 16:22:36 2025 +0000
bumped changelog version
commit f4be501d8e50146ad94a54b32712b8ea7d8fabe9
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Feb 6 10:47:40 2025 -0500
autopep
commit c400b0a77f2cb967dc7042767d8240a4b0729abb
Merge: 9c970a3 a2f72bd
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Feb 6 10:37:28 2025 -0500
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/sudoless'
commit 9c970a31d2c0ab0c6f3aa3d2d12e1341ee13e8c2
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jan 23 16:29:57 2025 +0000
bumped changelog version
commit dae2c60741158311b19a8230458c93bb23907397
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jan 23 11:12:32 2025 -0500
copyright
commit c9ec529ea49146d453517256f4a6f33df75062f6
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Tue Jan 21 22:14:17 2025 -0600
Normalize setup-wizard-dist.py spacing to four spaces
commit a2f72bdd7e04fb46727624fbc6415b8d01212743
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Thu Jan 16 01:13:31 2025 -0600
Normalize indentation to four spaces
commit 109efe8c0f8ea642da656b3c94ec456baba2bfb0
Author: Aaron Rainbolt <arraybolt3@ubuntu.com>
Date: Thu Jan 16 01:06:30 2025 -0600
Add handling for sudoless mode
commit 7117d751915187b2eae979044f033d8dbebc394d
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Dec 31 18:43:01 2024 +0000
bumped changelog version
commit 74fd73169cfd9555a9a1f39c78d461704ea77680
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Tue Dec 31 13:26:21 2024 -0500
copyright
commit e9503cf1d36171e6098db84691a648977603b331
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sat Oct 12 04:59:00 2024 +0000
bumped changelog version
commit 658f7885ac087a39363451d2312b53f5ced0760d
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Oct 11 06:02:25 2024 -0400
change icon
commit 7b1d9579dddea636ea6fb4d9a61e566810a75517
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Sep 26 11:10:25 2024 +0000
bumped changelog version
commit d31b0a45b440145322f5bd8acf4a6ec3485e66bb
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Sep 26 07:09:38 2024 -0400
fix detection of Whonix-Workstation
therefore fix autostart of setup-wizard-dist inside Whonix-Workstation
commit 338e9f4842136590bd77c3f70b14ee11e2d964e3
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 11 19:58:49 2024 +0000
bumped changelog version
commit 15e094d9bf7ef0cc48e1360ce754a3a153c2993c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 11 04:51:44 2024 -0400
no longer auto start setup-wizard-dist on Kicksecure
commit f398caed0cd5ecfcd12396c713aeae4686e5d153
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Sep 8 17:41:55 2024 +0000
bumped changelog version
commit 414a939744edb05f46611531d82061b93a5f815d
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Sep 8 12:53:32 2024 -0400
root check
commit febceb97f0cd573fddd9d927bdb903eeab561286
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 4 13:39:10 2024 +0000
bumped changelog version
commit ee6dc72c7b75966f25d4380b6a9b41cbb486b41b
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 4 08:29:07 2024 -0400
comments
commit c8e8f06411dc783c104762a76abf0b1865697ab1
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 4 08:13:29 2024 -0400
code simplification
commit bacfa32a5d7c71a3144f16a787a1d841061e05aa
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 4 08:12:46 2024 -0400
output
commit b1b8e901a4a8ae704c4f2efed5d402733c612631
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 4 08:12:20 2024 -0400
refactoring
commit f50d44f7b0393512e19bedfa669e7baac34d9772
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 4 08:09:25 2024 -0400
output
commit 14e5c194fa17c3b3d8fbee6783048019c34b3383
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 4 08:08:26 2024 -0400
output
commit 020e2343a36f78d59d3e7d03260f36a17a908cf8
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 4 08:06:09 2024 -0400
skip setup-wizard-dist (systemcheck autostart at first boot) in Kicksecure-Qubes by default
(as this would lead to too many systemcheck runs at Qubes VM first starts)
commit 68aeb4b97bafcac4b1a8a28da28775f071f39ddd
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 4 08:05:12 2024 -0400
refactoring
commit b54624cd93ca360fd8b6e805fa52bc4a84138da6
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 4 07:58:35 2024 -0400
cleanup
commit 84a0299334d8d6b6868c961f9a034090fb719d35
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 4 07:50:30 2024 -0400
output
commit 6df4a708e7f4d95259f5beb28170325b818b5144
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 4 07:49:06 2024 -0400
code simplification
commit 34c85246555efd069ecf225c31f1fab7e3d1313a
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 4 07:48:35 2024 -0400
fix
commit a85d9fcd5ec0e7dc08582bd62e86c388ef9ecc53
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 4 07:48:02 2024 -0400
code simplification
commit a583bbe74ae1e137b63bdb5f84e85a6b067bec8f
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Sep 4 07:46:32 2024 -0400
code simplification
commit 61c620f224504503e2ec5390e169112508fe335a
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Aug 14 12:59:01 2024 +0000
bumped changelog version
commit 9c4161c3e6ab7b64af46c989fd3078fc18a4effd
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Aug 14 08:38:25 2024 -0400
fix auto starting systemcheck at first boot inside Whonix-Gateway
commit 1ed858497a4f8b732518b2817cc3a0552bea98bd
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Jul 28 23:21:00 2024 +0000
bumped changelog version
commit d9db793cc29ad34ea76cd951147438a9ae3caf7b
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Sun Jul 28 19:13:35 2024 -0400
output
commit b12f413aa911547bccf963e025a23de0abf81d30
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon May 20 17:38:10 2024 +0000
bumped changelog version
commit 007e275f25d6b70ea01e5f5347cf4b595988382c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon May 20 13:35:46 2024 -0400
change label from "Finish" got "OK"
commit 1894e3047a205ad7b68c4c7e5e0cb8bed858a60b
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Mar 20 16:17:06 2024 +0000
bumped changelog version
commit 48eb83282d3f6cd576f87b2d427db969cd675acd
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Mar 20 12:06:09 2024 -0400
no longer autostart anon-connection-wizard from setup-wizard-dist
connect to public Tor network by default / avoid Anon Connection Wizard (ACW) popup at first boot
https://forums.whonix.org/t/connect-to-public-tor-network-by-default-avoid-anon-connection-wizard-acw-popup-at-first-boot/17848
commit 864268584c19e0e67c1448393c8d28d9ae0ae80e
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Mar 20 12:04:15 2024 -0400
comment
commit 6c04ec0680d56f3dfbe92f603057eecc79727a98
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Wed Mar 20 12:02:51 2024 -0400
fix
commit 63c883587f56061db346c7e03971dc91ada00508
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Mar 18 15:10:38 2024 +0000
bumped changelog version
commit 3cd01993a9ececb48759702151fbd6e850871266
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Mar 18 10:55:11 2024 -0400
do not run systemcheck if cancel button has been pressed
commit a2ffdb1d5e2d31ef94f151dea9c8a9c1c3351bb1
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Mar 18 10:42:55 2024 -0400
output
commit eb13b746cf9a388505e667ab2e6e41f9e92fff00
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Mon Mar 18 10:40:23 2024 -0400
improve finish page to add default credentials
commit 66c3db4f5bfef0b17664de8f589088957a36db1b
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Jan 26 11:58:59 2024 +0000
bumped changelog version
commit 1612ef6586fe1a9d8a186aaa0a02f5b3e43c142c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Jan 26 03:18:18 2024 -0500
comment
commit 2619888a427d83f122d3a5acb602c5ea26158383
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Fri Jan 26 03:16:22 2024 -0500
disable disclaimer
commit 21ea51ba0025c7e8f2c07e53c67d6bc26ecec32c
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jan 18 14:11:36 2024 +0000
bumped changelog version
commit a9a323c28529675f7dba026e235fb82e9279f0c5
Author: Patrick Schleizer <adrelanos@whonix.org>
Date: Thu Jan 18 08:55:23 2024 -0500