Skip to content

Commit 66101ca

Browse files
committed
[Changes]
- New Name: AutoHDR - new accent color - new icons - UI improvements - Disabled Windows Event Logging ,as this requires administrative rights initially - Added build script !!!!!!!! You need to reset the auto start setting as the name of the app has changed !!!!!!!! [Bug fixes] - Compatibility mode causes a restart loop with some steam apps
1 parent cabec4b commit 66101ca

Some content is hidden

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

70 files changed

+1157
-579
lines changed

Build.ps1

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
function buildVS
2+
{
3+
param
4+
(
5+
[parameter(Mandatory=$true)]
6+
[String] $path,
7+
8+
[parameter(Mandatory=$true)]
9+
[String] $version,
10+
11+
[parameter(Mandatory=$false)]
12+
[bool] $nuget = $true,
13+
14+
[parameter(Mandatory=$false)]
15+
[bool] $clean = $true
16+
)
17+
process
18+
{
19+
$msBuildExe = 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Current\Bin\msbuild.exe'
20+
21+
if ($clean) {
22+
Write-Host "Cleaning x64 $($path)" -foregroundcolor green
23+
{Get-ChildItem -Path .\Source\Release_x64 -Include * | remove-Item -recurse -force}
24+
Write-Host "Cleaning x86 $($path)" -foregroundcolor green
25+
{Get-ChildItem -Path .\Source\Release_x86 -Include * | remove-Item -recurse -force}
26+
27+
}
28+
29+
Write-Host "Building x64 $($path)" -foregroundcolor green
30+
& "$($msBuildExe)" "$($path)" /t:Build /m /property:Configuration=Release /property:Platform=x64
31+
Write-Host "Building x86 $($path)" -foregroundcolor green
32+
& "$($msBuildExe)" "$($path)" /t:Build /m /property:Configuration=Release /property:Platform=x86
33+
34+
$x64zip = ".\Releases\Release_HDRProfile_$($version)_x64.zip"
35+
$x86zip = ".\Releases\Release_HDRProfile_$($version)_x86.zip"
36+
37+
38+
39+
Write-Host "Creating Zip x64 $($x64zip)" -foregroundcolor green
40+
41+
if (Test-Path $x64zip -PathType leaf)
42+
{del $x64zip}
43+
44+
Get-ChildItem -Path ".\Source\Release_x64" |
45+
Where-Object {$_.PsIsContainer -eq $true -or $_.Extension -eq ".exe" -or $_.Extension -eq ".config" -or $_.Extension -eq ".dll" } | Compress-Archive -DestinationPath $x64zip
46+
47+
Write-Host "Creating Zip x86 $($x86ip)" -foregroundcolor green
48+
if (Test-Path $x86zip -PathType leaf)
49+
{del $x86zip}
50+
51+
Get-ChildItem -Path ".\Source\Release_x86" |
52+
Where-Object {$_.PsIsContainer -eq $true -or $_.Extension -eq ".exe" -or $_.Extension -eq ".config" -or $_.Extension -eq ".dll" } | Compress-Archive -DestinationPath $x86zip
53+
Write-Host "Finished!" -foregroundcolor green
54+
55+
}
56+
}
57+
58+
59+
60+
buildVS .\Source\AutoHDR.sln
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[InternetShortcut]
2+
URL=https://redketchup.io/icon-editor

Photoshop/Logo.ico

155 KB
Binary file not shown.

Photoshop/Logo.png

-33 KB
Loading

Photoshop/Logo.psd

-191 KB
Binary file not shown.

Photoshop/Logo_16.png

3 KB
Loading

Photoshop/Logo_256.png

-7.15 KB
Loading

Photoshop/Logo_32.png

3.28 KB
Loading

Photoshop/Logo_48.png

3.01 KB
Loading

Photoshop/Logo_48.psd

50.8 KB
Binary file not shown.

0 commit comments

Comments
 (0)