XBMC Community Forum
Metropolis Development - Printable Version

+- XBMC Community Forum (http://forum.xbmc.org)
+-- Forum: Help and Support (/forumdisplay.php?fid=33)
+--- Forum: Skin Help and Support (/forumdisplay.php?fid=67)
+---- Forum: Metropolis (/forumdisplay.php?fid=162)
+---- Thread: Metropolis Development (/showthread.php?tid=126856)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14


RE: Metropolis Development - hdmax - 2012-05-01 18:43

Thank you Steve for taking the time to test this for me. I was just now able to get it working correctly. I disabled Weather Plus, then went in and manually deleted everything that had to do with that addon, now it works. However I want the icons like you have. mine look like cartoon icons. Also, I will miss Weather Plus, as it has a hundred time the info/options that the default weather underground has.

(2012-05-01 12:42)Steveb Wrote:  Well I just tested every city you mentioned and had no problems with the skin. I can see why this would be very annoying for you being a weather buff with his/her own weather station Wink
But this is very strange, I have the same set-up - Win7 64 Ultimate plus XBMC 11.0 Eden. I also switched to a USA Region just to be sure and also tried a few zip codes from around your location but could not reproduce your problem.
Maybe someone else could verify this for you, or you could ask ronie for advice over at the weather underground thread http://forum.xbmc.org/showthread.php?tid=116668.

[Image: screenshot000-7.png]

[Image: screenshot001-4.png]



RE: Metropolis Development - YOUNG13 - 2012-05-01 20:45

(2012-05-01 18:43)hdmax Wrote:  Thank you Steve for taking the time to test this for me. I was just now able to get it working correctly. I disabled Weather Plus, then went in and manually deleted everything that had to do with that addon, now it works. However I want the icons like you have. mine look like cartoon icons. Also, I will miss Weather Plus, as it has a hundred time the info/options that the default weather underground has.

You can download the icons here:

http://code.google.com/p/jezzxbmc/downloads/detail?name=Realistic_Weather_Icon_Set.zip


RE: Metropolis Development - Steveb - 2012-05-02 00:36

The weather icons Im using are the default xbmc icons that were upgraded with eden thanks to Mominur Rahman, I just coded the MyWeather.xml to use the default icons and deleted the set in the extras folder.

DL MyWeather.xml

EDIT Also to change the icon above the time & date to use the default icons you need to edit the <include name="Global_Time"> located in the includes.xml.

Change:
Code:
<control type="image">
    <!-- <include>Animation_FadedByMenu</include>
    <include>Animation_OpenCloseFade</include> -->
    <posx>1145</posx>
    <posy>517</posy>
    <width>30</width>
    <height>30</height>
    <texture>$INFO[Window(Weather).Property(Current.FanartCode),special://skin/extras/weather_icons/,.png]</texture>
    <visible>!Skin.HasSetting(HideClockTemp) + Weather.IsFetched</visible>
</control>

To:
Code:
<control type="image">
    <posx>1145</posx>
    <posy>517</posy>
    <width>30</width>
    <height>30</height>
    <info>Window(Weather).Property(Current.ConditionIcon)</info>
    <visible>!Skin.HasSetting(HideClockTemp) + Weather.IsFetched</visible>
</control>



RE: Metropolis Development - ialand - 2012-05-02 02:57

Any chance of getting the advanced features for Weather Underground enabled Confused

10 day forecast
hourly forecast
weekend forecast
36 hour forecast
yesterday's weather
weather alerts
animated radar images


RE: Metropolis Development - Steveb - 2012-05-02 03:25

(2012-05-02 02:57)ialand Wrote:  Any chance of getting the advanced features for Weather Underground enabled Confused

10 day forecast
hourly forecast
weekend forecast
36 hour forecast
yesterday's weather
weather alerts
animated radar images

Yep Smile These features are not in the main repo yet, but already had a look at 0.1.4 and looks good, working on this as I type..Wink


RE: Metropolis Development - ialand - 2012-05-02 04:41

(2012-05-02 03:25)Steveb Wrote:  
(2012-05-02 02:57)ialand Wrote:  Any chance of getting the advanced features for Weather Underground enabled Confused

10 day forecast
hourly forecast
weekend forecast
36 hour forecast
yesterday's weather
weather alerts
animated radar images

Yep Smile These features are not in the main repo yet, but already had a look at 0.1.4 and looks good, working on this as I type..Wink

Outstanding! There is only one other (well two) features I wish would make it in..

1. (this is in ICON view) On the sub-entries for each option, would like to be able to turn them on/off (ie. for TV, I generally only look at 'Recent' and "Update Library', would be nice to not have the others show (seen this on other skins)
2. My severe lefthandedness Smile would be nice to be able to flip the bottom left/right corners (ie. time et.al. in the bottom left, other stuff in the bottom right)


RE: Metropolis Development - Steveb - 2012-05-02 06:45

Bluray/DVD covers anyone? This mod is a bit big to post, but you can grab it from my repo mod named Megalopolis..
It has some other sfuff in there as well Watchlist/random support, xbmc lyrics/subs, solo artwork download from custom extras window, rss editor + more.

https://github.com/Steveb1968/skin.megalopolis

[Image: screenshot000-8.png]

[Image: screenshot001-5.png]

[Image: screenshot002-3.png]

Watchlist
[Image: screenshot003-1.png]


RE: Metropolis Development - stoli - 2012-05-02 22:06

@Steveb - if you want to send a pull request I'll merge your updates in...

@jingai - All of your pull requests have been merged - huge thanks!


RE: Metropolis Development - hdmax - 2012-05-03 21:45

I am now using Megalopolis, it is very nice! Great work, thanks.


RE: Metropolis Development - jingai - 2012-05-04 00:06

Steveb, if you made a proper fork of Stoli's repo and used branches for your patches, you'd have a much better chance of getting your changes included in the official skin via pull requests as Stoli mentioned.

I'll go through what you've done now to try to get it into the official repo, but you're going to have a hard time keeping up with changes to the official repo this way, which inevitably will lead to conflicts with other patches as time goes on. Rather a lot has already happened since you cloned the repo on Apr 17, making it so I have to go through your patches by hand to make sure they don't squash other fixes.

Of course, if you just want to maintain your own version of the skin, that's fine as well. IMHO it's best not to bifurcate the user-base, but it's your prerogative of course.