-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangelog.mw
3922 lines (3913 loc) · 241 KB
/
Changelog.mw
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
{{Header}} __NOINDEX__
{{#seo:
|description={{project_name_long}} Release Notes, Changelog
|image=Oldstablewhonix.jpg
}}
{{intro|
{{project_name_long}} Release Notes, Changelog
}}
[[File:Oldstablewhonix.jpg|thumb]]
== 17.0.4.5 ==
[https://github.com/kicksecure/anon-apt-sources-list <code>anon-apt-sources-list</code>]:
* Remove duplication of debian bookworm onion <ref>
https://github.com/{{project_name_short}}/anon-apt-sources-list/commit/16d92686a6c35820d0bc440fc426643c371ff183
</ref> (Thanks to TNT BOM BOM!)
[https://github.com/kicksecure/anon-connection-wizard <code>anon-connection-wizard</code>]:
* fix paths <ref>
https://github.com/{{project_name_short}}/anon-connection-wizard/commit/b7245ba95d91d0f83509b807c66eea4a33873e7a
</ref>
* notes <ref>
https://github.com/{{project_name_short}}/anon-connection-wizard/commit/e8d7f78fa1af5801612a1fd242a191b14825640e
</ref>
* snowflake <ref>
https://github.com/{{project_name_short}}/anon-connection-wizard/commit/b851182691ffb94752aac35c7cbfd9fae19cc670
</ref>
* remove unknown country specifics <ref>
https://github.com/{{project_name_short}}/anon-connection-wizard/commit/5ea3b5254253bb9fde516af98939d4b328eec409
</ref>
* snowflake <ref>
https://github.com/{{project_name_short}}/anon-connection-wizard/commit/ba7ea81b8e7b97ae8a6b924975f9fed644e29a6c
</ref>
* snowflake <ref>
https://github.com/{{project_name_short}}/anon-connection-wizard/commit/0562b9431d3c05a47a75222e312025dace3820e9
</ref>
* update default bridges as per Tor Browser 13.0a2 <ref>
https://github.com/{{project_name_short}}/anon-connection-wizard/commit/8585728dd81dcd7711091c6b7115227047898ce0
</ref>
[https://github.com/kicksecure/bootclockrandomization <code>bootclockrandomization</code>]:
* tmpfiles.d improvement <ref>
https://github.com/{{project_name_short}}/bootclockrandomization/commit/51fc6c670e3d25425c714fb6b09e8aaa503b0852
</ref>
* tmpfiles.d syntax fix <ref>
https://github.com/{{project_name_short}}/bootclockrandomization/commit/b526922926832d777ee4932faa821914aadf04ca
</ref>
[https://github.com/kicksecure/desktop-config-dist <code>desktop-config-dist</code>]:
* fix, update sudoers for livecheck <ref>
https://github.com/{{project_name_short}}/desktop-config-dist/commit/382ade7012691e1774c43deffa31a2e7e20972e3
</ref>
* Fix Live Check systray fix `livecheck.sh` drop `--all` from `lsblk` options https://forums.kicksecure.com/t/livecheck-sh-script-broken-on-bookworm/269/13 <ref>
https://github.com/{{project_name_short}}/desktop-config-dist/commit/7dbb50806e7f7fe0b1e0db15b569faa9add75a45
</ref>
* move `/etc/zprofile.d` parsing from `/etc/zshrc` to `/etc/zprofile` to avoid these scripts being parsed in terminal emulators running in X11 https://forums.whonix.org/t/change-default-shell-from-bash-to-zsh-by-default/14792/147 <ref>
https://github.com/{{project_name_short}}/desktop-config-dist/commit/8b19dbf1fe7c69ddbf750874dc02b904386eb4eb
</ref>
* chmod +x /etc/zsh/zprofile.dist <ref>
https://github.com/{{project_name_short}}/desktop-config-dist/commit/f87a8878fd3ff43e1efe7dbbc45ccd79604a8760
</ref>
* ship `/etc/zsh/zprofile` <ref>
https://github.com/{{project_name_short}}/desktop-config-dist/commit/ad560a1a59bf1651db7ed9679fbdfc0fa1bfbdcf
</ref>
* Add zsh profile dir <ref>
https://github.com/{{project_name_short}}/desktop-config-dist/commit/35f4c2376e2c7bcb2e7b12fe10533461104eae58
</ref> (Thanks to nyxnor!)
* Fix zsh deleting spaces after specific chars <ref>
https://github.com/{{project_name_short}}/desktop-config-dist/commit/284d8bc2fc3109b34f1ddc61fa1bd9530bc8a1fc
</ref> (Thanks to nyxnor!)
[https://github.com/kicksecure/developer-meta-files <code>developer-meta-files</code>]:
* tmpfiles.d improvement <ref>
https://github.com/{{project_name_short}}/developer-meta-files/commit/f79be4adda350e4ddbe87070764cf19418bb4b69
</ref>
* tmpfiles.d syntax fix <ref>
https://github.com/{{project_name_short}}/developer-meta-files/commit/1818fd1c3fa55af683f59122836bc465bb5a9f5e
</ref>
* add symlinks from /etc/profile.d to /etc/zprofile.d <ref>
https://github.com/{{project_name_short}}/developer-meta-files/commit/ddcdfaa3ae4414dec289eeb3c43248ebb49da38d
</ref>
[https://github.com/kicksecure/dist-base-files <code>dist-base-files</code>]:
* --gecos -> --comment <ref>
https://github.com/{{project_name_short}}/dist-base-files/commit/ace2201085f0fce3bc5fd7af1cbf78953ca35d62
</ref>
* fix, do not attempt to set the default shell to /usr/bin/zsh if it already is <ref>
https://github.com/{{project_name_short}}/dist-base-files/commit/dbf919bfcb1451f03845ae769c5ad9b7a1943bd6
</ref>
* enable zsh by default for existing and new builds <ref>
https://github.com/{{project_name_short}}/dist-base-files/commit/28c927853883d5ba11ce28bb3dbe79dede070c13
</ref>
* re-enable zsh by default in new Qubes Templates builds <ref>
https://github.com/{{project_name_short}}/dist-base-files/commit/1a4ec6eea67b94ad8daab0ce6920c3b67305b0cd
</ref>
[https://github.com/kicksecure/grub-live <code>grub-live</code>]:
* drop dependency on `initramfs-tools` because `live-tools` already `Depends:` on it <ref>
https://github.com/{{project_name_short}}/grub-live/commit/18d7718705ce849408e631b0a8e2945de7085688
</ref>
* drop dependency on `live-boot-initramfs-tools` because `live-boot` already `Depends:` on it <ref>
https://github.com/{{project_name_short}}/grub-live/commit/8da0c55e9ffdbb12e544913b8399146d48a8beec
</ref>
[https://github.com/kicksecure/helper-scripts <code>helper-scripts</code>]:
* tmpfiles.d improvement <ref>
https://github.com/{{project_name_short}}/helper-scripts/commit/0d36e593c5d9cb7d74750ecf5f2313613d946eb2
</ref>
* tmpfiles.d syntax fix <ref>
https://github.com/{{project_name_short}}/helper-scripts/commit/07ce399911dec987fffabb1df1cf8300a04bf8f3
</ref>
[https://github.com/kicksecure/kicksecure-base-files <code>kicksecure-base-files</code>]:
* add symlinks from /etc/profile.d to /etc/zprofile.d <ref>
https://github.com/{{project_name_short}}/kicksecure-base-files/commit/147fb11704f8d78d5ebd11d9196fc551b09be24c
</ref>
[https://github.com/kicksecure/kicksecure-meta-packages <code>kicksecure-meta-packages</code>]:
* 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 <ref>
https://github.com/{{project_name_short}}/kicksecure-meta-packages/commit/69281ee7adbace3a84b59cf35b00bdbbaa11f82e
</ref>
* fix, install `tirdad` by default on Kicksecure Hosts <ref>
https://github.com/{{project_name_short}}/kicksecure-meta-packages/commit/630466b2568791bb83581d5c69412212920fae93
</ref>
[https://github.com/kicksecure/kicksecure-welcome-page <code>kicksecure-welcome-page</code>]:
* add symlinks from /etc/profile.d to /etc/zprofile.d <ref>
https://github.com/{{project_name_short}}/kicksecure-welcome-page/commit/6c18907f8e64917b370bdee5a1cfc1ee49fc7080
</ref>
* remove peekier search engine <ref>
https://github.com/{{project_name_short}}/kicksecure-welcome-page/commit/f7b0fd6db76abdfdba12f99d7d42ec2d1782426c
</ref>
[https://github.com/kicksecure/legacy-dist <code>legacy-dist</code>]:
* avoid zsh new user module for upgraded builds https://github.com/QubesOS/qubes-issues/issues/8343 <ref>
https://github.com/{{project_name_short}}/legacy-dist/commit/279a59ca687bc51635692edd51e2d96dfd76c982
</ref>
[https://github.com/kicksecure/msgcollector <code>msgcollector</code>]:
* add symlinks from /etc/profile.d to /etc/zprofile.d <ref>
https://github.com/{{project_name_short}}/msgcollector/commit/467d8621d6e3442dea7b89839f9d9abf69826834
</ref>
[https://github.com/kicksecure/open-link-confirmation <code>open-link-confirmation</code>]:
* add symlinks from /etc/profile.d to /etc/zprofile.d <ref>
https://github.com/{{project_name_short}}/open-link-confirmation/commit/ed22ca4c0726d588d344ad43cd560f97899bf78c
</ref>
* Do not show an error popup if application (such as browser) exits non-zero For example if Tor Browser or Firefox gets killed, the exit code should be handled by the calling application as per usual. <ref>
https://github.com/{{project_name_short}}/open-link-confirmation/commit/52d1dce3fa8d9815a6db6b7bb38a2f112d4f1962
</ref>
* add error handler <ref>
https://github.com/{{project_name_short}}/open-link-confirmation/commit/e0f8179b64f30e7cf9e37df74311754b2e069d85
</ref>
[https://github.com/kicksecure/rads <code>rads</code>]:
* tmpfiles.d improvement <ref>
https://github.com/{{project_name_short}}/rads/commit/b5041c9caea04e265c509655734e218a9a3574db
</ref>
* tmpfiles.d syntax fix <ref>
https://github.com/{{project_name_short}}/rads/commit/a542676a0207e79a7028636e7458e81d8740b3ee
</ref>
[https://github.com/kicksecure/ram-wipe <code>ram-wipe</code>]:
* tmpfiles.d improvement <ref>
https://github.com/{{project_name_short}}/ram-wipe/commit/630754fa7a11af6cd3a6ff7cd458e86925a69ed7
</ref>
* tmpfiles.d syntax fix <ref>
https://github.com/{{project_name_short}}/ram-wipe/commit/2708e310ba42ccde6bb9c2a1f5d3b5da8bb5ab20
</ref>
[https://github.com/kicksecure/sandbox-app-launcher <code>sandbox-app-launcher</code>]:
* --gecos -> --comment <ref>
https://github.com/{{project_name_short}}/sandbox-app-launcher/commit/f5e174d709c5faeae032d6389814f72d0ea8f970
</ref>
[https://github.com/kicksecure/sdwdate <code>sdwdate</code>]:
* tmpfiles.d syntax fix <ref>
https://github.com/{{project_name_short}}/sdwdate/commit/2cc1a290c3e1e10aab8a284e9a7a3c13324f8629
</ref>
[https://github.com/kicksecure/sdwdate-gui <code>sdwdate-gui</code>]:
* tmpfiles.d improvement <ref>
https://github.com/{{project_name_short}}/sdwdate-gui/commit/d325e32bcef934a00648c01f6e9493df3905ebef
</ref>
* tmpfiles.d syntax fix <ref>
https://github.com/{{project_name_short}}/sdwdate-gui/commit/75124dc7aa6e7be5412a1ed86c6bc38c6cf66e34
</ref>
* improve error handling in case of sudo hardening <ref>
https://github.com/{{project_name_short}}/sdwdate-gui/commit/cb1d5ebd5fa21810a00eea7e8a48bd0546abe786
</ref>
[https://github.com/kicksecure/setup-dist <code>setup-dist</code>]:
* add symlinks from /etc/profile.d to /etc/zprofile.d <ref>
https://github.com/{{project_name_short}}/setup-dist/commit/86ee57eed4689ae670eb803ae2e45106d02d8886
</ref>
* remove symlink <ref>
https://github.com/{{project_name_short}}/setup-dist/commit/401736086115156780b06f17b2bec90bf6419fe8
</ref>
* Use distinctive zsh extension <ref>
https://github.com/{{project_name_short}}/setup-dist/commit/1c7ecc2d6f9c7000b5095c2e4eef00ade8da523e
</ref> (Thanks to nyxnor!)
* Add setup to zsh profile dir <ref>
https://github.com/{{project_name_short}}/setup-dist/commit/34177a29b92852c75ddc4e9cef04e7a125808732
</ref> (Thanks to nyxnor!)
[https://github.com/kicksecure/setup-wizard-dist <code>setup-wizard-dist</code>]:
* allow exiting application using ctrl + c (signal sigint) for easier debugging <ref>
https://github.com/{{project_name_short}}/setup-wizard-dist/commit/563ac0356f61c7801284f81615dc7d12c59f0a09
</ref>
* remove duplicate import <ref>
https://github.com/{{project_name_short}}/setup-wizard-dist/commit/026dcb202cc3d699d2d9dcd15fdc1dcba001a5bd
</ref>
* fix centering the window at first boot <ref>
https://github.com/{{project_name_short}}/setup-wizard-dist/commit/4e4a7d72a9dfa7a9d3167783e7ac28a495184078
</ref>
* reduce window hight <ref>
https://github.com/{{project_name_short}}/setup-wizard-dist/commit/eb25aeab66db5185dbeba44835c0ebaf1bd6f9d6
</ref>
* better error handling in case of sudo issues <ref>
https://github.com/{{project_name_short}}/setup-wizard-dist/commit/c6d592d9bc74eddc1ad1f727a1d4fbe76f640462
</ref>
* better error handling in case of sudo issues <ref>
https://github.com/{{project_name_short}}/setup-wizard-dist/commit/609339a121e9bc2f330ccfcd9cf876aa251b1698
</ref>
[https://github.com/kicksecure/systemcheck <code>systemcheck</code>]:
* use `tee` instead of bash redirection for better error handling <ref>
https://github.com/{{project_name_short}}/systemcheck/commit/6c5ef03d5322d0dcd0cd00bcea7ea82c5ca9e43a
</ref>
* sanity test <ref>
https://github.com/{{project_name_short}}/systemcheck/commit/7ee2a27b6584ab7a26b0e8fe52e7515393eaaf90
</ref>
* run `apparmor-info` with `--boot` to avoid showing already fixed apparmor issues from previous boots <ref>
https://github.com/{{project_name_short}}/systemcheck/commit/1c99d4f591368e1c7d9c6432ed9ad413e4c27c36
</ref>
* /var/lib/canary permission check <ref>
https://github.com/{{project_name_short}}/systemcheck/commit/4be1827ce8898f06d238e385129af5c29f92b70a
</ref>
* /var/lib/canary permission check <ref>
https://github.com/{{project_name_short}}/systemcheck/commit/d82cf03ed66220e40a2bdda24a805f7295b7d433
</ref>
* tmpfiles.d improvement <ref>
https://github.com/{{project_name_short}}/systemcheck/commit/dfc1f5b195be2e21a000e0e6892c2e10d8ddfbf2
</ref>
* tmpfiles syntax fix <ref>
https://github.com/{{project_name_short}}/systemcheck/commit/21f22ce3bf84e91a9280d62623899964000466fa
</ref>
* improve Qubes UpdatesProxy checks <ref>
https://github.com/{{project_name_short}}/systemcheck/commit/19b443d1f3f30b77d28151925e3c5c05ef5b255e
</ref>
* improve Qubes UpdatesProxy checks <ref>
https://github.com/{{project_name_short}}/systemcheck/commit/b4327e70cbd9282d6f3f2c1a6de0b6df03a59c2b
</ref>
* Qubes-Whonix: hint if "provides network" box might be unchecked <ref>
https://github.com/{{project_name_short}}/systemcheck/commit/2b5943cf77ed2c833ec0dd6ff84ea681dc650f3f
</ref>
[https://github.com/kicksecure/tb-default-browser <code>tb-default-browser</code>]:
* add symlinks from /etc/profile.d to /etc/zprofile.d <ref>
https://github.com/{{project_name_short}}/tb-default-browser/commit/38e0251583628d21c0ffe79db00afc960c64af99
</ref>
[https://github.com/kicksecure/tb-starter <code>tb-starter</code>]:
* improve error handling in case using open-link-confirmation <ref>
https://github.com/{{project_name_short}}/tb-starter/commit/5d9902a92bf98e008179f99942ce15a0b9ff517b
</ref>
[https://github.com/kicksecure/tb-updater <code>tb-updater</code>]:
* tbb_hardcoded_version="12.5.3" <ref>
https://github.com/{{project_name_short}}/tb-updater/commit/76703da101f404c9ca9c0adf1c225adbae03f250
</ref>
* alpha tbb_hardcoded_version="13.0a3" <ref>
https://github.com/{{project_name_short}}/tb-updater/commit/8687c39ffe585168c9a63407ccd54c6e7b39a70f
</ref>
* upstream link changes for Tor Browser alpha fix part 2/2 Thanks for @pgerber for the report and helping with this! https://github.com/{{project_name_short}}/tb-updater/pull/22 <ref>
https://github.com/{{project_name_short}}/tb-updater/commit/4db31d124b9031956abf27bb025572383b9e4566
</ref>
* deprecate TB_LANG since no longer required <ref>
https://github.com/{{project_name_short}}/tb-updater/commit/35a1772241cdde0b492aa4d9a67c58731e329cb1
</ref>
* remove `--language` because no longer needed since all Tor Browser downloads support all languages for a while now <ref>
https://github.com/{{project_name_short}}/tb-updater/commit/d18084f8c755edf0a9a961bff27209c40594a5da
</ref>
* upstream link changes for Tor Browser alpha fix part 1/2 Thanks for @pgerber for the report and helping with this! https://github.com/{{project_name_short}}/tb-updater/pull/22 <ref>
https://github.com/{{project_name_short}}/tb-updater/commit/24e13eae678798b43289972de10f2cb97e553469
</ref>
* comments to prepare for upstream link changes https://github.com/{{project_name_short}}/tb-updater/pull/22 <ref>
https://github.com/{{project_name_short}}/tb-updater/commit/b8c36342d953a9cfb1932c1c3e1df548913a53d1
</ref>
* alpha tbb_hardcoded_version="13.0a2" <ref>
https://github.com/{{project_name_short}}/tb-updater/commit/50b75845f07624f0ef0b112813e3f87caf1fa2ff
</ref>
* skip connectivity test for arm64 due to unreported sourceforge blocking Tor issue https://github.com/{{project_name_short}}/tb-updater/issues/21 <ref>
https://github.com/{{project_name_short}}/tb-updater/commit/4fcbb437a2d1acb5f795c1f3b4b60be901c44920
</ref>
* alpha tbb_hardcoded_version="13.0a1" <ref>
https://github.com/{{project_name_short}}/tb-updater/commit/b4592d456784c91c4cec817727cd4613993c525e
</ref>
* tbb_hardcoded_version="12.5.2" <ref>
https://github.com/{{project_name_short}}/tb-updater/commit/6f36b7231f3ccda70545e2ee11fe75b42af00eb0
</ref>
* update Tor Browser arm64 maintainer signing key <ref>
https://github.com/{{project_name_short}}/tb-updater/commit/a9375f89d96dc592c8fdde3ed8ec2e537672de86
</ref>
[https://github.com/kicksecure/tirdad <code>tirdad</code>]:
* Minor edits <ref>
https://github.com/{{project_name_short}}/tirdad/commit/746c0cecb776d36c2cfc6709dc19e3620def0471
</ref> (Thanks to Sirus Shahini!)
* Add support for IPv6 <ref>
https://github.com/{{project_name_short}}/tirdad/commit/62402503a9560efb757e9e74ad8477d130a8a0d7
</ref> (Thanks to Sirus Shahini!)
* Fix typos. <ref>
https://github.com/{{project_name_short}}/tirdad/commit/1742ca6923584782fd4cead854dc616d3a0efbcb
</ref> (Thanks to Sirus Shahini!)
[https://github.com/kicksecure/tor-control-panel <code>tor-control-panel</code>]:
* fix paths <ref>
https://github.com/{{project_name_short}}/tor-control-panel/commit/a9a3ca181cc9c68c9073cc6bddc341cccbdb3b75
</ref>
* enable Whonix-Gateway system DNS for meek-azure and snowflake https://forums.whonix.org/t/censorship-circumvention-tor-pluggable-transports/2601/9 <ref>
https://github.com/{{project_name_short}}/tor-control-panel/commit/a92b5feef2020bc20e937bf20552e30d5b2e6039
</ref>
* import edit_etc_resolv_conf <ref>
https://github.com/{{project_name_short}}/tor-control-panel/commit/3969180fef752e93d9dae56946f983e465727e36
</ref>
* snowflake <ref>
https://github.com/{{project_name_short}}/tor-control-panel/commit/91d16b5e3381ce83b9688c5ff13bbe7c3956a231
</ref>
* remove unknown country specifics <ref>
https://github.com/{{project_name_short}}/tor-control-panel/commit/9eb5b8e622ac3918902068984f5ce2bff00a0a31
</ref>
* move bridges_default file to anon-connection-wizard and depend on it to reduce code duplication <ref>
https://github.com/{{project_name_short}}/tor-control-panel/commit/56123ca4c7d643365685dba2aace7103dc2ed309
</ref>
[https://github.com/kicksecure/usability-misc <code>usability-misc</code>]:
* tmpfiles.d syntax fix <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/4698847a4e01f95b69b6d57cfbe46652ec12ebf4
</ref>
* improve detection of Debian testing based distributions <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/d526a726b8691f8f93cdfe383b238a39ab6622c9
</ref>
* dist-installer-cli Debian testing ("trixie") support <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/2dd7a46ba035e43d8c20982ba25f0865456be03c
</ref>
* dist-installer-cli Debian unstable ("sid") support <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/72e1b785b8e855516773b26a9ad09150a424001f
</ref>
* dist-installer-cli Debian unstable ("sid") support <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/4e9e728683247cdb6d3c4588c08d133e44317fbb
</ref>
* improve Debian testing / unstable detection <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/05939d87e7125f4e792f901c154d3ffc68bfaf81
</ref>
* user adduser instead of usermod on Debian <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/4e2dd8bdb521eff3f4af558b4bf4efa0ad036aa4
</ref>
* dist-installer-cli Debian unstable ("sid") support <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/400aafcd5f472f8f18872f85aac2ef03005f22e7
</ref>
* dist-installer-cli Debian unstable ("sid") support <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/29a438b2c85c6fe0f38fffa6a4f8a3945a544d8b
</ref>
* dist-installer-cli Debian unstable ("sid") support <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/e86f7fa3aa73bcec5c55523d5f8f5a87c24e8b1a
</ref>
* dist-installer-cli Debian unstable ("sid") support <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/443a123402b1b0c7f6169a8fea00343bc797305d
</ref>
* dist-installer-cli Debian unstable ("sid") support <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/1dbc598188830af6729652ea551589a4d5257166
</ref>
* dist-installer-cli Debian unstable ("sid") support <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/9ea975c0c1f5491ce6a6b2acd983a8e2420995cf
</ref>
* dist-installer-cli Debian unstable ("sid") support <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/51e1ca9738522960344a73bf65bd0c61b23ed59d
</ref>
* dist-installer-cli Debian trixie support <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/1462097ae73fc51a7a7e8df45ecba5b01bd0309c
</ref>
* try to start VMs before trying to start VirtualBox Manager because if it fails, it is less confusing to avoid starting VirtualBox Manager <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/45c257bcd1febc7c28707408d79a67fdbf94600a
</ref>
* fix, don't notify that VirtualBox has been started into the background when using --dry-run <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/e76c5c17f0809c8577a4f1ad3292207535236289
</ref>
* fix, start both, VirtualBox Manager and VMs <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/a20e7144bc592b1670b965c156626b0de469a70a
</ref>
* fix duplicate starts of VirtualBox Manager; new installer success message at the end <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/ac71b766b7a246fb9cee9f0430d80a0e194e900e
</ref>
* fix launching VirtualBox Manager into the background instead of foreground to free the terminal <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/3b7a1f863419f5f06c7de84983f2d443b69254cf
</ref>
* view VirtualBox dkmks make.log on Debian if installation of VirtualBox failed <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/6ceb3e874a10962b9e7a5c7442d4b147ef1a6e8f
</ref>
* if using `--dev` and if enabling Kicksecure repository, use Kicksecure developers repository instead of Kicksecure stable repository <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/79a2c085264426b0eff5ffd08194ff8bfd4cb241
</ref>
* towards support for different codename for Kicksecure repository <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/94b0d9297f617b499d9c83ea868015271111b07b
</ref>
* package lsb-release needed for also for VirtualBox Installer <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/25669e7fffc5216fe9d12a78a3e967bdffc2de8c
</ref>
* fix mirror range_arg check <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/90a9ce04925f75e398a1fcb291576f81ff16912c
</ref>
* no longer use mirror by default <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/97bd3a3da1b7ef842d88df32b83b91c5dd378551
</ref>
* mirror number change <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/282c42ec16c2e6585980f52d14047719cd023be2
</ref>
* remove broken mirrors <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/59c73ba3d572d1129d880c1a9fa7541adfa82a0e
</ref>
* remove broken mirror <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/81833635f9cad0cb32a0bfcd561f073e7d126332
</ref>
* --gecos -> --comment <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/e0cae600c00ecdd2a948b5be2e7696e2810f6c84
</ref>
* Maintain test consistency <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/be50cbea051629d37e122c99f9f95276a69ee6e9
</ref> (Thanks to grass!)
* Fix zsh completion oracle-repo <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/36ce4cb03a68154430d6fde4608727dba8b56b85
</ref> (Thanks to grass!)
* renamed: usr/share/zsh/vendor-completions/_dist-installer -> usr/share/zsh/vendor-completions/_dist-installer-cli <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/0406ef7b8cfabcccb4ad676dbcc5b6c97aa0f7a8
</ref>
* dist-installer -> dist-installer-cli <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/8fbf68f5fed58e03964c2bf8364497d8548a2f34
</ref>
* dnf <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/413f7595a4604a15db7d1405ddcfdabbfc6a0c81
</ref>
* dnf <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/01827fc48201774bb845a28fa288ecc2553df654
</ref>
* dnf <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/6e2bb6be723efa7f5271a2e292a7f21635ca69a2
</ref>
* dnf <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/3b8b0d34a41130f607965fefbf73d16c9ffaac83
</ref>
* dnf <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/3de56992dd5dd010dc537c22439cbef50f5dedbc
</ref>
* dnf <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/aa2b77673868d7d062d49da04ab13a9001b5b874
</ref>
* fix dnf search VirtualBox search string <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/380d2dca8151f5cd559bb4212036247eb4439615
</ref>
* dnf search --cacheonly to avoid extraneous network connection <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/32d360de320f8d6757e4bb7cd0eaa1c2e29fb8fd
</ref>
* add workaround to accept key into dnf database <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/cac977966d190399b60b9cb39325c144a53e82e7
</ref>
* fix Fedora Oracle repository file creation <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/bfca9252ed117bbb9d71372bf134be016eacb3ba
</ref>
* fix Fedora Oracle repository file creation <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/6836d84102b5d723a6e07c922c8d17a22c9f10b0
</ref>
* shellcheck <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/c610f2475b4e11edf33cfcd1d4ee0c8ea698984c
</ref>
* https <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/72eecb7feaef6d0da1408615ab613ef235451fd8
</ref>
* fix Fedora Oracle repository file creation <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/d1dcba497c6e70f81f7450b1ffbd1158b729eedf
</ref>
* virtualbox-installer -> virtualbox-installer-cli <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/a6f682ffa0ad1f5199077cc017be4b1dc92eae91
</ref>
* search for errors in package manager update output <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/e79d953e36cc3035dc275f53fe1d2765737f4f9d
</ref>
* enable pipefail for bash <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/a5b2d58aba7428c166967c666952c4519e3e1e76
</ref>
* improve Fedora repository availability check <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/43324d3f72be1e111ff907e10ab823b98eebae0e
</ref>
* newlines <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/df22562fd26a1ca294c5f17d9a0de786a250f47e
</ref>
* start VirtualBox GUI into the background using `virtualbox & disown` <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/cddff25a5720967285ab01057790008e688904ee
</ref>
* consistency, `exit 0` instead of `exit` <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/4ef393dbf048dffeac519df6c83a9b734356d55d
</ref>
* improve Fedora repository availability check <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/2975222bc6a9fd6b1d84661e4d549e8b321f6ad8
</ref>
* improve VirtualBox version check <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/e8b6c8eb1bab2a22296da867ed8ae9b0914b04b6
</ref>
* improve VirtualBox version check <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/b1532ba078b5690577e0dbbd85e8956c73398cee
</ref>
* fix unbound variable <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/8df7c4d6ba4f64c6facdee050ca9163d3f8938bb
</ref>
* fix when to run update_sources <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/5203135804710fdd588c5c76d2e827abddd768fb
</ref>
* newline <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/194a1290f7c9eef52cf74c9bfe489f4008783280
</ref>
* improve VirtualBox version check <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/f7750dc5cf18e95023aa706035413a3a2e00b98c
</ref>
* avoid running update_sources multiple times for faster execution <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/d7611c062c2f2d6bb46e8010cc2f654833b52856
</ref>
* fix VirtualBox version detection <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/eb00cc78a517a6f2b9acb79bc7b14dc8491ad3cd
</ref>
* installing the `adduser` package for Debian trixie now required on CI <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/df16bc6d2451436d6b3dd93d5ba069e1cd812437
</ref>
* fix VirtualBox version detection <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/dd24bbd17cb40b231eb10b2c565bda80a9fb3739
</ref>
* fix VirtualBox version detection <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/96ab87711ea94a9b868418f832229adbe0849113
</ref>
* fix Debian VirtualBox package name detection <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/eb643a0df133e6c84a45eb696638d97fd9607058
</ref>
* Start VirtualBox together with VMs <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/1e04756ef4bfcb1dc740d564275c61c01f24d6c9
</ref> (Thanks to grass!)
* Update compiled manpages <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/06c88e4272c0b9b121f9252f775c43f7f3e2cb15
</ref> (Thanks to grass!)
* Rename installer <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/1ac9050aff180b18ea12ac1e1250f2c0b2696f3a
</ref> (Thanks to grass!)
* Allow Kali Linux https://forums.whonix.org/t/whonix-linux-installer-development-discussion/15917/100 <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/7ff84e8762fd502b6308f8abb19c3e7bbea754c3
</ref> (Thanks to grass!)
* installing weak dependency packages `gcc` and `udev` when using `virtualbox.org` (Oracle) repository <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/65522938b061489576125b7af3c04adda055fd37
</ref>
* newline <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/d9fe607bc3c6ff6cf3ca7d0bcd485bfc94ea6597
</ref>
* check if VirtualBox package is installed rather than virtualbox program <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/a36dd5a99dc36db9b18d9c2df403aa499852cad2
</ref>
* ident style <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/031ede52f44bf4528d17dc206d38df3be73407f5
</ref>
* shower success confirmation if VirtualBox installer succeeded <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/564015b790b0635251a0a9a0107fdac19ab8ac79
</ref>
* run the usual tests also for VirtualBox Installer <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/310c04faf8177fccb9d06d3a3506812a7c35d927
</ref>
* check disk space also for VirtualBox Installer <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/74be46bf15a93783db5d6cc7aa346b186ab7c7a9
</ref>
* Debian testing fix <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/262d332add8c9d1cdf687c0072c8398d3075ca68
</ref>
* defensively initialize `url_version_domain` variable <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/371c6c502530e0caa5b36be3ec28fafd1717cf0b
</ref>
* test Oracle repository on CI <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/1920fc072913ac6d141228ce4c66b9a165409850
</ref>
* Test VirtualBox Installer on CI <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/29d33886e69dfd978ba8eb03db1742e907631b78
</ref>
* use long option names <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/9829df290ad0f39c4d1797e1d82caa3bd0cd34d5
</ref>
* info level output if SecureBoot is enabled or disabled <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/5c77d036ce501fb706907e20eb9db17715e42179
</ref>
* Merge branch 'master' of https://bitbucket.org/uncut-grass/usability-misc <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/e6c1684a2e47350145ac4972c1896bd6bba70cd0
</ref> (Thanks to nyxnor!)
* Fix usermod args <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/30e0d9b583d2e71315d2a751f68b5faecffee764
</ref> (Thanks to grass!)
* Merge branch 'master' of https://bitbucket.org/uncut-grass/usability-misc <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/22e647a01156f1c82c9402e536a97a71dffa0185
</ref> (Thanks to nyxnor!)
* Fix typo <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/7b066b13a4223af20daedff953b9d2d2ef2ac9fa
</ref> (Thanks to grass!)
* Merge branch 'master' of https://bitbucket.org/uncut-grass/usability-misc <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/caaa545b48cdffa02dde4fc809f7d216e548fcdb
</ref> (Thanks to nyxnor!)
* Change adduser to usermod <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/6dab6209e5e84d8878c8d1ed92be91b5b127ec45
</ref> (Thanks to grass!)
* Merge branch 'master' of https://bitbucket.org/uncut-grass/usability-misc <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/778e0b3dc0436f643df7091ec70776ee21d033bc
</ref> (Thanks to nyxnor!)
* CI: Fedora doesn't have 'su' in CI <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/39598e7aa6b6ef50ed1a8bbd7221863c8bcda78b
</ref> (Thanks to grass!)
* Merge branch 'master' of https://bitbucket.org/uncut-grass/usability-misc <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/0cd36362657b86e1e42d8524c5df3566174c7538
</ref> (Thanks to nyxnor!)
* CI: fix wheel group <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/41f35bac61dfc66ef41b39c35d0e641d777aed1e
</ref> (Thanks to grass!)
* Merge branch 'master' of https://bitbucket.org/uncut-grass/usability-misc <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/48d0aafd85032d9998afe2523ca15697c75b47b0
</ref> (Thanks to nyxnor!)
* CI: closing if statement <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/51311a57adf4d263f14f7c852f8f22685cbe4bba
</ref> (Thanks to grass!)
* Merge branch 'master' of https://bitbucket.org/uncut-grass/usability-misc <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/600d306ce335f16b8fae3289772630baddd117f5
</ref> (Thanks to nyxnor!)
* CI: Fedora uses the wheel group <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/0eda64bed71a32df73937a2916ca087cb80a681f
</ref> (Thanks to grass!)
* Merge branch 'master' of https://bitbucket.org/uncut-grass/usability-misc <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/ed24121690e0b859e41c3fa62bc2c051aa0e5177
</ref> (Thanks to nyxnor!)
* CI: Fedora doesn't have all adduser options <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/6808ee6de8b65edc247de85f46e5eba4acf18d97
</ref> (Thanks to grass!)
* Merge branch 'master' of https://bitbucket.org/uncut-grass/usability-misc <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/400e705f1ee1d42f7c071eec6f7048025e40cdba
</ref> (Thanks to nyxnor!)
* Fix ci for fedora not being noninteractive <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/73c536b020df25b063d51ef5cd3cbb65942eff4e
</ref> (Thanks to grass!)
* merge <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/766b63d87cb4a912150a860b191d3f74533b09bd
</ref> (Thanks to nyxnor!)
* Support Fedora in CI <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/49b6395f6ad4c8b05ba7dbba7f59e371df778621
</ref> (Thanks to grass!)
* Fix old variable name <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/d2cad5d0793ed7f755845e48b96229d6f4931f21
</ref> (Thanks to grass!)
* merge <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/35f6e2f028789b0dec145ee59d82892285c6a06e
</ref> (Thanks to nyxnor!)
* Fix merge conflict <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/83c1ae14f596015ea42f89a9f2bd99eb0ef74147
</ref> (Thanks to grass!)
* merge <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/5a3ab85067dea7a725cf5e629add84f036e25237
</ref> (Thanks to nyxnor!)
* Add Oracle repo and Fedora support <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/1a76b8c17fbfe41e290b55dc150dba8de9932964
</ref> (Thanks to grass!)
* trixie <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/545de28f8e8394a9d7f47431fa2f211ba5718023
</ref>
* add Debian trixie (testing) support <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/6e0668fdd474a3f8da51dec8b5e47db2a483f679
</ref>
* add Debian testing detection <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/769a609761d3ab91ddd2c7589145083dfff03ff5
</ref>
* testing <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/af2459093f0eb5dc8ffb2e0f8717add4127a1b75
</ref>
* improve unsupported distribution check output <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/af4c83a7cfd83e20dea494625aee06a968900cf0
</ref>
* Add missing shasum options <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/1bb27a1d26dfca0fd23b749199c8bc25fd1740a3
</ref> (Thanks to grass!)
* Add signature unit test <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/9f7e71dd0452868a83c58779aa8b0401e772ee43
</ref> (Thanks to grass!)
* Improve error message for unknown systems <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/388dd14db9d580682d52121c864fb7fcd013a9b6
</ref> (Thanks to grass!)
* support only sha512sum tool for verification <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/e311cd541dac481046919ac3cf9622ef26b37f5e
</ref>
* Add unit test to checksum verification <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/2eb27a7defaac25901db9c9e23390f34c8c1b293
</ref> (Thanks to grass!)
* Descomplicate verification <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/39a732743ae04d347e5f3ba63116c0f17e76698f
</ref> (Thanks to grass!)
* fix integrity checks <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/03cc6a6c90be6ef1080037d2f35a3c3aa8e9a3a7
</ref>
* Revert "Better log_run output catch" This reverts commit d31afaf2eb8a12915a9e5e0eda29724fdf5788a1. <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/e5172d87ed8cd2d0e34041436cd00eff270567a6
</ref> (Thanks to grass!)
* Better log_run output catch <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/d31afaf2eb8a12915a9e5e0eda29724fdf5788a1
</ref> (Thanks to grass!)
* Improve verification steps logging <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/da45f02da2147e9bb430953da6e6e8a6b731f053
</ref> (Thanks to grass!)
* Downgrade verification loglevels to notice <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/cee7211d5cbb2bdca14fafac1ece480606c8031a
</ref> (Thanks to grass!)
* Remove redundant fail from error logs <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/5820d5702e003041b87ac82ed6536686c094625d
</ref> (Thanks to grass!)
* Add missing options to manual page <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/b10e322c4e4908168da4c7d264f4917f26efaaaf
</ref> (Thanks to grass!)
* Fix apt line wrapping if output is not a tty With Bash, we can leave stdout to the tty. <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/0e6718cddf8f5911a22dc51400ca99cf7fb5aacd
</ref> (Thanks to grass!)
* Improve log formatting of test cases <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/1c5ff086197fbf2bb6ba1def710f735156bbedaf
</ref> (Thanks to grass!)
* update hardcoded testing-only simulated version number of empty hard drive test-only release because of XFCE -> Xfce change <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/f40d0ab59a575b37eaccf4733fd1250758048eac
</ref>
* remove legacy XFCE -> Xfce support code <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/0e9855ea58cff68a8e5328f6f2388c5fd05e1a67
</ref>
* spelling <ref>
https://github.com/{{project_name_short}}/usability-misc/commit/a00f8e57813f365ff3110201e585f080f593605c
</ref>
[https://github.com/kicksecure/vm-config-dist <code>vm-config-dist</code>]:
* add symlinks from /etc/profile.d to /etc/zprofile.d <ref>
https://github.com/{{project_name_short}}/vm-config-dist/commit/195791c1ed544ed1ccc73c0596c3d581439a9f37
</ref>
[https://github.com/derivative-maker/derivative-maker <code>derivative-maker</code>]:
* create symlinks from /etc/profile.d to /etc/zprofile.d <ref>
https://github.com/derivative-maker/derivative-maker/commit/9b5f19035b630d1471b9941471e5e78fe2713251
</ref>
* iso <ref>
https://github.com/derivative-maker/derivative-maker/commit/7b7229abb972ecf615230ac15d3b8dfad4f551bf
</ref>
* Enable teardowns for automatic cleanup <ref>
https://github.com/derivative-maker/derivative-maker/commit/d6f5ceeebb875762ea6362bf3895f41843c5fe40
</ref> (Thanks to Rob Stringer!)
* Fix python syntax <ref>
https://github.com/derivative-maker/derivative-maker/commit/3e7947520f81e52fb2c5eecb644a6c86123bbdd4
</ref> (Thanks to Rob Stringer!)
* Query droplet status via DO instead of cloud-init <ref>
https://github.com/derivative-maker/derivative-maker/commit/c548aafe296a3af2b8e001ee1de768f105de1808
</ref> (Thanks to Rob Stringer!)
* Debug droplet facts <ref>
https://github.com/derivative-maker/derivative-maker/commit/a3161b8a2bf1f464ebb889c51afde8c9b00ac389
</ref> (Thanks to Rob Stringer!)
* Add troubleshooting step to inspect VPS <ref>
https://github.com/derivative-maker/derivative-maker/commit/37f05a689f148ff8d311cbe325c0e6fe7fb42b54
</ref> (Thanks to Rob Stringer!)
* windows installer <ref>
https://github.com/derivative-maker/derivative-maker/commit/8ee0da1fe91a3adf6b56451986f564b647d1781e
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/add602aa3316f578c7ee0bfe583847f1e3bdfd65
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/3dfab4b2bdbcca0cdfcedc9c2d7bc27297d27b81
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/b19e4ed512d1aff81ed1f75c78d9dd1d635377fe
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/3346d68f42bc050520152bbdacac25860136e664
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/897e6f25508433f5911ca2c0e7737a76adac24f8
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/c2c420d699d59068cb3968493fdf8737d72794e9
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/2b19c61dd9e2412ae52c10a8e7dc8d2f3afbe5d3
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/2ae86d610b6e26154bdc0518599ec69e75048dbd
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/83832343c4c77208e8b751c82db5620737d12a4d
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/58f960ed235f9164fcc639d3b401fe0ef6421033
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/a5eff7a16194ce3bb34bd310dc5f1fa1eefd7f7f
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/0ed1d87c969465179597f5a7121987fd0e4143fd
</ref>
* set environment variable `derivative_maker=true` during the build process <ref>
https://github.com/derivative-maker/derivative-maker/commit/0be250343b179edced02e2a2cb14578890f5adc0
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/776f6b9f85b9664ee82ba67290eb982f398833c4
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/28a2493e651d220991f269ff10701b910365785b
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/eb2ab5b07da3049dfd4401157f659acd3d706e3b
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/3c790c29417f6104b8dcc88ee5cf4ca84640e752
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/dc89a7a48024e161737134c31613da11aea1393a
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/6a8a280f15cad7f2ec8d34ca3d05c8f62446bbdb
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/ea63e2312c1c2c3562ac541a8535d56de6e8fb17
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/45ad7f86717e1666b308292b909cc8fe86790c85
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/e65cf25b56f36876bcf9e9ee119d3d3ee7d33aba
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/4ad43fc54fbe9cd8c4b83bb84cf1e0c6bac5f95f
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/f81b6aad6ec11aca9d9babe4e261a954f377ba72
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/40ee6685005f79a2673575406ce03ff9a0c54ac9
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/1a41f7ce0f59aec672b1f43f843da0360a149374
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/d597f4c861d7b1293f45793113be4491c636cdbe
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/73b2a78b0bf615adaf86a8dff27984a0bbe04705
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/f3ceaa98abf56dab0697c3439f53e06090f5cf21
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/cb8e50dc7aea390e962797fc9880d95d7be75c26
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/e6d386aad1b7b5147cc26893691c0f76309afbf0
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/13cc802fdb1d17720e8324f5ead02553aec395f1
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/bda4a09169e41beb309a7723422ac44addaf1239
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/dec7378e0264a73dfc45cfa240bed8f51fa3f17d
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/3360d35ddfab8c4a960067299ead509da9b32d07
</ref>
* live-build <ref>
https://github.com/derivative-maker/derivative-maker/commit/dcdbcb9227130ae57a6b8e368d219107ba9472b2
</ref>
* renamed build-steps renamed: build-steps.d/1120_prepare-build-machine -> build-steps.d/1200_prepare-build-machine renamed: build-steps.d/1130_cowbuilder-setup -> build-steps.d/1300_cowbuilder-setup renamed: build-steps.d/1140_local-dependencies -> build-steps.d/1400_local-dependencies renamed: build-steps.d/1350_create-iso-config -> build-steps.d/1500_create-iso-config renamed: build-steps.d/1150_export-libvirt-xml -> build-steps.d/1600_export-libvirt-xml renamed: build-steps.d/2700_create-vm-text -> build-steps.d/1700_create-vm-text renamed: build-steps.d/1200_create-debian-packages -> build-steps.d/2100_create-debian-packages renamed: build-steps.d/1300_create-raw-image -> build-steps.d/3200_create-raw-image renamed: build-steps.d/1400_create-iso-chroot -> build-steps.d/3300_create-iso-chroot renamed: build-steps.d/1800_copy_vms_into_raw -> build-steps.d/3400_copy-vms-into-raw renamed: build-steps.d/1700_install-packages -> build-steps.d/3500_install-packages renamed: build-steps.d/2300_run-chroot-scripts-post-d -> build-steps.d/4300_run-chroot-scripts-post-d renamed: build-steps.d/2400_convert-raw-to-qcow2 -> build-steps.d/4400_convert-raw-to-qcow2 renamed: build-steps.d/2350_zerofree-raw -> build-steps.d/4400_zerofree-raw renamed: build-steps.d/2375_build-arm64-fs -> build-steps.d/4500_build-arm64-fs renamed: build-steps.d/2500_convert-raw-to-vdi -> build-steps.d/4500_convert-raw-to-vdi renamed: build-steps.d/2600_create-vbox-vm -> build-steps.d/4600_create-vbox-vm renamed: build-steps.d/2376_export-utm-packages -> build-steps.d/4600_export-utm-packages renamed: build-steps.d/2550_create-iso-image -> build-steps.d/4700_create-iso-image renamed: build-steps.d/2800_create-report -> build-steps.d/5100_create-report <ref>
https://github.com/derivative-maker/derivative-maker/commit/bec59930c3f9a5f0a8244fe611e91396b1d230a8
</ref>
== 17.0.1.9 ==
* '''port to Debian 12 (<code>bookworm</code>)'''
[https://github.com/kicksecure/anon-apt-sources-list <code>anon-apt-sources-list</code>]:
* bookworm `non-free` to `non-free-firmware` split <ref>
https://github.com/{{project_name_short}}/anon-apt-sources-list/commit/fad143766ec6fcfecdb9bf591d39c98d4736b1f9
</ref>
* bookworm `non-free-firmware` <ref>
https://github.com/{{project_name_short}}/anon-apt-sources-list/commit/ec9e2dd8ff72a9cb375d6d676e25defcd8adeb00
</ref>
[https://github.com/kicksecure/anon-connection-wizard <code>anon-connection-wizard</code>]:
* comment out unnecessary import I: anon-connection-wizard source: uses-python-distutils [usr/lib/python3/dist-packages/anon_connection_wizard/anon_connection_wizard.py:19] N: N: This package uses the Python distutils module. N: N: In Python 3.10 and 3.11, distutils has been formally marked as deprecated. N: Code that imports distutils will no longer work from Python 3.12. N: N: Please prepare for this deprecation and migrate away from the Python N: distutils module. N: N: See-Also: https://peps.python.org/pep-0632 <ref>
https://github.com/{{project_name_short}}/anon-connection-wizard/commit/933715f1674dbe5128078e3ccc38e9f591aa7816
</ref>
[https://github.com/kicksecure/desktop-config-dist <code>desktop-config-dist</code>]:
* Revert "`Depends: gnome-colors-common` for livecheck" This reverts commit 14544b881dccc81a63b76d0126e9a0ca4cc28c1a. <ref>
https://github.com/{{project_name_short}}/desktop-config-dist/commit/ba48bd9c73f49886069188d4722dcc178ec2ca2a
</ref>
* `Depends: gnome-colors-common` for livecheck <ref>
https://github.com/{{project_name_short}}/desktop-config-dist/commit/14544b881dccc81a63b76d0126e9a0ca4cc28c1a
</ref>
* livecheck systray icons <ref>
https://github.com/{{project_name_short}}/desktop-config-dist/commit/e1d4dbca4124aec09c0227ef503cb2225b84d1c6
</ref>
* check if images exist <ref>
https://github.com/{{project_name_short}}/desktop-config-dist/commit/990313f4c12dec9404329b550fd0fe8c77b60411
</ref>
[https://github.com/kicksecure/developer-meta-files <code>developer-meta-files</code>]:
* abolish /rw/config parsing (Does not influence Qubes specific /rw/config parsing.) <ref>
https://github.com/{{project_name_short}}/developer-meta-files/commit/799909522c964ffbd352f752ca9327ae5b27762b
</ref>
* towards install_ppcross_using_debian_source_package <ref>
https://github.com/{{project_name_short}}/developer-meta-files/commit/36ae3d156fcaeca1d12466ea56f5f112df7ababe
</ref>
* import from Whonix-Installer <ref>
https://github.com/{{project_name_short}}/developer-meta-files/commit/2937074c708e71dbb8834aec5b76cee1e80703d9
</ref>
[https://github.com/kicksecure/dist-base-files <code>dist-base-files</code>]:
* enable zsh by default for new builds https://forums.whonix.org/t/change-default-shell-from-bash-to-zsh-by-default/14792 <ref>
https://github.com/{{project_name_short}}/dist-base-files/commit/a618d3c76cc70223db4ecc6b2defe4cb97582d68
</ref>
[https://github.com/kicksecure/genmkfile <code>genmkfile</code>]:
* set `derivative_repository_name` <ref>
https://github.com/{{project_name_short}}/genmkfile/commit/fc3353a9dbf366369e37853e2d12ad332d547ce6
</ref>
* skip make uch if CHANGES file exists <ref>
https://github.com/{{project_name_short}}/genmkfile/commit/05972114e399ecba0dfb93533e1dd941461f2dfa
</ref>
[https://github.com/kicksecure/hardened-kernel <code>hardened-kernel</code>]:
* removed outdated .travis.yml file <ref>
https://github.com/{{project_name_short}}/hardened-kernel/commit/6ab6eb0cfdbd6adbd05c3009bcf2e8e69831a9a3
</ref>
[https://github.com/kicksecure/helper-scripts <code>helper-scripts</code>]:
* lightdm https://forums.whonix.org/t/display-manager-lightdm-gdm3-sddm-or-no-display-manager-startx/12457 <ref>
https://github.com/{{project_name_short}}/helper-scripts/commit/437767bc56c20a1dc40d11bfdf8885081fafa2dc
</ref>
[https://github.com/kicksecure/kicksecure-base-files <code>kicksecure-base-files</code>]:
* bump /etc/kicksecure_version <ref>
https://github.com/{{project_name_short}}/kicksecure-base-files/commit/d6887d51604e6781f8493257a6cef9e9e0b2d5b7
</ref>
[https://github.com/kicksecure/kicksecure-meta-packages <code>kicksecure-meta-packages</code>]:
* install auditd by default useful for aa-logprof <ref>
https://github.com/{{project_name_short}}/kicksecure-meta-packages/commit/306f575c3560b9be14ef26a382eca262a3941e58
</ref>
* lightdm https://forums.whonix.org/t/display-manager-lightdm-gdm3-sddm-or-no-display-manager-startx/12457 <ref>
https://github.com/{{project_name_short}}/kicksecure-meta-packages/commit/9ce618d595e965ce1e2f7a45be630733fab22015
</ref>
* remove dependency on `apt-transport-https` because now integrated in `apt` <ref>
https://github.com/{{project_name_short}}/kicksecure-meta-packages/commit/1e28a3cb7a12dc11bb1c8ed8ca6784d6e50c9e53
</ref>
* `policykit-1` -> `polkitd`, `pkexec` <ref>
https://github.com/{{project_name_short}}/kicksecure-meta-packages/commit/88b2c8b9f70eac4fe50ebe268983821368ef5cea
</ref>
[https://github.com/kicksecure/legacy-dist <code>legacy-dist</code>]:
* remove bashrc migration legacy <ref>
https://github.com/{{project_name_short}}/legacy-dist/commit/ccb70d402fec9c327589bd43e94f3cfd3f05d146
</ref>
* support `downloadonly` option for `release-upgrade` <ref>
https://github.com/{{project_name_short}}/legacy-dist/commit/872841c11790437827e598a9ae4598a02f29b5ea
</ref>
[https://github.com/kicksecure/libvirt-dist <code>libvirt-dist</code>]:
* XFCE -> Xfce <ref>
https://github.com/{{project_name_short}}/libvirt-dist/commit/c9de8bea7821cb510e5abec366be21423756e55e
</ref>
* removed outdated .travis.yml file <ref>
https://github.com/{{project_name_short}}/libvirt-dist/commit/df0f6285000691aea4b1f60fbdde92a3717eee39
</ref>
[https://github.com/kicksecure/live-config-dist <code>live-config-dist</code>]:
* bump major version <ref>
https://github.com/{{project_name_short}}/live-config-dist/commit/160285b9f6baa9e8a12cb32fcd6d66ec52278888
</ref>
[https://github.com/kicksecure/open-link-confirmation <code>open-link-confirmation</code>]:
* abolish /rw/config parsing (Does not influence Qubes specific /rw/config parsing.) <ref>
https://github.com/{{project_name_short}}/open-link-confirmation/commit/70fcb4f609a6b99de386935a4d4baf771dd2f930
</ref>
[https://github.com/kicksecure/rads <code>rads</code>]:
* lightdm https://forums.whonix.org/t/display-manager-lightdm-gdm3-sddm-or-no-display-manager-startx/12457 <ref>
https://github.com/{{project_name_short}}/rads/commit/1547c58d99620ecca3061660166b58f75e62eab1
</ref>
* fix, renamed usr/libexec/tmpfiles.d/rads.conf -> usr/lib/tmpfiles.d/rads.conf <ref>
https://github.com/{{project_name_short}}/rads/commit/33745e418ba8011779f9f16a584481909df2975f
</ref>
* abolish /rw/config parsing (Does not influence Qubes specific /rw/config parsing.) <ref>
https://github.com/{{project_name_short}}/rads/commit/5c807e5a1ec72c8c32b07c5fd8284557260f6214
</ref>
[https://github.com/kicksecure/sdwdate <code>sdwdate</code>]:
* fix, restart sdwdate-pre every time sdwdate is restarted <ref>
https://github.com/{{project_name_short}}/sdwdate/commit/1974d12f698160fe58b963b02461a3d0b4a9f23d
</ref>
* delete sclockadj only when package is removed using apt-get with purge option otherwise during `release-upgrade` postrm script might run, delete sclockadj while sdwdate is still running <ref>
https://github.com/{{project_name_short}}/sdwdate/commit/997afad5a0f8676fa6cd1245469eb1681b19d960
</ref>
* Qubes seccomp fix <ref>
https://github.com/{{project_name_short}}/sdwdate/commit/998c418dd2e329a2acf4adce12fe1a77eb6556fa
</ref>
* defcon onion fix <ref>
https://github.com/{{project_name_short}}/sdwdate/commit/21d622504a23858c0d43ef09194bc748f58eb898
</ref>
* Update 30_default.conf Removed not working URLs <ref>
https://github.com/{{project_name_short}}/sdwdate/commit/441897cf9004cb3f774bf19aa4669397ecd58fe9
</ref> (Thanks to TNT BOM BOM!)
* Update 30_default.conf Renewed Defcon URL <ref>
https://github.com/{{project_name_short}}/sdwdate/commit/aebdeefa118fcfcdf2f15a76199d4c05a92c1c28
</ref> (Thanks to TNT BOM BOM!)
* Update 30_default.conf renewed the intercept URL, and removed duplicate from securedrop (since using the same new URL) <ref>
https://github.com/{{project_name_short}}/sdwdate/commit/11fca1e831bf2d3617076ad6ce3edd9ac90d0fad
</ref> (Thanks to TNT BOM BOM!)
* Update 30_default.conf Remove the TLS from https://www.propublica.org/ onion service
https://p53lf57qovyuvwsc6xnrppyply3vtqm7l6pcobkmyqsiofyeznfu5uqd.onion
http://p53lf57qovyuvwsc6xnrppyply3vtqm7l6pcobkmyqsiofyeznfu5uqd.onion <ref>
https://github.com/{{project_name_short}}/sdwdate/commit/f3ef31557e826b3242de4a190d42aa6d9f8d3745
</ref> (Thanks to TNT BOM BOM!)
* moved /usr/libexec/sdwdate/sclockadj.c -> usr/src/sdwdate/sclockadj.c <ref>
https://github.com/{{project_name_short}}/sdwdate/commit/76cf8e96bfd052e713ef09688915017dc999a572
</ref>
[https://github.com/kicksecure/systemcheck <code>systemcheck</code>]:
* add firmware and microcode packages to list of expected nonfreeodm packages <ref>
https://github.com/{{project_name_short}}/systemcheck/commit/4d42468bc78e634722f784658e00f386efc1465b
</ref>
* abolish /rw/config parsing (Does not influence Qubes specific /rw/config parsing.) <ref>
https://github.com/{{project_name_short}}/systemcheck/commit/59492cebcfabbd9c54942f018493107311dfe0f2
</ref>
[https://github.com/kicksecure/tb-starter <code>tb-starter</code>]:
* abolish /rw/config parsing (Does not influence Qubes specific /rw/config parsing.) <ref>
https://github.com/{{project_name_short}}/tb-starter/commit/348916809bba83e7bd62d8a372646f316ab3b10e
</ref>
[https://github.com/kicksecure/tb-updater <code>tb-updater</code>]:
* tbb_hardcoded_version="12.5.1" <ref>
https://github.com/{{project_name_short}}/tb-updater/commit/9bb13e0ee978769ef68b1910c893f297494fca36
</ref>
* tbb_hardcoded_version="12.5" <ref>
https://github.com/{{project_name_short}}/tb-updater/commit/782c9eae3ef932275e0e876f1fbcd83e845cc41a
</ref>