Page 1 of 1

New release 0.4.1.r1568 is out !

Posted: Thu Apr 05, 2012 7:10 am
by Pako
I hope that to the new version I included everything I promised.
If I forgot something, I apologize.
In this case, do not hesitate to tell me.
I'll fix that and soon will release a new version.

Pako

Re: New release 0.4.1.r1568 is out !

Posted: Thu Apr 05, 2012 3:42 pm
by scottbakertemp
Are there release notes anywhere?

thanks for all the hard work,
-Scott

Re: New release 0.4.1.r1568 is out !

Posted: Thu Apr 05, 2012 4:18 pm
by Pako
scottbakertemp wrote:Are there release notes anywhere?
Unfortunately, no.
The only option is to browse the SVN repository and read comments.

Pako

Re: New release 0.4.1.r1568 is out !

Posted: Sat Apr 07, 2012 3:07 pm
by scissors
Thanks for this! :)

BTW, while looking in WinUsb.py earlier, I noticed GetDevicePathes & ListDevices may be missing a call to SetupDiDestroyDeviceInfoList at the end.

Re: New release 0.4.1.r1568 is out !

Posted: Tue Apr 17, 2012 6:16 pm
by scissors
The change in UndoHandler/Configure.py seems to be causing a hang in EventGhost when I edit any Jump (Jump If Long, Jump if Double or plain Jump) action. Adding a new Jump is OK, but if I right-click Configure, I get an immediate hang.

If I revert back to the old code, it works again.

Re: New release 0.4.1.r1568 is out !

Posted: Sun Apr 22, 2012 9:52 am
by vuego
Hey, I got the same issue as scissors. As soon as I double click a Jump macro, EventGhost enters a Not responding state :(

Attached an example if needed. Just double click the Jump macro and EventGhost hangs.

EventGhost 0.4.1.r1544 does not have this problem.

Re: New release 0.4.1.r1568 is out !

Posted: Sun Jun 03, 2012 9:46 am
by altainta
Yes i agree too
It goes into not responding mode or i can say program hangs
kindly resolve the bug @pako thank you for your work...

Re: New release 0.4.1.r1568 is out !

Posted: Wed Jun 13, 2012 1:58 am
by scissors
If anyone wants a temporary work-around for the jump hang bug, reverting back to the old code worked for me...

Edit EventGhost\eg\Classes\UndoHandler\Configure.py with a text editor and look for:

Code: Select all

        #oldArgs = newArgs = ActionThreadFunc(item.GetArguments)()
        newArgs = ActionThreadFunc(item.GetArguments)() # bugfix: http://www.eventghost.net/forum/viewtopic.php?f=4&t=3676
        oldArgs = cpy(newArgs)                          # bugfix
Change it to a single line:

Code: Select all

        oldArgs = newArgs = ActionThreadFunc(item.GetArguments)()
Python is sensitive about indentiation, so be careful and don't add or remove extra spaces or tabs.

After editing, restart EventGhost.

Re: New release 0.4.1.r1568 is out !

Posted: Fri Jun 15, 2012 9:30 pm
by abraxxa
Why has the Guid of the XMBC2 plugin changed from 2DD98E35-F060-4444-9F11-168CD8131A6B to 8C8B850C-773F-4583-AAD9-A568262B7933?

Also the current version 0.06 of my Onkyo ICP plugin isn't included but the older 0.04. Please include the current version from git in the next release, thanks!

Re: New release 0.4.1.r1568 is out !

Posted: Sat Jun 30, 2012 3:18 pm
by jonib
abraxxa wrote:Why has the Guid of the XMBC2 plugin changed from 2DD98E35-F060-4444-9F11-168CD8131A6B to 8C8B850C-773F-4583-AAD9-A568262B7933?
It was conflicting with the old XBMC plugin, see commit here.

jonib