MediaPortal SVN-Snapshot:-09-14-2008 15-54h - Revision:20227.rar (2 Viewers)

MediaPortal-Bot

Worlds greatest bot!
March 26, 2007
3,715
180
Home Country
Germany Germany
Infos:
These Subversion-snaps are compiled automatically, every week on friday.
They are not pre-tested, so please use the backup option from time to time.
If you'd like the bleeding edge code and don't mind the inherent risks, upgrade to the snapshot releases as they become available.
If stability is important to you, you might want to stay with the fully-tested releases.​

Report Issues / Bugs:
  1. Before you start an bugreport, make sure that you system meets the ::requirements::
  2. After you checked the requirements, take a look at our ::Bugtracker::, to find out if your issue has allready been reported.
    Roadmap/Changelog: MediaPortal 1 - TV-Server - Installers
  3. If the Problem is not known yet, please have a look at the correct Bugreport forum.

How to install MediaPortal SVN-Snapshots in short:
  1. Install MediaPortal 1.0 RC2, not necessary if already done
  2. Run the Snapshot-Installer. You should create a backup.
  3. Run Configure. Sometimes the settings and database versions change from build to build, so you have to reconfigure your TV for example
  4. Hopefully enjoy the new version
  5. If not, restore your old files and you will have the former version back.

 

MediaPortal-Bot

Worlds greatest bot!
March 26, 2007
3,715
180
Home Country
Germany Germany
===> DOWNLOAD <===


This thread is open to everyone to provide feedback for this particular snapshot.
If you found or confirm a bug please still open a single thread with full details in the related Bugsection. See first post for details.
 

iosub

Portal Pro
April 26, 2006
573
30
San Sebastian
HI,...

I have download this svn, and so far is working great.. I have a question--
can anyone explaing what is "gemx : Added 4 new properties and the ability to zoom the focused item"???

Thanks!!
 

kuku

Portal Member
May 7, 2008
33
3
The resolution issue when using WMR9 on a secondary screen is still there. Oh, well, I am going back to the 22 August SVN.
 

gemx

Retired Team Member
  • Premium Supporter
  • October 31, 2006
    1,972
    539
    Home Country
    Germany Germany
    HI,...

    I have download this svn, and so far is working great.. I have a question--
    can anyone explaing what is "gemx : Added 4 new properties and the ability to zoom the focused item"???

    Thanks!!

    Just some new properties for the icon view
     

    gloomyandy

    MP Donator
  • Premium Supporter
  • September 15, 2006
    424
    14
    63
    Home Country
    United Kingdom United Kingdom
    Hi GemX,
    Can you comment on the expected state of ITV-HD support in this build? I think you have made some changes, but it is not clear if you have simply removed the ITV-HD support or fixed the issue introduced with the dynamic pic stuff...

    Thanks

    Andy
     

    thunder

    Portal Pro
    February 1, 2007
    117
    8
    Can you fix this problem? :

    There are actually two problems with MP and Premiere (encrypted channels in general).
    A) the code that compares the FTA flag from the database and the scrambled flag from the parser is wrong.
    B) The FTA flag is not set correct in the database.

    Both problems occur because the scrambled identification of MP does not work reliable for Premiere

    On B) you can check if all the Premiere channels show up in TvChannel in red. The sportportal option channels are wrongly recognized as FTA and show up in green. To correct this you can set the FTA flag to false in the DB to correct this. You need to change "freeToAir" in Channel AND TuningDetail.

    It may work after, if it still doesn't work then its because of A). To fix this you need change MP code (or find a developer to do this ;))
    The problem is in
    class TvDvbChannel
    protected bool SendPmtToCam(out bool updatePids)
    Line:
    if (_channelInfo.scrambled = channel.FreeToAir) :oops:

    this of course should be
    if (_channelInfo.scrambled == channel.FreeToAir)

    In our code we changed this to
    Code:
    if (_channelInfo.scrambled == channel.FreeToAir)
    {
    	// XXX JIT we use the FreeToAir setting as reference now and set the _channelInfo.scrambled accordingly
    	_channelInfo.scrambled = !channel.FreeToAir;
    	Log.Log.WriteFile("TvDvbChannel.SendPmtToCam() corrected setting _channelInfo.scrambled {0} , channel.FreeToAir {1}", _channelInfo.scrambled, channel.FreeToAir);
    }

    so that the FTA setting from the DB is the reference and the unreliable "scrambled" flag is adjusted if they mismatch.
    We also patched the scanning so that Premiere option channels are recognized as scrambled.
    Code:
    if (dvbsChannel.NetworkId == 133 && dvbsChannel.Name.StartsWith("Unknown")) {
    	Log.Log.Write("JIT: set PREMIERE subchannel FTA to false for logChannelNumber {0}", dvbsChannel.LogicalChannelNumber);
    	dvbsChannel.FreeToAir = false;
    }

    If a developer reads this: it would be nice to find out why for some premiere channels freeCAMode is not set correct. I volunteer to test, since I have all Premiere channels available, please contact me direct.
     

    Users who are viewing this thread

    Top Bottom