summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2022-02-01 10:30:03 +0100
committerRené 'Necoro' Neumann <necoro@necoro.eu>2022-02-01 10:30:03 +0100
commitcb105e76493c5459f6786987ad40482b4e9698c7 (patch)
treeaee156353f292de9797477b7e394467c7a23cd39
parentb2b65ab04b227d5288b15f62a0529ca8f10a8472 (diff)
downloadengarde-importer-cb105e76493c5459f6786987ad40482b4e9698c7.tar.gz
engarde-importer-cb105e76493c5459f6786987ad40482b4e9698c7.tar.bz2
engarde-importer-cb105e76493c5459f6786987ad40482b4e9698c7.zip
Add windows manifest
-rw-r--r--engarde-importer.exe.manifest32
-rw-r--r--gui.go2
-rw-r--r--rsrc_windows_amd64.sysobin0 -> 1844 bytes
3 files changed, 34 insertions, 0 deletions
diff --git a/engarde-importer.exe.manifest b/engarde-importer.exe.manifest
new file mode 100644
index 0000000..f326fce
--- /dev/null
+++ b/engarde-importer.exe.manifest
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="utf-8"?>
+<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
+ <assemblyIdentity type="win32" processorArchitecture="amd64" name="com.github.Necoro.Engarde-Importer" version="1.0.0.0"/>
+ <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
+ <security>
+ <requestedPrivileges>
+ <requestedExecutionLevel level="asInvoker" uiAccess="false"/>
+ </requestedPrivileges>
+ </security>
+ </trustInfo>
+ <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
+ <application>
+ <!-- Windows 10 -->
+ <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
+ <!-- Windows 8.1 -->
+ <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
+ <!-- Windows 8 -->
+ <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
+ <!-- Windows 7 -->
+ <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
+ <!-- Windows Vista -->
+ <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
+ </application>
+ </compatibility>
+ <asmv3:application>
+ <asmv3:windowsSettings>
+ <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/pm</dpiAware>
+ <dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2</dpiAwareness>
+ <activeCodePage xmlns="http://schemas.microsoft.com/SMI/2019/WindowsSettings">UTF-8</activeCodePage>
+ </asmv3:windowsSettings>
+ </asmv3:application>
+</assembly>
diff --git a/gui.go b/gui.go
index 30f8119..c29ec41 100644
--- a/gui.go
+++ b/gui.go
@@ -7,6 +7,8 @@ import (
"github.com/AllenDang/imgui-go"
)
+//go:generate rsrc -manifest engarde-importer.exe.manifest
+
var guiCfg EngardeConfig
type gridLayout struct {
diff --git a/rsrc_windows_amd64.syso b/rsrc_windows_amd64.syso
new file mode 100644
index 0000000..90f5dc2
--- /dev/null
+++ b/rsrc_windows_amd64.syso
Binary files differ