From a71340eb6cb6a3fb3fa1e3b82effdfd92b8ee05a Mon Sep 17 00:00:00 2001 From: Tomasz Wolniewicz Date: Tue, 12 Nov 2024 12:22:26 +0100 Subject: [PATCH 1/3] changes to the Makefile to enable downloading of WLANSetEAPUserData --- Makefile | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8cc684cd2..cc6148000 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,9 @@ -VERSION = CAT-2.1.2 +VERSION = CAT-2.1.2.1 VV = $(VERSION)/ +WLANSetEAPUserData = devices/ms/Files/WLANSetEAPUserData .PHONY: translation -all: translation documentation +all: translation WLANSetEAPUserData documentation documentation: rm -Rf web/apidoc build @@ -41,6 +42,17 @@ translation: pull_from_transifex done; \ rm messages.mo +WLANSetEAPUserData: + rm -rf ${WLANSetEAPUserData} + mkdir ${WLANSetEAPUserData} + curl -o ${WLANSetEAPUserData}/WLANSetEAPUserData-1.1.zip -L https://github.com/rozmansi/WLANSetEAPUserData/releases/download/1.1/WLANSetEAPUserData-1.1.zip + curl -o ${WLANSetEAPUserData}/WLANSetEAPUserData-1.1-src.tar.gz -L https://github.com/rozmansi/WLANSetEAPUserData/archive/refs/tags/1.1.tar.gz + cd ${WLANSetEAPUserData}; unzip WLANSetEAPUserData-1.1.zip + mv ${WLANSetEAPUserData}/ARM64/WLANSetEAPUserData.exe ${WLANSetEAPUserData}/WLANSetEAPUserDataARM64.exe + mv ${WLANSetEAPUserData}/Win32/WLANSetEAPUserData.exe ${WLANSetEAPUserData}/WLANSetEAPUserData32.exe + mv ${WLANSetEAPUserData}/x64/WLANSetEAPUserData.exe ${WLANSetEAPUserData}/WLANSetEAPUserData64.exe + rmdir ${WLANSetEAPUserData}/ARM64 ${WLANSetEAPUserData}/Win32 ${WLANSetEAPUserData}/x64 + rm ${WLANSetEAPUserData}/WLANSetEAPUserData-1.1.zip distribution: all git submodule update --init devices/ms/Files/GEANTLink From 8bd228af25f8eb5a6cc90b4a13d97ddbd10a926e Mon Sep 17 00:00:00 2001 From: Tomasz Wolniewicz Date: Tue, 12 Nov 2024 12:52:28 +0100 Subject: [PATCH 2/3] final touches for 2.1.2.1 --- Changes.md | 18 ++++++++++++++++++ core/CAT.php | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/Changes.md b/Changes.md index 6ed7988b7..41cc22053 100644 --- a/Changes.md +++ b/Changes.md @@ -1,3 +1,21 @@ +Changes in 2.1.2.1 +===================== +- [BUGFIX #1] some fixes to RADIUS tests +- [BUGFIX #2] fixed mobileconfig generating an unnecessary profile +- [BUGFIX #3] added Kosovo to the list of known federations +- [BUGFIX #4] fixed the problem with special anonymous identity not being saved +- [BUGFIX #5] fixing the problem with sending invites to multiple addressees +- [FEATURE #1] multiple additions to the linux installer: + tinker part of the linux installer; + added --gui flag to the linux installer (mainly for testing); + enabled an additional label on the credentials window; + catching more exceptions on module import; + improving behaviour on missing python module +- [FEATURE #2] improved RADIUS/TLS certificate management for NRO +- [FEATURE #3] added support for ARM processors in Windows installers + + + Changes in 2.1.2 ===================== - [FEATURE #1] add support for device-specific options be displayed only diff --git a/core/CAT.php b/core/CAT.php index 824e37414..37e894636 100644 --- a/core/CAT.php +++ b/core/CAT.php @@ -54,7 +54,7 @@ class CAT extends \core\common\Entity public const VERSION_MAJOR = 2; public const VERSION_MINOR = 1; public const VERSION_PATCH = 2; - public const VERSION_EXTRA = ""; + public const VERSION_EXTRA = "1"; private const RELEASE_VERSION = FALSE; private const USER_API_VERSION = 2; From 8f50f23af8e769c0ba33b7c26618ff71aebbcbb2 Mon Sep 17 00:00:00 2001 From: Tomasz Wolniewicz Date: Tue, 12 Nov 2024 12:54:23 +0100 Subject: [PATCH 3/3] final touches for 2.1.2.1 --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index cc6148000..a8bac4990 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,4 @@ VERSION = CAT-2.1.2.1 -VV = $(VERSION)/ WLANSetEAPUserData = devices/ms/Files/WLANSetEAPUserData .PHONY: translation