Skip to content

Commit

Permalink
Other: v0.16.0.0 alpha release.
Browse files Browse the repository at this point in the history
This installer hosts a self-contained single-file x64 version of the app, hopefully avoiding the need for users to install and .NET runtimes.
  • Loading branch information
Dean Edis committed Dec 18, 2021
1 parent 9c4c185 commit d444640
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
8 changes: 3 additions & 5 deletions ShaderShrinker/InnoSetupProject/InstallScript.iss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[Setup]
AppId={{996B4B28-98DA-451F-ED15-8777E28DBDE4}
AppName={#MyAppName}
AppVersion=0.15
AppVersion=0.16
AppPublisher=Dean Edis
AppPublisherURL=https://github.com/deanthecoder/GLSLShaderShrinker
DefaultDirName={commonpf}\ShaderShrinker
Expand All @@ -13,16 +13,14 @@ UninstallDisplayIcon={app}\Inno_Setup_Project.exe
Compression=lzma2
SolidCompression=yes
SourceDir=..\Shrinker.WpfApp\
OutputDir=Setup
OutputDir=..\InnoSetupProject\
OutputBaseFilename={#MyAppName} Installer

[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked

[Files]
Source: "bin\Release\net5.0-windows\win-x64\*.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "bin\Release\net5.0-windows\win-x64\*.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "bin\Release\net5.0-windows\win-x64\*.json"; DestDir: "{app}"; Flags: ignoreversion
Source: "bin\Release\net5.0-windows\publish\win-x64\*.*"; DestDir: "{app}"; Excludes: "*.pdb"; Flags: ignoreversion

[Icons]
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Expand Down
4 changes: 2 additions & 2 deletions ShaderShrinker/Shrinker.WpfApp/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.15.0.0")]
[assembly: AssemblyFileVersion("0.15.0.0")]
[assembly: AssemblyVersion("0.16.0.0")]
[assembly: AssemblyFileVersion("0.16.0.0")]

0 comments on commit d444640

Please sign in to comment.