Skip to content

Commit

Permalink
Bumped to version 3.0.7.63
Browse files Browse the repository at this point in the history
  • Loading branch information
indidevelopers committed Dec 9, 2015
1 parent d2a1d8c commit 55a25ae
Show file tree
Hide file tree
Showing 23 changed files with 73 additions and 23 deletions.
12 changes: 6 additions & 6 deletions Helix/addons.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addons>
<addon id="plugin.program.aw.gamelauncher" name="HiveMind Game Launcher" version="1.0.10" provider-name="Alienware">
<addon id="plugin.program.aw.gamelauncher" name="HiveMind Game Launcher" version="1.0.12" provider-name="Alienware">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="service.aw.customizations"/>
Expand Down Expand Up @@ -155,7 +155,7 @@
</extension>
</addon>

<addon id="script.aw.gfe.launcher" name="HiveMind NVidia GFE Launcher" version="1.0.3" provider-name="Alienware">
<addon id="script.aw.gfe.launcher" name="HiveMind NVidia GFE Launcher" version="1.0.4" provider-name="Alienware">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="service.aw.customizations"/>
Expand Down Expand Up @@ -366,7 +366,7 @@

<addon id="script.module.aw.devicesettings"
name="HiveMind Device Settings"
version="1.0.4"
version="1.0.5"
provider-name="Alienware">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
Expand Down Expand Up @@ -558,11 +558,11 @@

<addon id="service.aw.customizations"
name="HiveMind Customizations"
version="1.0.7"
version="1.0.9"
provider-name="Alienware">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="skin.hivemind" version="1.0.9"/>
<import addon="skin.hivemind" version="1.0.10"/>
</requires>
<extension point="xbmc.service"
library="install_customizations.py" start="startup">
Expand Down Expand Up @@ -733,7 +733,7 @@

<addon
id="skin.hivemind"
version="1.0.9"
version="1.0.10"
name="The HiveMind Interface"
provider-name="Alienware">
<requires>
Expand Down
2 changes: 1 addition & 1 deletion Helix/addons.xml.md5
Original file line number Diff line number Diff line change
@@ -1 +1 @@
01bc12cedf2652a6c8d5d1ce1923295b
b5d4cc0c4be02c93f113816616811817
2 changes: 1 addition & 1 deletion Helix/plugin.program.aw.gamelauncher/addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.program.aw.gamelauncher" name="HiveMind Game Launcher" version="1.0.10" provider-name="Alienware">
<addon id="plugin.program.aw.gamelauncher" name="HiveMind Game Launcher" version="1.0.12" provider-name="Alienware">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="service.aw.customizations"/>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ def findGames(self, orgGames, games):
#try:
gameDict = parse_acf(filePath)

if (gameDict['appstate']['bytestodownload'] != '0' and gameDict['appstate']['bytestodownload'] == gameDict['appstate']['bytesdownloaded']):

#if (gameDict['appstate']['bytestodownload'] != '0' and gameDict['appstate']['bytestodownload'] == gameDict['appstate']['bytesdownloaded']):
if(True):
orgGame = None
gameId = gameDict['appstate']['appid']
for game in orgGames:
Expand Down
10 changes: 10 additions & 0 deletions Helix/plugin.program.aw.gamelauncher/resources/lib/uplaygame.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,16 @@ def parseConfigurationFile(self):
elif 'append' in line:
append = line.split(': ')[1]

if haveRelative and haveRegister and haveName:
uplayRegObjects.append(Uplay(name, '', relative, register, append))
relative = ''
register = ''
append = ''
name = ''
haveRelative = False
haveRegister = False
haveName = False

uplayGames = []

