Skip to content

Commit dad22ce

Browse files
committed
Release 1.232.2025
1 parent 663b3c5 commit dad22ce

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

Functions/GenXdev.AI.Queries/Remove-ImageMetaData.ps1

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -397,49 +397,49 @@ function Remove-ImageMetaData {
397397
# "$path\*.bmp", "$path\*.webp", "$path\*.tiff", "$path\*.tif"
398398
# get all supported image files from the specified directory
399399
(@(Microsoft.PowerShell.Management\Get-ChildItem `
400-
-LiteralPath $path
400+
-LiteralPath $path `
401401
-Filter "*.bmp" `
402402
-Recurse:$Recurse `
403403
-File `
404404
-ErrorAction SilentlyContinue) +
405405
@(Microsoft.PowerShell.Management\Get-ChildItem `
406-
-LiteralPath $path
406+
-LiteralPath $path `
407407
-Filter "*.webp" `
408408
-Recurse:$Recurse `
409409
-File `
410410
-ErrorAction SilentlyContinue) +
411411
@(Microsoft.PowerShell.Management\Get-ChildItem `
412-
-LiteralPath $path
412+
-LiteralPath $path `
413413
-Filter "*.tif" `
414414
-Recurse:$Recurse `
415415
-File `
416416
-ErrorAction SilentlyContinue) +
417417
@(Microsoft.PowerShell.Management\Get-ChildItem `
418-
-LiteralPath $path
418+
-LiteralPath $path `
419419
-Filter "*.tiff" `
420420
-Recurse:$Recurse `
421421
-File `
422422
-ErrorAction SilentlyContinue) +
423423
@(Microsoft.PowerShell.Management\Get-ChildItem `
424-
-LiteralPath $path
424+
-LiteralPath $path `
425425
-Filter "*.jpg" `
426426
-Recurse:$Recurse `
427427
-File `
428428
-ErrorAction SilentlyContinue) +
429429
@(Microsoft.PowerShell.Management\Get-ChildItem `
430-
-LiteralPath $path
430+
-LiteralPath $path `
431431
-Filter "*.jpeg" `
432432
-Recurse:$Recurse `
433433
-File `
434-
-ErrorAction SilentlyContinue) + +
434+
-ErrorAction SilentlyContinue) +
435435
@(Microsoft.PowerShell.Management\Get-ChildItem `
436-
-LiteralPath $path
436+
-LiteralPath $path `
437437
-Filter "*.gif" `
438438
-Recurse:$Recurse `
439439
-File `
440440
-ErrorAction SilentlyContinue) +
441441
@(Microsoft.PowerShell.Management\Get-ChildItem `
442-
-LiteralPath $path
442+
-LiteralPath $path `
443443
-Filter "*.png" `
444444
-Recurse:$Recurse `
445445
-File `

Functions/GenXdev.AI/Start-GenXdevMCPServer.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function Start-GenXdevMCPServer {
9999
}
100100
serverInfo = @{
101101
name = 'GenXdev-PowerShell-MCP-Server'
102-
version = '1.230.2025'
102+
version = '1.232.2025'
103103
}
104104
}
105105
}
@@ -197,7 +197,7 @@ function Start-GenXdevMCPServer {
197197
}
198198
serverInfo = @{
199199
name = 'GenXdev-PowerShell-MCP-Server'
200-
version = '1.230.2025'
200+
version = '1.232.2025'
201201
}
202202
}
203203
}

GenXdev.AI.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'GenXdev.AI.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.230.2025'
15+
ModuleVersion = '1.232.2025'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core'
@@ -51,7 +51,7 @@ ClrVersion = '9.0.0.1'
5151
ProcessorArchitecture = 'Amd64'
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'GenXdev.Queries'; ModuleVersion = '1.230.2025'; })
54+
RequiredModules = @(@{ModuleName = 'GenXdev.Queries'; ModuleVersion = '1.232.2025'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
# RequiredAssemblies = @()

0 commit comments

Comments
 (0)