diff --git a/Customization/.ver b/Customization/.ver index 9aa3464..fbafd6b 100644 --- a/Customization/.ver +++ b/Customization/.ver @@ -1 +1 @@ -2.7.0 \ No newline at end of file +2.7.2 \ No newline at end of file diff --git a/Customization/Collapsed Sidebar/resource/layout/uinavigatorpanel.layout b/Customization/Collapsed Sidebar/resource/layout/uinavigatorpanel.layout index b6df054..130755a 100644 --- a/Customization/Collapsed Sidebar/resource/layout/uinavigatorpanel.layout +++ b/Customization/Collapsed Sidebar/resource/layout/uinavigatorpanel.layout @@ -653,26 +653,23 @@ place { control="library_filters_details,library_filters_list,library_filters_grid" align=right y=0 height=48 spacing=0 margin-right=1 width=48 region=right} - place { control=emailreminderbar start=URLBar dir=down margin-top=0 margin-right=0 width=max height=50 region=right} - place { control=phonereminderbar start=URLBar dir=down margin-top=0 margin-left=0 width=max height=80 region=right} - // content pages - these are all pushed down by the email reminder bar (above) if it's visible - place { control=DownloadsPage width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } - place { control=ScreenshotsPage width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } - place { control=GamesPage_List width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } - place { control=GamesPage_Details width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } - place { control=GamesPage_Grid width=max height=max margin-top=46 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } - place { control=WebPanel width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } - place { control=BroadcastPage width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } + place { control=DownloadsPage width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } + place { control=ScreenshotsPage width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } + place { control=GamesPage_List width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } + place { control=GamesPage_Details width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } + place { control=GamesPage_Grid width=max height=max margin-top=46 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } + place { control=WebPanel width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } + place { control=BroadcastPage width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } place { control=BroadcastPageMin width=300 height=168 margin-top=0 margin-left=0 margin-right=30 margin-bottom=26 dir=down align=bottom-right } place { control=BroadcastPageMinHoriz width=300 height=168 margin-top=0 margin-left=0 margin-right=30 margin-bottom=40 dir=down align=bottom-right } - place { control=ConsolePage width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down} - place { control=NewLibraryPage width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=phonereminderbar dir=down } + place { control=ConsolePage width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down} + place { control=NewLibraryPage width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } - place { control=MediaPage width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } - place { control=ToolsPage width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } + place { control=MediaPage width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } + place { control=ToolsPage width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } - place { control=MusicPage_Details width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } + place { control=MusicPage_Details width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } } } diff --git a/Install.cmd b/Install.cmd index 03ec29a..4a951e3 100644 --- a/Install.cmd +++ b/Install.cmd @@ -25,6 +25,16 @@ del /f /q "%SteamPath%\skins\%CurDirName%" mkdir "%SteamPath%\skins" xcopy /e /y /i "..\%CurDirName%" "%SteamPath%\skins\%CurDirName%" reg add HKCU\Software\Valve\Steam /v SkinV5 /t REG_SZ /d %CurDirName% /f +echo Set oWS = WScript.CreateObject("WScript.Shell") > CreateSteamLauncherShortcut.vbs +echo sLinkFile = "%HOMEDRIVE%%HOMEPATH%\Desktop\Steam.lnk" >> CreateSteamLauncherShortcut.vbs +echo Set oLink = oWS.CreateShortcut(sLinkFile) >> CreateSteamLauncherShortcut.vbs +echo oLink.TargetPath = "%SteamPath%\skins\%CurDirName%\SteamLauncher.exe" >> CreateSteamLauncherShortcut.vbs +echo oLink.IconLocation = "%SteamPath%\steam.exe, 1" >> CreateSteamLauncherShortcut.vbs +echo oLink.Save >> CreateSteamLauncherShortcut.vbs +cscript CreateSteamLauncherShortcut.vbs +del CreateSteamLauncherShortcut.vbs +cls +echo Shortcut Created. Please use the shortcut on desktop to open Steam. echo Enjoy your new steam! :^) cd /d "%SteamPath%\skins\%CurDirName%" start explorer.exe . diff --git a/resource/layout/uinavigatorpanel.layout b/resource/layout/uinavigatorpanel.layout index 717f315..96dd5cb 100644 --- a/resource/layout/uinavigatorpanel.layout +++ b/resource/layout/uinavigatorpanel.layout @@ -662,22 +662,22 @@ place { control=phonereminderbar start=URLBar dir=down margin-top=0 margin-left=0 width=max height=80 region=right} // content pages - these are all pushed down by the email reminder bar (above) if it's visible - place { control=DownloadsPage width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } - place { control=ScreenshotsPage width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } - place { control=GamesPage_List width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } - place { control=GamesPage_Details width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } - place { control=GamesPage_Grid width=max height=max margin-top=46 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } - place { control=WebPanel width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } - place { control=BroadcastPage width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } + place { control=DownloadsPage width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } + place { control=ScreenshotsPage width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } + place { control=GamesPage_List width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } + place { control=GamesPage_Details width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } + place { control=GamesPage_Grid width=max height=max margin-top=46 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } + place { control=WebPanel width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } + place { control=BroadcastPage width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } place { control=BroadcastPageMin width=300 height=168 margin-top=0 margin-left=0 margin-right=30 margin-bottom=26 dir=down align=bottom-right } place { control=BroadcastPageMinHoriz width=300 height=168 margin-top=0 margin-left=0 margin-right=30 margin-bottom=40 dir=down align=bottom-right } - place { control=ConsolePage width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down} - place { control=NewLibraryPage width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=phonereminderbar dir=down } + place { control=ConsolePage width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down} + place { control=NewLibraryPage width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } - place { control=MediaPage width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } - place { control=ToolsPage width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } + place { control=MediaPage width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } + place { control=ToolsPage width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } - place { control=MusicPage_Details width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } + place { control=MusicPage_Details width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=URLBar dir=down } } }