From f76976cffd7d1525fc801afb3a73a69027ae3027 Mon Sep 17 00:00:00 2001 From: kenchan0130 Date: Thu, 29 Aug 2024 19:29:54 +0900 Subject: [PATCH 1/3] fix local icon path for creating win32 app Signed-off-by: kenchan0130 --- scripts/Create-Win32App.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Create-Win32App.ps1 b/scripts/Create-Win32App.ps1 index 56f30bbc..2c65e5e3 100644 --- a/scripts/Create-Win32App.ps1 +++ b/scripts/Create-Win32App.ps1 @@ -61,7 +61,7 @@ process { $AppIconFile = $OutFile } else { - $AppIconFile = $AppData.PackageInformation.IconFile + $AppIconFile = [System.IO.Path]::Combine($PSScriptRoot, $AppData.PackageInformation.IconFile) } # Create default requirement rule From ac3deaec70abc815147345bd4778568667ad2ae4 Mon Sep 17 00:00:00 2001 From: Tadayuki Onishi Date: Fri, 20 Sep 2024 01:55:37 +0900 Subject: [PATCH 2/3] fix logo file directory --- scripts/Create-Win32App.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Create-Win32App.ps1 b/scripts/Create-Win32App.ps1 index 2c65e5e3..abf6e12d 100644 --- a/scripts/Create-Win32App.ps1 +++ b/scripts/Create-Win32App.ps1 @@ -61,7 +61,7 @@ process { $AppIconFile = $OutFile } else { - $AppIconFile = [System.IO.Path]::Combine($PSScriptRoot, $AppData.PackageInformation.IconFile) + $AppIconFile = [System.IO.Path]::Combine((Get-Item $Json).DirectoryName, $AppData.PackageInformation.IconFile) } # Create default requirement rule From 107a797e52e3ea9d3b21a2ef1c12f56fc55e2c60 Mon Sep 17 00:00:00 2001 From: kenchan0130 Date: Fri, 11 Oct 2024 07:54:44 +0900 Subject: [PATCH 3/3] png files in the package can be git managed for use with icons, etc. --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index d8f1326d..1e6ee9a7 100644 --- a/.gitignore +++ b/.gitignore @@ -16,7 +16,6 @@ # Package folders packages/**/Package -packages/**/*.png auth.ps1 auth.json output/**