import gnome-shell-3.32.2-42.el8
This commit is contained in:
parent
07cadf247c
commit
03a735f247
29
SOURCES/0001-networkAgent-add-support-for-SAE-secrets.patch
Normal file
29
SOURCES/0001-networkAgent-add-support-for-SAE-secrets.patch
Normal file
@ -0,0 +1,29 @@
|
||||
From bd4a3186dc21f2c8d3e0f851cf262a34ddb6b625 Mon Sep 17 00:00:00 2001
|
||||
From: Lubomir Rintel <lkundrak@v3.sk>
|
||||
Date: Fri, 4 Oct 2019 14:21:25 +0200
|
||||
Subject: [PATCH] networkAgent: add support for SAE secrets
|
||||
|
||||
NetworkManager supports "WPA3 Personal" networks for some time now, they
|
||||
use the SAE authentication. Add support for it alongside other
|
||||
password-based mechanisms.
|
||||
|
||||
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/751
|
||||
---
|
||||
js/ui/components/networkAgent.js | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/js/ui/components/networkAgent.js b/js/ui/components/networkAgent.js
|
||||
index 32d40fb2b..3ff957bf6 100644
|
||||
--- a/js/ui/components/networkAgent.js
|
||||
+++ b/js/ui/components/networkAgent.js
|
||||
@@ -216,6 +216,7 @@ var NetworkSecretDialog = class extends ModalDialog.ModalDialog {
|
||||
// First the easy ones
|
||||
case 'wpa-none':
|
||||
case 'wpa-psk':
|
||||
+ case 'sae':
|
||||
secrets.push({ label: _("Password: "), key: 'psk',
|
||||
value: wirelessSecuritySetting.psk || '',
|
||||
validate: this._validateWpaPsk, password: true });
|
||||
--
|
||||
2.32.0
|
||||
|
@ -1,6 +1,6 @@
|
||||
Name: gnome-shell
|
||||
Version: 3.32.2
|
||||
Release: 40%{?dist}
|
||||
Release: 42%{?dist}
|
||||
Summary: Window management and application launching for GNOME
|
||||
|
||||
Group: User Interface/Desktops
|
||||
@ -61,11 +61,12 @@ Patch51: introspect-backports.patch
|
||||
Patch52: 0001-popupMenu-Handle-keypress-if-numlock-is-enabled.patch
|
||||
Patch53: 0001-theme-Update-window-preview-style.patch
|
||||
Patch54: warn-less.patch
|
||||
Patch55: 0001-networkAgent-add-support-for-SAE-secrets.patch
|
||||
|
||||
# Backport JS invalid access warnings (#1651894, #1663171, #1642482, #1637622)
|
||||
Patch55: fix-invalid-access-warnings.patch
|
||||
Patch56: more-spurious-allocation-warnings.patch
|
||||
Patch57: fix-some-js-warnings.patch
|
||||
Patch57: fix-invalid-access-warnings.patch
|
||||
Patch58: more-spurious-allocation-warnings.patch
|
||||
Patch59: fix-some-js-warnings.patch
|
||||
|
||||
# Backport performance fixes under load (#1820760)
|
||||
Patch60: 0001-environment-reduce-calls-to-g_time_zone_new_local.patch
|
||||
@ -271,9 +272,13 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/evolution-calendar.de
|
||||
%{_mandir}/man1/%{name}.1.gz
|
||||
|
||||
%changelog
|
||||
* Tue Aug 31 2021 Ray Strode <rstrode@redhat.com> - 3.32.2-40
|
||||
* Wed Oct 20 2021 Florian Müllner <fmuellner@redhat.com> - 3.32.2-42
|
||||
- Backport WPA3 support
|
||||
Resolves: #1924593
|
||||
|
||||
* Tue Aug 31 2021 Ray Strode <rstrode@redhat.com> - 3.32.2-41
|
||||
- Add bugs introduced in backport for #1651378
|
||||
Related: #1999758
|
||||
Related: #2000918
|
||||
- Tidy up patch list a bit
|
||||
|
||||
* Wed Aug 25 2021 Ray Strode <rstrode@redhat.com> - 3.32.2-39
|
||||
|
Loading…
Reference in New Issue
Block a user