Skip to content

Commit 630399b

Browse files
committed
Release 1.242.2025
1 parent e10297c commit 630399b

19 files changed

Lines changed: 114560 additions & 114932 deletions

Functions/GenXdev.AI.DeepStack/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This module provides PowerShell functions to interact with DeepStack's face reco
88

99
## MIT License
1010

11-
```text
11+
````text
1212
MIT License
1313
1414
Copyright (c) 2025 GenXdev

Functions/GenXdev.AI.DeepStack/Register-AllFaces.ps1

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
###############################################################################
1+
###############################################################################
22
<#
33
.SYNOPSIS
44
Updates all face recognition profiles from image files in the faces directory.
@@ -279,7 +279,8 @@ function Register-AllFaces {
279279
$ensureParams.Force = if ($PSBoundParameters.ContainsKey(
280280
'ForceRebuild')) {
281281
$false
282-
} else {
282+
}
283+
else {
283284
$null
284285
}
285286
}
@@ -674,11 +675,11 @@ function Register-AllFaces {
674675
'The following registrations failed:'
675676

676677
# output each individual error
677-
foreach ($error in $script:RegistrationErrors) {
678+
foreach ($errorInfo in $script:RegistrationErrors) {
678679

679680
# output specific error information
680681
Microsoft.PowerShell.Utility\Write-Verbose `
681-
" $($error.Identifier): $($error.Error)"
682+
" $($errorInfo.Identifier): $($errorInfo.Error)"
682683
}
683684
}
684685
}

Functions/GenXdev.AI.LMStudio/EnsureLMStudio.ps1

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,6 @@ function EnsureLMStudio {
259259
)]
260260
[Alias('fs')]
261261
[switch]$FullScreen,
262-
263262
###############################################################################
264263
[Parameter(
265264
Mandatory = $false,
@@ -276,7 +275,6 @@ function EnsureLMStudio {
276275
)]
277276
[Alias('sbs')]
278277
[switch]$SideBySide,
279-
280278
###############################################################################
281279
[Parameter(
282280
Mandatory = $false,

Functions/GenXdev.AI.LMStudio/Initialize-LMStudioModel.ps1

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,6 @@ function Initialize-LMStudioModel {
272272
)]
273273
[Alias('sbs')]
274274
[switch]$SideBySide,
275-
276275
###############################################################################
277276
[Parameter(
278277
Mandatory = $false,

Functions/GenXdev.AI.Queries/Export-ImageIndex.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ function Export-ImageIndex {
637637
# attempt to shutdown existing sqlite connections
638638
try {
639639

640-
$null = [System.Data.SQLite.SQLiteConnection]::Shutdown()
640+
$null = [System.Data.Sqlite.SQLiteConnection]::Shutdown()
641641
}
642642
catch {
643643

Functions/GenXdev.AI.Queries/Find-Image.ps1

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,6 @@ function Find-Image {
806806
)]
807807
[Alias('pt')]
808808
[switch]$PassThru,
809-
810809
###############################################################################
811810
[Parameter(
812811
Mandatory = $false,
@@ -997,28 +996,24 @@ function Find-Image {
997996
)]
998997
[Alias('FromPreferences')]
999998
[switch] $SkipSession,
1000-
1001999
###############################################################################
10021000
[Parameter(
10031001
Mandatory = $false,
10041002
HelpMessage = 'Auto-scroll the page by this many pixels per second (null to disable)'
10051003
)]
10061004
[int]$AutoScrollPixelsPerSecond = $null,
1007-
10081005
###############################################################################
10091006
[Parameter(
10101007
Mandatory = $false,
10111008
HelpMessage = 'Animate rectangles (objects/faces) in visible range, cycling every 300ms'
10121009
)]
10131010
[switch]$AutoAnimateRectangles,
1014-
10151011
###############################################################################
10161012
[Parameter(
10171013
Mandatory = $false,
10181014
HelpMessage = 'Force single column layout (centered, 1/3 screen width)'
10191015
)]
10201016
[switch]$SingleColumnMode = $false,
1021-
10221017
###############################################################################
10231018
[Parameter(
10241019
Mandatory = $false,

Functions/GenXdev.AI.Queries/Find-IndexedImage.ps1

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,6 @@ function Find-IndexedImage {
464464
)]
465465
[Alias('pt')]
466466
[switch]$PassThru,
467-
468467
###############################################################################
469468
[Parameter(
470469
Mandatory = $false,
@@ -507,7 +506,6 @@ function Find-IndexedImage {
507506
)]
508507
[Alias('sbs')]
509508
[switch]$SideBySide,
510-
511509
###############################################################################
512510
[Parameter(
513511
Mandatory = $false,
@@ -762,28 +760,24 @@ function Find-IndexedImage {
762760
HelpMessage = 'Send specified keys to the browser window after opening'
763761
)]
764762
[string[]] $KeysToSend,
765-
766763
###############################################################################
767764
[Parameter(
768765
Mandatory = $false,
769766
HelpMessage = 'Auto-scroll the page by this many pixels per second (null to disable)'
770767
)]
771768
[int]$AutoScrollPixelsPerSecond = $null,
772-
773769
###############################################################################
774770
[Parameter(
775771
Mandatory = $false,
776772
HelpMessage = 'Animate rectangles (objects/faces) in visible range, cycling every 300ms'
777773
)]
778774
[switch]$AutoAnimateRectangles,
779-
780775
###############################################################################
781776
[Parameter(
782777
Mandatory = $false,
783778
HelpMessage = 'Force single column layout (centered, 1/3 screen width)'
784779
)]
785780
[switch]$SingleColumnMode = $false,
786-
787781
###############################################################################
788782
[Parameter(
789783
Mandatory = $false,

Functions/GenXdev.AI.Queries/Invoke-AIPowershellCommand.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,7 @@ and have access to everything Powershell has to offer.
665665
Analyze the user's request and suggest a PowerShell command that accomplishes
666666
their goal.
667667
First try basic powershell commands, if that does not solve it then try to use
668-
the Get-GenXDevCmdlets, Get-Help and the Get-Command cmdlets to find the right
668+
the Get-GenXDevCmdlet, Get-Help and the Get-Command cmdlets to find the right
669669
commands to use.
670670
Return only the suggested command without any explanation or commentary.
671671
$Instructions

0 commit comments

Comments
 (0)