• 1
  • 4
  • 5
  • 6(current)
  • 7
  • 8
MiniMeedia v0.95 Released (19/08/2009)
#76
Yep and the code for latest music is also there waiting to get lifted.Laugh
Reply
#77
Is it safe to assume there is a newer version of MiniMeedia lurking in the horizon with all the recent posts in this thread as of late?

Im just curious as this is a pretty nice skin, that just needs a bit of tweaking and updating.
Reply
#78
manojav Wrote:Got another diff for you, this one enables the use of the "Feels like" temperature on the home screen instead of the normal temp. Useful in the winter for those living regions affected by wind chills !

Code:
in strings.xml
<string id="31222">Use Feels Like instead of Temperature</string>

Index: 720p/Home.xml
===================================================================
--- 720p/Home.xml       (revision 2324)
+++ 720p/Home.xml       (working copy)
@@ -81,12 +81,21 @@

         <control type="label">
           <font>SmallDefaultFont</font>
+          <include>HomeWeatherFeelsLikeText</include>
+          <visible>!Skin.HasSetting(ShowLargerClock) + Skin.HasSetting(UseFeelsLikeTemp)</visible>
+        </control>
+        <control type="label">
+          <include>HomeWeatherFeelsLikeText</include>
+          <visible>Skin.HasSetting(ShowLargerClock) + Skin.HasSetting(UseFeelsLikeTemp)</visible>
+        </control>
+        <control type="label">
+          <font>SmallDefaultFont</font>
           <include>HomeWeatherTemperatureText</include>
-          <visible>!Skin.HasSetting(ShowLargerClock)</visible>
+          <visible>!Skin.HasSetting(ShowLargerClock) + !Skin.HasSetting(UseFeelsLikeTemp)</visible>
         </control>
         <control type="label">
           <include>HomeWeatherTemperatureText</include>
-          <visible>Skin.HasSetting(ShowLargerClock)</visible>
+          <visible>Skin.HasSetting(ShowLargerClock)+ !Skin.HasSetting(UseFeelsLikeTemp) </visible>
         </control>
       </control>
     </control>



Index: 720p/Includes.xml
===================================================================
--- 720p/Includes.xml   (revision 2324)
+++ 720p/Includes.xml   (working copy)
@@ -832,6 +832,17 @@
     <aligny>center</aligny>
     <label>$INFO[Weather.Temperature]</label>
   </include>
+
+  <include name="HomeWeatherFeelsLikeText">
+    <posx>320</posx>
+    <posy>24</posy>
+    <width>75</width>
+    <height>34</height>
+    <textcolor>Selected</textcolor>
+    <align>left</align>
+    <aligny>center</aligny>
+    <label>$INFO[Window(Weather).Property(Current.FeelsLike)] $INFO[System.TemperatureUnits]</label>  
+  </include>

   <include name="LatestMediaBG">
     <control type="image">

Found the undocumented thanks to Rocky5

Code:
<label>$INFO[Window(Weather).Property(Current.FeelsLike)] $INFO[System.TemperatureUnits]</label>


should be good go now.
Reply
#79
grupy Wrote:Is it safe to assume there is a newer version of MiniMeedia lurking in the horizon with all the recent posts in this thread as of late?

Im just curious as this is a pretty nice skin, that just needs a bit of tweaking and updating.

MiniMeedia is in SVN so get there the latest version.
http://xboxmediacenter.svn.sourceforge.n...iniMeedia/

Click "Download GNU tarball" bottom at page to download.

click "Parent Directory" and see all svn skins.Wink
Reply
#80
Waffa Wrote:All those skins that look flashy are because of the overlays... they got a big wow factor but after a while I get bored looking to the same overlays/shadows/cases/etc.

