Night 2.0 - Eden Development
#31
I updated to 111007 and now XBMC freezes when I choose the profile with the Night skin but works fine with a profile that has a different skin.. Huh
Reply
#32
tbird2340 Wrote:I updated to 111007 and now XBMC freezes when I choose the profile with the Night skin but works fine with a profile that has a different skin.. Huh

Havent check Night in a month, I'll look into it...
Image

Check out The Carmichael - A Skin For XBMC

Check out Night - A Skin For XBMC

Check out Unfinished - A Skin For XBMC
Reply
#33
So is "Night" separate from "Night 2.0" ? I Just want a working "Night" type skin as it's my favorite. In your previous post you said to upgrade to a nightly which I did but then it broke. Sad

Thanks for the awesome skin!
Reply
#34
tbird2340 Wrote:So is "Night" separate from "Night 2.0" ? I Just want a working "Night" type skin as it's my favorite. In your previous post you said to upgrade to a nightly which I did but then it broke. Sad

Thanks for the awesome skin!

Yes Night 2.0 is intended to be used with nightly builds only. The standard Night skin is to be used with Dharma. To avoid the skin being automatically updated to Night 2.0, disable the auto update setting in the Add ons menu and just select Notification only.
Reply
#35
Kokonutcreme Wrote:Yes Night 2.0 is intended to be used with nightly builds only. The standard Night skin is to be used with Dharma. To avoid the skin being automatically updated to Night 2.0, disable the auto update setting in the Add ons menu and just select Notification only.

I updated to 111007 and I downloaded the latest (I thought) from github from this address git://github.com/bartowski/skin.night.git.

Is that not night 2.0? It's the link in your first post of this thread.

Thanks
Reply
#36
Anyone have a link to Night 2.0 please?
Reply
#37
git://github.com/bartowski/skin.night.git

And then following the instructions here worked for me, just installed a fresh copy. Profiles worked for me also..
Image

Check out The Carmichael - A Skin For XBMC

Check out Night - A Skin For XBMC

Check out Unfinished - A Skin For XBMC
Reply
#38
Love this skin....

Two questions:
does anyone know where I can locate the section in fonts for my rss news feed (it's way too small)? Also, the font for the recently showed stuff?

Secondly, is there a way to add more view options? There are a few views here:
http://passion-xbmc.org/influence/les-vu...s-(night)/

That I'd like for this skin...

Thanks!!!
Reply
#39
In episode view:
Image
the left hand side of the text is slightly faded, also I find episode thumbs aren't very detailed. Would look better if the episode picture in the middle was slightly smaller which could then move the text right a bit.

Flirc now has a forum: forum.flirc.tv
Reply
#40
I noticed a couple bugs with the current eden version.. Seems that the volume dialog always shows full volume even after adjusting, also when selecting 'Music' from the home screen, it will always bring me to a jukebox display mode that doesnt respond to any button but 'back' (android remote) which brings it back to the library root folder.

Anybody else experiencing these issues? Would love to see more development!

Also is the ball still rolling on this skin? Looks like there hasn't been any official support for it in nearly 6 months.. Confusedadface:
Reply
#41
You no longer seem to be in Passion's repository.
Code:
GRANT ALL PRIVILEGES ON `xbmc_%`.* TO 'xbmc'@'%';
IF you have a mysql problem, find one of the 4 dozen threads already open.
Reply
#42
skabyss Wrote:Also is the ball still rolling on this skin? Looks like there hasn't been any official support for it in nearly 6 months.. Confusedadface:

Yeah, this is my favourite skin, simple but stylish - I hope it hasn't been abandoned.
Reply
#43
I was annoyed by the volume bar not working in the eden build, so I looked into it and learned it was just a matter of changing the volume progression from [-60,0] to [0,100]. The following code should make it work fine, just paste it over the contents of the DialogVolumeBar.xml in the skin's folder and save it.

Hopefully next I can figure out what is causing the "new music widget" to display individual songs instead of whole new albums.


Code:
<window id="104">
    <controls>
        <control type="group">
            <include>Animation_CommonFade</include>
            <control type="group">
                <visible>!player.passthrough</visible>
                <control type="group">
                    <posx>1150</posx>
                    <posy>90</posy>
                    <control type="image">
                        <texture>volume/vol1.png</texture>
                        <colordiffuse>mainblue</colordiffuse>
                        <visible>IntegerGreaterThan(player.volume,-1)</visible>
                    </control>
                    <control type="image">
                        <texture>volume/vol2.png</texture>
                        <colordiffuse>mainblue</colordiffuse>
                        <visible>IntegerGreaterThan(player.volume,14)</visible>
                    </control>
                    <control type="image">
                        <texture>volume/vol3.png</texture>
                        <colordiffuse>mainblue</colordiffuse>
                        <visible>IntegerGreaterThan(player.volume,39)</visible>
                    </control>
                    <control type="image">
                        <texture>volume/vol4.png</texture>
                        <colordiffuse>mainblue</colordiffuse>
                        <visible>IntegerGreaterThan(player.volume,54)</visible>
                    </control>
                    <control type="image">
                        <texture>volume/vol5.png</texture>
                        <colordiffuse>mainblue</colordiffuse>
                        <visible>IntegerGreaterThan(player.volume,69)</visible>
                    </control>
                    <control type="image">
                        <texture>volume/vol6.png</texture>
                        <colordiffuse>mainblue</colordiffuse>
                        <visible>IntegerGreaterThan(player.volume,84)</visible>
                    </control>
                    <control type="image">
                        <texture>volume/vol7.png</texture>
                        <colordiffuse>mainblue</colordiffuse>
                        <visible>IntegerGreaterThan(player.volume,99)</visible>
                    </control>
                    <control type="image">
                        <texture>volume/mute.png</texture>
                        <posy>20</posy>
                        <posx>20</posx>
                        <colordiffuse>mainblue</colordiffuse>
                        <visible>!IntegerGreaterThan(player.volume,1)</visible>
                    </control>
                    <control type="image">
                        <texture>volume/volume.png</texture>
                        <posy>20</posy>
                        <posx>20</posx>
                        <colordiffuse>mainblue</colordiffuse>
                        <visible>IntegerGreaterThan(player.volume,1)</visible>
                    </control>
                </control>
            </control>
            <control type="group">
                <visible>player.passthrough</visible>
                <control type="label">
                    <posx>460</posx>
                    <posy>0</posy>
                    <width>810</width>
                    <height>38</height>
                    <font>Font_Bartowski_Digital_Clock</font>
                    <textcolor>mainblue</textcolor>
                    <align>left</align>
                    <aligny>center</aligny>
                    <label>$LOCALIZE[29802]</label>
                </control>
            </control>
        </control>
        <include condition="Skin.HasSetting(debugmode)">Debug</include>
    </controls>
</window>
Reply
#44
I love that when i select Movies on the home screen it shows me the 3 most recently added titles in the lower right of the screen. I am wondering if it would be possible to display the 3 most recently watched movies in the lower left of the screen?
Reply
#45
Is this safe to use with the Eden beta? Looks like an amazing skin!
Reply

Logout Mark Read Team Forum Stats Members Help
Night 2.0 - Eden Development0