*ORIGINAL THREAD* InfoService v1.6 - Feed reader/Twitter reader and weather (2 Viewers)

UNOPARATOR

MP Donator
  • Premium Supporter
  • September 19, 2007
    231
    70
    Istanbul
    Home Country
    Turkey Turkey
    Re: InfoService v1.32 - 5 day weather/Feeds/Twitter on basic home [04-01-2010] *PLANN

    I don't how to call it. It scrolls fine for 50px then jumps back 10px, then scroll again and it doesn't feel smooth... :p
     

    SilentException

    Retired Team Member
  • Premium Supporter
  • October 27, 2008
    2,617
    1,130
    Rijeka, Croatia
    Home Country
    Croatia Croatia
    Re: InfoService v1.32 - 5 day weather/Feeds/Twitter on basic home [04-01-2010] *PLANN

    I'm sorry to say edsche but the latest update is not working OK here.

    * upon opening mediaportal the #infoservice.feeds.titles is set to: "Wait until the other Services has finished", same as twitter property. (time stamp 10:11 in the log)
    * when opening the plugin feeds window, the list is empty, if i click select feed, nothing happens, when i click show all feeds, titles property is set to empty. (time stamp 10:16 in the log)
    * if i click refresh, it loads the feeds. (time stamp 10:18 in the log)

    hope you can take a look :) thanks!
     

    joz

    Portal Pro
    March 17, 2008
    1,353
    306
    Home Country
    Netherlands Netherlands
    Re: InfoService v1.32 - 5 day weather/Feeds/Twitter on basic home [04-01-2010] *PLANN

    I don't how to call it. It scrolls fine for 50px then jumps back 10px, then scroll again and it doesn't feel smooth... :p

    Sometimes increasing horizontal scroll speed also works a bit (sometimes) for this problem. A speed of 1 can be problematic, everything higher is usually better, for me 3 is the best, no jumping and not too fast.
     

    UNOPARATOR

    MP Donator
  • Premium Supporter
  • September 19, 2007
    231
    70
    Istanbul
    Home Country
    Turkey Turkey
    Re: InfoService v1.32 - 5 day weather/Feeds/Twitter on basic home [04-01-2010] *PLANN

    I don't how to call it. It scrolls fine for 50px then jumps back 10px, then scroll again and it doesn't feel smooth... :p

    Sometimes increasing horizontal scroll speed also works a bit (sometimes) for this problem. A speed of 1 can be problematic, everything higher is usually better, for me 3 is the best, no jumping and not too fast.
    Where do I set that? In skin file or InfoService config?
     

    edsche

    Community Plugin Dev
    January 7, 2007
    606
    360
    38
    Ulm
    Home Country
    Germany Germany
    Re: InfoService v1.32 - 5 day weather/Feeds/Twitter on basic home [04-01-2010] *PLANN

    I don't how to call it. It scrolls fine for 50px then jumps back 10px, then scroll again and it doesn't feel smooth... :p

    Sometimes increasing horizontal scroll speed also works a bit (sometimes) for this problem. A speed of 1 can be problematic, everything higher is usually better, for me 3 is the best, no jumping and not too fast.
    Where do I set that? In skin file or InfoService config?
    MediaPortal Config -> General -> Skin


    Once again I've updated InfoService. Download should now be ok. Before, it worked only if all services were enabled. Now thats fixed. Also i've added the property #infoservice.feed.isalltitles. Hope it works now as expected ;)
     

    SilentException

    Retired Team Member
  • Premium Supporter
  • October 27, 2008
    2,617
    1,130
    Rijeka, Croatia
    Home Country
    Croatia Croatia
    Re: InfoService v1.32 - 5 day weather/Feeds/Twitter on basic home [04-01-2010] *PLANN

    hey edsche, i've made a couple of changes in the plugin and here is a patch file for you :)

    Data/FeedItem.cs and Feed.cs:
    * trimmed author, title, description, url

    FeedUtils.cs:
    * creation of mixedfeedline didn't trim all of the separator at the end of the line
    * SetFeedOnWindow also sets #infoservice.feed.img. that means that skinners that use #infoservice.feed.titles and show #infoservice.feed.img on the home screens should check if String.Equals(#infoservice.feed.isalltitles,false/true) for image control. and make a new one depending if all titles is shown or not. i have done it this way:

    Code:
    		<control>
    			<description>RSS default image</description>
    			<type>image</type>
    			<id>11117</id>
    			<posX>0</posX>
    			<posY>0</posY>
    			<width>80</width>
    			<height>80</height>
    			<keepaspectratio>yes</keepaspectratio>
    			<texture>InfoService\defaultTop.png</texture> <!-- default image when all titles is visible -->
    			<visible>Plugin.IsEnabled(InfoService)+String.Equals(#infoservice.feed.isalltitles,true)</visible>
    		</control>
    		<control>
    			<description>RSS image - InfoService</description>
    			<type>image</type>
    			<id>11118</id>
    			<posX>0</posX>
    			<posY>0</posY>
    			<width>120</width>
    			<height>80</height>
    			<keepaspectratio>yes</keepaspectratio>
    			<texture>#infoservice.feed.img</texture> <!-- image when the feed is selected -->
    			<visible>Plugin.IsEnabled(InfoService)+String.Equals(#infoservice.feed.isalltitles,false)</visible>
    		</control>

    I was thinking, maybe it would be good to implement settings from InfoService.SkinSettings.xml. Settings like if feed item age is shown or start with all feeds, separators and such..
     

    Attachments

    • InfoService MS.patch
      30.6 KB

    edsche

    Community Plugin Dev
    January 7, 2007
    606
    360
    38
    Ulm
    Home Country
    Germany Germany
    Re: InfoService v1.32 - 5 day weather/Feeds/Twitter on basic home [04-01-2010] *PLANN

    * SetFeedOnWindow also sets #infoservice.feed.img. that means that skinners that use #infoservice.feed.titles and show #infoservice.feed.img on the home screens should check if String.Equals(#infoservice.feed.isalltitles,false/true) for image control. and make a new one depending if all titles is shown or not. i have done it this way:

    Code:
    		<control>
    			<description>RSS default image</description>
    			<type>image</type>
    			<id>11117</id>
    			<posX>0</posX>
    			<posY>0</posY>
    			<width>80</width>
    			<height>80</height>
    			<keepaspectratio>yes</keepaspectratio>
    			<texture>InfoService\defaultTop.png</texture> <!-- default image when all titles is visible -->
    			<visible>Plugin.IsEnabled(InfoService)+String.Equals(#infoservice.feed.isalltitles,true)</visible>
    		</control>
    		<control>
    			<description>RSS image - InfoService</description>
    			<type>image</type>
    			<id>11118</id>
    			<posX>0</posX>
    			<posY>0</posY>
    			<width>120</width>
    			<height>80</height>
    			<keepaspectratio>yes</keepaspectratio>
    			<texture>#infoservice.feed.img</texture> <!-- image when the feed is selected -->
    			<visible>Plugin.IsEnabled(InfoService)+String.Equals(#infoservice.feed.isalltitles,false)</visible>
    		</control>
    Mh i think it would be better if InfoSerivce sets a default image for All Titles Ticker by itself, then it would be only one control.
     

    trevor

    Portal Pro
    October 17, 2006
    1,600
    950
    Chelmsford
    Home Country
    United Kingdom United Kingdom
    Re: InfoService v1.32 - 5 day weather/Feeds/Twitter on basic home [04-01-2010] *PLANN

    edsche,

    How close is this to release, we are getting close to a StreamedMP release and would be good to include support for this version.

    Thanks
     

    edsche

    Community Plugin Dev
    January 7, 2007
    606
    360
    38
    Ulm
    Home Country
    Germany Germany
    Re: InfoService v1.32 - 5 day weather/Feeds/Twitter on basic home [04-01-2010] *PLANN

    edsche,

    How close is this to release, we are getting close to a StreamedMP release and would be good to include support for this version.

    Thanks
    Mh for me and for some others, i assume (didn't heard a complain for the last build) it runs pretty good at the moment, so i think not far, need to do some skinning, documenting, fix little bugs and some code cleanup.
     

    kiwijunglist

    Super Moderator
  • Team MediaPortal
  • June 10, 2008
    6,746
    1,751
    New Zealand
    Home Country
    New Zealand New Zealand
    Re: InfoService v1.32 - 5 day weather/Feeds/Twitter on basic home [04-01-2010] *PLANN

    Have you thought about this as an enhancement option:

    Most RRS feeds have a link for each news item taking you to the full story.

    Instead of displaying the RSS feeds as a ticker, you display each item for 3 seconds as static text (scrolling if the item is longer than the feed width)

    In the skin the user can navigate to hover over the RSS feed, pressing enter will load the current news items link in your web browser plugin displaying the full story.

    While hover over the RSS feed the user can press a key (eg the arrow keys) to cycle forward/back between news items. That way if I saw a news item he wanted to read but missed the text he can press the left arrow to go back to that item, then press enter to load it into the web browser window.

    In the web browser plugin the user can press a button like a home button that takes the user to a selection screen. The selection screen has all the RSS news items and the user can up/down arrow over any of them and press enter to nagivate into that item. If the user has setup multiple RSS feeds, then the first selection item would be to choose a feed, then the 2nd selection item would display the list of all the news items with the option to display the full story by pressing enter.
     

    Users who are viewing this thread

    Similar threads

    Works also, removed the "section" entry from MediaPortal.xml ;) (y)
    Works also, removed the "section" entry from MediaPortal.xml ;) (y)
    This plugin is alternate version to the original World Weather plugin developed by @Micropolis. Is compatible with MediaPortal...
    Replies
    33
    Views
    6K
    That was the correction I made in BasicHome for the 1.35 Prerelease which you adddd to repo ;)
    That was the correction I made in BasicHome for the 1.35 Prerelease which you adddd to repo ;)
    I'm going bananas here!! Used MP1 since MP1.10 or so.....an haven't had problems for years! Am using latest Dune...
    Replies
    8
    Views
    592
    Well, currently the plugin shows the sun/moon times in user's local time. As you said, It would require to add time zone parameter to the profile. I'll try to add this option in the next version. PS: please use official thread
    Well, currently the plugin shows the sun/moon times in user's local time. As you said, It would require to add time zone parameter...
    I have the current (1.0.2.0 level) World Weather Lite plugins installed on x86 and x64 different MP1 copies. When Location is...
    Replies
    7
    Views
    1K
    thank you Sir, issue is definitely resolved now, i uninstalled the problematic MSE altogether, plus i also now have optimized EPG grabbing configuration, thanks again for all the assistance, wow so much faster on everything now that MSE is out of the picture...MP WAF is now restored and FetchTV STB sits in the corner collecting dust :)
    thank you Sir, issue is definitely resolved now, i uninstalled the problematic MSE altogether, plus i also now have optimized EPG...
    Long time MP user, and recently upgraded to MP1.34, prior to this upgrade, i have for many years successfully used MP with fast and...
    Replies
    20
    Views
    1K
    Hi, it looks like the Client's server connection settings got corrupted somehow and were reset, hopefully this is an easy fix. Open MP2-Client, navigate to Settings->General->Connectivity->Home server. In the menu on the left there may be an option Detach from home server, if there is click it and acknowledge the dialog that pops up...
    Hi, it looks like the Client's server connection settings got corrupted somehow and were reset, hopefully this is an easy fix...
    Help Please: MP doesnt display any of my previouse recordings or TV programs It seems like the Server isnt running? MP was working...
    Replies
    3
    Views
    550
    Top Bottom