Announce: v1.06 RC2 available for download.

View: New views
8 Messages — Rating Filter:   Alert me  

Announce: v1.06 RC2 available for download.

by Robert May-5 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I have made a second release candidate for V1.06 (1.06 RC2 aka
v1.05_91) available for download from:

http://www.robmay.me.uk/win32-gui-1-06-rc2

This release candidate (hopefully) fixes a number of issues that were
reported with RC1:

- Perl 5.8 PPM failed with perls earlier than 5.8.8
- 'Use of undefined value in subroutine entry' when using the WS_POPUP style
- 'Use of undefined value in subroutine entry (during global
destruction)' with Scintialla.

Please could those who reported problems with RC1 download again, and
confirm that their problems are resolved.

New reports, successful or otherwise, are welcome from anyone - please
reply to this thread.

We're getting very close to a V1.06 final release.

Regards,
Rob.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Perl-Win32-GUI-Hackers mailing list
Perl-Win32-GUI-Hackers@...
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-hackers
http://perl-win32-gui.sourceforge.net/

Re: Announce: v1.06 RC2 available for download.

by Jeremy White-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message



> Please could those who reported problems with RC1 download again, and
> confirm that their problems are resolved.
>
> New reports, successful or otherwise, are welcome from anyone - please
> reply to this thread.

The following errors have been fixed:

Can't call method "FETCH" on an undefined value during global destruction.
Callback called exit during global destruction.

Still have the scintilla issues - I should be able to do some debugging this weekend.

Cheers,

Jeremy.

_________________________________________________________________
Telly addicts unite!
http://www.searchgamesbox.com/tvtown.shtml
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Perl-Win32-GUI-Hackers mailing list
Perl-Win32-GUI-Hackers@...
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-hackers
http://perl-win32-gui.sourceforge.net/

Re: Announce: v1.06 RC2 available for download.

by Jeremy White-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message



> Still have the scintilla issues - I should be able to do some debugging this weekend.
>

Ok - found the problem:


http://perl-win32-gui.cvs.sourceforge.net/perl-win32-gui/Win32-GUI/Win32-GUI-Scintilla/Scintilla.PL?r1=1.5&r2=1.6

Scroll down to line 466:

print '  my $lenght = $self->GetTextLength() + 1;', "\n";

changes to:

print '  my $length = $self->SendMessageNN(2182, 0, 0); # includes trailing NUL', "\n";

But the method SendMessageNN doesn't exists in the XS module.

Not to sure what the fix should be - a typo in the send message method name or should there be a method called SendMessageNN in the XS module?

Cheers,

jez.
_________________________________________________________________
Free games, great prizes - get gaming at Gamesbox.
http://www.searchgamesbox.com
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Perl-Win32-GUI-Hackers mailing list
Perl-Win32-GUI-Hackers@...
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-hackers
http://perl-win32-gui.sourceforge.net/

Re: Announce: v1.06 RC2 available for download.

by Robert May-5 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On 09/02/2008, Jeremy White <jez_white@...> wrote:

> Ok - found the problem:
>
> Scintilla.PL line 466:
>
> print '  my $lenght = $self->GetTextLength() + 1;', "\n";
>
> changes to:
>
> print '  my $length = $self->SendMessageNN(2182, 0, 0); # includes trailing NUL', "\n";
>
> But the method SendMessageNN doesn't exists in the XS module.
>
> Not to sure what the fix should be - a typo in the send message method name
> or should there be a method called SendMessageNN in the XS module?

Typo. That should be SendMessage rather SendMessageNN.

Fix on its way to CVS now.

Many thanks for taking the time to investigate this.  Is that all your
issues dealt with?

Regards,
Rob.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Perl-Win32-GUI-Hackers mailing list
Perl-Win32-GUI-Hackers@...
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-hackers
http://perl-win32-gui.sourceforge.net/

Re: Announce: v1.06 RC2 available for download.

by Jeremy White-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message



> Typo. That should be SendMessage rather SendMessageNN.
>
> Fix on its way to CVS now.
>
> Many thanks for taking the time to investigate this. Is that all your
> issues dealt with?

Yep, should be. Once the fix is in I will have to do more testing as the scintillia issue was blocking some functionality - but it looks good:)

Cheers,

jez.


_________________________________________________________________
Telly addicts unite!
http://www.searchgamesbox.com/tvtown.shtml
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Perl-Win32-GUI-Hackers mailing list
Perl-Win32-GUI-Hackers@...
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-hackers
http://perl-win32-gui.sourceforge.net/

Re: Announce: v1.06 RC2 available for download.

by Robert May-5 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On 09/02/2008, Jeremy White <jez_white@...> wrote:
>> Typo. That should be SendMessage rather SendMessageNN.
>>
>>  Is that all your issues dealt with?
>
> Yep, should be. Once the fix is in I will have to do more testing
> as the scintillia issue was blocking some functionality - but it looks good:)

Fix is in CVS now.  Thanks for your time.
Rob.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Perl-Win32-GUI-Hackers mailing list
Perl-Win32-GUI-Hackers@...
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-hackers
http://perl-win32-gui.sourceforge.net/

Re: Announce: v1.06 RC2 available for download.

by Jeremy White-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message



>> Yep, should be. Once the fix is in I will have to do more testing
>> as the scintillia issue was blocking some functionality - but it looks good:)
>
> Fix is in CVS now. Thanks for your time.
> Rob.

Done some more testing - had an issue where I was manually removing the linefeed characters after this method was called - this resulted in the text being truncated by two chars. Changed my code and it seems fine.

Thanks for committing the fix.

Cheers,

jez.

_________________________________________________________________
Share what Santa brought you
https://www.mycooluncool.com
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Perl-Win32-GUI-Hackers mailing list
Perl-Win32-GUI-Hackers@...
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-hackers
http://perl-win32-gui.sourceforge.net/

Re: Announce: v1.06 RC2 available for download.

by Robert May-5 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On 09/02/2008, Jeremy White <jez_white@...> wrote:
> Done some more testing - had an issue where I was manually removing the linefeed
> characters after this method was called - this resulted in the text being truncated
> by two chars. Changed my code and it seems fine.


So it seems like all the reported issues have been dealt with.  I'll
give it a couple more days and then make a 1.06 release.

Rob.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Perl-Win32-GUI-Hackers mailing list
Perl-Win32-GUI-Hackers@...
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-hackers
http://perl-win32-gui.sourceforge.net/
LightInTheBox - Buy quality products at wholesale price!