[MOD] Night.Purity

  Thread Rating:
  • 1 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
zwat Offline
Fan
Posts: 724
Joined: Jul 2009
Reputation: 2
Location: Norway
Post: #11
another issue that i'm not sure of. dolby digital and ac3 flags are showing on movies with ac3 codec. should both show or just the ac3?

Currently addicted to Night. Watch this teaser and join the forum.
Get and request your ClearLOGOs from the ClearLOGO site and forum
Try my changes to the Night skin if u like how they looks
find quote
KiSUAN Offline
Fan
Posts: 536
Joined: Oct 2010
Reputation: 3
Location: Montevideo, Uruguay
Post: #12
The thing is this, DD is the commercial name of AC3, so technically they are the same. As now the icon for AC3 is setup to be shown only when its less than 6 channels and the DD always. I didn't realize that I missed the 6 channel condition for DD so thank you to point me out, I will change it to show only DD when 6 Ch as people associate DD with surround or alike.

Besides this will reduce the number of flags in some movies that was a little hi, as now they tend to be between 6 and 7, before 6-8.


Update:

- Corrected Flags showing in Video Nav

- Corrected "Director/Writer/Genre/..." showing in Video Nav

- Corrected some Flag showing wrong

- Font Clean up

Night [MOD] Purity

[url=http://forum.xbmc.org/showthread.php?tid=86759"]
Purity Media Flags & RD XBMC Icon
[/url]
[url=http://forum.xbmc.org/showthread.php?tid=99554"]
Film/Movie/Game Studio Flags Repository
[/url]
(This post was last modified: 2010-12-06 14:13 by KiSUAN.)
find quote
mcborzu Offline
Skilled Skinner
Posts: 3,381
Joined: Feb 2009
Reputation: 15
Location: dsf
Post: #13
You can check my git but I added a fix for the frame/back showing when not supposed to like so:

[Image: level_up_flag.png]


Code:
<control type="image">
            <description>Video rez Image</description>
            <width>62</width>
            <height>46</height>
            <aspectratio>keep</aspectratio>
            <texture>flagging/back_flag.png</texture>
            <colordiffuse>BackDiffuse</colordiffuse>
            [b]<visible>!IsEmpty(ListItem.VideoResolution)</visible>[/b]
        </control>
Code:
<control type="image">
            <description>Audio Channels Image</description>
            <width>62</width>
            <height>46</height>
            <aspectratio>keep</aspectratio>
            <texture>flagging/back_flag.png</texture>
            <colordiffuse>BackDiffuse</colordiffuse>
            [b]<visible>!IsEmpty(ListItem.AudioChannels)</visible>[/b]
        </control>
Code:
<control type="image">
            <description>Aspectratio Image</description>
            <width>62</width>
            <height>46</height>
            <aspectratio>keep</aspectratio>
            <texture>flagging/back_flag.png</texture>
            <colordiffuse>BackDiffuse</colordiffuse>
            [b]<visible>!IsEmpty(ListItem.VideoAspect)</visible>[/b]
        </control>


Also due the same on the frame section...

[Image: widget]

Check out The Carmichael - A Skin For XBMC

Check out Night - A Skin For XBMC

Check out Unfinished - A Skin For XBMC
find quote
KiSUAN Offline
Fan
Posts: 536
Joined: Oct 2010
Reputation: 3
Location: Montevideo, Uruguay
Post: #14
Crap, already did that but in the hard way, took every view that was showing and didn't suppose and do it via My...xml or level (tvshows) for every grouplist. And still my solution didn't cover movisets because I was too lazy to research how to do it.

Thank you, guess I will have to "roll back" that changes and add your solution as its much elegant.

Also corrected "Director/Writer/Genre/..." showing in Video Nav, as I stated in the last update right before your post. Don't know if you have a better way for that one too.

Night [MOD] Purity

[url=http://forum.xbmc.org/showthread.php?tid=86759"]
Purity Media Flags & RD XBMC Icon
[/url]
[url=http://forum.xbmc.org/showthread.php?tid=99554"]
Film/Movie/Game Studio Flags Repository
[/url]
(This post was last modified: 2010-12-09 05:16 by KiSUAN.)
find quote
mcborzu Offline
Skilled Skinner
Posts: 3,381
Joined: Feb 2009
Reputation: 15
Location: dsf
Post: #15
Also I got a fix for selecting two flags at same time:

Code:
<control type="radiobutton" id="519">
    <include>skin_settings_labels</include>
    <label>Use Original Type Flags</label>
    [b]<onclick>Skin.Reset(vanilla_flags)</onclick> [/b]
    <onclick>Skin.ToggleSetting(original_flags)</onclick>
    <selected>Skin.HasSetting(original_flags)</selected>
</control>

Still going thru and 2x checking stuff, forgot to mention it's not on GIT this second but in about 2hrs or so..

[Image: widget]

Check out The Carmichael - A Skin For XBMC

Check out Night - A Skin For XBMC

Check out Unfinished - A Skin For XBMC
find quote
KiSUAN Offline
Fan
Posts: 536
Joined: Oct 2010
Reputation: 3
Location: Montevideo, Uruguay
Post: #16
Ok, thought that one but didn't have a clue how to do it, so i leave it that way and didn't even dear to select two just to don't have remorse (one thing is suspect something could go terribly wrong and another knowing) , I'm a bad person I now Blush

On a second thought i will keep my solution and add yours (flags showing wrong), just in case, because I think that with some of the visual conditions Dvd and other that I included path icons will show.

Night [MOD] Purity

[url=http://forum.xbmc.org/showthread.php?tid=86759"]
Purity Media Flags & RD XBMC Icon
[/url]
[url=http://forum.xbmc.org/showthread.php?tid=99554"]
Film/Movie/Game Studio Flags Repository
[/url]
find quote
KiSUAN Offline
Fan
Posts: 536
Joined: Oct 2010
Reputation: 3
Location: Montevideo, Uruguay
Post: #17
Update:

- Flag poss change in views & Preview at selection.

Night [MOD] Purity

[url=http://forum.xbmc.org/showthread.php?tid=86759"]
Purity Media Flags & RD XBMC Icon
[/url]
[url=http://forum.xbmc.org/showthread.php?tid=99554"]
Film/Movie/Game Studio Flags Repository
[/url]
find quote
m3g4tr0n Offline
Senior Member
Posts: 139
Joined: Jan 2010
Reputation: 0
Post: #18
when enabling tv tunes, this shows up

[Image: capturebv.jpg]
find quote
KiSUAN Offline
Fan
Posts: 536
Joined: Oct 2010
Reputation: 3
Location: Montevideo, Uruguay
Post: #19
I been postponing trying Tv Tunes, guess I have to do it now, anyway I didn't touch anything related to it knowing, perhaps I messed up something. Have you checked if night does the same?

Night [MOD] Purity

[url=http://forum.xbmc.org/showthread.php?tid=86759"]
Purity Media Flags & RD XBMC Icon
[/url]
[url=http://forum.xbmc.org/showthread.php?tid=99554"]
Film/Movie/Game Studio Flags Repository
[/url]
find quote
ppic Offline
Skilled Python Coder
Posts: 2,662
Joined: Feb 2009
Reputation: 10
Location: France idf
Post: #20
you have a skin property to know if a theme is palying, just deactivate standard music playing stuff if it's true.

[Image: widget]
Passion-XBMC Repository Download your SVN skins and addons
TvTunes Addon Download Play your theme while browsing library
TVshow Next Aired display next aired infos from tvrage.com
Logo Downloader Script download Logo/clearart/show thumbs/poster/banner
Bande-Annonce Allociné plugin watch trailers in french and vo
SportLive Script Live score match info in XBMC (not compatible dharma)
find quote
Post Reply