diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d3a3459..323ac745 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +3.2.4.1 BETA (2014/12/16) +--------------------------- +Global: + - Pgina service bugfixes + - Pgina service extend max shutdowntime to 1h +LDAP plugin: + - a view bugfixes + - option to use authentication bind when searching in authorization and gateway stages. +pgSMB plugin: + - add 1 minute timeout if an SMB connection fails +Radius plugin: + - Lots of updates to the RADIUS plugin from Oooska +MySQL plugin: + - add option to prevent (or not) logon in gateway if server error occurs + 3.2.0.0 BETA (2013/12/02) --------------------------- Global: diff --git a/Installer/installer.iss b/Installer/installer.iss index 511aee06..5344ff56 100644 --- a/Installer/installer.iss +++ b/Installer/installer.iss @@ -1,5 +1,5 @@ #define MyAppName "pGina" -#define MyAppVersion "3.2.0.0" +#define MyAppVersion "3.2.4.1" #define MyAppPublisher "pGina Team" #define MyAppURL "http://www.pgina.org/" #define MyAppExeName "pGina.Configuration.exe" diff --git a/Plugins/LdapPlugin/Ldap/Properties/AssemblyInfo.cs b/Plugins/LdapPlugin/Ldap/Properties/AssemblyInfo.cs index 171d3eb9..36892286 100755 --- a/Plugins/LdapPlugin/Ldap/Properties/AssemblyInfo.cs +++ b/Plugins/LdapPlugin/Ldap/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("3.2.0.0")] -[assembly: AssemblyFileVersion("3.2.0.0")] +[assembly: AssemblyVersion("3.2.4.1")] +[assembly: AssemblyFileVersion("3.2.4.1")] diff --git a/Plugins/MySQLAuth/MySQLAuth/Properties/AssemblyInfo.cs b/Plugins/MySQLAuth/MySQLAuth/Properties/AssemblyInfo.cs index 99ab86f3..ee618c28 100644 --- a/Plugins/MySQLAuth/MySQLAuth/Properties/AssemblyInfo.cs +++ b/Plugins/MySQLAuth/MySQLAuth/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("3.1.0.0")] -[assembly: AssemblyFileVersion("3.1.0.0")] +[assembly: AssemblyVersion("3.2.4.1")] +[assembly: AssemblyFileVersion("3.2.4.1")] diff --git a/Plugins/RADIUS/Properties/AssemblyInfo.cs b/Plugins/RADIUS/Properties/AssemblyInfo.cs index d15f1963..5ae41106 100644 --- a/Plugins/RADIUS/Properties/AssemblyInfo.cs +++ b/Plugins/RADIUS/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("3.1.0.0")] -[assembly: AssemblyFileVersion("3.1.0.0")] +[assembly: AssemblyVersion("3.2.4.1")] +[assembly: AssemblyFileVersion("3.2.4.1")] diff --git a/pGina/src/Core/Properties/SharedAssemblyInfo.cs b/pGina/src/Core/Properties/SharedAssemblyInfo.cs index dfb1a2c7..dab2f902 100644 --- a/pGina/src/Core/Properties/SharedAssemblyInfo.cs +++ b/pGina/src/Core/Properties/SharedAssemblyInfo.cs @@ -17,5 +17,5 @@ // Build Number // Revision // -[assembly: AssemblyVersion("3.2.0.0")] -[assembly: AssemblyFileVersion("3.2.0.0")] +[assembly: AssemblyVersion("3.2.4.1")] +[assembly: AssemblyFileVersion("3.2.4.1")] diff --git a/pGina/src/CredentialProvider/CredentialProvider.rc b/pGina/src/CredentialProvider/CredentialProvider.rc index 8011dc90..d37c70f7 100644 --- a/pGina/src/CredentialProvider/CredentialProvider.rc +++ b/pGina/src/CredentialProvider/CredentialProvider.rc @@ -58,8 +58,8 @@ IDB_PGINA_ERROR BITMAP "error.bmp" // VS_VERSION_INFO VERSIONINFO - FILEVERSION 3,2,0,0 - PRODUCTVERSION 3,2,0,0 + FILEVERSION 3,2,4,1 + PRODUCTVERSION 3,2,4,1 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -76,10 +76,10 @@ BEGIN BEGIN VALUE "CompanyName", "pGina Team" VALUE "FileDescription", "pGina Credential Provider" - VALUE "FileVersion", "3.2.0.0" + VALUE "FileVersion", "3.2.4.1" VALUE "LegalCopyright", "Copyright (C) pGina Team 2014" VALUE "ProductName", "pGina" - VALUE "ProductVersion", "3.2.0.0" + VALUE "ProductVersion", "3.2.4.1" END END BLOCK "VarFileInfo" diff --git a/pGina/src/Gina/Gina/Gina.rc b/pGina/src/Gina/Gina/Gina.rc index eb0fa394..bb1e744a 100644 --- a/pGina/src/Gina/Gina/Gina.rc +++ b/pGina/src/Gina/Gina/Gina.rc @@ -57,8 +57,8 @@ IDB_PGINA_LOGO BITMAP "pginalogo.bmp" // VS_VERSION_INFO VERSIONINFO - FILEVERSION 3,2,0,0 - PRODUCTVERSION 3,2,0,0 + FILEVERSION 3,2,4,1 + PRODUCTVERSION 3,2,4,1 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -75,10 +75,10 @@ BEGIN BEGIN VALUE "CompanyName", "pGina Team" VALUE "FileDescription", "pGina GINA" - VALUE "FileVersion", "3.2.0.0" + VALUE "FileVersion", "3.2.4.1" VALUE "LegalCopyright", "Copyright (C) pGina Team 2014" VALUE "ProductName", "pGina" - VALUE "ProductVersion", "3.2.0.0" + VALUE "ProductVersion", "3.2.4.1" END END BLOCK "VarFileInfo"