*ORIGINAL THREAD* InfoService v1.6 - Feed reader/Twitter reader and weather (7 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
    39
    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
    39
    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,601
    952
    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
    39
    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,743
    1,754
    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

    I saw there is a plugin section, can be moved there?
    I saw there is a plugin section, can be moved there?
    Hello, for a few days I get an error within Mediaportal when I put the RSS link to trakt calendar. If I insert this link into...
    Replies
    1
    Views
    1K
    He left the team and deleted his Github repositories, I don't know the reason. But it already happened.
    He left the team and deleted his Github repositories, I don't know the reason. But it already happened.
    This plugin is alternate version to the original World Weather plugin developed by @Micropolis. Is compatible with MediaPortal...
    Replies
    39
    Views
    18K
    If you’re planning to submit a pull request, let’s go through the list of issues and their solutions. I or someone from the team will create a Jira ticket, and for each ticket, you’ll make the changes and submit a pull request. This will be transparent and straightforward.
    If you’re planning to submit a pull request, let’s go through the list of issues and their solutions. I or someone from the team...
    I'm very glad to see that mediaportal 1 is on github, where ordinary devs with github accounts can make contributions. Please can...
    Replies
    7
    Views
    1K
    Ok, thanks much. I will look into the instructions above. For the moment, I turned off the "Automatic channel logo update" in Settings (which somehow I had missed, I think because it wasn't an option previously), and the deleted everything in the Flat-default folder and populated it with my own logos. Works, so far.
    Ok, thanks much. I will look into the instructions above. For the moment, I turned off the "Automatic channel logo update" in...
    Hi-- I have to revisit an old issue, unfortunately. I just downloaded MP 2.5, a fresh installation, on a new computer (reluctantly...
    Replies
    5
    Views
    2K
    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
    3K
    Top Bottom