-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathchangelog
1176 lines (601 loc) · 36 KB
/
changelog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
calamares-qml-settings-nitrux (2.0.5+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Sat, 15 Feb 2025 12:11:00 -0500
calamares-qml-settings-nitrux (2.0.4+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Sat, 01 Feb 2025 01:29:00 -0500
calamares-qml-settings-nitrux (2.0.3+new-dev) nitrux; urgency=medium
* Remove parameter to convert irqs to threads because it causes a constant stutter every couple of seconds.
-- Uri Herrera <[email protected]> Fri, 31 Jan 2025 21:13:00 -0500
calamares-qml-settings-nitrux (2.0.2+new-dev) nitrux; urgency=medium
* Disable kfence.
-- Uri Herrera <[email protected]> Thu, 30 Jan 2025 17:23:00 -0500
calamares-qml-settings-nitrux (2.0.1+new-dev) nitrux; urgency=medium
* Add parameter to convert irqs to threads.
* Remove paramater for KFENCE.
-- Uri Herrera <[email protected]> Thu, 30 Jan 2025 17:05:00 -0500
calamares-qml-settings-nitrux (2.0.0+new-dev) nitrux; urgency=medium
* Enable amd_pstate and add parameter for amd prefcore.
-- Uri Herrera <[email protected]> Sat, 25 Jan 2025 00:12:00 -0500
calamares-qml-settings-nitrux (1.9.9+new-dev) nitrux; urgency=medium
* Revert sb-shim instead of grub in bootloader.conf as it causes our update-grub script not to work.
-- Uri Herrera <[email protected]> Fri, 20 Dec 2024 14:28:00 -0500
calamares-qml-settings-nitrux (1.9.8+new-dev) nitrux; urgency=medium
* Use sb-shim instead of grub in bootloader.conf.
* Don't use external script to sign the kernel as it's already signed during ISO build process.
-- Uri Herrera <[email protected]> Fri, 20 Dec 2024 02:16:00 -0500
calamares-qml-settings-nitrux (1.9.7+new-dev) nitrux; urgency=medium
* Add script to sign the kernel for secure boot within the chroot.
-- Uri Herrera <[email protected]> Fri, 20 Dec 2024 12:59:00 -0500
calamares-qml-settings-nitrux (1.9.6+new-dev) nitrux; urgency=medium
* Add paramaters for PTI and KFENCE.
-- Uri Herrera <[email protected]> Thu, 19 Dec 2024 02:18:00 -0500
calamares-qml-settings-nitrux (1.9.5+new-dev) nitrux; urgency=medium
* Remove debug parameter.
-- Uri Herrera <[email protected]> Thu, 19 Dec 2024 01:47:00 -0500
calamares-qml-settings-nitrux (1.9.4+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Tue, 17 Dec 2024 15:47:00 -0500
calamares-qml-settings-nitrux (1.9.3+new-dev) nitrux; urgency=medium
* Add user to group video.
-- Uri Herrera <[email protected]> Sat, 14 Dec 2024 16:35:00 -0500
calamares-qml-settings-nitrux (1.9.2+new-dev) nitrux; urgency=medium
* Add parameter to enable landlock.
-- Uri Herrera <[email protected]> Sat, 14 Dec 2024 13:34:00 -0500
calamares-qml-settings-nitrux (1.9.1+new-dev) nitrux; urgency=medium
* Add parameter to mitigate spurious wake events when suspending.
-- Uri Herrera <[email protected]> Fri, 13 Dec 2024 12:10:00 -0500
calamares-qml-settings-nitrux (1.9.0+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Mon, 02 Dec 2024 12:54:00 -0500
calamares-qml-settings-nitrux (1.8.9+new-dev) nitrux; urgency=medium
* Remove parameter for a feature that's not enabled in the kernel.
-- Uri Herrera <[email protected]> Sun, 17 Nov 2024 04:39:00 -0500
calamares-qml-settings-nitrux (1.8.8+new-dev) nitrux; urgency=medium
* Update branding.
* Add kernel paramaters to prevent clockdrift in some laptops.
-- Uri Herrera <[email protected]> Sat, 16 Nov 2024 14:10:00 -0500
calamares-qml-settings-nitrux (1.8.7+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Wed, 31 Oct 2024 14:59:00 -0500
calamares-qml-settings-nitrux (1.8.6+new-dev) nitrux; urgency=medium
* Add kernel parameters.
-- Uri Herrera <[email protected]> Thu, 24 Oct 2024 00:28:00 -0500
calamares-qml-settings-nitrux (1.8.5+new-dev) nitrux; urgency=medium
* Add user to gamemode group.
-- Uri Herrera <[email protected]> Wed, 23 Oct 2024 18:30:00 -0500
calamares-qml-settings-nitrux (1.8.4+new-dev) nitrux; urgency=medium
* Add missing parameters to installation from ISO.
-- Uri Herrera <[email protected]> Wed, 23 Oct 2024 00:06:00 -0500
calamares-qml-settings-nitrux (1.8.3+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Sun, 20 Oct 2024 17:59:00 -0500
calamares-qml-settings-nitrux (1.8.2+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Mon, 30 Sep 2024 01:32:00 -0500
calamares-qml-settings-nitrux (1.8.1+new-dev) nitrux; urgency=medium
* Update slideshow.
* Don't request internet access to begin installation.
-- Uri Herrera <[email protected]> Wed, 21 Aug 2024 16:14:00 -0500
calamares-qml-settings-nitrux (1.8.0+new-dev) nitrux; urgency=medium
* Don't download our install scripts but only execute them and delete them.
-- Uri Herrera <[email protected]> Wed, 21 Aug 2024 16:14:00 -0500
calamares-qml-settings-nitrux (1.7.9+new-dev) nitrux; urgency=medium
* Adjust the required size for the esp to match the size of the partition in devices preloaded with windows.
-- Uri Herrera <[email protected]> Thu, 08 Aug 2024 16:17:00 -0500
calamares-qml-settings-nitrux (1.7.8+new-dev) nitrux; urgency=medium
* Adjust the time before downloading the scripts so that at least they don't fail to download because of that.
* Change the path where the scripts are downloaded to /usr/bin.
* Increase the storage and ram requirements to continue with the installation.
-- Uri Herrera <[email protected]> Thu, 08 Aug 2024 13:19:00 -0500
calamares-qml-settings-nitrux (1.7.8+new-dev) nitrux; urgency=medium
* Change the timeout for linker to 120 seconds.
-- Uri Herrera <[email protected]> Tue, 06 Aug 2024 02:52:00 -0500
calamares-qml-settings-nitrux (1.7.7+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Tue, 30 Jul 2024 06:31:00 -0500
calamares-qml-settings-nitrux (1.7.6+new-dev) nitrux; urgency=medium
* Remove acpi_osi parameter because when it's added by grub-mkconfig it can't escape the quotes.
-- Uri Herrera <[email protected]> Mon, 29 Jul 2024 04:46:00 -0500
calamares-qml-settings-nitrux (1.7.7+new-dev) nitrux; urgency=medium
* Fix acpi_osi parameter.
-- Uri Herrera <[email protected]> Sun, 28 Jul 2024 06:52:00 -0500
calamares-qml-settings-nitrux (1.7.6+new-dev) nitrux; urgency=medium
* Add acpi_osi parameter.
-- Uri Herrera <[email protected]> Sun, 28 Jul 2024 03:46:00 -0500
calamares-qml-settings-nitrux (1.7.5+new-dev) nitrux; urgency=medium
* Ensure intel pstate is enabled.
-- Uri Herrera <[email protected]> Sat, 27 Jul 2024 08:06:00 -0500
calamares-qml-settings-nitrux (1.7.4+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Thu, 18 Jul 2024 16:07:00 -0500
calamares-qml-settings-nitrux (1.7.3+new-dev) nitrux; urgency=medium
* Remove grub parameter.
-- Uri Herrera <[email protected]> Mon, 30 Jun 2024 23:21:00 -0500
calamares-qml-settings-nitrux (1.7.2+new-dev) nitrux; urgency=medium
* Sort GRUB parameters.
-- Uri Herrera <[email protected]> Fri, 28 Jun 2024 16:16:00 -0500
calamares-qml-settings-nitrux (1.7.1+new-dev) nitrux; urgency=medium
* Add parameters to disable watchdogs.
-- Uri Herrera <[email protected]> Sun, 16 Jun 2024 09:08:00 -0500
calamares-qml-settings-nitrux (1.7.0+new-dev) nitrux; urgency=medium
* Update slideshow.
-- Uri Herrera <[email protected]> Sat, 15 Jun 2024 23:11:00 -0500
calamares-qml-settings-nitrux (1.6.9+new-dev) nitrux; urgency=medium
* Change the timeout for rdpkg to 120 seconds.
-- Uri Herrera <[email protected]> Mon, 10 Jun 2024 00:13:00 -0500
calamares-qml-settings-nitrux (1.6.8+new-dev) nitrux; urgency=medium
* Set Calamares to use a default hsotname.
* Remove the root password fields from the Users QML module since we don't see the root password in the first place.
* Fix a TypeError in usersq.
* Change text to clarify that the input field for the hostname IS FOR THE HOSTNAME.
* Make the input field for the hostname no accept spaces.
* Reduce the time that the characters are visible in the password field to 0.
-- Uri Herrera <[email protected]> Mon, 10 Jun 2024 00:13:00 -0500
calamares-qml-settings-nitrux (1.6.7+new-dev) nitrux; urgency=medium
* Delete module configuration files just comment the content.
* Add text to Users module hostname field to indicate NOT TO PUT SPACES IN THE HOSTNAME.
-- Uri Herrera <[email protected]> Mon, 10 Jun 2024 14:27:00 -0500
calamares-qml-settings-nitrux (1.6.6+new-dev) nitrux; urgency=medium
* Don't delete module configuration files just comment the content.
-- Uri Herrera <[email protected]> Mon, 03 Jun 2024 16:57:00 -0500
calamares-qml-settings-nitrux (1.6.5+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Mon, 03 Jun 2024 05:27:00 -0500
calamares-qml-settings-nitrux (1.6.4+new-dev) nitrux; urgency=medium
* Use zstd and zsmalloc for zswap.
-- Uri Herrera <[email protected]> Tue, 28 May 2024 19:15:00 -0500
calamares-qml-settings-nitrux (1.6.3+new-dev) nitrux; urgency=medium
* Add kernel parameter to disable USB auto-suspend.
-- Uri Herrera <[email protected]> Mon, 27 May 2024 04:50:00 -0500
calamares-qml-settings-nitrux (1.6.2+new-dev) nitrux; urgency=medium
* Add kernel parameter to Fill freed pages and heap objects with zeroes.
* Add kernel parameter to Disable the merging of slabs of similar sizes.
* Add kernel parameter to enable Redzoning which adds extra areas around slabs that detect when a slab is overwritten past its real size, which can help detect overflows.
* Add kernel parameter to Disable Virtual syscalls.
* Add kernel parameter to Randomize kernel stack offset on syscall entry.
-- Uri Herrera <[email protected]> Thu, 23 May 2024 04:17:00 -0500
calamares-qml-settings-nitrux (1.6.1+new-dev) nitrux; urgency=medium
* Add kernel parameter to enable shuffling of pages in the memory allocator.
-- Uri Herrera <[email protected]> Wed, 22 May 2024 00:30:00 -0500
calamares-qml-settings-nitrux (1.6.0+new-dev) nitrux; urgency=medium
* Remove kernel parameter to avoid USB auto-suspend.
-- Uri Herrera <[email protected]> Fri, 17 May 2024 14:11:00 -0500
calamares-qml-settings-nitrux (1.6.0+new-dev) nitrux; urgency=medium
* Change category in desktop launcher.
-- Uri Herrera <[email protected]> Wed, 08 May 2024 02:42:00 -0500
calamares-qml-settings-nitrux (1.5.9+new-dev) nitrux; urgency=medium
* Add kernel parameter to avoid USB auto-suspend.
-- Uri Herrera <[email protected]> Thu, 02 May 2024 14:46:00 -0500
calamares-qml-settings-nitrux (1.5.8+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Thu, 24 Apr 2024 03:06:00 -0500
calamares-qml-settings-nitrux (1.5.7+new-dev) nitrux; urgency=medium
* Add parameter to GRUB configuration to enable full contrl of AMD graphics cards using AMDGPU.
-- Uri Herrera <[email protected]> Thu, 18 Apr 2024 00:13:00 -0500
calamares-qml-settings-nitrux (1.5.6+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Tue, 21 Mar 2024 13:09:00 -0500
calamares-qml-settings-nitrux (1.5.5+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Mon, 26 Feb 2024 17:19:00 -0500
calamares-qml-settings-nitrux (1.5.4+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Tue, 30 Dec 2023 17:11:00 -0500
calamares-qml-settings-nitrux (1.5.3+new-dev) nitrux; urgency=medium
* Remove line from slideshow.
-- Uri Herrera <[email protected]> Tue, 19 Dec 2023 18:50:00 -0500
calamares-qml-settings-nitrux (1.5.2+new-dev) nitrux; urgency=medium
* Add new background.
-- Uri Herrera <[email protected]> Fri, 12 Dec 2023 12:52:00 -0500
calamares-qml-settings-nitrux (1.5.1+new-dev) nitrux; urgency=medium
* Restore mount module configuration.
-- Uri Herrera <[email protected]> Mon, 11 Dec 2023 19:22:00 -0500
calamares-qml-settings-nitrux (1.5.0+new-dev) nitrux; urgency=medium
* Improve slideshow titles.
-- Uri Herrera <[email protected]> Fri, 08 Dec 2023 13:42:00 -0500
calamares-qml-settings-nitrux (1.4.9+new-dev) nitrux; urgency=medium
* Improve slideshow text spacing.
-- Uri Herrera <[email protected]> Fri, 08 Dec 2023 04:03:00 -0500
calamares-qml-settings-nitrux (1.4.8+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Thu, 07 Dec 2023 14:58:00 -0500
calamares-qml-settings-nitrux (1.4.7+new-dev) nitrux; urgency=medium
* Specify value for GRUB_RECORDFAIL_TIMEOUT.
-- Uri Herrera <[email protected]> Wed, 06 Dec 2023 22:05:00 -0500
calamares-qml-settings-nitrux (1.4.6+new-dev) nitrux; urgency=medium
* Update messages in users QML module.
-- Uri Herrera <[email protected]> Wed, 06 Dec 2023 18:54:00 -0500
calamares-qml-settings-nitrux (1.4.5+new-dev) nitrux; urgency=medium
* Show checkbox to enable or disable password quality check in the GUI.
* Set reuse user password for root to false.
* Add warning message about disabling password quality check.
-- Uri Herrera <[email protected]> Wed, 06 Dec 2023 18:33:00 -0500
calamares-qml-settings-nitrux (1.4.4+new-dev) nitrux; urgency=medium
* Update password requirements to try to follow the suggestions from https://pages.nist.gov/800-63-3/sp800-63b.html in usersq.conf.
-- Uri Herrera <[email protected]> Wed, 06 Dec 2023 04:48:00 -0500
calamares-qml-settings-nitrux (1.4.3+new-dev) nitrux; urgency=medium
* Increase lenght of password requirement to maximum of 64 characters and minimum of 8 to match libpwquality settings.
-- Uri Herrera <[email protected]> Wed, 06 Dec 2023 04:37:00 -0500
calamares-qml-settings-nitrux (1.4.2+new-dev) nitrux; urgency=medium
* Add check to welcomeq.conf to verify connectivity to raw.githubusercontent.com.
-- Uri Herrera <[email protected]> Tue, 28 Nov 2023 12:24:00 -0500
calamares-qml-settings-nitrux (1.4.1+new-dev) nitrux; urgency=medium
* Revert mount.conf mount options, else Calamares breaks.
-- Uri Herrera <[email protected]> Sun, 26 Nov 2023 12:57:00 -0500
calamares-qml-settings-nitrux (1.4.0+new-dev) nitrux; urgency=medium
* Add SPDX license headers.
* Use LUKS2 when using encryption.
* Increase storage requirement.
* Increase password requirement length.
* Update key format.
-- Uri Herrera <[email protected]> Sat, 25 Nov 2023 02:02:00 -0500
calamares-qml-settings-nitrux (1.3.9-2+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Tue, 13 Nov 2023 07:03:00 -0500
calamares-qml-settings-nitrux (1.3.9+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Mon, 13 Nov 2023 21:52:00 -0500
calamares-qml-settings-nitrux (1.3.8+new-dev) nitrux; urgency=medium
* Update initramfs module to include mitigations for lax file permissions in initramfs.
-- Uri Herrera <[email protected]> Sun, 12 Nov 2023 04:28:00 -0500
calamares-qml-settings-nitrux (1.3.7+new-dev) nitrux; urgency=medium
* Remove module configuration to try to fix whatever the fuck is adding the parameter ro to the grub entries.
-- Uri Herrera <[email protected]> Sat, 11 Nov 2023 22:09:00 -0500
calamares-qml-settings-nitrux (1.3.6+new-dev) nitrux; urgency=medium
* Remove module configuration file to add mount bind script for initram.
* Add module configuration to try to fix whatever the fuck is adding the parameter ro to the grub entries.
-- Uri Herrera <[email protected]> Sat, 11 Nov 2023 08:05:00 -0500
calamares-qml-settings-nitrux (1.3.5+new-dev) nitrux; urgency=medium
* Update module configuration file to add mount bind script for initram.
-- Uri Herrera <[email protected]> Sat, 11 Nov 2023 07:12:00 -0500
calamares-qml-settings-nitrux (1.3.4+new-dev) nitrux; urgency=medium
* Add module configuration file to add mount bind script for initram.
-- Uri Herrera <[email protected]> Sat, 11 Nov 2023 05:35:00 -0500
calamares-qml-settings-nitrux (1.3.3+new-dev) nitrux; urgency=medium
* Update partition.conf.
-- Uri Herrera <[email protected]> Sun, 28 Oct 2023 22:10:00 -0500
calamares-qml-settings-nitrux (1.3.2+new-dev) nitrux; urgency=medium
* Update partition.conf to also put /etc as a separate partition.
-- Uri Herrera <[email protected]> Sat, 27 Oct 2023 17:01:00 -0500
calamares-qml-settings-nitrux (1.3.1+new-dev) nitrux; urgency=medium
* Change scripts URL.
-- Uri Herrera <[email protected]> Sat, 27 Oct 2023 00:09:00 -0500
calamares-qml-settings-nitrux (1.3.0+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Tue, 17 Oct 2023 02:36:00 -0500
calamares-qml-settings-nitrux (1.2.9+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Sat, 30 Sep 2023 15:11:00 -0500
calamares-qml-settings-nitrux (1.2.8+new-dev) nitrux; urgency=medium
* Check if the swap partition and unmount it so that Calamares can partition disks when using it in a VM.
-- Uri Herrera <[email protected]> Tue, 19 Sep 2023 04:38:00 -0500
calamares-qml-settings-nitrux (1.2.7+new-dev) nitrux; urgency=medium
* Add a kernel parameter to avoid loading Intel SGX, which Intel deprecated since the 11th gen and has a record of vulnerabilities.
-- Uri Herrera <[email protected]> Sat, 26 Aug 2023 14:12:00 -0500
calamares-qml-settings-nitrux (1.2.6+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Sat, 26 Aug 2023 14:12:00 -0500
calamares-qml-settings-nitrux (1.2.5+new-dev) nitrux; urgency=medium
* Update script to start Calamares, launch Calamares using the highest debug level.
-- Uri Herrera <[email protected]> Wed, 22 Aug 2023 12:12:00 -0500
calamares-qml-settings-nitrux (1.2.4+new-dev) nitrux; urgency=medium
* Update settings.conf to run linker before for modules that use the package manager.
-- Uri Herrera <[email protected]> Mon, 14 Aug 2023 15:40:00 -0500
calamares-qml-settings-nitrux (1.2.3+new-dev) nitrux; urgency=medium
* Update partition.conf and dsiplaymanager.conf to maybe see if autologin works.
-- Uri Herrera <[email protected]> Mon, 14 Aug 2023 15:31:00 -0500
calamares-qml-settings-nitrux (1.2.2+new-dev) nitrux; urgency=medium
* Remove deprecated kernel parameter.
-- Uri Herrera <[email protected]> Thu, 04 Aug 2023 18:02:00 -0500
calamares-qml-settings-nitrux (1.2.1+new-dev) nitrux; urgency=medium
* Remove some kernel parameters since Calamares adds them already.
-- Uri Herrera <[email protected]> Tue, 01 Aug 2023 08:01:00 -0500
calamares-qml-settings-nitrux (1.2.0+new-dev) nitrux; urgency=medium
* Sort alphabetically the kernel parameters.
-- Uri Herrera <[email protected]> Mon, 31 Jul 2023 21:00:00 -0500
calamares-qml-settings-nitrux (1.1.9+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Thu, 20 Jul 2023 15:09:00 -0500
calamares-qml-settings-nitrux (1.1.8+new-dev) nitrux; urgency=medium
* Revert kernel parameters.
-- Uri Herrera <[email protected]> Thu, 20 Jul 2023 04:19:00 -0500
calamares-qml-settings-nitrux (1.1.7+new-dev) nitrux; urgency=medium
* Remove scripts for this package.
-- Uri Herrera <[email protected]> Wed, 19 Jul 2023 20:42:00 -0500
calamares-qml-settings-nitrux (1.1.6+new-dev) nitrux; urgency=medium
* Add more kernel parameters.
-- Uri Herrera <[email protected]> Wed, 19 Jul 2023 16:40:00 -0500
calamares-qml-settings-nitrux (1.1.5+new-dev) nitrux; urgency=medium
* Include the scripts on this package.
-- Uri Herrera <[email protected]> Thu, 29 Jun 2023 18:56:00 -0500
calamares-qml-settings-nitrux (1.1.4+new-dev) nitrux; urgency=medium
* Update grubcfg.
-- Uri Herrera <[email protected]> Tue, 20 Jun 2023 22:22:00 -0500
calamares-qml-settings-nitrux (1.1.3+new-dev) nitrux; urgency=medium
* Update grubcfg.
-- Uri Herrera <[email protected]> Thu, 15 Jun 2023 15:43:00 -0500
calamares-qml-settings-nitrux (1.1.2+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Mon, 12 Jun 2023 18:31:00 -0500
calamares-qml-settings-nitrux (1.1.1+new-dev) nitrux; urgency=medium
* Update usersq module and add user to group.
-- Uri Herrera <[email protected]> Thu, 25 May 2023 20:26:00 -0500
calamares-qml-settings-nitrux (1.0.9+new-dev) nitrux; urgency=medium
* Update usersq module to use libpwuality options.
-- Uri Herrera <[email protected]> Thu, 25 May 2023 05:29:00 -0500
calamares-qml-settings-nitrux (1.0.8+new-dev) nitrux; urgency=medium
* Fix calamares kwin rules script.
-- Uri Herrera <[email protected]> Thu, 25 May 2023 04:27:00 -0500
calamares-qml-settings-nitrux (1.0.7+new-dev) nitrux; urgency=medium
* Fix calamares kwin rules script.
-- Uri Herrera <[email protected]> Thu, 25 May 2023 02:12:00 -0500
calamares-qml-settings-nitrux (1.0.6+new-dev) nitrux; urgency=medium
* Fix calamares kwin rules script.
-- Uri Herrera <[email protected]> Thu, 18 May 2023 12:44:00 -0500
calamares-qml-settings-nitrux (1.0.5+new-dev) nitrux; urgency=medium
* Fix calamares kwin rules script.
-- Uri Herrera <[email protected]> Thu, 18 May 2023 04:43:00 -0500
calamares-qml-settings-nitrux (1.0.4+new-dev) nitrux; urgency=medium
* Fix calamares kwin rules script.
-- Uri Herrera <[email protected]> Thu, 18 May 2023 03:21:00 -0500
calamares-qml-settings-nitrux (1.0.3+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Thu, 11 May 2023 15:42:00 -0500
calamares-qml-settings-nitrux (1.0.2+new-dev) nitrux; urgency=medium
* Update grub module.
-- Uri Herrera <[email protected]> Thu, 11 May 2023 04:07:00 -0500
calamares-qml-settings-nitrux (1.0.1+new-dev) nitrux; urgency=medium
* Update partitions and welcome modules.
-- Uri Herrera <[email protected]> Wed, 03 May 2023 21:59:00 -0500
calamares-qml-settings-nitrux (1.0.0+new-dev) nitrux; urgency=medium
* Update partitions and fstab modules.
-- Uri Herrera <[email protected]> Fri, 28 Apr 2023 03:40:00 -0500
calamares-qml-settings-nitrux (0.9.9+new-dev) nitrux; urgency=medium
* Update partitions and fstab modules.
-- Uri Herrera <[email protected]> Thu, 27 Apr 2023 23:49:00 -0500
calamares-qml-settings-nitrux (0.9.8+new-dev) nitrux; urgency=medium
* Update grub module.
-- Uri Herrera <[email protected]> Thu, 27 Apr 2023 20:09:00 -0500
calamares-qml-settings-nitrux (0.9.7+new-dev) nitrux; urgency=medium
* Update grub module.
* Adjust partitions size.
* Adjust root size requirement.
-- Uri Herrera <[email protected]> Tue, 25 Apr 2023 15:11:00 -0500
calamares-qml-settings-nitrux (0.9.6+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Tue, 25 Apr 2023 13:36:00 -0500
calamares-qml-settings-nitrux (0.9.5+new-dev) nitrux; urgency=medium
* Update partition module config.
-- Uri Herrera <[email protected]> Thu, 13 Apr 2023 07:45:00 -0500
calamares-qml-settings-nitrux (0.9.4+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Thu, 31 Mar 2023 17:46:00 -0500
calamares-qml-settings-nitrux (0.9.3+new-dev) nitrux; urgency=medium
* Update branding.
-- Uri Herrera <[email protected]> Tue, 02 Mar 2023 01:50:00 -0500
calamares-qml-settings-nitrux (0.9.2+new-dev) nitrux; urgency=medium
* Delete launch script.
-- Uri Herrera <[email protected]> Tue, 02 Mar 2023 01:50:00 -0500
calamares-qml-settings-nitrux (0.9.1+new-dev) nitrux; urgency=medium
* Update launch script.
-- Uri Herrera <[email protected]> Wed, 01 Mar 2023 23:38:00 -0500
calamares-qml-settings-nitrux (0.9.0+new-dev) nitrux; urgency=medium
* Update autostart script.
-- Uri Herrera <[email protected]> Wed, 01 Mar 2023 22:08:00 -0500
calamares-qml-settings-nitrux (0.8.9+new-dev) nitrux; urgency=medium
* Update launch script.
-- Uri Herrera <[email protected]> Wed, 01 Mar 2023 20:19:00 -0500
calamares-qml-settings-nitrux (0.8.8+new-dev) nitrux; urgency=medium
* Update packages.conf.
-- Uri Herrera <[email protected]> Wed, 01 Mar 2023 19:36:00 -0500
calamares-qml-settings-nitrux (0.8.7+new-dev) nitrux; urgency=medium
* Do not add user to docker group.
-- Uri Herrera <[email protected]> Wed, 04 Jan 2023 22:23:00 -0500
calamares-qml-settings-nitrux (0.8.6+new-dev) nitrux; urgency=medium
* Do not add user to docker group.
-- Uri Herrera <[email protected]> Tue, 02 Jan 2023 00:44:00 -0500
calamares-qml-settings-nitrux (0.8.5+new-dev) nitrux; urgency=medium
* Add conf for openrc services.
-- Uri Herrera <[email protected]> Sun, 01 Jan 2023 06:43:00 -0500
calamares-qml-settings-nitrux (0.8.4+new-dev) nitrux; urgency=medium
* Add user to pipewire group.
-- Uri Herrera <[email protected]> Sun, 01 Jan 2023 03:20:00 -0500
calamares-qml-settings-nitrux (0.8.3+new-dev) nitrux; urgency=medium
* Update branding file.
-- Uri Herrera <[email protected]> Sun, 01 Jan 2023 03:20:00 -0500
calamares-qml-settings-nitrux (0.8.2+new-dev) nitrux; urgency=medium
* Add kernel parameters.
-- Uri Herrera <[email protected]> Sun, 01 Jan 2023 02:36:00 -0500
calamares-qml-settings-nitrux (0.8.1+new-dev) nitrux; urgency=medium
* Adjust ratio of default partitions when selecting erase disk assuming a device of 32G of storage.
-- Uri Herrera <[email protected]> Sun, 25 Dec 2022 17:06:00 -0500
calamares-qml-settings-nitrux (0.8.0+new-dev) nitrux; urgency=medium
* Fix typo in kernel parameters.
-- Uri Herrera <[email protected]> Sun, 25 Dec 2022 16:37:00 -0500
calamares-qml-settings-nitrux (0.7.9+new-dev) nitrux; urgency=medium
* Configure module to undebianize.
-- Uri Herrera <[email protected]> Sun, 25 Dec 2022 03:43:00 -0500
calamares-qml-settings-nitrux (0.7.8+new-dev) nitrux; urgency=medium
* Add kernel parameters.
-- Uri Herrera <[email protected]> Sat, 24 Dec 2022 23:41:00 -0500
calamares-qml-settings-nitrux (0.7.7+new-dev) nitrux; urgency=medium
* Adjust value of storage and ram in welcomeq to values in GiB.
-- Uri Herrera <[email protected]> Sat, 24 Dec 2022 23:22:00 -0500
calamares-qml-settings-nitrux (0.7.6+new-dev) nitrux; urgency=medium
* Adjust ratio of default partitions when selecting erase disk assuming a device of 32G of storage.
-- Uri Herrera <[email protected]> Sat, 24 Dec 2022 23:17:00 -0500
calamares-qml-settings-nitrux (0.7.5+new-dev) nitrux; urgency=medium
* Adjust ratio of default partitions when selecting erase disk assuming a device of 64G of storage.
-- Uri Herrera <[email protected]> Sat, 24 Dec 2022 21:39:00 -0500
calamares-qml-settings-nitrux (0.7.4+new-dev) nitrux; urgency=medium
* Update modules configuration.
-- Uri Herrera <[email protected]> Sat, 24 Dec 2022 21:39:00 -0500
calamares-qml-settings-nitrux (0.7.3+new-dev) nitrux; urgency=medium
* Add user to another group.
-- Uri Herrera <[email protected]> Mon, 19 Dec 2022 13:33:00 -0500
calamares-qml-settings-nitrux (0.7.2+new-dev) nitrux; urgency=medium
* Set EFI fallback to false because Calamares dies spectacularly if the option is unset or set to true.
-- Uri Herrera <[email protected]> Fri, 02 Dec 2022 01:29:00 -0500
calamares-qml-settings-nitrux (0.7.1+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Tue, 01 Dec 2022 16:13:00 -0500
calamares-qml-settings-nitrux (0.7.0+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Tue, 01 Nov 2022 17:05:00 -0500
calamares-qml-settings-nitrux (0.6.9+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Sun, 30 Oct 2022 19:35:00 -0500
calamares-qml-settings-nitrux (0.6.8+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Tue, 29 Sep 2022 00:25:00 -0500
calamares-qml-settings-nitrux (0.6.7+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Wed, 31 Aug 2022 03:09:00 -0500
calamares-qml-settings-nitrux (0.6.6+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Sat, 30 Jul 2022 14:16:00 -0500
calamares-qml-settings-nitrux (0.6.5+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Wed, 29 Jun 2022 15:50:00 -0500
calamares-qml-settings-nitrux (0.6.4+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Wed, 01 Jun 2022 02:42:00 -0500
calamares-qml-settings-nitrux (0.6.3+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Wed, 01 Jun 2022 02:42:00 -0500
calamares-qml-settings-nitrux (0.6.2+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Wed, 01 Jun 2022 02:42:00 -0500
calamares-qml-settings-nitrux (0.6.1+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Wed, 01 Jun 2022 02:01:00 -0500
calamares-qml-settings-nitrux (0.6.0+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Tue, 31 May 2022 22:27:00 -0500
calamares-qml-settings-nitrux (0.5.9+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Tue, 31 May 2022 16:51:00 -0500
calamares-qml-settings-nitrux (0.5.8+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Mon, 02 May 2022 15:14:00 -0500
calamares-qml-settings-nitrux (0.5.7+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Mon, 02 May 2022 00:52:00 -0500
calamares-qml-settings-nitrux (0.5.6+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Sun, 01 May 2022 02:51:00 -0500
calamares-qml-settings-nitrux (0.5.5+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Sun, 01 May 2022 02:51:00 -0500
calamares-qml-settings-nitrux (0.5.4+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Sat, 30 Apr 2022 19:54:00 -0500
calamares-qml-settings-nitrux (0.5.3+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Sat, 30 Apr 2022 12:23:00 -0500
calamares-qml-settings-nitrux (0.5.2+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Thu, 28 Apr 2022 20:33:00 -0500
calamares-qml-settings-nitrux (0.5.1+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Thu, 31 Mar 2022 03:40:00 -0500
calamares-qml-settings-nitrux (0.5.0+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Sat, 26 Feb 2022 21:09:00 -0500
calamares-qml-settings-nitrux (0.4.9+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Sat, 29 Jan 2022 00:46:00 -0500
calamares-qml-settings-nitrux (0.4.8+new-dev) nitrux; urgency=medium
* Update package.
-- Uri Herrera <[email protected]> Fri, 28 Jan 2022 17:12:00 -0500
calamares-qml-settings-nitrux (0.4.7+new-dev) nitrux; urgency=medium
* Update package.