Skip to content

Commit 9ed02d2

Browse files
committed
Release 1.290.2025
1 parent 387a130 commit 9ed02d2

File tree

116 files changed

+648
-4343
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+648
-4343
lines changed

Functions/GenXdev.AI.ComfyUI/ConvertComfyImageFormat.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Part of PowerShell module : GenXdev.AI.ComfyUI
33
Original cmdlet filename : ConvertComfyImageFormat.ps1
44
Original author : René Vaessen / GenXdev
5-
Version : 1.288.2025
5+
Version : 1.290.2025
66
################################################################################
77
MIT License
88

Functions/GenXdev.AI.ComfyUI/CreateComfySDXLWorkflow.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Part of PowerShell module : GenXdev.AI.ComfyUI
33
Original cmdlet filename : CreateComfySDXLWorkflow.ps1
44
Original author : René Vaessen / GenXdev
5-
Version : 1.288.2025
5+
Version : 1.290.2025
66
################################################################################
77
MIT License
88

Functions/GenXdev.AI.ComfyUI/CreateComfyUniversalWorkflow.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Part of PowerShell module : GenXdev.AI.ComfyUI
33
Original cmdlet filename : CreateComfyUniversalWorkflow.ps1
44
Original author : René Vaessen / GenXdev
5-
Version : 1.288.2025
5+
Version : 1.290.2025
66
################################################################################
77
MIT License
88

Functions/GenXdev.AI.ComfyUI/DownloadComfyResults.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Part of PowerShell module : GenXdev.AI.ComfyUI
33
Original cmdlet filename : DownloadComfyResults.ps1
44
Original author : René Vaessen / GenXdev
5-
Version : 1.288.2025
5+
Version : 1.290.2025
66
################################################################################
77
MIT License
88

Functions/GenXdev.AI.ComfyUI/EnsureComfyUI.ps1

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Part of PowerShell module : GenXdev.AI.ComfyUI
33
Original cmdlet filename : EnsureComfyUI.ps1
44
Original author : René Vaessen / GenXdev
5-
Version : 1.288.2025
5+
Version : 1.290.2025
66
################################################################################
77
MIT License
88
@@ -356,6 +356,20 @@ function EnsureComfyUI {
356356
# install comfyui if not currently installed
357357
if (-not $comfyInstalled) {
358358

359+
# request user consent before installing third-party software
360+
$installConsent = GenXdev.FileSystem\Confirm-InstallationConsent `
361+
-ApplicationName "ComfyUI Desktop" `
362+
-Source "Winget" `
363+
-Description "ComfyUI is required for AI image generation workflows. This desktop application provides a graphical interface for creating and managing ComfyUI workflows." `
364+
-Publisher "Comfy Org"
365+
366+
# handle installation consent response
367+
if (-not $installConsent) {
368+
Microsoft.PowerShell.Utility\Write-Error `
369+
"Installation consent denied. ComfyUI Desktop is required for this operation to continue."
370+
return
371+
}
372+
359373
# install comfyui desktop application via winget
360374
Microsoft.PowerShell.Utility\Write-Verbose `
361375
"Installing ComfyUI via winget..."

Functions/GenXdev.AI.ComfyUI/EnsureComfyUIModel.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Part of PowerShell module : GenXdev.AI.ComfyUI
33
Original cmdlet filename : EnsureComfyUIModel.ps1
44
Original author : René Vaessen / GenXdev
5-
Version : 1.288.2025
5+
Version : 1.290.2025
66
################################################################################
77
MIT License
88

Functions/GenXdev.AI.ComfyUI/Get-ComfyUIModelPath.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Part of PowerShell module : GenXdev.AI.ComfyUI
33
Original cmdlet filename : Get-ComfyUIModelPath.ps1
44
Original author : René Vaessen / GenXdev
5-
Version : 1.288.2025
5+
Version : 1.290.2025
66
################################################################################
77
MIT License
88

Functions/GenXdev.AI.ComfyUI/Invoke-ComfyUIImageGeneration.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Part of PowerShell module : GenXdev.AI.ComfyUI
33
Original cmdlet filename : Invoke-ComfyUIImageGeneration.ps1
44
Original author : René Vaessen / GenXdev
5-
Version : 1.288.2025
5+
Version : 1.290.2025
66
################################################################################
77
MIT License
88

Functions/GenXdev.AI.ComfyUI/QueueComfyWorkflow.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Part of PowerShell module : GenXdev.AI.ComfyUI
33
Original cmdlet filename : QueueComfyWorkflow.ps1
44
Original author : René Vaessen / GenXdev
5-
Version : 1.288.2025
5+
Version : 1.290.2025
66
################################################################################
77
MIT License
88

Functions/GenXdev.AI.ComfyUI/ResizeComfyInputImage.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Part of PowerShell module : GenXdev.AI.ComfyUI
33
Original cmdlet filename : ResizeComfyInputImage.ps1
44
Original author : René Vaessen / GenXdev
5-
Version : 1.288.2025
5+
Version : 1.290.2025
66
################################################################################
77
MIT License
88

0 commit comments

Comments
 (0)