[geany/geany] 1613f9: Disable UAC Virtualization on Windows
Igor Shaula
git-noreply at xxxxx
Sun Mar 10 13:24:48 UTC 2013
Branch: refs/heads/master
Author: Igor Shaula <gentoo90 at gmail.com>
Committer: Enrico Tröger <enrico.troeger at uvena.de>
Date: Sun, 10 Mar 2013 13:24:48 UTC
Commit: 1613f93ad0adbb32faf77172930f981cff4ff8a5
https://github.com/geany/geany/commit/1613f93ad0adbb32faf77172930f981cff4ff8a5
Log Message:
-----------
Disable UAC Virtualization on Windows
Includes an application manifest embedded into the .exe resources.
Modified Paths:
--------------
geany.exe.manifest
geany_private.rc
Modified: geany.exe.manifest
18 files changed, 18 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
+ <assemblyIdentity
+ version="1.23.0.0"
+ processorArchitecture="X86"
+ name="Geany"
+ type="win32" />
+ <description>Geany is a fast and lightweight IDE</description>
+ <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
+ <security>
+ <requestedPrivileges>
+ <requestedExecutionLevel
+ level="asInvoker"
+ uiAccess="false" />
+ </requestedPrivileges>
+ </security>
+ </trustInfo>
+</assembly>
Modified: geany_private.rc
2 files changed, 2 insertions(+), 0 deletions(-)
===================================================================
@@ -3,6 +3,7 @@
#define VER_FILEVERSION 1,23,0,0
#define VER_FILEVERSION_STR "1.23"
+#define APP_MANIFEST 1
A ICON MOVEABLE PURE LOADONCALL DISCARDABLE "../icons/geany.ico"
@@ -30,3 +31,4 @@ FILETYPE VFT_APP
}
}
+APP_MANIFEST RT_MANIFEST "geany.exe.manifest"
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
More information about the Commits
mailing list