Kodi Community Forum
[THREAD CLOSED] Maximinimalism V1.0.6 (Gotham) - 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: Maximinimalism (https://forum.kodi.tv/forumdisplay.php?fid=209)
+----- Thread: [THREAD CLOSED] Maximinimalism V1.0.6 (Gotham) (/showthread.php?tid=170839)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38


RE: [WIP] Maximinimalism - Smobbo - 2014-01-21

Wow, i haven't looked at this skin for awhile, but you've made a lot of progress!
Impressive!

I'll have a go at it soon, see how it runs on the pi (with a focus on speed this should be good Smile )


RE: [WIP] Maximinimalism - thedeadman - 2014-01-21

Cheers - let me know how you get on


RE: [WIP] Maximinimalism - zznh - 2014-02-05

Hi!

First I want to say that the skin is excellent,

But I think I detected a "bug" or at least something that should be added, when we scan the library, a notification to show progress as it appears in the Confluence skin should appear

I hope you understand what I meant

Thanks


RE: [WIP] Maximinimalism - thedeadman - 2014-02-05

Thanks zznh!

Yep, I know exactly what you're referring to. It's on the list and will definitely be included in the next update.

Cheers!


RE: [WIP] Maximinimalism - zznh - 2014-02-05

(2014-02-05, 12:05)thedeadman Wrote: Thanks zznh!

Yep, I know exactly what you're referring to. It's on the list and will definitely be included in the next update.

Cheers!

Thanks again Smile

Cheers


RE: [WIP] Maximinimalism - kristle - 2014-02-07

Don't think I've posted to say how much I like the approach and the result. Nice skin—thanks.

Now I have.


RE: [WIP] Maximinimalism - thedeadman - 2014-02-08

Thanks kristle, appreciated!


RE: [WIP] Maximinimalism - bigpen15crew - 2014-02-09

I love using this skin..you really did a great job! It's fast, responsive and simple which makes my xbmc experience a real treat.

One suggestion is it possible in the now playing screen to show the progress bar of the file. Sometimes when I play music I'd like to see the progression bar displaying the length of track. Another thing is there a way to have the background art in the music playing screen to display the fanart without the tiles? When I play a song and it doesn't have fanart I get ugly boxes in the background.


RE: [WIP] Maximinimalism - thedeadman - 2014-02-09

Thanks bigpen15crew,

Agreed on both points re: now playing screen. I'll revise it for the next update.

In the meantime, If the grid is driving you nuts and you don't mind digging through the skin files, you can disable it now in /1080i/MusicVisualisation.xml by blocking the relevant image with a <visible>false</visible> tag:

Code:
<!--vignettes-->
        <control type="image">
                        <visible>false</visible>
            <posx>0</posx>
            <posy>0</posy>
            <include>dimensionsFullscreen</include>
            <texture>masks/videoGrid.png</texture>
            <colordiffuse>ffffffff</colordiffuse>
            <aspectratio>stretch</aspectratio>
        </control>

Cheers!


RE: [WIP] Maximinimalism - bigpen15crew - 2014-02-09

(2014-02-09, 16:12)thedeadman Wrote: Thanks bigpen15crew,

Agreed on both points re: now playing screen. I'll revise it for the next update.

In the meantime, If the grid is driving you nuts and you don't mind digging through the skin files, you can disable it now in /1080i/MusicVisualisation.xml by blocking the relevant image with a <visible>false</visible> tag:

Code:
<!--vignettes-->
        <control type="image">
                        <visible>false</visible>
            <posx>0</posx>
            <posy>0</posy>
            <include>dimensionsFullscreen</include>
            <texture>masks/videoGrid.png</texture>
            <colordiffuse>ffffffff</colordiffuse>
            <aspectratio>stretch</aspectratio>
        </control>

Cheers!

Awesome!


RE: [WIP] Maximinimalism - bigpen15crew - 2014-02-10

Another thing, is it possible of replacing system info on the home screen with the now playing screen. So when you press up on the home screen instead it toggles to whatever is playing


RE: [WIP] Maximinimalism - thedeadman - 2014-02-10

Not something I would do in the production version, but you can mod it to do that easily enough:

In /1080i/home.xml, replace:

Code:
<!--system info indicator-->
            <control type="label">
                <animation effect="fade" start="0" end="100" delay="600" tween="sine" time="500">WindowOpen</animation>
                <posx>0</posx>
                <posy>252</posy>
                <width>24-col</width>
                <align>center</align>
                <font>smallMedium</font>
                <textcolor>selected</textcolor>
                <!--<label>[B]↑[/B] $LOCALIZE[10511]      [B]↓[/B] $LOCALIZE[24027]</label>-->
                <label>[B]↑[/B] $LOCALIZE[13350]      [B]↓[/B] $LOCALIZE[24027]</label>
            </control>

and just below that:

Code:
<!--browse controls-->
        <control type="group">
            <posx>col-6-begin</posx>
            <posy>row-8-begin</posy>
            
            <!--animations-->
            <animation effect="fade" start="0" end="100" delay="500" time="600">WindowOpen</animation>
                                
            <control type="list" id="9000">
                <posx>0</posx>
                <posy>0</posy>
                <width>24-col</width>
                <height>3-col</height>
                <orientation>horizontal</orientation>
                <onup>action(fullscreen)</onup>
                <!--<onup>ActivateWindow(systeminfo)</onup>-->
                <ondown>ActivateWindow(weather)</ondown>

Obviously that shuts off the system info screen, so you'd need to add a button for it elsewhere (settings.xml is probably the best place).


RE: [WIP] Maximinimalism - nooryani84 - 2014-02-11

Holy shit this skin looks nice! Can't wait to get home and test it Big Grin


RE: [WIP] Maximinimalism - thedeadman - 2014-02-11

Cool, cheers! Let me know how you get on :-)


Cyrillic support - MikeRus - 2014-02-14

Hello. Does this skin support cyrillic? I read tread, but I didn't find the answer. I tried it and instead of cyrillic letters there are squares...