Skip to content

Commit

Permalink
Up to v1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
YaSuenag committed Aug 11, 2024
1 parent 1a19e66 commit f866ea0
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 26 deletions.
10 changes: 5 additions & 5 deletions Installer/Installer.vdproj
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"DisplayName" = "8:Debug"
"IsDebugOnly" = "11:TRUE"
"IsReleaseOnly" = "11:FALSE"
"OutputFilename" = "8:SimpleComInstaller.msi"
"OutputFilename" = "8:SimpleComInstaller-1.2.4.msi"
"PackageFilesAs" = "3:2"
"PackageFileSize" = "3:-2147483648"
"CabType" = "3:1"
Expand Down Expand Up @@ -83,7 +83,7 @@
"DisplayName" = "8:Release"
"IsDebugOnly" = "11:FALSE"
"IsReleaseOnly" = "11:TRUE"
"OutputFilename" = "8:SimpleComInstaller-1.2.3.msi"
"OutputFilename" = "8:SimpleComInstaller-1.2.4.msi"
"PackageFilesAs" = "3:2"
"PackageFileSize" = "3:-2147483648"
"CabType" = "3:1"
Expand Down Expand Up @@ -290,15 +290,15 @@
{
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:SimpleCom"
"ProductCode" = "8:{3415A561-F4EA-4B2B-B148-D3004C8075DB}"
"PackageCode" = "8:{BDF9B88D-2952-4B38-8816-BFA0AD83CB6C}"
"ProductCode" = "8:{CCE09524-6406-448D-B94A-6E3E1F61FB1E}"
"PackageCode" = "8:{0CEF70B3-C394-46D7-B60F-4586D5913B9E}"
"UpgradeCode" = "8:{F33BE402-825E-46C8-8799-EF7E3AE9C357}"
"AspNetVersion" = "8:2.0.50727.0"
"RestartWWWService" = "11:FALSE"
"RemovePreviousVersions" = "11:FALSE"
"DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:TRUE"
"ProductVersion" = "8:1.2.3"
"ProductVersion" = "8:1.2.4"
"Manufacturer" = "8:YaSuenag"
"ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:https://github.com/YaSuenag/SimpleCom/issues"
Expand Down
30 changes: 11 additions & 19 deletions SimpleCom/app.manifest
Original file line number Diff line number Diff line change
@@ -1,38 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.0" name="SimpleCom.exe"/>
<assemblyIdentity version="1.2.4.0" name="SimpleCom.exe" />
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- Windows 10 -->
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" maxversiontested="10.0.19042.868" />
<!-- Windows 8.1 -->
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />
<!-- Windows 8 -->
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />
<!-- Windows 7 -->
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />
<!-- Windows Vista -->
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />
</application>
</compatibility>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="*"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*" />
</dependentAssembly>
</dependency>
</assembly>
4 changes: 2 additions & 2 deletions common/generated/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

#define MAJOR 1
#define MINOR 2
#define PATCH 3
#define PATCH 4
#define BUILD 0

#define SEMVER "1.2.3"
#define SEMVER "1.2.4"
#define LEGAL_COPYRIGHT "Copyright (C) 2019, 2024, Yasumasa Suenaga"

0 comments on commit f866ea0

Please sign in to comment.