From 18dff2af5e956bcc87001d784a173b14e7571296 Mon Sep 17 00:00:00 2001 From: Real-MullaC Date: Sat, 21 Sep 2024 15:24:34 +0100 Subject: [PATCH 01/16] Update close-issue-command.yaml (#2785) Co-authored-by: Adam Perkowski --- .github/workflows/close-issue-command.yaml | 42 ++++++++++++++++++---- 1 file changed, 35 insertions(+), 7 deletions(-) diff --git a/.github/workflows/close-issue-command.yaml b/.github/workflows/close-issue-command.yaml index ff23c3ab..0f6aa3fb 100644 --- a/.github/workflows/close-issue-command.yaml +++ b/.github/workflows/close-issue-command.yaml @@ -15,18 +15,33 @@ jobs: contents: read steps: - - name: Check for /close comment - id: check_comment + - run: echo "command=false" >> $GITHUB_ENV + + - name: Check for /close command + id: check_close_command run: | if [[ "${{ contains(github.event.comment.body, '/close') }}" == "true" ]]; then - echo "comment=true" >> $GITHUB_ENV + echo "command=true" >> $GITHUB_ENV + echo "close_command=true" >> $GITHUB_ENV + echo "reopen_command=false" >> $GITHUB_ENV else - echo "comment=false" >> $GITHUB_ENV + echo "close_command=false" >> $GITHUB_ENV + fi + + - name: Check for /open or /reopen command + id: check_reopen_command + run: | + if [[ "${{ contains(github.event.comment.body, '/open') }}" == "true" ]] || [[ "${{ contains(github.event.comment.body, '/reopen') }}" == "true" ]]; then + echo "command=true" >> $GITHUB_ENV + echo "reopen_command=true" >> $GITHUB_ENV + echo "close_command=false" >> $GITHUB_ENV + else + echo "reopen_command=false" >> $GITHUB_ENV fi - name: Check if the user is allowed id: check_user - if: env.comment == 'true' + if: env.command == 'true' run: | ALLOWED_USERS=("ChrisTitusTech" "og-mrk" "Marterich" "MyDrift-user" "Real-MullaC") if [[ " ${ALLOWED_USERS[@]} " =~ " ${{ github.event.comment.user.login }} " ]]; then @@ -36,10 +51,23 @@ jobs: fi - name: Close issue if conditions are met - if: env.comment == 'true' && env.user == 'true' + if: env.close_command == 'true' && env.user == 'true' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ISSUE_NUMBER: ${{ github.event.issue.number }} run: | echo Closing the issue... - gh issue close $ISSUE_NUMBER --repo ${{ github.repository }} + if [[ "${{ contains(github.event.comment.body, 'not planned') }}" == "true" ]]; then + gh issue close $ISSUE_NUMBER --repo ${{ github.repository }} --reason 'not planned' + else + gh issue close $ISSUE_NUMBER --repo ${{ github.repository }} + fi + + - name: Reopen issue if conditions are met + if: env.reopen_command == 'true' && env.user == 'true' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + ISSUE_NUMBER: ${{ github.event.issue.number }} + run: | + echo Reopening the issue... + gh issue reopen $ISSUE_NUMBER --repo ${{ github.repository }} \ No newline at end of file From 1f683d3f7827feb5d72b3e129f663fa8d0e50472 Mon Sep 17 00:00:00 2001 From: MyDrift Date: Sat, 21 Sep 2024 16:29:02 +0200 Subject: [PATCH 02/16] UI fixes (#2727) * ui fixes - better coloring for scrollbar - better styling for tooltip - better styling for menuitem - change max window size on startup to correctly display install tab * Fix Borders of Right Click menu for Textbox (eg. Searchbar) (#9) * sync fork & remove merge issues * Revert "sync fork & remove merge issues" This reverts commit dd64f06b89e06d637394ae00c3287e7f4115c216. * remove unneeded code --------- Co-authored-by: Martin Wiethan <47688561+Marterich@users.noreply.github.com> --- config/themes.json | 7 ++++++ xaml/inputXML.xaml | 53 +++++++++++++++++++++++++++++++++++++++++----- 2 files changed, 55 insertions(+), 5 deletions(-) diff --git a/config/themes.json b/config/themes.json index abf7f575..0a370715 100644 --- a/config/themes.json +++ b/config/themes.json @@ -46,6 +46,9 @@ "LabelBackgroundColor": "#F7F7F7", "LinkForegroundColor": "#232629", "LinkHoverForegroundColor": "#232629", + "ScrollBarBackgroundColor": "#4A4D52", + "ScrollBarHoverColor": "#5A5D62", + "ScrollBarDraggingColor": "#6A6D72", "ProgressBarForegroundColor": "#2e77ff", "ProgressBarBackgroundColor": "Transparent", @@ -77,6 +80,10 @@ "LabelBackgroundColor": "#121212", "LinkForegroundColor": "#add8e6", "LinkHoverForegroundColor": "#F7F7F7", + "ScrollBarBackgroundColor": "#2E3135", + "ScrollBarHoverColor": "#3B4252", + "ScrollBarDraggingColor": "#5E81AC", + "ProgressBarForegroundColor": "#222222", "ProgressBarBackgroundColor": "Transparent", "ProgressBarTextColor": "#cccccc", diff --git a/xaml/inputXML.xaml b/xaml/inputXML.xaml index 2ab44413..c40be1e0 100644 --- a/xaml/inputXML.xaml +++ b/xaml/inputXML.xaml @@ -10,13 +10,32 @@ WindowStyle="None" Width="Auto" Height="Auto" - MaxWidth="1280" + MaxWidth="1380" MaxHeight="800" Title="Chris Titus Tech's Windows Utility"> + + + + + + + + @@ -697,7 +739,8 @@ Grid.Column="0" VerticalAlignment="Center" HorizontalAlignment="Left" FontFamily="Segoe MDL2 Assets" - FontSize="{DynamicResource DynamicResource IconFontSize}" + Foreground="{DynamicResource ButtonBackgroundSelectedColor}" + FontSize="{DynamicResource IconFontSize}" Margin="180,0,0,0"> Yusuke SaitoTriHyderaMark AmosJason A. DiegmuellerwyattRMSStefanthaddlPaulDave JonesAnthony MendezxPandakuClaudemodsTimothy CookDursleyGuy +Yusuke SaitoTriHyderaMark AmosJason A. DiegmuellerwyattRMSStefanthaddlPaulDave JonesAnthony MendezxPandakuClaudemodsTimothy CookDursleyGuyMITH ツ ## 🏅 Thanks to all Contributors Thanks a lot for spending your time helping Winutil grow. Thanks a lot! Keep rocking 🍻. From b9d7619f9b086a66c29d2be80804a6eb909c64b2 Mon Sep 17 00:00:00 2001 From: Martin Wiethan <47688561+Marterich@users.noreply.github.com> Date: Mon, 23 Sep 2024 19:24:45 +0200 Subject: [PATCH 09/16] Explicitly look for a Boolean Result (#2801) --- functions/public/Invoke-WPFUIElements.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/public/Invoke-WPFUIElements.ps1 b/functions/public/Invoke-WPFUIElements.ps1 index f4c2d73b..3851536d 100644 --- a/functions/public/Invoke-WPFUIElements.ps1 +++ b/functions/public/Invoke-WPFUIElements.ps1 @@ -292,7 +292,7 @@ function Invoke-WPFUIElements { $checkBox.FontSize = $theme.FontSize $checkBox.ToolTip = $entryInfo.Description $checkBox.Margin = $theme.CheckBoxMargin - if ($entryInfo.Checked) { + if ($entryInfo.Checked -eq $true) { $checkBox.IsChecked = $entryInfo.Checked } $horizontalStackPanel.Children.Add($checkBox) | Out-Null From 102231c0e3b910d0b16c235238378727f1a39831 Mon Sep 17 00:00:00 2001 From: CodingWonders <101426328+CodingWonders@users.noreply.github.com> Date: Mon, 23 Sep 2024 19:29:34 +0200 Subject: [PATCH 10/16] [MicroWin] ISO Downloader Enhancements (#2787) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Avoid duplicating items in lang list and fix issue - Changed the first item in the language list to show "System language". Then we determine it and download it - Fixed an issue where the entire contents of `gci` were being passed to the variable, which causes the rest to fail * Add spaces for consistent indentation * Modify current dir command to automatic variable Thanks @ruxunderscore for suggesting * Move downloaded ISO to user-specified path * Indentation fixes for comments * Update functions/public/Invoke-WPFGetIso.ps1 Co-authored-by: Luka Momčilović * Modify first language item and add error handling --------- Co-authored-by: Luka Momčilović --- functions/public/Invoke-WPFGetIso.ps1 | 53 +++++++++++++++++++++++++-- scripts/main.ps1 | 6 +-- 2 files changed, 52 insertions(+), 7 deletions(-) diff --git a/functions/public/Invoke-WPFGetIso.ps1 b/functions/public/Invoke-WPFGetIso.ps1 index 98b653d5..954ee432 100644 --- a/functions/public/Invoke-WPFGetIso.ps1 +++ b/functions/public/Invoke-WPFGetIso.ps1 @@ -77,17 +77,64 @@ function Invoke-WPFGetIso { return } } elseif ($sync["ISOdownloader"].IsChecked) { + # Create folder browsers for user-specified locations + [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") | Out-Null + $isoDownloaderFBD = New-Object System.Windows.Forms.FolderBrowserDialog + $isoDownloaderFBD.Description = "Please specify the path to download the ISO file to:" + $isoDownloaderFBD.ShowNewFolderButton = $true + if ($isoDownloaderFBD.ShowDialog() -ne [System.Windows.Forms.DialogResult]::OK) + { + return + } + + # Grab the location of the selected path + $targetFolder = $isoDownloaderFBD.SelectedPath + # Auto download newest ISO # Credit: https://github.com/pbatard/Fido $fidopath = "$env:temp\Fido.ps1" - $originalLocation = Get-Location + $originalLocation = $PSScriptRoot Invoke-WebRequest "https://github.com/pbatard/Fido/raw/master/Fido.ps1" -OutFile $fidopath Set-Location -Path $env:temp - & $fidopath -Win 'Windows 11' -Rel $sync["ISORelease"].SelectedItem -Arch "x64" -Lang $sync["ISOLanguage"].SelectedItem -Ed "Windows 11 Home/Pro/Edu" + # Detect if the first option ("System language") has been selected and get a Fido-approved language from the current culture + $lang = if ($sync["ISOLanguage"].SelectedIndex -eq 0) { + Get-FidoLangFromCulture -langName (Get-Culture).Name + } else { + $sync["ISOLanguage"].SelectedItem + } + + & $fidopath -Win 'Windows 11' -Rel $sync["ISORelease"].SelectedItem -Arch "x64" -Lang $lang -Ed "Windows 11 Home/Pro/Edu" + if (-not $?) + { + Write-Host "Could not download the ISO file. Look at the output of the console for more information." + $msg = "The ISO file could not be downloaded" + [System.Windows.MessageBox]::Show($msg, "Winutil", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error) + return + } Set-Location $originalLocation - $filePath = Get-ChildItem -Path "$env:temp" -Filter "Win11*.iso" | Sort-Object LastWriteTime -Descending | Select-Object -First 1 + # Use the FullName property to only grab the file names. Using this property is necessary as, without it, you're passing the usual output of Get-ChildItem + # to the variable, and let's be honest, that does NOT exist in the file system + $filePath = (Get-ChildItem -Path "$env:temp" -Filter "Win11*.iso").FullName | Sort-Object LastWriteTime -Descending | Select-Object -First 1 + $fileName = [IO.Path]::GetFileName("$filePath") + + if (($targetFolder -ne "") -and (Test-Path "$targetFolder")) + { + try + { + # "Let it download to $env:TEMP and then we **move** it to the file path." - CodingWonders + $destinationFilePath = "$targetFolder\$fileName" + Write-Host "Moving ISO file. Please wait..." + Move-Item -Path "$filePath" -Destination "$destinationFilePath" -Force + $filePath = $destinationFilePath + } + catch + { + Write-Host "Unable to move the ISO file to the location you specified. The downloaded ISO is in the `"$env:TEMP`" folder" + Write-Host "Error information: $($_.Exception.Message)" -ForegroundColor Yellow + } + } } Write-Host "File path $($filePath)" diff --git a/scripts/main.ps1 b/scripts/main.ps1 index 61f6845f..873aab4d 100644 --- a/scripts/main.ps1 +++ b/scripts/main.ps1 @@ -415,9 +415,7 @@ $sync["ISORelease"].Items.Add("22H2") | Out-Null $sync["ISORelease"].Items.Add("21H2") | Out-Null $sync["ISORelease"].SelectedItem = "23H2" -$currentCulture = Get-FidoLangFromCulture -langName (Get-Culture).Name - -$sync["ISOLanguage"].Items.Add($currentCulture) | Out-Null +$sync["ISOLanguage"].Items.Add("System Language ($(Get-FidoLangFromCulture -langName $((Get-Culture).Name)))") | Out-Null if ($currentCulture -ne "English International") { $sync["ISOLanguage"].Items.Add("English International") | Out-Null } @@ -427,7 +425,7 @@ if ($currentCulture -ne "English") { if ($sync["ISOLanguage"].Items.Count -eq 1) { $sync["ISOLanguage"].IsEnabled = $false } -$sync["ISOLanguage"].SelectedItem = $currentCulture +$sync["ISOLanguage"].SelectedIndex = 0 # Load Checkboxes and Labels outside of the Filter function only once on startup for performance reasons From 02751c706d79ac6f5d67976861b7b61e94ae1590 Mon Sep 17 00:00:00 2001 From: Martin Wiethan <47688561+Marterich@users.noreply.github.com> Date: Mon, 23 Sep 2024 19:30:00 +0200 Subject: [PATCH 11/16] Fix Dark Color Scheme (#2788) * fixes the ComboBoxForegroundColor to be more easily readable on dark mode * Fix Background * Change DNS Dropdown to Button Color --- config/themes.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/themes.json b/config/themes.json index 829cfd0e..18f55b56 100644 --- a/config/themes.json +++ b/config/themes.json @@ -73,12 +73,12 @@ }, "Dark": { - "ComboBoxForegroundColor": "#1e3747", - "ComboBoxBackgroundColor": "#232629", + "ComboBoxForegroundColor": "#F7F7F7", + "ComboBoxBackgroundColor": "#1E3747", "LabelboxForegroundColor": "#0567ff", "MainForegroundColor": "#F7F7F7", - "MainBackgroundColor": "#121212", - "LabelBackgroundColor": "#121212", + "MainBackgroundColor": "#232629", + "LabelBackgroundColor": "#232629", "LinkForegroundColor": "#add8e6", "LinkHoverForegroundColor": "#F7F7F7", "ScrollBarBackgroundColor": "#2E3135", From 182fe09b64dd84a33bfdc3ddb93e192a9c435978 Mon Sep 17 00:00:00 2001 From: Martin Wiethan <47688561+Marterich@users.noreply.github.com> Date: Mon, 23 Sep 2024 19:34:45 +0200 Subject: [PATCH 12/16] Change Preset Type and Contains (#2789) --- functions/public/Invoke-WPFImpex.ps1 | 3 +-- functions/public/Invoke-WPFPresets.ps1 | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/functions/public/Invoke-WPFImpex.ps1 b/functions/public/Invoke-WPFImpex.ps1 index d97f025e..32539750 100644 --- a/functions/public/Invoke-WPFImpex.ps1 +++ b/functions/public/Invoke-WPFImpex.ps1 @@ -56,8 +56,7 @@ function Invoke-WPFImpex { } } } - - $flattenedJson = [string]$flattenedJson + Invoke-WPFPresets -preset $flattenedJson -imported $true } } diff --git a/functions/public/Invoke-WPFPresets.ps1 b/functions/public/Invoke-WPFPresets.ps1 index 90493899..1535ffe5 100644 --- a/functions/public/Invoke-WPFPresets.ps1 +++ b/functions/public/Invoke-WPFPresets.ps1 @@ -17,7 +17,7 @@ function Invoke-WPFPresets { param ( [Parameter(position=0)] - [string]$preset = "", + [Array]$preset = "", [Parameter(position=1)] [bool]$imported = $false, @@ -51,7 +51,7 @@ function Invoke-WPFPresets { } # Check if the checkbox name exists in the flattened JSON hashtable - if ($CheckBoxesToCheck.Contains($checkboxName)) { + if ($CheckBoxesToCheck -contains $checkboxName) { # If it exists, set IsChecked to true $sync.$checkboxName.IsChecked = $true Write-Debug "$checkboxName is checked" From f516c09ab3b763ee28f474f58d5514aae582f3bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=20Mom=C4=8Dilovi=C4=87?= Date: Mon, 23 Sep 2024 19:42:58 +0200 Subject: [PATCH 13/16] refac(invoke-wpfuninstall.ps1): remove null assignments and simplify taskbaritem invocation (#2797) --- functions/public/Invoke-WPFUnInstall.ps1 | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/functions/public/Invoke-WPFUnInstall.ps1 b/functions/public/Invoke-WPFUnInstall.ps1 index 7180ecf2..54eaad7e 100644 --- a/functions/public/Invoke-WPFUnInstall.ps1 +++ b/functions/public/Invoke-WPFUnInstall.ps1 @@ -32,11 +32,10 @@ function Invoke-WPFUnInstall { Invoke-WPFRunspace -ArgumentList @(("PackagesToInstall", $PackagesToInstall),("ChocoPreference", $ChocoPreference)) -DebugPreference $DebugPreference -ScriptBlock { param($PackagesToInstall, $ChocoPreference, $DebugPreference) - if ($PackagesToInstall.count -eq 1) { - $sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state "Indeterminate" -value 0.01 -overlay "logo" }) - } else { - $sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state "Normal" -value 0.01 -overlay "logo" }) - } + + $taskbarItemState = if ($PackagesToInstall.Count -eq 1) { "Indeterminate" } else { "Normal" } + $sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state $taskbarItemState -value 0.01 -overlay "logo" }) + $packagesWinget, $packagesChoco = { $packagesWinget = [System.Collections.ArrayList]::new() $packagesChoco = [System.Collections.ArrayList]::new() @@ -47,7 +46,7 @@ function Invoke-WPFUnInstall { $packagesWinget.add($package.winget) Write-Host "Queueing $($package.winget) for Winget uninstall" } else { - $null = $packagesChoco.add($package.choco) + $packagesChoco.add($package.choco) Write-Host "Queueing $($package.choco) for Chocolatey uninstall" } } @@ -56,7 +55,7 @@ function Invoke-WPFUnInstall { $packagesChoco.add($package.choco) Write-Host "Queueing $($package.choco) for Chocolatey uninstall" } else { - $null = $packagesWinget.add($($package.winget)) + $packagesWinget.add($($package.winget)) Write-Host "Queueing $($package.winget) for Winget uninstall" } } From fd2ac352288e1ce30b12ec346e62f0c4d0606210 Mon Sep 17 00:00:00 2001 From: Chris Titus Date: Mon, 23 Sep 2024 12:49:01 -0500 Subject: [PATCH 14/16] =?UTF-8?q?Revert=20"refac(invoke-wpfuninstall.ps1):?= =?UTF-8?q?=20remove=20null=20assignments=20and=20simplify=20=E2=80=A6"=20?= =?UTF-8?q?(#2806)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit f516c09ab3b763ee28f474f58d5514aae582f3bf. --- functions/public/Invoke-WPFUnInstall.ps1 | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/functions/public/Invoke-WPFUnInstall.ps1 b/functions/public/Invoke-WPFUnInstall.ps1 index 54eaad7e..7180ecf2 100644 --- a/functions/public/Invoke-WPFUnInstall.ps1 +++ b/functions/public/Invoke-WPFUnInstall.ps1 @@ -32,10 +32,11 @@ function Invoke-WPFUnInstall { Invoke-WPFRunspace -ArgumentList @(("PackagesToInstall", $PackagesToInstall),("ChocoPreference", $ChocoPreference)) -DebugPreference $DebugPreference -ScriptBlock { param($PackagesToInstall, $ChocoPreference, $DebugPreference) - - $taskbarItemState = if ($PackagesToInstall.Count -eq 1) { "Indeterminate" } else { "Normal" } - $sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state $taskbarItemState -value 0.01 -overlay "logo" }) - + if ($PackagesToInstall.count -eq 1) { + $sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state "Indeterminate" -value 0.01 -overlay "logo" }) + } else { + $sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state "Normal" -value 0.01 -overlay "logo" }) + } $packagesWinget, $packagesChoco = { $packagesWinget = [System.Collections.ArrayList]::new() $packagesChoco = [System.Collections.ArrayList]::new() @@ -46,7 +47,7 @@ function Invoke-WPFUnInstall { $packagesWinget.add($package.winget) Write-Host "Queueing $($package.winget) for Winget uninstall" } else { - $packagesChoco.add($package.choco) + $null = $packagesChoco.add($package.choco) Write-Host "Queueing $($package.choco) for Chocolatey uninstall" } } @@ -55,7 +56,7 @@ function Invoke-WPFUnInstall { $packagesChoco.add($package.choco) Write-Host "Queueing $($package.choco) for Chocolatey uninstall" } else { - $packagesWinget.add($($package.winget)) + $null = $packagesWinget.add($($package.winget)) Write-Host "Queueing $($package.winget) for Winget uninstall" } } From 0703935bfb8bef208259876f0b164b0a4926bf9a Mon Sep 17 00:00:00 2001 From: Chris Titus Tech Date: Mon, 23 Sep 2024 12:55:43 -0500 Subject: [PATCH 15/16] Formatting fixes --- .github/workflows/close-issue-command.yaml | 4 ++-- functions/private/Invoke-WinUtilMicroWin-Helper.ps1 | 2 +- functions/public/Invoke-WPFImpex.ps1 | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/close-issue-command.yaml b/.github/workflows/close-issue-command.yaml index 0f6aa3fb..e27ba51e 100644 --- a/.github/workflows/close-issue-command.yaml +++ b/.github/workflows/close-issue-command.yaml @@ -62,7 +62,7 @@ jobs: else gh issue close $ISSUE_NUMBER --repo ${{ github.repository }} fi - + - name: Reopen issue if conditions are met if: env.reopen_command == 'true' && env.user == 'true' env: @@ -70,4 +70,4 @@ jobs: ISSUE_NUMBER: ${{ github.event.issue.number }} run: | echo Reopening the issue... - gh issue reopen $ISSUE_NUMBER --repo ${{ github.repository }} \ No newline at end of file + gh issue reopen $ISSUE_NUMBER --repo ${{ github.repository }} diff --git a/functions/private/Invoke-WinUtilMicroWin-Helper.ps1 b/functions/private/Invoke-WinUtilMicroWin-Helper.ps1 index c607ad69..fff2b6be 100644 --- a/functions/private/Invoke-WinUtilMicroWin-Helper.ps1 +++ b/functions/private/Invoke-WinUtilMicroWin-Helper.ps1 @@ -28,7 +28,7 @@ function Test-CompatibleImage() { function Get-FidoLangFromCulture { param ( - [Parameter(Mandatory, Position = 0)] [string] $langName + [Parameter(Mandatory, Position = 0)] [string]$langName ) switch -Wildcard ($langName) diff --git a/functions/public/Invoke-WPFImpex.ps1 b/functions/public/Invoke-WPFImpex.ps1 index 32539750..43d835de 100644 --- a/functions/public/Invoke-WPFImpex.ps1 +++ b/functions/public/Invoke-WPFImpex.ps1 @@ -56,7 +56,7 @@ function Invoke-WPFImpex { } } } - + Invoke-WPFPresets -preset $flattenedJson -imported $true } } From 225e774f1e185fa63723aba25ef26b95bbe18329 Mon Sep 17 00:00:00 2001 From: ChrisTitusTech Date: Thu, 26 Sep 2024 15:33:02 +0000 Subject: [PATCH 16/16] =?UTF-8?q?Deploying=20to=20main=20from=20@=20ChrisT?= =?UTF-8?q?itusTech/winutil@0703935bfb8bef208259876f0b164b0a4926bf9a=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7a162a07..7a78c968 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ If you have Issues, refer to [Known Issues](https://christitustech.github.io/win These are the sponsors that help keep this project alive with monthly contributions. -Yusuke SaitoTriHyderaMark AmosJason A. DiegmuellerwyattRMSStefanthaddlPaulDave JonesAnthony MendezxPandakuClaudemodsTimothy CookDursleyGuyMITH ツ +Yusuke SaitoTriHyderaMark AmosJason A. DiegmuellerwyattRMSStefanthaddlPaulDave JonesAnthony MendezxPandakuClaudemodsTimothy CookDursleyGuyMITH ツ ## 🏅 Thanks to all Contributors Thanks a lot for spending your time helping Winutil grow. Thanks a lot! Keep rocking 🍻.