Skip to content

Commit ed7247c

Browse files
committed
update pkg
1 parent f83bd65 commit ed7247c

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
calamares-qml-settings-nitrux (1.7.4+new-dev) nitrux; urgency=medium
2+
3+
* Update branding.
4+
5+
-- Uri Herrera <[email protected]> Thu, 18 Jun 2024 16:07:00 -0500
6+
17
calamares-qml-settings-nitrux (1.7.3+new-dev) nitrux; urgency=medium
28

39
* Remove grub parameter.

etc/calamares/branding/nxos/branding.desc

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ welcomeExpandingLogo: true
1515
strings:
1616
productName: Nitrux OS
1717
shortProductName: Nitrux
18-
version: 3.5.1
19-
shortVersion: 3.5.1
20-
versionedName: Nitrux OS 3.5.1 build.300624.nm
21-
shortVersionedName: Nitrux 3.5.1 build.300624.nm
18+
version: 3.6.0
19+
shortVersion: 3.6.0
20+
versionedName: Nitrux OS 3.6.0 build.310724.xx
21+
shortVersionedName: Nitrux 3.6.0 build.310724.xx
2222
bootloaderEntryName: Nitrux
2323
productUrl: https://nxos.org/
2424
supportUrl: https://github.com/Nitrux/nitrux-bug-tracker/

etc/skel/Desktop/org.nxos.installer.desktop

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Categories=Qt;System;
33
Comment[en_US]=Install Nitrux OS in this computer.
44
Comment=Install Nitrux OS in this computer.
5-
Exec=start-calamares
5+
Exec=sudo -E start-calamares
66
GenericName[en_US]=Installer
77
GenericName=Installer
88
Icon=live-installer

usr/bin/start-calamares

+5-5
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ puts_error() {
6363
# -- Unmount swap before starting Calamres; otherwise, Calamares can't partition disks when running in a VM. I do not know why swap is automatically mounted *ONLY* in Live sessions in VMs.
6464

6565
if swapon --show | grep -q '/dev/'; then
66-
puts_info "Swap partition is currently mounted. Unmounting..."
67-
sudo swapoff -a
68-
puts_success "Swap partition has been unmounted."
66+
puts_info "SWAP partition is currently mounted. Unmounting..."
67+
swapoff -a
68+
puts_success "SWAP partition has been unmounted."
6969
else
70-
puts_error "Swap partition is not mounted."
70+
puts_error "SWAP partition is not mounted."
7171
fi
7272

7373

7474
# -- Launch Calamares.
7575

7676
puts_info "Starting Calamares..."
77-
sudo -E calamares -D6
77+
calamares -D6

0 commit comments

Comments
 (0)