XBMC Community Forum
[MOD] Night.Purity - Printable Version

+- XBMC Community Forum (http://forum.xbmc.org)
+-- Forum: Help and Support (/forumdisplay.php?fid=33)
+--- Forum: Skin Help and Support (/forumdisplay.php?fid=67)
+---- Forum: Night (/forumdisplay.php?fid=130)
+---- Thread: [MOD] Night.Purity (/showthread.php?tid=86753)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26


- shaktoo - 2011-04-29 00:30

Or else just change script.TvTunes to script.tvtunes in the includes.xml and DialogVideoInfo.xml . That's what I did and now its back working.


- KiSUAN - 2011-04-29 01:27

shaktoo Wrote:@Kiusan : TvTunes script call has changed to tvtunes and this is giving an error and hence the tvtunes script is not working since last few days . according to ppic skins' authors need to update the script call .. see here " http://forum.xbmc.org/showthread.php?tid=83925&page=48 " post # 471
Thanks

I had it installed through Passion and it's still 0.8.0 there, so didn't noticed this, downloaded through XBMC official and you are right, with 0.8.1 doesn't work. Updated code, now it works with 0.8.1, in some minutes or hours I'll update the Git. Thanks for the heads up.


TheStretchedElf Wrote:Please, if you would. Audiobooks and Radio Shows are the only "music" type files I have in XBMC so there'd be no cover ratio conflicts here.

Sorry for the delay again, crazy weeks, planning a 5 months vacations to Europe take time Big Grin and working 11 hours doesn't help.

First, go to MyMusicNav.xml and add/modify this:

line 3 down

Code:
<window id="502">
    <defaultcontrol>50</defaultcontrol>
    <allowoverlay>yes</allowoverlay>
@    <views>58,621,622,623,54,51,52,50</views>
    <controls>


line 65 down

Code:
    <control type="group">
        <include>Animation_HiddenByInfo</include>
            <include>Viewtype_Files</include><!-- 50 -->
            <include>Viewtype_Shelf</include><!-- 51 -->
            <include>Viewtype_Songs</include><!-- 52 -->
            <include>Viewtype_JukeBox</include><!-- 54 -->
            <include>Viewtype_MusicShowcase</include><!-- 58 -->
            <include>Viewtype_3daddon</include><!-- 621 -->
+            <include>Viewtype_AudioBook</include><!-- 622 -->
+            <include>Viewtype_AudioBook_Tracks</include><!-- 623 -->
    </control>

line 139 down

Code:
            <control type="togglebutton" id="29">
                <description>Toggle MoviesFanart</description>
                <include>WindowMenuButton</include>
                <label>$LOCALIZE[31086]</label>
                <altlabel>$LOCALIZE[31214]</altlabel>
                <onclick>Skin.ToggleSetting(music_files_fanart)</onclick>
                <selected>Skin.HasSetting(music_files_fanart)</selected>
                <visible>Control.IsVisible(50)</visible>
            </control>
+            <control type="togglebutton" id="30">
+                <description>Toggle MoviesFanart</description>
+                <include>WindowMenuButton</include>
+                <label>BookPlus</label>
+                <altlabel>$LOCALIZE[21375]</altlabel>
+                <onclick>Skin.ToggleSetting(BookPlus)</onclick>
+                <selected>Skin.HasSetting(BookPlus)</selected>
+                <visible>Control.IsVisible(622)</visible>
+            </control>



line 175 down

Code:
            <control type="label">
                <include>WindowMenuLabel</include>
                <label>$LOCALIZE[14018]</label>
@                <visible>Control.IsVisible(50) | Control.IsVisible(621) | Control.IsVisible(58) | Control.IsVisible(622)</visible>        
            </control>

Then go to Viewtype_AudioBook.xml and add/modify this:


line 35 down

Code:
            <animation effect="rotatey" center="50" start="12" end="10" time="0" condition="true">Conditional</animation>
@            <visible>Window.IsActive(musiclibrary)</visible>
            <itemlayout width="176" height="245">


Then go to Viewtype_AudioBook_Tracks.xml and add/modify this:


line 30 down

Code:
            <include>Animation_Viewtype_Panel_FocusArea</include>
@            <visible>Window.IsActive(musiclibrary)</visible>
            <animation effect="slide" start="0,0" end="-40,0" time="400" tween="cubic" easing="inout" condition="Control.HasFocus(92)">Conditional</animation>
            <itemlayout width="1210" height="36">


Keep in mind I didn't test this and I'm doing it on the fly, I'm pretty sure it's all right but don't guarantee it. Also remember, every time you update this changes will be "deleted" so you need to backup this modified files or code again.


Enjoy





@ Oddsodz

Didn't forget about you problem, I'm gonna check it now.


- KiSUAN - 2011-04-29 02:03

Oddsodz Wrote:Hey hoo all.

Well today I remembered I was going to post about a small niggle I was having. When in video addons, I have noticed that I can only sort by "Name" in file mode. Could you unlock that so it can be sorted by date also. I Know it can be done. I Am just unsure of which skins do it. Rapier I am 99% sure does. It's needed for my "BBC iPlayer" addon (well I say "my" but I just love that addon).

Thanks for reading.

Oddsodz
I was almost sure this was not a skin problem because I already researched ones for advance Launcher and the problem is that there is no sort by date for addons through XBMC code, so the only way you can have sort by date is if the addon is coded to sort in different ways.

Just in case I tried Rapier as you said 99% and it's always a possibility that I'm wrong or that there's a hack or something, but I wasn't able to sort by anything, the option is blocked.

The code in Night to change order is there, because I checked, plus for example if you go to apple movie trailer addon you can see you can change the order anyway you want.

So I'm sorry, but the "problem" is with the addon not the skin, you have to ask the dev to include the option/future.


- Oddsodz - 2011-04-29 02:11

KiSUAN Wrote:I was almost sure this was not a skin problem because I already researched ones for advance Launcher and the problem is that there is no sort by date for addons through XBMC code, so the only way you can have sort by date is if the addon is coded to sort in different ways.

Just in case I tried Rapier as you said 99% and it's always a possibility that I'm wrong or that there's a hack or something, but I wasn't able to sort by anything, the option is blocked.

The code in Night to change order is there, because I checked, plus for example if you go to apple movie trailer addon you can see you can change the order anyway you want.

So I'm sorry, but the "problem" is with the addon not the skin, you have to ask the dev to include the option/future.


Ok, Cool Beans. Thanks for looking


- TheStretchedElf - 2011-04-29 19:19

KiSUAN Wrote:I had it installed through Passion and it's still 0.8.0 there, so didn't noticed this, downloaded through XBMC official and you are right, with 0.8.1 doesn't work. Updated code, now it works with 0.8.1, in some minutes or hours I'll update the Git. Thanks for the heads up.




Sorry for the delay again, crazy weeks, planning a 5 months vacations to Europe take time Big Grin and working 11 hours doesn't help.

First, go to MyMusicNav.xml and add/modify this:

line 3 down

Code:
<window id="502">
    <defaultcontrol>50</defaultcontrol>
    <allowoverlay>yes</allowoverlay>
@    <views>58,621,622,623,54,51,52,50</views>
    <controls>


line 65 down

Code:
    <control type="group">
        <include>Animation_HiddenByInfo</include>
            <include>Viewtype_Files</include><!-- 50 -->
            <include>Viewtype_Shelf</include><!-- 51 -->
            <include>Viewtype_Songs</include><!-- 52 -->
            <include>Viewtype_JukeBox</include><!-- 54 -->
            <include>Viewtype_MusicShowcase</include><!-- 58 -->
            <include>Viewtype_3daddon</include><!-- 621 -->
+            <include>Viewtype_AudioBook</include><!-- 622 -->
+            <include>Viewtype_AudioBook_Tracks</include><!-- 623 -->
    </control>

line 139 down

Code:
            <control type="togglebutton" id="29">
                <description>Toggle MoviesFanart</description>
                <include>WindowMenuButton</include>
                <label>$LOCALIZE[31086]</label>
                <altlabel>$LOCALIZE[31214]</altlabel>
                <onclick>Skin.ToggleSetting(music_files_fanart)</onclick>
                <selected>Skin.HasSetting(music_files_fanart)</selected>
                <visible>Control.IsVisible(50)</visible>
            </control>
+            <control type="togglebutton" id="30">
+                <description>Toggle MoviesFanart</description>
+                <include>WindowMenuButton</include>
+                <label>BookPlus</label>
+                <altlabel>$LOCALIZE[21375]</altlabel>
+                <onclick>Skin.ToggleSetting(BookPlus)</onclick>
+                <selected>Skin.HasSetting(BookPlus)</selected>
+                <visible>Control.IsVisible(622)</visible>
+            </control>



line 175 down

Code:
            <control type="label">
                <include>WindowMenuLabel</include>
                <label>$LOCALIZE[14018]</label>
@                <visible>Control.IsVisible(50) | Control.IsVisible(621) | Control.IsVisible(58) | Control.IsVisible(622)</visible>        
            </control>

Then go to Viewtype_AudioBook.xml and add/modify this:


line 35 down

Code:
            <animation effect="rotatey" center="50" start="12" end="10" time="0" condition="true">Conditional</animation>
@            <visible>Window.IsActive(musiclibrary)</visible>
            <itemlayout width="176" height="245">


Then go to Viewtype_AudioBook_Tracks.xml and add/modify this:


line 30 down

Code:
            <include>Animation_Viewtype_Panel_FocusArea</include>
@            <visible>Window.IsActive(musiclibrary)</visible>
            <animation effect="slide" start="0,0" end="-40,0" time="400" tween="cubic" easing="inout" condition="Control.HasFocus(92)">Conditional</animation>
            <itemlayout width="1210" height="36">


Keep in mind I didn't test this and I'm doing it on the fly, I'm pretty sure it's all right but don't guarantee it. Also remember, every time you update this changes will be "deleted" so you need to backup this modified files or code again.


Enjoy
Thanks for taking the time to show me that; all seems to be working fine. Smile

And yeah, I usually make a copy of good skins so I have the original and one to butcher while I learn to skin and customize to my own tastes. Big Grin


- KiSUAN - 2011-05-01 18:27

Update:

- As stated before and reflected in First Page, Studio Flags are no longer included with the skin, they are used as always, but you have to copy to the folders yourself, to download go to the Film/Movie/Game Studio Flags Repo in my sig.

- TvTunes update/fixed

- New Music Wall View (sorry took this long Batemann)

- New Wall View Fanart Option. It was present (disable) in Night coding, made some little changes and enable it.


Music Wall
[Image: screenshot000un.jpg]

Movie Wall Fanart Preview
[Image: screenshot004gwi.jpg]


Wall Fanart Transition Preview (hard to show it with ss, but fanart slowly appears and covers slowly fades, try it and if you don't like it nthg is lost Tongue)
[Image: screenshot003wdv.jpg]
[Image: screenshot002vz.jpg]
[Image: screenshot001pd.jpg]



Enjoy


- shaktoo - 2011-05-03 03:40

New Music wall with fanart transition is smooooooth ! Love it man ,thanks Kisuan.
BTW is it possible if you could either put an option in the settings to get the giant paused back or could show how to , I have also like others asked for help on the main night thread but the suggestion there requires the old bartowski font which unfortunately I do not have .
I did read your previous Post re the Giant Pause ( and your dislike to all things giant size ) but I kinda miss that and without the old night i'm afraid i have no old font either. Am I gonna be giant pause free forever Sad


- KiSUAN - 2011-05-03 05:21

Will try to implement GIANT letters option in VideoOSD and DialogSeekbar through Skin settings, think it's pretty easy to do.

You want just the pause or all of them? I'm thinking in something more extreme than original Night, locating them in the middle of the screen, freaking huge in your face!! Why do thing by half right? Seriously, I think it could end nice... Big Grin


- KiSUAN - 2011-05-03 06:19

Here you have some examples...

[Image: screenshot002lln.jpg]

[Image: screenshot001lv.jpg]

Could go for massive full screen Rofl

Could add some effect like the MUTE sign.


- shaktoo - 2011-05-03 15:23

Laugh the giant Paused Looks Scrumptious.. Freakin' awesome.. and yeah Man go for it ! don't hold back ! why stop at paused ... also maybe make the pause / letters more transparent with a drop shadow or something in the vein of clearart.. Big GrinWink