Re: [gwt-contrib] Re: GWT 2.8 RC1 Help with testing

2016-07-21 Thread Brandon Donnelson
I was trying to test the Maven samples, although each one of them seem to 
have some sort of issue. Could be I'm missing a step, or maybe some code 
configuration tuning is needed. I haven't noticed any blockers or other 
issues outside of that for IE9 on Win7. I'll aim for another browser 
tomorrow. 

I'm assuming that mvn gwt:run doesn't exist b/c I don't see it in the goals 
list, so I'm wondering what's the best testing goal for the smoke test. 

-Brandon

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/a3772510-e65f-4aaa-9005-035708449bec%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Re: GWT 2.8 RC1 Help with testing

2016-07-21 Thread 'Daniel Kurka' via GWT Contributors
submitting thomas two fixes and then recutting.

On Thu, Jul 21, 2016 at 12:57 PM Brandon Donnelson 
wrote:

> Where's the link to the GWT 2.8.0-rc1.zip?
>
>
> On Thursday, July 21, 2016 at 7:22:11 AM UTC-7, Thomas Broyer wrote:
>>
>>
>>
>> On Thursday, July 21, 2016 at 4:11:09 PM UTC+2, Michael Joyner wrote:
>>>
>>> Can it be tagged and pulled via jitpack.io ?
>>>
>>
>> Ha ha, jitpack wouldn't know how to build and deploy it:
>> https://jitpack.io/docs/BUILDING/
>> …and the RC1 tag can still "move" if we find bugs during the smoke tests
>> (it **would** move, as I found small issues, e.g.
>> https://gwt-review.googlesource.com/15445)
>>
>> Ideally, you should use the gwt-2.8.0-rc1.zip provided by Daniel as input
>> to the maven/push-gwt.sh script from the GWT repo (select 2.8.0-rc1 and
>> 1.0.0 for gwt and jsinterop versions respectively)
>> Currently, 2.8.0-SNAPSHOT are the same as 2.8.0-rc1, so you could also
>> use that (but if you're planning on doing formal DOA/smoke tests before the
>> RC1 release, you should use the maven/push-gwt.sh script)
>>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Contributors" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit-contributors/80338352-9133-4404-ad51-8147b01431d7%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/CALLujirqzV-%3DKrfRwL-WF80dcsYunQUszEYqsQtAT7K99hfQcg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Re: GWT 2.8 RC1 Help with testing

2016-07-21 Thread Brandon Donnelson
Where's the link to the GWT 2.8.0-rc1.zip? 

On Thursday, July 21, 2016 at 7:22:11 AM UTC-7, Thomas Broyer wrote:
>
>
>
> On Thursday, July 21, 2016 at 4:11:09 PM UTC+2, Michael Joyner wrote:
>>
>> Can it be tagged and pulled via jitpack.io ?
>>
>
> Ha ha, jitpack wouldn't know how to build and deploy it: 
> https://jitpack.io/docs/BUILDING/
> …and the RC1 tag can still "move" if we find bugs during the smoke tests 
> (it **would** move, as I found small issues, e.g. 
> https://gwt-review.googlesource.com/15445)
>
> Ideally, you should use the gwt-2.8.0-rc1.zip provided by Daniel as input 
> to the maven/push-gwt.sh script from the GWT repo (select 2.8.0-rc1 and 
> 1.0.0 for gwt and jsinterop versions respectively)
> Currently, 2.8.0-SNAPSHOT are the same as 2.8.0-rc1, so you could also use 
> that (but if you're planning on doing formal DOA/smoke tests before the RC1 
> release, you should use the maven/push-gwt.sh script)
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/80338352-9133-4404-ad51-8147b01431d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Re: Experimental release of Elemental2

2016-07-21 Thread Steve Andrews
I've been trying out the new Elemental and have been having trouble with 
EventListener. I'm on the latest GWT Snapshot (2.8.0-20160721.060317-297). 
It seems that the EventListener gets compiled out unless I use the 
Node.AddEventListenerListenerCallback function. Example:

searchButton.addEventListener("click",e -> doSearch());

This gets compiled out and never gets called.

searchButton.addEventListener("click", e-> {doSearch();return true;});

This works using the AddEventListenerListenerCallback function.

I've tried compiling with and without the -generateJsInteropExports flag 
and get the same result. I was using an earlier GWT snapshot version (end 
of June) until a few days ago and didn't get the problem with that version.

Any ideas or is this a bug?
Thanks
Steve

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/d45cdcdb-ab18-442a-b7e6-11f1ff2cbba9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Re: GWT 2.8 RC1 Help with testing

2016-07-21 Thread Michael Joyner

  
  
Can it be tagged and pulled via jitpack.io ?


On 07/20/2016 05:57 PM, 'Daniel Kurka'
  via GWT Contributors wrote:


  We just fixed a bug in rc1, I'll redo the release
now and give you guys a download link.
  
  
On Wed, Jul 20, 2016 at 10:18 AM Manuel Carrasco
  Moñino 
  wrote:


  I don't see 2.8.0-rc1 anywhere,  what is the
branch/tag/commit cut I have to use ? 
  

  


  




-- 
You received this message because you are subscribed to the Google Groups "GWT Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit-contributors/14b629fa-5a0c-3d34-afc5-410ae30c1c59%40newsrx.com.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Re: GWT 2.8 RC1 Help with testing

2016-07-21 Thread Thomas Broyer
FWIW, I did all my testing with a JDK 7 (and some also with a JDK 8)

On Wednesday, July 20, 2016 at 11:57:15 PM UTC+2, Daniel Kurka wrote:
>
> We just fixed a bug in rc1, I'll redo the release now and give you guys a 
> download link.
>
> On Wed, Jul 20, 2016 at 10:18 AM Manuel Carrasco Moñino  
> wrote:
>
>> I don't see 2.8.0-rc1 anywhere,  what is the branch/tag/commit cut I have 
>> to use ? 
>>
>> El mié., 20 jul. 2016 a las 19:07, Manuel Carrasco Moñino (<
>> man...@apache.org>) escribió:
>>
>>> I can help with windows testing as well on Friday.
>>> Brandon let me know what platforms are you going to test, I have XP with 
>>> IE8, Win8 IE10, and Win8.1 IE11,  ready machines with everything set for 
>>> GWT, but I don't have any win7 
>>>
>>> - Manolo
>>>
>>> El mié., 20 jul. 2016 a las 17:41, Brandon Donnelson (<
>>> branflake2...@gmail.com>) escribió:
>>>
 I can work on some of the windows testing. I've scheduled time for 
 Thursday and will continue on Friday if needed. 


 https://docs.google.com/spreadsheets/d/1DmF8V3fSxN1N2UgQ9zToZz6xCwtx53lOSy8_u1xTC6Q

 -Brandon

 On Wednesday, July 20, 2016 at 1:53:36 AM UTC-7, Thomas Broyer wrote:
>
> I'll test on Linux / Chrome.
>
> On Wednesday, July 20, 2016 at 3:09:08 AM UTC+2, Daniel Kurka wrote:
>>
>> Hi all,
>>
>> we have build the preliminary GWT 2.8.0-rc1 version and now need help 
>> with DOA testing (making sure its not dead on arrival).
>>
>> We are currently missing testers for:
>>
>> Linux / Chrome
>> Windows 7 / IE8/IE9
>> Windows 7 / IE 10
>> Windows 7 / IE 11
>>
>> If you are interested in spending ~1h in testing the new GWT release, 
>> please reach out to me.
>>
>> -Daniel
>>
>> -- 
 You received this message because you are subscribed to the Google 
 Groups "GWT Contributors" group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to 
 google-web-toolkit-contributors+unsubscr...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/google-web-toolkit-contributors/0c51fdb5-2f3d-4952-ada2-b9c9fdeffd7d%40googlegroups.com
  
 
 .
 For more options, visit https://groups.google.com/d/optout.

>>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "GWT Contributors" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-web-toolkit-contributors/CAM28XAuVBry6rGTbF_RuCAKv_9SXogPvVKrvoQWaCjkEfy%3D%3DBA%40mail.gmail.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/12488c07-57b1-4371-b29d-f11bcdc251e2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.