MiniMeedia never bored me.....
Flashiest skin there is, looks always different Rofl (got a lot of backgrounds/fanart.)
Menu is simpel and perfect ! (including left submenuLaugh)
It just let me see what I want to see : Fanart - Poster - Flags - (minimal) Info.
If I want to see an compleet info, I use the info screen (it's made for that)

Imo Best skin there is !!!
Thanks! Flattery will get you everywhere! Wink

Waffa Wrote:Skunk maybe you like this view.
Image

I definitely do like that. I'm not totally happy with the Waterfall view as it is and always meant to do something else with it. Maybe this is the answer/inspiration I've been looking for. Big Grin
Follow development of MediaStream, MiniMeedia and other skins on Twitter (@skunkm0nkee)
Reply
#81
manojav Wrote:Got another diff for you, this one enables the use of the "Feels like" temperature on the home screen instead of the normal temp. Useful in the winter for those living regions affected by wind chills !

Code:
in strings.xml
<string id="31222">Use Feels Like instead of Temperature</string>

Index: 720p/Home.xml
===================================================================
--- 720p/Home.xml       (revision 2324)
+++ 720p/Home.xml       (working copy)
@@ -81,12 +81,21 @@

         <control type="label">
           <font>SmallDefaultFont</font>
+          <include>HomeWeatherFeelsLikeText</include>
+          <visible>!Skin.HasSetting(ShowLargerClock) + Skin.HasSetting(UseFeelsLikeTemp)</visible>
+        </control>
+        <control type="label">
+          <include>HomeWeatherFeelsLikeText</include>
+          <visible>Skin.HasSetting(ShowLargerClock) + Skin.HasSetting(UseFeelsLikeTemp)</visible>
+        </control>
+        <control type="label">
+          <font>SmallDefaultFont</font>
           <include>HomeWeatherTemperatureText</include>
-          <visible>!Skin.HasSetting(ShowLargerClock)</visible>
+          <visible>!Skin.HasSetting(ShowLargerClock) + !Skin.HasSetting(UseFeelsLikeTemp)</visible>
         </control>
         <control type="label">
           <include>HomeWeatherTemperatureText</include>
-          <visible>Skin.HasSetting(ShowLargerClock)</visible>
+          <visible>Skin.HasSetting(ShowLargerClock)+ !Skin.HasSetting(UseFeelsLikeTemp) </visible>
         </control>
       </control>
     </control>



Index: 720p/Includes.xml
===================================================================
--- 720p/Includes.xml   (revision 2324)
+++ 720p/Includes.xml   (working copy)
@@ -832,6 +832,17 @@
     <aligny>center</aligny>
     <label>$INFO[Weather.Temperature]</label>
   </include>
+
+  <include name="HomeWeatherFeelsLikeText">
+    <posx>320</posx>
+    <posy>24</posy>
+    <width>75</width>
+    <height>34</height>
+    <textcolor>Selected</textcolor>
+    <align>left</align>
+    <aligny>center</aligny>
+    <label>$INFO[Window(Weather).Property(Current.FeelsLike)] °C</label>
+  </include>

   <include name="LatestMediaBG">
     <control type="image">

The only thing I have missing is that I am not able to Localize the temperature so i have hard-coded the degrees C. Anyone know how to get the region based temperature scale?

Thanks for that but I'm reluctant to add any more settings to the skin at the moment so I think that will have to be your own mod for now. Sorry. Confused
Follow development of MediaStream, MiniMeedia and other skins on Twitter (@skunkm0nkee)
Reply
#82
xbs08 Wrote:On the latest videos... only thing i dont like is that you cant cycle thru, should be like in list views, when you hit the latest item and press down you go to the first one and vice-versa.

Your wish is my command. Wink

It now wraps properly and I've also tweaked the animations when moving between the items to make it look a bit smoother.
Follow development of MediaStream, MiniMeedia and other skins on Twitter (@skunkm0nkee)
Reply
#83
skunkm0nkee Wrote:Your wish is my command. Wink

It now wraps properly and I've also tweaked the animations when moving between the items to make it look a bit smoother.

works great

Quote:Thanks for that but I'm reluctant to add any more settings to the skin at the moment so I think that will have to be your own mod for now. Sorry.

thats okay.

let me know if you are looking to include my changes to latest.py (fallback to thumb as a texture) i've tested it with TV and Movies and both look good.
Reply
#84
Waffa Wrote:MiniMeedia is in SVN so get there the latest version.
http://xboxmediacenter.svn.sourceforge.n...iniMeedia/

Click "Download GNU tarball" bottom at page to download.

click "Parent Directory" and see all svn skins.Wink

I didnt know it was there, thanks for the link and instructions!

Will try to test this out tonight.
Reply
#85
skunkm0nkee Wrote:Your wish is my command. Wink

It now wraps properly and I've also tweaked the animations when moving between the items to make it look a bit smoother.

Works great Smile
Thank you.
 
  • Intel NUC Kit DN2820FYKH ~ Crucial DDR3L SO-DIMM 4GB ~ SanDisk ReadyCache 32GB SSD ~ Microsoft MCE model 1039 RC6 remote
Reply
#86
vajonam Wrote:I also added a Startup.xml this enables the, playing of startup sounds. I think it, just makes it full featured analogous PM3HD to , upto you if you want to include it.


Code:
<window>
    <defaultcontrol always="true">10</defaultcontrol>
    <controls>
        <control type="button" id="10">
            <onfocus>Skin.SetBool(Startup)</onfocus>
            <onfocus>Skin.SetBool(Startup2)</onfocus>
            <onfocus>ReplaceWindow(Home)</onfocus>
            <texturenofocus>-</texturenofocus>
            <texturefocus>-</texturefocus>
        </control>
        <control type="button" id="1">
            <description>ReplaceWindow Trigger</description>
            <posx>35</posx>
            <posy>235</posy>
            <font>special15</font>
            <onfocus>ReplaceWindow(Home)</onfocus>
            <texturefocus>-</texturefocus>
            <texturenofocus>-</texturenofocus>
            <animation effect="fade" time="1000">Focus</animation>
        </control>
    </controls>
</window>

This (well, something similar) has now been added to SVN. Thanks for pointing it out Big Grin

vajonam Wrote:let me know if you are looking to include my changes to latest.py (fallback to thumb as a texture) i've tested it with TV and Movies and both look good.
Yep, I'll look into adding those changes the next time I'm able to dive into the code. Hopefully sometime in the next couple of days. Wink

xbs08 Wrote:Works great Smile
Thank you.
You're welcome Nod
Follow development of MediaStream, MiniMeedia and other skins on Twitter (@skunkm0nkee)
Reply
#87
skunkm0nkee Wrote:Thanks! Flattery will get you everywhere! Wink



I definitely do like that. I'm not totally happy with the Waterfall view as it is and always meant to do something else with it. Maybe this is the answer/inspiration I've been looking for. Big Grin

I wasn't totally happy to with waterfall either. So made some changes....
Image

This way I do like the waterfall view.

Btw why not add an extra view, I've got 10 different views in MiniMeedia :p
Reply
#88
Waffa Wrote:I wasn't totally happy to with waterfall either. So made some changes....
Image

This way I do like the waterfall view.

Btw why not add an extra view, I've got 10 different views in MiniMeedia :p

Nice view, curious to see these other "10" views.
Reply
#89
MiniMeedia got default 6 views,
One extra view is locked in skin called "exposure" did unlock it.(7)
First custom view, you did see already.(8)
Here are number 9 and 10
Image

Image

Did create these views a while ago, stopped because wanted to wait until version 1 or when added to SVN.
Now it is !!! It's time to apply al my personal mods and views to the latest SVN.
Reply
#90
Very nice looking views Smile
 
  • Intel NUC Kit DN2820FYKH ~ Crucial DDR3L SO-DIMM 4GB ~ SanDisk ReadyCache 32GB SSD ~ Microsoft MCE model 1039 RC6 remote
Reply
  • 1
  • 4
  • 5
  • 6(current)
  • 7
  • 8

Logout Mark Read Team Forum Stats Members Help
MiniMeedia v0.95 Released (19/08/2009)1