Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
1184229c4a | ||
![]() |
9d4c2bf1c7 | ||
![]() |
d19c3b5458 | ||
![]() |
f8494f27d5 | ||
![]() |
ba89f03d8e |
24
CHANGES
24
CHANGES
@@ -7,13 +7,35 @@ contributors are listed. Note that Calamares does not have a historical
|
|||||||
changelog -- this log starts with version 3.2.0. The release notes on the
|
changelog -- this log starts with version 3.2.0. The release notes on the
|
||||||
website will have to do for older versions.
|
website will have to do for older versions.
|
||||||
|
|
||||||
|
# 3.2.40 (unreleased) #
|
||||||
|
|
||||||
|
This release contains contributions from (alphabetically by first name):
|
||||||
|
- No external contributors yet
|
||||||
|
|
||||||
|
## Core ##
|
||||||
|
- No core changes yet
|
||||||
|
|
||||||
|
## Modules ##
|
||||||
|
- No module changes yet
|
||||||
|
|
||||||
|
|
||||||
|
# 3.2.39.1 (2021-03-30) #
|
||||||
|
|
||||||
|
This hotfix release corrects a regression in the *displaymanager*
|
||||||
|
module caused by changes in the *users* module; autologin was
|
||||||
|
internally renamed and no longer recognized by the *displaymanager*
|
||||||
|
module. (Reported by Erik Dubois, #1665)
|
||||||
|
|
||||||
|
|
||||||
# 3.2.39 (2021-03-19) #
|
# 3.2.39 (2021-03-19) #
|
||||||
|
|
||||||
This release contains contributions from (alphabetically by first name):
|
This release contains contributions from (alphabetically by first name):
|
||||||
- Matti Hyttinen
|
- Matti Hyttinen
|
||||||
|
|
||||||
## Core ##
|
## Core ##
|
||||||
- No core changes yet
|
- A *packages* service has been added to the core, for use by
|
||||||
|
*netinstall* module and any others that need to set up
|
||||||
|
package information for the *packages* module.
|
||||||
|
|
||||||
## Modules ##
|
## Modules ##
|
||||||
- The *mount* module has gained a configurable setup for btrfs volumes.
|
- The *mount* module has gained a configurable setup for btrfs volumes.
|
||||||
|
@@ -41,7 +41,7 @@
|
|||||||
# TODO:3.3: Require CMake 3.12
|
# TODO:3.3: Require CMake 3.12
|
||||||
cmake_minimum_required( VERSION 3.3 FATAL_ERROR )
|
cmake_minimum_required( VERSION 3.3 FATAL_ERROR )
|
||||||
project( CALAMARES
|
project( CALAMARES
|
||||||
VERSION 3.2.39
|
VERSION 3.2.39.1
|
||||||
LANGUAGES C CXX
|
LANGUAGES C CXX
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@@ -175,7 +175,6 @@ desktop_environments = [
|
|||||||
'/usr/bin/budgie-session', 'budgie-desktop' # Budgie v8
|
'/usr/bin/budgie-session', 'budgie-desktop' # Budgie v8
|
||||||
),
|
),
|
||||||
DesktopEnvironment('/usr/bin/gnome-session', 'gnome'),
|
DesktopEnvironment('/usr/bin/gnome-session', 'gnome'),
|
||||||
DesktopEnvironment('/usr/bin/startxfce4', 'xfce'),
|
|
||||||
DesktopEnvironment('/usr/bin/cinnamon-session-cinnamon', 'cinnamon'),
|
DesktopEnvironment('/usr/bin/cinnamon-session-cinnamon', 'cinnamon'),
|
||||||
DesktopEnvironment('/usr/bin/mate-session', 'mate'),
|
DesktopEnvironment('/usr/bin/mate-session', 'mate'),
|
||||||
DesktopEnvironment('/usr/bin/enlightenment_start', 'enlightenment'),
|
DesktopEnvironment('/usr/bin/enlightenment_start', 'enlightenment'),
|
||||||
@@ -184,9 +183,18 @@ desktop_environments = [
|
|||||||
DesktopEnvironment('/usr/bin/lxqt-session', 'lxqt'),
|
DesktopEnvironment('/usr/bin/lxqt-session', 'lxqt'),
|
||||||
DesktopEnvironment('/usr/bin/pekwm', 'pekwm'),
|
DesktopEnvironment('/usr/bin/pekwm', 'pekwm'),
|
||||||
DesktopEnvironment('/usr/bin/pantheon-session', 'pantheon'),
|
DesktopEnvironment('/usr/bin/pantheon-session', 'pantheon'),
|
||||||
DesktopEnvironment('/usr/bin/i3', 'i3'),
|
|
||||||
DesktopEnvironment('/usr/bin/startdde', 'deepin'),
|
DesktopEnvironment('/usr/bin/startdde', 'deepin'),
|
||||||
DesktopEnvironment('/usr/bin/openbox-session', 'openbox')
|
DesktopEnvironment('/usr/bin/startxfce4', 'xfce'),
|
||||||
|
DesktopEnvironment('/usr/bin/openbox-session', 'openbox'),
|
||||||
|
DesktopEnvironment('/usr/bin/i3', 'i3'),
|
||||||
|
DesktopEnvironment('/usr/bin/awesome', 'awesome'),
|
||||||
|
DesktopEnvironment('/usr/bin/bspwm', 'bspwm'),
|
||||||
|
DesktopEnvironment('/usr/bin/herbstluftwm', 'herbstluftwm'),
|
||||||
|
DesktopEnvironment('/usr/bin/qtile', 'qtile'),
|
||||||
|
DesktopEnvironment('/usr/bin/xmonad', 'xmonad'),
|
||||||
|
DesktopEnvironment('/usr/bin/dwm', 'dwm'),
|
||||||
|
DesktopEnvironment('/usr/bin/jwm', 'jwm'),
|
||||||
|
DesktopEnvironment('/usr/bin/icewm-session', 'icewm-session'),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
@@ -946,7 +954,7 @@ def run():
|
|||||||
else:
|
else:
|
||||||
enable_basic_setup = False
|
enable_basic_setup = False
|
||||||
|
|
||||||
username = libcalamares.globalstorage.value("autologinUser")
|
username = libcalamares.globalstorage.value("autoLoginUser")
|
||||||
if username is not None:
|
if username is not None:
|
||||||
do_autologin = True
|
do_autologin = True
|
||||||
libcalamares.utils.debug("Setting up autologin for user {!s}.".format(username))
|
libcalamares.utils.debug("Setting up autologin for user {!s}.".format(username))
|
||||||
|
Reference in New Issue
Block a user