Kodi Community Forum
Feature suggestions - 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: Quartz (https://forum.kodi.tv/forumdisplay.php?fid=141)
+---- Thread: Feature suggestions (/showthread.php?tid=127674)

Pages: 1 2 3 4 5 6 7


RE: Feature suggestions - tomigonzo - 2013-01-25

ohh, sorry,
i going to look the way
thx



RE: Feature suggestions - tomigonzo - 2013-01-25

can you help me, how can i set it?
thx



RE: Feature suggestions - pecinko - 2013-01-25

Ehm...

Add addons to favourites (1), assign your own image to them via context menu(2) and populate shelf afterwards (skin settings customize shelf).
1) see xbmc wiki (use context menu)
2) open favourites and use context menu


RE: Feature suggestions - tomigonzo - 2013-01-25

it is done,
thank you!

this skin is the BEST!! (minimal and user-friendly!!!! )

perfect



RE: Feature suggestions - IdahoJudd - 2013-01-29

Hello all.
I'd love to have the ability to show recently added items in TV Shows and other categories in addition to movies. Thanks for the great skin!


RE: Feature suggestions - pecinko - 2013-01-30

(2013-01-29, 20:45)IdahoJudd Wrote: Hello all.
I'd love to have the ability to show recently added items in TV Shows and other categories in addition to movies. Thanks for the great skin!

This is built-in but you need to have movies, tv shows and music scanned into xbmc library in order for item to appear.


RE: Feature suggestions - IdahoJudd - 2013-01-30

(2013-01-30, 11:04)pecinko Wrote:
(2013-01-29, 20:45)IdahoJudd Wrote: Hello all.
I'd love to have the ability to show recently added items in TV Shows and other categories in addition to movies. Thanks for the great skin!

This is built-in but you need to have movies, tv shows and music scanned into xbmc library in order for item to appear.

Derp. Thanks for the help!



RE: Feature suggestions - theo_testperson - 2013-03-02

is there any posibility to modify the home media shelf in a way, that the recently added movies/tvshows disappear after i watched them? so that we would only see new & unwatched movies/tv shows above the home menĂ¼?

thanks for you help


RE: Feature suggestions - pecinko - 2013-03-05

(2013-03-02, 21:03)theo_testperson Wrote: is there any posibility to modify the home media shelf in a way, that the recently added movies/tvshows disappear after i watched them? so that we would only see new & unwatched movies/tv shows above the home menĂ¼?

I only show there what XBMC gives me. Take a look at wiki and advanced settings, it might be possible to alter it from there.


RE: Feature suggestions - Steverae - 2013-03-07

Hi pecinko,

You may remember I asked you via pm's if you didn't mind me modifying the graphics files to my liking in this skin...... I have a question which I have tried for ages to get working but cannot find a way to do it in your skin.

In your Includes.xml file you specify the Minibackground as an small image which you stretch to the full size of the screen Smile
I modified that image to a 1980x1080 image with my custom logo on but i'd like to be able to use code to place the logo on the screen instead, to give more control.

I have tried to specify a new Include called homelogo but no matter where I specify it or call it from, it does not appear, could you give me some advice

You can contact me via PM is you wish Smile

Thanks you kindly


RE: Feature suggestions - pecinko - 2013-03-07

(2013-03-07, 07:40)Steverae Wrote: You may remember I asked you via pm's if you didn't mind me modifying the graphics files to my liking in this skin...... I have a question which I have tried for ages to get working but cannot find a way to do it in your skin.

I'm a bit unsure what feature are you suggesting here? Smile Please, make a separate thread in the future.

<off_topic>
Make another image control for your logo and place it below background, so that MiniBackground include 2 images instead of single background with logo.
</off_topic>


RE: Feature suggestions - Steverae - 2013-03-07

(2013-03-07, 08:57)pecinko Wrote:
(2013-03-07, 07:40)Steverae Wrote: You may remember I asked you via pm's if you didn't mind me modifying the graphics files to my liking in this skin...... I have a question which I have tried for ages to get working but cannot find a way to do it in your skin.

I'm a bit unsure what feature are you suggesting here? Smile Please, make a separate thread in the future.

<off_topic>
Make another image control for your logo and place it below background, so that MiniBackground include 2 images instead of single background with logo.
</off_topic>

OMG.... I can't believe it was that easy..... thank you ever so much, you don't know how long i've been messing with this trying to get it to work.....

Any change this could be incorporated into the next release and (bottom right corner of screen)

Code:
<include name="MiniBackground">
    <control type="image" description="Default BG">
      <posx>0</posx>
      <posy>0</posy>
      <width>1920</width>
      <height>1080</height>
      <texture>img/BlackDot.png</texture>
    </control>
    <control type="image" description="HomeLogo">
      <posx>1700</posx>
      <posy>900</posy>
      <width>2200</width>
      <height>160</height>
      <texture>img/HomeLogo.png</texture>
    </control>
  </include>
[/code}

If no Homelogo.png is present it'll be blank, maybe this can be an on/off option in the settings tab of Quartz ?

Thanks again