mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-14 08:17:13 +03:00
Improve tile appearance on Windows 8.1 start screen.
This commit is contained in:
parent
185cdbbc77
commit
f0e5b61a89
6
EDMarketConnector.VisualElementsManifest.xml
Normal file
6
EDMarketConnector.VisualElementsManifest.xml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<Application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<VisualElements
|
||||||
|
BackgroundColor="black"
|
||||||
|
ShowNameOnSquare150x150Logo="on"
|
||||||
|
ForegroundText="light" />
|
||||||
|
</Application>
|
@ -69,6 +69,9 @@
|
|||||||
<Component Id="cmp3A226BE5169ADACD24C4558730F36DE0" Guid="{6762E871-5FA1-4C2F-A3C9-6A9954CC018C}">
|
<Component Id="cmp3A226BE5169ADACD24C4558730F36DE0" Guid="{6762E871-5FA1-4C2F-A3C9-6A9954CC018C}">
|
||||||
<File Id="filDD25890A36252ED1E8C500155136F68E" KeyPath="yes" Source="SourceDir\EDMarketConnector.ico" />
|
<File Id="filDD25890A36252ED1E8C500155136F68E" KeyPath="yes" Source="SourceDir\EDMarketConnector.ico" />
|
||||||
</Component>
|
</Component>
|
||||||
|
<Component Id="cmp58A3B51756464557E96B4443B71440FF" Guid="{9A0CB8A2-7167-492F-A185-0BDF7E9F5C01}">
|
||||||
|
<File Id="fil764EB4B533F33433CEC5508ECBDDAD88" KeyPath="yes" Source="SourceDir\EDMarketConnector.VisualElementsManifest.xml" />
|
||||||
|
</Component>
|
||||||
<Component Id="cmp6C00F72E54E2F111E00372FB0FBB0FE2" Guid="{A18814B6-B491-42AB-A433-2AD66A823AD7}">
|
<Component Id="cmp6C00F72E54E2F111E00372FB0FBB0FE2" Guid="{A18814B6-B491-42AB-A433-2AD66A823AD7}">
|
||||||
<File Id="fil2B50DE12C46865F8BA5A62E95387F676" KeyPath="yes" Source="SourceDir\library.zip" />
|
<File Id="fil2B50DE12C46865F8BA5A62E95387F676" KeyPath="yes" Source="SourceDir\library.zip" />
|
||||||
</Component>
|
</Component>
|
||||||
@ -313,6 +316,7 @@
|
|||||||
<ComponentRef Id="cmpC8B55AE9807D860809769FEEC0698D4D" />
|
<ComponentRef Id="cmpC8B55AE9807D860809769FEEC0698D4D" />
|
||||||
<ComponentRef Id="cmp4E4667BF45EB1B750652361A525491D8" />
|
<ComponentRef Id="cmp4E4667BF45EB1B750652361A525491D8" />
|
||||||
<ComponentRef Id="cmp3A226BE5169ADACD24C4558730F36DE0" />
|
<ComponentRef Id="cmp3A226BE5169ADACD24C4558730F36DE0" />
|
||||||
|
<ComponentRef Id="cmp58A3B51756464557E96B4443B71440FF" />
|
||||||
<ComponentRef Id="cmp6C00F72E54E2F111E00372FB0FBB0FE2" />
|
<ComponentRef Id="cmp6C00F72E54E2F111E00372FB0FBB0FE2" />
|
||||||
<ComponentRef Id="cmpCFF82FAF0C08DC3A2167B0390C62C086" />
|
<ComponentRef Id="cmpCFF82FAF0C08DC3A2167B0390C62C086" />
|
||||||
<ComponentRef Id="cmp86F09398BBC9CD7D4B57EAAE1A948C70" />
|
<ComponentRef Id="cmp86F09398BBC9CD7D4B57EAAE1A948C70" />
|
||||||
|
3
setup.py
3
setup.py
@ -85,6 +85,8 @@ if sys.platform=='win32':
|
|||||||
import requests
|
import requests
|
||||||
DATA_FILES = [ ('', [requests.certs.where(),
|
DATA_FILES = [ ('', [requests.certs.where(),
|
||||||
'WinSparkle.dll',
|
'WinSparkle.dll',
|
||||||
|
'WinSparkle.pdb', # For debugging - don't include in package
|
||||||
|
'%s.VisualElementsManifest.xml' % APPNAME,
|
||||||
'%s.ico' % APPNAME ] ) ]
|
'%s.ico' % APPNAME ] ) ]
|
||||||
else:
|
else:
|
||||||
DATA_FILES = [ ]
|
DATA_FILES = [ ]
|
||||||
@ -116,7 +118,6 @@ if sys.platform == 'darwin':
|
|||||||
PKG = '%s_mac_%s.zip' % (APPNAME, SHORTVERSION)
|
PKG = '%s_mac_%s.zip' % (APPNAME, SHORTVERSION)
|
||||||
os.system('cd %s; ditto -ck --keepParent --sequesterRsrc %s.app ../%s; cd ..' % (dist_dir, APPNAME, PKG))
|
os.system('cd %s; ditto -ck --keepParent --sequesterRsrc %s.app ../%s; cd ..' % (dist_dir, APPNAME, PKG))
|
||||||
else:
|
else:
|
||||||
shutil.copy('WinSparkle.pdb', dist_dir) # For debugging - not included in package
|
|
||||||
os.system(r'"C:\Program Files (x86)\WiX Toolset v3.9\bin\candle.exe" -out %s\ %s.wxs' % (dist_dir, APPNAME))
|
os.system(r'"C:\Program Files (x86)\WiX Toolset v3.9\bin\candle.exe" -out %s\ %s.wxs' % (dist_dir, APPNAME))
|
||||||
if exists('%s/%s.wixobj' % (dist_dir, APPNAME)):
|
if exists('%s/%s.wixobj' % (dist_dir, APPNAME)):
|
||||||
PKG = '%s_win_%s.msi' % (APPNAME, SHORTVERSION)
|
PKG = '%s_win_%s.msi' % (APPNAME, SHORTVERSION)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user