Night 2.0 - Eden Development

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
vandelay Offline
Junior Member
Posts: 22
Joined: Dec 2010
Reputation: 0
Post: #41
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!!!
find quote
Chris! Offline
Member+
Posts: 1,009
Joined: Apr 2010
Reputation: 7
Location: England
Post: #42
In episode view:
[Image: episode.png]
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
find quote
skabyss Online
Senior Member
Posts: 244
Joined: Dec 2005
Reputation: 0
Post: #43
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.. :sadface:
(This post was last modified: 2011-12-09 10:40 by skabyss.)
find quote
darkscout Offline
Posting Freak
Posts: 2,146
Joined: Jul 2008
Reputation: 12
Post: #44
You no longer seem to be in Passion's repository.

[Image: aeKO.jpeg]
Code:
GRANT ALL PRIVILEGES ON `xbmc_%`.* TO 'xbmc'@'%';
IF you have a mysql problem, find one of the 4 dozen threads already open.
find quote
jasonlcox Offline
Junior Member
Posts: 49
Joined: Sep 2010
Reputation: 0
Post: #45
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.. :sadface:

Yeah, this is my favourite skin, simple but stylish - I hope it hasn't been abandoned.
find quote
skabyss Online
Senior Member
Posts: 244
Joined: Dec 2005
Reputation: 0
Post: #46
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>
find quote
bdee1 Offline
Senior Member
Posts: 134
Joined: Nov 2011
Reputation: 0
Post: #47
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?
find quote
Stealth1 Offline
Junior Member
Posts: 6
Joined: Nov 2011
Reputation: 0
Post: #48
Is this safe to use with the Eden beta? Looks like an amazing skin!
find quote
bdee1 Offline
Senior Member
Posts: 134
Joined: Nov 2011
Reputation: 0
Post: #49
bdee1 Wrote: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?

anyone??
find quote
EZ44 Offline
Junior Member
Posts: 26
Joined: Oct 2008
Reputation: 0
Location: Mississauga, Ontario Canada
Post: #50
I noticed that the 'Restart' option in the Shutdown menu doesn't do anything. Is that a skin issue or something else? I'm pretty sure it works on the default skin.

Love this skin and have been using it for a long time.
find quote
Post Reply