Compare commits

...

2 Commits

Author SHA1 Message Date
Jonathan Carter 739cba6c49 New release: Fix /dev mount crash 2023-08-28 19:18:52 +02:00
Jonathan Carter 86b6ea8f4f New upstream release 2023-08-25 22:01:36 +02:00
7 changed files with 53 additions and 10 deletions
+16
View File
@@ -1,3 +1,19 @@
[ 13.0.4 ]
* Update config in mount module so that /dev is properly mounted
in target
[ 13.0.3 ]
* Update branding elements for Calamares 3.3 series
* Fix desktop file launcher
* Set installEFIFallback: true
* Don't allow empty passwords
[ 13.0.2 ]
* Fix desktop icon path in add-calamares-desktop-icon
[ 13.0.1 ]
* Initial release for trixie
+1 -1
View File
@@ -3,7 +3,7 @@ Type=Application
Version=1.0
Name=Install Debian
GenericName=Calamares Installer
Exec=install-debian
Exec=calamares-install-debian
Comment=Calamares — Installer for Debian Live
Keywords=calamares;system;install;debian;installer
Icon=install-debian
+10 -6
View File
@@ -3,7 +3,7 @@ componentName: debian
welcomeStyleCalamares: true
welcomeExpandingLogo: true
windowExpanding: normal
windowSize: 800px,520px
windowSize: 800px,580px
windowPlacement: center
strings:
@@ -20,18 +20,22 @@ strings:
releaseNotesUrl: https://www.debian.org/releases/bookworm/releasenotes
donateUrl: https://www.debian.org
sidebar: widget
navigation: widget
images:
# productBanner: "/usr/share/desktop-base/emerald-theme/grub/grub-16x9.png"
productLogo: "debian-logo.png"
productIcon: "debian-logo.png"
productWelcome: "welcome.png"
# productWallpaper: "wallpaper.png"
# productWallpaper: ""
slideshow: "show.qml"
style:
sidebarBackground: "#2c3133"
sidebarText: "#FFFFFF"
sidebarTextSelect: "#4d7079"
sidebarTextSelect: "#292F34"
SidebarBackground: "#010027"
SidebarText: "#FFFFFF"
SidebarTextCurrent: "#fbfbfb"
SidebarBackgroundCurrent: "#017877"
slideshowAPI: 2
+1 -1
View File
@@ -51,4 +51,4 @@ efiBootMgr: "efibootmgr"
# seems to be the only one). If you set this to false, take care
# to add another module to optionally install the fallback on those
# boards that need it.
installEFIFallback: false
installEFIFallback: true
+2 -2
View File
@@ -22,13 +22,13 @@ extraMounts:
mountPoint: /sys
- device: /dev
mountPoint: /dev
options: bind
options: [ bind ]
- device: tmpfs
fs: tmpfs
mountPoint: /run
- device: /run/udev
mountPoint: /run/udev
options: bind
options: [ bind ]
extraMountsEfi:
- device: efivarfs
+9
View File
@@ -15,3 +15,12 @@ defaultGroups:
autologinGroup: autologin
sudoersGroup: sudo
setRootPassword: false
passwordRequirements:
nonempty: true
minLength: -1 # Password at least this many characters
maxLength: -1 # Password at most this many characters
libpwquality:
- minlen=0
- minclass=0
+14
View File
@@ -1,3 +1,17 @@
calamares-settings-debian (13.0.4-1) unstable; urgency=medium
* New upstream release
- Fix crash where /dev isn't mounted
-- Jonathan Carter <jcc@debian.org> Mon, 28 Aug 2023 19:17:29 +0200
calamares-settings-debian (13.0.3-1) unstable; urgency=medium
* New upstream release
- Do not allow empty password (Closes: #1050291)
-- Jonathan Carter <jcc@debian.org> Fri, 25 Aug 2023 21:51:02 +0200
calamares-settings-debian (13.0.2-1) unstable; urgency=medium
* New upstream release