Skip to content

Commit

Permalink
FEAT: added manifest file into Windows resources
Browse files Browse the repository at this point in the history
and renamed ico file
  • Loading branch information
Oldes committed Jun 20, 2018
1 parent c87742b commit 5fa2db1
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
## REBOL R3
#################

make/r3*
make/objs/
make/host.exe
make/libr3.so
Expand Down
File renamed without changes.
15 changes: 15 additions & 0 deletions make/r3.manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">True/PM</dpiAware>
</windowsSettings>
</application>
</assembly>
7 changes: 5 additions & 2 deletions make/r3.rc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
IDI_APPICON ICON "r3-icon.ico"
IDI_APPICON ICON "r3.ico"

1 VERSIONINFO
FILEVERSION 3,0,0,0
Expand Down Expand Up @@ -26,4 +26,7 @@ END
STRINGTABLE
BEGIN
101 "Rebol 3 (Oldes branch)"
END
END

2 MANIFEST "r3.manifest"

0 comments on commit 5fa2db1

Please sign in to comment.