• 1
  • 3
  • 4
  • 5(current)
  • 6
  • 7
  • 18
[TEST RELEASE] Aeon Nox Lite (Nox 3.6 Theme)
#61
slowly change lite to dark would be even more great (and hardly doable)
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
Reply
#62
(2012-08-08, 19:24)Martijn Wrote: slowly change lite to dark would be even more great (and hardly doable)

hardly doable is an understatement, it´s nearly impossible (for several reasons)
Donate: https://kodi.tv/contribute/donate (foundation), 146Gr48FqHM7TPB9q33HHv6uWpgQqdz1yk (BTC personal)
Estuary: Kodis new default skin - ExtendedInfo Script - KodiDevKit
Reply
#63
Sounds like pretty cool idea. Customizable time would be a key feature though.
Quick Links: debug log (wiki) | userdata (wiki) | advancedsettings (wiki) | adding videos to the library (wiki)
Reply
#64
ok, seems that it won´t become reality that easily Big Grin
the Skin.Theme() built-in action doesn´t work properly here, i can only switch back to default theme, but not vice-versa.
can anyone confirm?
Donate: https://kodi.tv/contribute/donate (foundation), 146Gr48FqHM7TPB9q33HHv6uWpgQqdz1yk (BTC personal)
Estuary: Kodis new default skin - ExtendedInfo Script - KodiDevKit
Reply
#65
theme file updated btw (now only 20mb instead of 55mb + doesn´t replace white_floor theme anymore)
Donate: https://kodi.tv/contribute/donate (foundation), 146Gr48FqHM7TPB9q33HHv6uWpgQqdz1yk (BTC personal)
Estuary: Kodis new default skin - ExtendedInfo Script - KodiDevKit
Reply
#66
(2012-08-08, 20:05)phil65 Wrote: ok, seems that it won´t become reality that easily Big Grin
the Skin.Theme() built-in action doesn´t work properly here, i can only switch back to default theme, but not vice-versa.
can anyone confirm?

confirmed

http://trac.xbmc.org/ticket/13239
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
Reply
#67
(2012-08-08, 21:14)phil65 Wrote: theme file updated btw (now only 20mb instead of 55mb + doesn´t replace white_floor theme anymore)

I downloaded the updated file, but it's only ~650 kb? Is that correct?
Quick Links: debug log (wiki) | userdata (wiki) | advancedsettings (wiki) | adding videos to the library (wiki)
Reply
#68
sorry, didn´t update link. done now.
Donate: https://kodi.tv/contribute/donate (foundation), 146Gr48FqHM7TPB9q33HHv6uWpgQqdz1yk (BTC personal)
Estuary: Kodis new default skin - ExtendedInfo Script - KodiDevKit
Reply
#69
The little things that get updated with every git pull are really polishing this theme. Especially the way that color is being handled. Very nice.

I'm wonder if it's possible (or even of interest to you) to add a bit of the area color glow to the logos in the wall viewtype? Lighter colored logos are getting washed out.
Image

I was thinking to use a similar glow like the one used in the shift viewtype...
Image

This would enhance it just ever so slightly, and perhaps enough to make those logos (even the darker ones) stand out just a bit more. What do you think?
Quick Links: debug log (wiki) | userdata (wiki) | advancedsettings (wiki) | adding videos to the library (wiki)
Reply
#70
(2012-08-09, 00:46)thrak76 Wrote: The little things that get updated with every git pull are really polishing this theme. Especially the way that color is being handled. Very nice.

I'm wonder if it's possible (or even of interest to you) to add a bit of the area color glow to the logos in the wall viewtype? Lighter colored logos are getting washed out.
Image

I was thinking to use a similar glow like the one used in the shift viewtype...
Image

This would enhance it just ever so slightly, and perhaps enough to make those logos (even the darker ones) stand out just a bit more. What do you think?

you ´re right, probably needs a bit of adjusting. will see what i can do. thx.
Donate: https://kodi.tv/contribute/donate (foundation), 146Gr48FqHM7TPB9q33HHv6uWpgQqdz1yk (BTC personal)
Estuary: Kodis new default skin - ExtendedInfo Script - KodiDevKit
Reply
#71
(2012-08-08, 20:05)phil65 Wrote: ok, seems that it won´t become reality that easily Big Grin
the Skin.Theme() built-in action doesn´t work properly here, i can only switch back to default theme, but not vice-versa.
can anyone confirm?

Code:
if (parameter.size()>2)
    {
    strSkinTheme = parameter;
    g_guiSettings.SetString("lookandfeel.skintheme",parameter.c_str());
    }
    else
    {
        if (iTheme==-1)
      g_guiSettings.SetString("lookandfeel.skintheme","skindefault");
        else
      g_guiSettings.SetString("lookandfeel.skintheme",strSkinTheme);
    }
didn't test it but technically it would add the ability to parse the skin name example Skin.Theme("thetheme")
Reply
#72
(2012-08-09, 04:36)tiben20 Wrote:
(2012-08-08, 20:05)phil65 Wrote: ok, seems that it won´t become reality that easily Big Grin
the Skin.Theme() built-in action doesn´t work properly here, i can only switch back to default theme, but not vice-versa.
can anyone confirm?

Code:
if (parameter.size()>2)
    {
    strSkinTheme = parameter;
    g_guiSettings.SetString("lookandfeel.skintheme",parameter.c_str());
    }
    else
    {
        if (iTheme==-1)
      g_guiSettings.SetString("lookandfeel.skintheme","skindefault");
        else
      g_guiSettings.SetString("lookandfeel.skintheme",strSkinTheme);
    }
didn't test it but technically it would add the ability to parse the skin name example Skin.Theme("thetheme")

even better, then i wouldn´t need some workaround.
would be nice if that would make it in. thx.
Donate: https://kodi.tv/contribute/donate (foundation), 146Gr48FqHM7TPB9q33HHv6uWpgQqdz1yk (BTC personal)
Estuary: Kodis new default skin - ExtendedInfo Script - KodiDevKit
Reply
#73
When a tvshow only has one season, the season poster is not displayed in episode view. I'm used to that, and I guess that's just how it is - but, when you have the Glow set to Extended in the area color settings for the Episode viewtype (at the episode level), then there is the glow around the non-existent poster.

Like so:
Image
Quick Links: debug log (wiki) | userdata (wiki) | advancedsettings (wiki) | adding videos to the library (wiki)
Reply
#74
(2012-08-09, 11:47)thrak76 Wrote: When a tvshow only has one season, the season poster is not displayed in episode view. I'm used to that, and I guess that's just how it is - but, when you have the Glow set to Extended in the area color settings for the Episode viewtype (at the episode level), then there is the glow around the non-existent poster.

Like so:
Image

should be fixed now. thx.
Donate: https://kodi.tv/contribute/donate (foundation), 146Gr48FqHM7TPB9q33HHv6uWpgQqdz1yk (BTC personal)
Estuary: Kodis new default skin - ExtendedInfo Script - KodiDevKit
Reply
#75
(2012-08-09, 04:38)phil65 Wrote: even better, then i wouldn´t need some workaround.
would be nice if that would make it in. thx.
ill make a patch with better handling of this and propose it.
That code don't check if you have or don't have the theme

Reply
  • 1
  • 3
  • 4
  • 5(current)
  • 6
  • 7
  • 18

Logout Mark Read Team Forum Stats Members Help
[TEST RELEASE] Aeon Nox Lite (Nox 3.6 Theme)5