diff --git a/debian/changelog b/debian/changelog --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +calamares-settings-ubuntu (1:21.04.1) hirsute; urgency=medium + + * Fix GeoIP parsing for Lubuntu in welcome module. + * Use https for the GeoIP lookup + + -- apt-ghetto Sat, 24 Oct 2020 10:47:15 +0200 + calamares-settings-ubuntu (1:20.10.11) groovy; urgency=medium * Switch to Canonical's GeoIP service. diff --git a/lubuntu/modules/locale.conf b/lubuntu/modules/locale.conf --- a/lubuntu/modules/locale.conf +++ b/lubuntu/modules/locale.conf @@ -4,5 +4,5 @@ localeGenPath: "/etc/locale.gen" geoip: style: "xml" - url: "http://geoip.ubuntu.com/lookup" + url: "https://geoip.ubuntu.com/lookup" selector: "TimeZone" diff --git a/lubuntu/modules/welcome.conf b/lubuntu/modules/welcome.conf --- a/lubuntu/modules/welcome.conf +++ b/lubuntu/modules/welcome.conf @@ -20,6 +20,6 @@ - storage - ram geoip: - style: "json" - url: "http://geoip.ubuntu.com/lookup" + style: "xml" + url: "https://geoip.ubuntu.com/lookup" selector: "CountryCode" diff --git a/ubuntustudio/modules/locale.conf b/ubuntustudio/modules/locale.conf --- a/ubuntustudio/modules/locale.conf +++ b/ubuntustudio/modules/locale.conf @@ -4,5 +4,5 @@ localeGenPath: "/etc/locale.gen" geoip: style: "xml" - url: "http://geoip.ubuntu.com/lookup" + url: "https://geoip.ubuntu.com/lookup" selector: "TimeZone" diff --git a/ubuntustudio/modules/welcome.conf b/ubuntustudio/modules/welcome.conf --- a/ubuntustudio/modules/welcome.conf +++ b/ubuntustudio/modules/welcome.conf @@ -21,5 +21,5 @@ - ram geoip: style: "xml" - url: "http://geoip.ubuntu.com/lookup" + url: "https://geoip.ubuntu.com/lookup" selector: "CountryCode"