File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
shell/AIShell.Integration Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
@ {
2
2
RootModule = ' AIShell.psm1'
3
3
NestedModules = @ (" AIShell.Integration.dll" )
4
- ModuleVersion = ' 1.0.3 '
4
+ ModuleVersion = ' 1.0.4 '
5
5
GUID = ' ECB8BEE0-59B9-4DAE-9D7B-A990B480279A'
6
6
Author = ' Microsoft Corporation'
7
7
CompanyName = ' Microsoft Corporation'
13
13
VariablesToExport = ' *'
14
14
AliasesToExport = @ (' aish' , ' askai' , ' fixit' )
15
15
HelpInfoURI = ' https://aka.ms/aishell-help'
16
- PrivateData = @ { PSData = @ { Prerelease = ' preview3 ' ; ProjectUri = ' https://github.com/PowerShell/AIShell' } }
16
+ PrivateData = @ { PSData = @ { Prerelease = ' preview4 ' ; ProjectUri = ' https://github.com/PowerShell/AIShell' } }
17
17
}
Original file line number Diff line number Diff line change
1
+ $module = Get-Module - Name PSReadLine
2
+ if ($null -eq $module -or $module.Version -lt [version ]" 2.4.1" ) {
3
+ throw " The PSReadLine v2.4.1-beta1 or higher is required for the AIShell module to work properly."
4
+ }
1
5
2
6
# # Create the channel singleton when loading the module.
3
7
$null = [AIShell.Integration.Channel ]::CreateSingleton($host.Runspace , [Microsoft.PowerShell.PSConsoleReadLine ])
You can’t perform that action at this time.
0 commit comments