Kodi Community Forum
Back Row General Discussion - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Skin Archive (https://forum.kodi.tv/forumdisplay.php?fid=179)
+----- Forum: Back Row (https://forum.kodi.tv/forumdisplay.php?fid=127)
+----- Thread: Back Row General Discussion (/showthread.php?tid=63773)



RE: [RELEASE] Back Row (Skin) - fma965 - 2012-12-24

Does this support 3d tagging, like it wud for HD and SD can you add a optino to show a 3D tag next to it if it contains HSBS or 3D in the file name thanks.


RE: [RELEASE] Back Row (Skin) - Sharpe - 2012-12-24

No it doesn't support that - something to look into though


RE: [RELEASE] Back Row (Skin) - fma965 - 2012-12-24

(2012-12-24, 20:15)Sharpe Wrote: No it doesn't support that - something to look into though

do i just need to edit the IncludesCodecFlagging.xml file?

PHP Code:
<control type="image">     
            <
description>3D Bluray Image</description>     
            <
width>124</width>     
            <
height>50</height>     
            <
aspectratio align="right">keep</aspectratio>     
            <
texture background="true">special://skin/images/flagging/video/3d.png</texture>     
            
<visible>substring(ListItem.FilenameAndPath,3d)</visible>     
</
control

i added this to line 173, i also added the image Smile

Is this correct?


RE: [RELEASE] Back Row (Skin) - fma965 - 2012-12-25

Edit: ok so i got it working with fanart case view,

CommonVideoLibraryViews.xml
at line 14566 i replaced the code below
PHP Code:
<control type="image">     
                <
posx>36.44</posx>    
                <
posy>0</posy>     
                <
width>183</width>     
                <
height>272</height>     
                <
texture background="true">$INFO[ListItem.VideoResolution,flagging/cases/,.png]</texture>     
                <
aspectratio aligny="bottom">stretch</aspectratio>     
                <
animation type="Focus">     
                    <
effect type="zoom" tween="cubic" end="-1.77,-53.75,259.55,383.42" time="400"/>     
                </
animation>     
            </
control

with this code below
PHP Code:
<control type="image">     
                <
posx>36.44</posx>    
                <
posy>0</posy>     
                <
width>183</width>     
                <
height>272</height>     
                <
texture background="true">flagging/cases/3d.png</texture>     
                <
aspectratio aligny="bottom">stretch</aspectratio>     
                <
animation type="Focus">     
                    <
effect type="zoom" tween="cubic" end="-1.77,-53.75,259.55,383.42" time="400"/>     
                </
animation>     
                <
visible>substring(ListItem.FilenameAndPath,3d)</visible>    
            </
control
            <
control type="image">     
                <
posx>36.44</posx>    
                <
posy>0</posy>     
                <
width>183</width>     
                <
height>272</height>     
                <
texture background="true">$INFO[ListItem.VideoResolution,flagging/cases/,.png]</texture>     
                <
aspectratio aligny="bottom">stretch</aspectratio>     
                <
animation type="Focus">     
                    <
effect type="zoom" tween="cubic" end="-1.77,-53.75,259.55,383.42" time="400"/>     
                </
animation>     
                <
visible>!substring(ListItem.FilenameAndPath,3d)</visible>    
            </
control

and also replaced the code at line 14438
PHP Code:
<control type="image">     
                <
posx>36.44</posx>    
                <
posy>0</posy>     
                <
width>183</width>     
                <
height>272</height>     
                <
texture background="true">$INFO[ListItem.VideoResolution,flagging/cases/,.png]</texture>     
                <
aspectratio aligny="bottom">stretch</aspectratio>     
            </
control

with

PHP Code:
<control type="image">     
                <
posx>36.44</posx>    
                <
posy>0</posy>     
                <
width>183</width>     
                <
height>272</height>     
                <
texture background="true">flagging/cases/3d.png</texture>     
                <
aspectratio aligny="bottom">stretch</aspectratio>     
                <
visible>substring(ListItem.FilenameAndPath,3d)</visible>
            </
control>     
            <
control type="image">     
                <
posx>36.44</posx>    
                <
posy>0</posy>     
                <
width>183</width>     
                <
height>272</height>     
                <
texture background="true">$INFO[ListItem.VideoResolution,flagging/cases/,.png]</texture>     
                <
aspectratio aligny="bottom">stretch</aspectratio>
                <
visible>!substring(ListItem.FilenameAndPath,3d)</visible>                
            </
control

Modded file - http://puu.sh/1F6xj - skinfolder/720p/CommonVideoLibraryViews.xml
3D Bluray Case (Edited in paint so not the best) - http://puu.sh/1F6yF - skinfolder/media/flagging/cases/3d.png

Also is there suppose to be watched indicators on this skin? they don't seem to be working for me, maybe im blind or not sure what i am looking for.


RE: [RELEASE] Back Row (Skin) - fma965 - 2012-12-25

Hmm yes there is some sort of weird issue going on here, on my XBMC on my windows pc - frodo 12 rc2 i can see the watched overlays Smile

BUT

on my raspberry pi running openelec XBMC frodo 12.0 RC2 (both RC2) the watched overlays are not showing

Tried with "Enabled Watched Overlays" setting on and off but still nothing, other skins work fine with the watched overlay

This skin works fine on XBMC on windows on my pc but not on pi.


RE: [RELEASE] Back Row (Skin) - Sharpe - 2012-12-25

Seems strange - it seems to work okay on windows, osx and android - not sure what's happening with your Pi installation might be a memory issue - the pi is pretty limited I believe.


RE: [RELEASE] Back Row (Skin) - fma965 - 2012-12-26

(2012-12-25, 21:01)Sharpe Wrote: Seems strange - it seems to work okay on windows, osx and android - not sure what's happening with your Pi installation might be a memory issue - the pi is pretty limited I believe.

not sure but re-installed openelec and re installed the skin and now it showing Smile i was running aeon nox on the pi for testing if it was a memory issue, it was laggy but the overlays stilled show Big Grin

Thanks for the response any way, i wasn't expecting a response on xmas day but still posted it for when it was read.


RE: [RELEASE] Back Row (Skin) - fma965 - 2012-12-26

NVM: Wrong Thread Smile


RE: [RELEASE] Back Row (Skin) - Frozin - 2013-01-03

Hello,

I'm using Frodo RC2, and can't seem to get the logo fanart views to work. Everything is up to date and I've downloaded the logo.png files with artwork download and tried updating library and they still won't populate.

EDIT: it appears artwork downloader isn't downloading the logo's, even though I have logo's marked for downloading. I even tried going into the movie "INFO SCREEN" and download it that way and, while it says its been downloaded it actually doesn't appear that it is.


RE: [RELEASE] Back Row (Skin) - Sharpe - 2013-01-03

Hi

Thanks I'll look into it but for reference the skin isn't designed to use movie logos only tv show logos - is that the issue or is it that the artwork downloader isn't downloading logos correctly?


Re: [RELEASE] Back Row (Skin) - Frozin - 2013-01-04

Its for the tv logos.

Sorry made a mistake by saying movie meant television


RE: [RELEASE] Back Row (Skin) - Sharpe - 2013-01-04

No worries - I'll check it


RE: [RELEASE] Back Row (Skin) - Sharpe - 2013-01-04

(2013-01-03, 07:44)Frozin Wrote: Hello,

I'm using Frodo RC2, and can't seem to get the logo fanart views to work. Everything is up to date and I've downloaded the logo.png files with artwork download and tried updating library and they still won't populate.

EDIT: it appears artwork downloader isn't downloading the logo's, even though I have logo's marked for downloading. I even tried going into the movie "INFO SCREEN" and download it that way and, while it says its been downloaded it actually doesn't appear that it is.

Right I think it's related to how you configure the artwork downloader addon (under addons\services) - I had a similar thing happen until I removed the "limit artwork" restrictions that I had previously set up (for fanart) it seems that those rating restrictions also are being applied to logos - whereas when the skin used the old logo downloader this wasn't the case. Once removed I could download any logos again. Do you think that could be it? Or maybe one of the other addon settings?


RE: [RELEASE] Back Row (Skin) - Uli666 - 2013-01-09

Hi guys!
Do you remember me? Wink Glad I found you back here and that the development of this wonderful skin is still active.

I still use my old original Xbox as media player and recently I updated XBMC4XBOX to the latest version available (XBMC4XBOX-3.2-STABLE - r31195, complied Jul 25 2012).
I tried to install Back Row (unzipping the file directly in the Skins folder since in this version apparently there is no Add-ons support), but when I try to select it I get this error message:

"Incompatible skin. We require skins of version 2.10 or higher."

I tried all versions (Dharma, Eden and Frodo) present in the first page, but I always get the same message. On the other hand, Confluence, PM3.HD and MediaStrem work normally. Can you please help me to understand what's wrong and how I could solve the problem? I'd really like to go on using Back Row on my Xbox since it is my favorite skin.

Thank you very much!

Uli666


RE: [RELEASE] Back Row (Skin) - Sharpe - 2013-01-09

Oh hi man - wow I've not even looked the old xbox builds in a good few years.

The last working version of Back Row for Xbox was this but it's old and hasn't been updated for a very long time.

You're welcome to try but I won't be albe to support it as I've not got any way of using it,

Cheers