diff --git a/debian/changelog b/debian/changelog index f771715..e2e3077 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,13 @@ calamares (3.2.1-1ubuntu3) UNRELEASED; urgency=medium + [ Simon Quigley ] * Run wrap-and-sort. * Update Vcs-* for maintaining in Lubuntu. * Update Standards-version to 4.1.2, no changes needed. + [ Walter Lapchynski ] + * Fix default desktop environment variable in displaymanager. + -- Simon Quigley Mon, 20 Aug 2018 23:03:29 -0500 calamares (3.2.1-1ubuntu2) cosmic; urgency=medium diff --git a/debian/patches/fix-defaultde-variable.patch b/debian/patches/fix-defaultde-variable.patch new file mode 100644 index 0000000..6c8236e --- /dev/null +++ b/debian/patches/fix-defaultde-variable.patch @@ -0,0 +1,13 @@ +Description: Fix default desktop environment variable in displaymanager. +Author: Walter Lapchynski +--- a/calamares-3.2.1/src/modules/displaymanager/main.py ++++ b/calamares-3.2.1/src/modules/displaymanager/main.py +@@ -398,7 +398,7 @@ def run(): + username = libcalamares.globalstorage.value("autologinUser") + root_mount_point = libcalamares.globalstorage.value("rootMountPoint") + +- if "default_desktop_environment" in libcalamares.job.configuration: ++ if "defaultDesktopEnvironment" in libcalamares.job.configuration: + entry = libcalamares.job.configuration["defaultDesktopEnvironment"] + default_desktop_environment = DesktopEnvironment( + entry["executable"], entry["desktopFile"] diff --git a/debian/patches/series b/debian/patches/series index bb52cef..b146923 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,3 +1,4 @@ +fix-defaultde-variable.patch 0001-replace-pkexec-by-sudo.patch 0002-Add-patch-to-compile-with-pythonQt.patch 0003-remove-wrong-path.patch