mwheelerjr / mptvseries

Automatically exported from code.google.com/p/mptvseries
0 stars 0 forks source link

MP 1.2.0 Beta SVN28064/MP-TVSeries v3.0.4.1774 - Playback is broken #591

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
MediaPortal 1.2.0 Beta SVN28064 
MP-TVSeries v3.0.4.1774

Hi MP-TVSeries Devs! 

With MediaPortal 1.2.0 Beta SVN28064 & MP-TVSeries v3.0.4.1774 playback seems 
to be broken! Steps to reproduce: 

1. Start MP! 
2. Go to MP-TVSeries 
3. Select an episode and press OK on remote -> 
4. exspected: Episode starts playing 
5. but nothing happens! 

MP-TVSeries Log entry: 

00000001 - 19.07.2011 12:01:21 - Episode Clicked: 73508_2x6
00000001 - 19.07.2011 12:01:21 - Attempting to play: K:\TV - Serien 
(K)\Rom\Staffel 2\Rom - S02E06 - Philippi.mkv
00000001 - 19.07.2011 12:01:22 - TVSeriesPlugin.VideoHandler.ResumeOrPlay()
System.MissingMethodException: Methode nicht gefunden: "Boolean 
MediaPortal.GUI.Video.GUIVideoFiles.MountImageFile(Int32, System.String)".
   bei WindowPlugins.GUITVSeries.VideoHandler.Play(Int32 timeMovieStopped)
   bei WindowPlugins.GUITVSeries.VideoHandler.ResumeOrPlay(DBEpisode episode) 

Playback in MyVideo is working fine, logs are attached! 

Best regards 

Helios 

Debug Logs -> 
http://forum.team-mediaportal.com/attachments/my-tvseries-162/85435d1311070513-m
ediaportal-tvseries-v3-0-4-release-22-jun-2011-requires-mediaportal-1-2-beta-med
iaportallogs_19_07_11__12_01.zip

Original issue reported on code.google.com by Michael....@googlemail.com on 19 Jul 2011 at 11:12

GoogleCodeExporter commented 9 years ago

Original comment by damien.haynes@gmail.com on 19 Jul 2011 at 1:45

GoogleCodeExporter commented 9 years ago
Fixed by MP Dev's in SVN28075! 

Original comment by Michael....@googlemail.com on 20 Jul 2011 at 7:15

GoogleCodeExporter commented 9 years ago
Great, so it was an uninintentional API change?

Original comment by damien.h...@cognethos.com on 21 Jul 2011 at 12:05

GoogleCodeExporter commented 9 years ago
I see that an override has been added to get to new method.

Original comment by damien.haynes@gmail.com on 21 Jul 2011 at 1:20

GoogleCodeExporter commented 9 years ago
Hi damien! 

[QUOTE=SilentException]

Since SVN r28063, interface of the method is changed:

GUIVideoFiles.cs

public static bool MountImageFile(int WindowID, string file) ->
public static bool MountImageFile(int WindowID, string file, bool requestPin)

Since we better not be changing public method interfaces in this stage of 
release, fix is easy, just create method with old interface as "gateway" to new 
one: 

[CODE] 
public static bool MountImageFile(int WindowID, string file)
{
  return MountImageFile(WindowID, file, false);
}

[/CODE] 
[/QUOTE]

Original comment by Michael....@googlemail.com on 21 Jul 2011 at 6:01