WifiRemote - a tcp remote control server 0.8.3 [2014-07-20] (7 Viewers)

hdforme

Portal Member
June 3, 2010
11
1
Re: WifiRemote - a tcp remote control server 0.4 [2011-08-04]

Hallo Shukuyen and cederron,

sorry my english is very bad :sorry: ...

I see your code (File: WifiRemote.cs)

public void Start()
{
// Check if TV plugin is installed
WifiRemote.IsAvailableTVPlugin = IsAssemblyAvailable("TVPlugin", new Version(1, 0, 0, 0));
........
........


}

The Name "TVPlugin" is case-insensitive... Correct is "TvPlugin" (in my Mediaportal Version) -> a little "v"...
The Compare "==" is case-insensitive

but you can change in "internal static bool IsAssemblyAvailable(string name, Version ver)" :

Old:
if (a.GetName().Name == name)

New:
if (System.String.Compare (a.GetName().Name, name, true) == 0)

but is slower ;)



nice day and sorry for my english ;(

hdforme
 

Shukuyen

Community Plugin Dev
  • Premium Supporter
  • May 8, 2008
    557
    300
    Lake of Constance
    Home Country
    Germany Germany
    • Thread starter
    • Moderator
    • #82
    Re: WifiRemote - a tcp remote control server 0.4 [2011-08-04]

    The Name "TVPlugin" is case-insensitive... Correct is "TvPlugin" (in my Mediaportal Version) -> a little "v"...
    The Compare "==" is case-insensitive


    Nice, thanks!
    I will integrate that tonight and release bugfix update.
     

    mylle

    Portal Pro
    April 14, 2005
    574
    66
    Denmark
    Home Country
    Denmark Denmark
    Re: WifiRemote - a tcp remote control server 0.4.1 [2011-08-19]

    Hi

    im trying to install this on latest SVN 1.1.8.28144 but im getting a dependency check error. I know this is probebly because of the 1.2 rc numbering but is there anyway to get around that or will i just have to wait until 1.2rc is released on monday and wifi remote updated?

    regards
    Jacob
     

    Shukuyen

    Community Plugin Dev
  • Premium Supporter
  • May 8, 2008
    557
    300
    Lake of Constance
    Home Country
    Germany Germany
    • Thread starter
    • Moderator
    • #85
    Re: WifiRemote - a tcp remote control server 0.4.1 [2011-08-19]

    Hi Jacob,

    I see no reason why it shouldn't work with 1.2 rc if you are using WifiRemote for 1.2 beta. In this version we have the required compatibility check (if nothing was changed here).
     

    DieBagger

    Retired Team Member
  • Premium Supporter
  • September 11, 2007
    2,516
    1,276
    40
    Austria
    Home Country
    Austria Austria
    Re: WifiRemote - a tcp remote control server 0.4.1 [2011-08-19]

    Hi Jacob,

    I see no reason why it shouldn't work with 1.2 rc if you are using WifiRemote for 1.2 beta. In this version we have the required compatibility check (if nothing was changed here).

    There has been a change, we need to re-save the mpei file with the updated mpemaker...
     

    Shukuyen

    Community Plugin Dev
  • Premium Supporter
  • May 8, 2008
    557
    300
    Lake of Constance
    Home Country
    Germany Germany
    • Thread starter
    • Moderator
    • #87
    Re: WifiRemote - a tcp remote control server 0.4.1 [2011-08-19]

    I see ... can you do that? I don't have the RC yet. Also we should start using the update.xml thingy :)
     

    olli14

    Portal Pro
    December 17, 2008
    740
    35
    Home Country
    Germany Germany
    AW: WifiRemote - a tcp remote control server 0.4.1 [2011-08-19]

    Hello,
    yesterday I installed the WifiRemote Plugin on my htpc. Then I started "Mediaportal Configuration" and then I wanted to configure the WifiRemote plugin. Everything looked fine so far. I was able to start the configuration of WifiRemote plugin. But inside the WifiRemote configuration I stopped working somewhere and exit the configuration again without changing any parameter. Now I'm not able to start the configuration of WifiRemote plugin anymore. I get an error screen with something like "JIT.. error ..key ..." and so on.
    What can I do?

    olli14
     

    Shukuyen

    Community Plugin Dev
  • Premium Supporter
  • May 8, 2008
    557
    300
    Lake of Constance
    Home Country
    Germany Germany
    • Thread starter
    • Moderator
    • #89
    Re: WifiRemote - a tcp remote control server 0.4.1 [2011-08-19]

    Hi olli14,

    please zip and post your MediaPortal log folder, thanks!
     

    olli14

    Portal Pro
    December 17, 2008
    740
    35
    Home Country
    Germany Germany
    AW: WifiRemote - a tcp remote control server 0.4.1 [2011-08-19]

    Sorry, but I could not imagine that in this case the logs helps.
    Attached my log.

    olli14
     

    Users who are viewing this thread

    Top Bottom