diff --git a/ModuleChangelog.md b/ModuleChangelog.md index 023e4ddf..30bbb3b7 100644 --- a/ModuleChangelog.md +++ b/ModuleChangelog.md @@ -1,9 +1,21 @@ -## 2.7.0 +## 2.7.2 Release Date: July 16, 2024 +#### RELEASE NOTES + +#### Bug Fixes: + +``` +* When a system had more than 5 local user accounts, the GUI window would stretch to show multiple accounts and the Migrate button would become hidden. The window size is set to a static value in this release. +``` + +## 2.7.1 + +Release Date: July 16, 2024 #### RELEASE NOTES + ``` * UI improvements for Form * While migrating with the exe application, the ADMU will now show the progress of the migration within a GUI window. Migration logs can be viewed in this window, new migrations can be triggered after a successful or failed migration. @@ -11,6 +23,7 @@ Release Date: July 16, 2024 * Added an optional param -AdminDebug for showing verbose log messages * An error mapping function was added to the tool to provide better feedback when the tool encounters an issue with a migration. ``` + #### Bug Fixes: ``` @@ -19,7 +32,6 @@ Release Date: July 16, 2024 * UWP wording change ``` - ## 2.6.8 Release Date: May 14, 2024 diff --git a/jumpcloud-ADMU/JumpCloud.ADMU.psd1 b/jumpcloud-ADMU/JumpCloud.ADMU.psd1 index 97bf7c9a..df1b6efb 100644 --- a/jumpcloud-ADMU/JumpCloud.ADMU.psd1 +++ b/jumpcloud-ADMU/JumpCloud.ADMU.psd1 @@ -13,7 +13,7 @@ # Version number of this module. - ModuleVersion = '2.7.1' + ModuleVersion = '2.7.2' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/jumpcloud-ADMU/Powershell/Form.ps1 b/jumpcloud-ADMU/Powershell/Form.ps1 index a3afe987..cbb01771 100644 --- a/jumpcloud-ADMU/Powershell/Form.ps1 +++ b/jumpcloud-ADMU/Powershell/Form.ps1 @@ -153,10 +153,10 @@ function show-mtpSelection { + Background="White" ScrollViewer.VerticalScrollBarVisibility="Visible" ScrollViewer.HorizontalScrollBarVisibility="Visible" Width="1020" Height="590"> @@ -334,24 +332,24 @@ function show-mtpSelection { - + diff --git a/jumpcloud-ADMU/Powershell/ProgressForm.ps1 b/jumpcloud-ADMU/Powershell/ProgressForm.ps1 index d6aa5473..887f9d74 100644 --- a/jumpcloud-ADMU/Powershell/ProgressForm.ps1 +++ b/jumpcloud-ADMU/Powershell/ProgressForm.ps1 @@ -37,7 +37,7 @@ function New-ProgressForm { diff --git a/jumpcloud-ADMU/Powershell/Start-Migration.ps1 b/jumpcloud-ADMU/Powershell/Start-Migration.ps1 index 37d39ca8..aa146e0b 100644 --- a/jumpcloud-ADMU/Powershell/Start-Migration.ps1 +++ b/jumpcloud-ADMU/Powershell/Start-Migration.ps1 @@ -1869,7 +1869,7 @@ Function Start-Migration { $AGENT_INSTALLER_URL = "https://cdn02.jumpcloud.com/production/jcagent-msi-signed.msi" $AGENT_INSTALLER_PATH = "$windowsDrive\windows\Temp\JCADMU\jcagent-msi-signed.msi" $AGENT_CONF_PATH = "$($AGENT_PATH)\Plugins\Contrib\jcagent.conf" - $admuVersion = '2.7.1' + $admuVersion = '2.7.2' $script:AdminDebug = $AdminDebug $isForm = $PSCmdlet.ParameterSetName -eq "form"