for uplay in uplayRegObjects:
Expand Down
2 changes: 1 addition & 1 deletion Helix/script.aw.gfe.launcher/addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.aw.gfe.launcher" name="HiveMind NVidia GFE Launcher" version="1.0.3" provider-name="Alienware">
<addon id="script.aw.gfe.launcher" name="HiveMind NVidia GFE Launcher" version="1.0.4" provider-name="Alienware">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="service.aw.customizations"/>
Expand Down
2 changes: 1 addition & 1 deletion Helix/script.aw.gfe.launcher/launch_gfe.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def log(txt):
webbrowser.open('http://www.geforce.com/geforce-experience')
else:
#subprocess.Popen(launchPath,cwd=os.path.dirname(launchPath))
result = AlphaUIUtils.LaunchApplication(unicode(launchPath), unicode(os.path.dirname(launchPath)),unicode(""), True, False, True)
result = AlphaUIUtils.LaunchApplication(unicode(launchPath), unicode(os.path.dirname(launchPath)),unicode(""), False, False, True)
if not result:
customizationAddon = xbmcaddon.Addon(id='service.aw.customizations')
customizationAddonLanguage = customizationAddon.getLocalizedString
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion Helix/script.module.aw.devicesettings/addon.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.module.aw.devicesettings"
name="HiveMind Device Settings"
version="1.0.4"
version="1.0.5"
provider-name="Alienware">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
<top>11</top>
<width>64</width>
<height>32</height>
<textcolor>white</textcolor>
<label>-</label>
<font>-</font>
<onclick>PreviousMenu</onclick>
Expand Down Expand Up @@ -112,7 +113,7 @@
<width>240</width>
<height>55</height>
<font>font24_title</font>
<textcolor>grey3</textcolor>
<textcolor>white</textcolor>
<align>right</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Label]</label>
Expand Down Expand Up @@ -370,6 +371,7 @@
<onup>109</onup>
<ondown>114</ondown>
<onright>113</onright>
<textcolor>white</textcolor>
<onleft>101</onleft>
<label>[B]-[/B]</label>
<align>center</align>
Expand Down Expand Up @@ -423,6 +425,7 @@
<ondown>114</ondown>
<onright>101</onright>
<onleft>112</onleft>
<textcolor>white</textcolor>
<label>[B]+[/B]</label>
<align>center</align>
<aligny>center</aligny>
Expand Down Expand Up @@ -509,6 +512,7 @@
<aligny>center</aligny>
<texturenofocus flipx="true">alienware/arrow.png</texturenofocus>
<texturefocus flipx="true">alienware/circlearrow.png</texturefocus>
<textcolor>white</textcolor>
<label>-</label>
<onright>119</onright>
<onleft>101</onleft>
Expand All @@ -524,6 +528,7 @@
<aligny>center</aligny>
<texturenofocus>alienware/arrow.png</texturenofocus>
<texturefocus>alienware/circlearrow.png</texturefocus>
<textcolor>white</textcolor>
<label>-</label>
<onright>101</onright>
<onleft>117</onleft>
Expand Down Expand Up @@ -590,6 +595,7 @@
<aligny>center</aligny>
<texturenofocus flipx="true">alienware/arrow.png</texturenofocus>
<texturefocus flipx="true">alienware/circlearrow.png</texturefocus>
<textcolor>white</textcolor>
<label>-</label>
<onright>127</onright>
<onleft>101</onleft>
Expand All @@ -605,6 +611,7 @@
<aligny>center</aligny>
<texturenofocus>alienware/arrow.png</texturenofocus>
<texturefocus>alienware/circlearrow.png</texturefocus>
<textcolor>white</textcolor>
<label>-</label>
<onright>101</onright>
<onleft>125</onleft>
Expand Down Expand Up @@ -671,6 +678,7 @@
<aligny>center</aligny>
<texturenofocus flipx="true">alienware/arrow.png</texturenofocus>
<texturefocus flipx="true">alienware/circlearrow.png</texturefocus>
<textcolor>white</textcolor>
<label>-</label>
<onright>138</onright>
<onleft>101</onleft>
Expand All @@ -680,6 +688,7 @@
<top>15</top>
<width>1</width>
<height>15</height>
<textcolor>white</textcolor>
<aligny>center</aligny>
<visible>true</visible>
<texture>alienware/sliderbg.png</texture>
Expand All @@ -706,6 +715,7 @@
<aligny>center</aligny>
<texturenofocus>alienware/arrow.png</texturenofocus>
<texturefocus>alienware/circlearrow.png</texturefocus>
<textcolor>white</textcolor>
<label>-</label>
<onright>101</onright>
<onleft>135</onleft>
Expand Down Expand Up @@ -759,6 +769,7 @@
<left>10</left>
<height>30</height>
<width>700</width>
<textcolor>white</textcolor>
<aligny>center</aligny>
<font>font13</font>
<label>$ADDON[script.module.aw.devicesettings 33058]</label>
Expand All @@ -775,6 +786,7 @@
<left>20</left>
<height>30</height>
<width>700</width>
<textcolor>white</textcolor>
<aligny>center</aligny>
<font>font13</font>
<label> $LOCALIZE[13295] $INFO[System.InternetState]</label>
Expand All @@ -783,6 +795,7 @@
<left>20</left>
<height>30</height>
<width>700</width>
<textcolor>white</textcolor>
<aligny>center</aligny>
<font>font13</font>
<label> $INFO[Network.LinkState]</label>
Expand All @@ -800,6 +813,7 @@
<left>10</left>
<height>30</height>
<width>700</width>
<textcolor>white</textcolor>
<aligny>center</aligny>
<font>font13</font>
<label>$ADDON[script.module.aw.devicesettings 33022]</label>
Expand All @@ -826,6 +840,7 @@
<left>10</left>
<width>500</width>
<height>45</height>
<textcolor>white</textcolor>
<font>font13</font>
<aligny>center</aligny>
<info>ListItem.Label</info>
Expand All @@ -852,6 +867,7 @@
<height>45</height>
<left>540</left>
<width>170</width>
<textcolor>white</textcolor>
<aligny>center</aligny>
<align>right</align>
<scroll>true</scroll>
Expand All @@ -874,6 +890,7 @@
<left>10</left>
<width>500</width>
<height>45</height>
<textcolor>white</textcolor>
<font>font13</font>
<aligny>center</aligny>
<info>ListItem.Label</info>
Expand Down Expand Up @@ -901,6 +918,7 @@
<left>540</left>
<width>170</width>
<aligny>center</aligny>
<textcolor>white</textcolor>
<align>right</align>
<scroll>true</scroll>
<font>font13</font>
Expand Down Expand Up @@ -1057,6 +1075,7 @@
<height>45</height>
<left>20</left>
<width>450</width>
<textcolor>white</textcolor>
<aligny>center</aligny>
<font>font13</font>
<info>ListItem.Label</info>
Expand All @@ -1066,6 +1085,7 @@
<height>45</height>
<left>530</left>
<width>200</width>
<textcolor>white</textcolor>
<align>right</align>
<aligny>center</aligny>
<font>font13</font>
Expand Down Expand Up @@ -1102,6 +1122,7 @@
<height>45</height>
<left>20</left>
<width>450</width>
<textcolor>white</textcolor>
<aligny>center</aligny>
<font>font13</font>
<info>ListItem.Label</info>
Expand All @@ -1111,6 +1132,7 @@
<height>45</height>
<left>530</left>
<width>200</width>
<textcolor>white</textcolor>
<align>right</align>
<aligny>center</aligny>
<font>font13</font>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
<width>530</width>
<height>30</height>
<font>font13_title</font>
<textcolor>white</textcolor>
<align>center</align>
<aligny>center</aligny>
<textcolor>selected</textcolor>
Expand All @@ -57,6 +58,7 @@
<height>32</height>
<label>-</label>
<font>-</font>
<textcolor>white</textcolor>
<onclick>PreviousMenu</onclick>
<texturefocus>alienware/DialogCloseButton-focus.png</texturefocus>
<texturenofocus>alienware/DialogCloseButton.png</texturenofocus>
Expand Down Expand Up @@ -86,7 +88,7 @@
<width>510</width>
<height>40</height>
<font>font13</font>
<textcolor>grey2</textcolor>
<textcolor>white</textcolor>
<selectedcolor>selected</selectedcolor>
<align>left</align>
<aligny>center</aligny>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<top>0</top>
<width>610</width>
<height>630</height>
<textcolor>white</textcolor>
<texture border="40">alienware/DialogBack.png</texture>
<visible>![Window.IsVisible(FullscreenVideo) | Window.IsVisible(Visualisation)]</visible>
</control>
Expand All @@ -25,6 +26,7 @@
<top>0</top>
<width>610</width>
<height>630</height>
<textcolor>white</textcolor>
<texture border="40">alienware/DialogBack2.png</texture>
<visible>Window.IsVisible(FullscreenVideo) | Window.IsVisible(Visualisation)</visible>
</control>
Expand All @@ -34,6 +36,7 @@
<top>16</top>
<width>530</width>
<height>40</height>
<textcolor>white</textcolor>
<texture>alienware/dialogheader.png</texture>
</control>
<control type="label" id="101">
Expand All @@ -43,9 +46,10 @@
<width>530</width>
<height>30</height>
<font>font13_title</font>
<textcolor>white</textcolor>
<align>center</align>
<aligny>center</aligny>
<textcolor>selected</textcolor>
<!--<textcolor>selected</textcolor>-->
<shadowcolor>black</shadowcolor>
</control>
</control>
Expand All @@ -62,6 +66,7 @@
<texturenofocus>alienware/DialogCloseButton.png</texturenofocus>
<onleft>10</onleft>
<onright>10</onright>
<textcolor>white</textcolor>
<onup>10</onup>
<ondown>10</ondown>
<visible>system.getbool(input.enablemouse)</visible>
Expand All @@ -87,6 +92,7 @@
<height>40</height>
<onup>107</onup>
<ondown>105</ondown>
<textcolor>white</textcolor>
<align>center</align>
<aligny>center</aligny>
<texturenofocus border="5">alienware/button-nofocus.png</texturenofocus>
Expand Down Expand Up @@ -118,8 +124,10 @@
<font>font13_title</font>
<align>center</align>
<aligny>center</aligny>
<textcolor>selected</textcolor>
<shadowcolor>black</shadowcolor>
<!--<textcolor>selected</textcolor>-->
<textcolor>white</textcolor>
<!--<shadowcolor>black</shadowcolor>-->
<shadowcolor>white</shadowcolor>
<scroll>true</scroll>
<label>$ADDON[script.module.aw.devicesettings 33069]</label>
</control>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
<width>300</width>
<height>130</height>
<font>font12</font>
<textcolor>white</textcolor>
<align>left</align>
<aligny>center</aligny>
<wrapmultiline>true</wrapmultiline>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading

0 comments on commit 55a25ae

Please sign in to comment.