Posts: 485
Joined: Oct 2009
2012-05-02, 00:36
(This post was last modified: 2012-05-02, 01:34 by User 55003.)
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>
Posts: 485
Joined: Oct 2009
(2012-05-02, 02:57)ialand Wrote: Any chance of getting the advanced features for Weather Underground enabled ![Huh Huh](https://forum.kodi.tv/images/smilies/question.png)
10 day forecast
hourly forecast
weekend forecast
36 hour forecast
yesterday's weather
weather alerts
animated radar images
Yep
![Smile Smile](https://forum.kodi.tv/images/smilies/smile.png)
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..
Posts: 485
Joined: Oct 2009
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
Watchlist
Posts: 94
Joined: Dec 2009
Reputation:
0
2012-05-03, 21:45
(This post was last modified: 2012-05-03, 21:46 by hdmax.)
I am now using Megalopolis, it is very nice! Great work, thanks.
Posts: 2,441
Joined: Mar 2010
Reputation:
54
jingai
Skilled Skinner
Posts: 2,441
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.
Posts: 485
Joined: Oct 2009
2012-05-04, 01:24
(This post was last modified: 2012-05-04, 02:33 by User 55003.)
Quote: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.
I created the repo for my friends and family to keep up with my mod. I posted it mainly to share/introduce stoli to some ideas I had come up with. Pushing so many patches can become difficult for the developer to review properly and make sure it is the best practice.
![Wink Wink](https://forum.kodi.tv/images/smilies/wink.png)
and the way I have gone about certain things is totally different.
For example the way hidden views has been implemented. The fixedlist/panel/wraplist is hidden within the view in metropolis, I have disabled the whole view from the MyVideoNav.xml.
No disrespect intended but I think I'll just plod along with my own mod, My build is much older than you might think
![Wink Wink](https://forum.kodi.tv/images/smilies/wink.png)
(its from when Amra first made his repo available) with some of stoli's patches added.
Like I said previous I was meaning to share some ideas, so feel free to use any you like.
Posts: 485
Joined: Oct 2009
(2012-05-04, 02:49)jingai Wrote: (2012-05-04, 01:24)Steveb Wrote: I created the repo for my friends and family to keep up with my mod. I posted it mainly to share/introduce stoli to some ideas I had come up with. Pushing so many patches can become difficult for the developer to review properly and make sure it is the best practice.
and the way I have gone about certain things is totally different.
For example the way hidden views has been implemented. The fixedlist/panel/wraplist is hidden within the view in metropolis, I have disabled the whole view from the MyVideoNav.xml.
I understand now, but you're posting in a thread that is about Metropolis development, not Megalopolis development. If you want to fork the skin, you're free to do so, but by posting it here and offering it to users you're just bifurcating the userbase of Stoli's skin.
It wasn't clear at all from your original post that you weren't working off of Stoli's repo.
(2012-05-04, 01:24)Steveb Wrote: No disrespect intended but I think I'll just plod along with my own mod, My build is much older than you might think
(its from when Amra first made his repo available) with some of stoli's patches added.
Like I said previous I was meaning to share some ideas, so feel free to use any you like.
Most or all of these ideas are already listed as Issues on his github repo and people like myself are working to correct/add them to Metropolis. By selecting the most-desired issues and forking the skin you're simply going to attract users to your fork which IMHO isn't fair to Stoli.
I was trying to help Metropolis development by sharing some of my mods and ideas, if you don't like that, that's fair enough, don't use them! As far as bifurcating the user-base, I've only mentioned my build Megalopolis once in all the time stoli has been developing the skin and that was because of the size of the mods in question. My build is not officially posted anywhere on this forum and If your worried about people using my mod, that's pretty petty and I'm sorry you feel that way.
Posts: 1,251
Joined: Aug 2007
Reputation:
11
Just sent a pull request to Stoli. I've added a new toggle option in the settings that will allow the use of the Realistic Weather icons instead of the default Metropolis weather icons.