Re: [gwt-contrib] Re: GWT 2.7.0-RC1 is available

2014-10-31 Thread 'Ray Cromwell' via GWT Contributors
Thomas is talking about memory on the mobile device. Safari on iOS only has about 512mb of heap to work with IIRC. You could be loading in 50-100Mb of generated JS, slowing down the mobile browser a lot. I would develop using SDM and Chrome emulation in the desktop browser, or use XCode's iOS emul

[gwt-contrib] Re: GWT 2.7.0-RC1 is available

2014-10-31 Thread confile
Hi Daniel, while working with GWT 2.7RC1, GWTP and GWT-PhoneGap I found the following problem. In my application I use the REST module from GWTP. SDM works, but when I change one line to trigger a recompile I get the following error. I can be sure that there is no error in my code because when

Re: [gwt-contrib] Re: GWT 2.7.0-RC1 is available

2014-10-31 Thread confile
Which kind of memory do you mean? Compile works fine it has -Xmx1024m. Am Freitag, 31. Oktober 2014 15:49:16 UTC+1 schrieb Thomas Broyer: > > > > On Friday, October 31, 2014 10:22:41 AM UTC+1, confile wrote: >> >> Hi Daniel, >> >> this (https://github.com/mgwt/mgwt/wiki/SuperDevMode-with-PhoneGa

Re: [gwt-contrib] Re: GWT 2.7.0-RC1 is available

2014-10-31 Thread Thomas Broyer
On Friday, October 31, 2014 10:22:41 AM UTC+1, confile wrote: > > Hi Daniel, > > this (https://github.com/mgwt/mgwt/wiki/SuperDevMode-with-PhoneGap) is > what I did. Super dev mode is working. I get a recompile after reload that > is working. > > In my app I have a long list with images. When

Re: [gwt-contrib] Re: GWT 2.7.0-RC1 is available

2014-10-31 Thread confile
Ah okay I see what you mean. I used SDM for my test. Am Freitag, 31. Oktober 2014 11:26:08 UTC+1 schrieb Daniel Kurka: > > prod = production = optimized. > > SDM in incremental code does not do any optimizations. Normal GWT compiles > optimize a lot. > > On Fri, Oct 31, 2014 at 10:36 AM, confile

Re: [gwt-contrib] Re: GWT 2.7.0-RC1 is available

2014-10-31 Thread 'Daniel Kurka' via GWT Contributors
prod = production = optimized. SDM in incremental code does not do any optimizations. Normal GWT compiles optimize a lot. On Fri, Oct 31, 2014 at 10:36 AM, confile wrote: > @Daniel Sorry for my stupid question but what is the difference? How do I > do prod compiles or SDM compiles? > > > > Am F

Re: [gwt-contrib] Re: GWT 2.7.0-RC1 is available

2014-10-31 Thread confile
@Daniel Sorry for my stupid question but what is the difference? How do I do prod compiles or SDM compiles? Am Freitag, 31. Oktober 2014 10:32:39 UTC+1 schrieb Daniel Kurka: > > Are you comparing prod compiles or SDM compiles? > > On Fri, Oct 31, 2014 at 10:22 AM, confile > wrote: > >> Hi Dani

Re: [gwt-contrib] Re: GWT 2.7.0-RC1 is available

2014-10-31 Thread 'Ray Cromwell' via GWT Contributors
SDM 2.6 was not incremental, it actually pruned code. If you want the same behavior in 2.7, you'll have to disable incremental compilation in SDM. This will increase compile times, but probably make the JS smaller. However, prod compiles in 2.6 vs 2.7 should have no performance regression, if anyt

Re: [gwt-contrib] Re: GWT 2.7.0-RC1 is available

2014-10-31 Thread 'Daniel Kurka' via GWT Contributors
Are you comparing prod compiles or SDM compiles? On Fri, Oct 31, 2014 at 10:22 AM, confile wrote: > Hi Daniel, > > this (https://github.com/mgwt/mgwt/wiki/SuperDevMode-with-PhoneGap) is > what I did. Super dev mode is working. I get a recompile after reload that > is working. > > In my app I hav

Re: [gwt-contrib] Re: GWT 2.7.0-RC1 is available

2014-10-31 Thread confile
Hi Daniel, this (https://github.com/mgwt/mgwt/wiki/SuperDevMode-with-PhoneGap) is what I did. Super dev mode is working. I get a recompile after reload that is working. In my app I have a long list with images. When I scroll down the app freezes when the scrolling reaches a point where new i

Re: [gwt-contrib] Re: GWT 2.7.0-RC1 is available

2014-10-31 Thread 'Daniel Kurka' via GWT Contributors
You are comparing apples and oranges here. SDM compiles are not optimized, thus much bigger. If you want to compare performance you will need to do an optimized compile. The SDM setup in my blog post is now outdated, here is how you use SDM with Phonegap in 2.7: https://github.com/mgwt/mgwt/wiki/S

Re: [gwt-contrib] Re: GWT 2.7.0-RC1 is available

2014-10-31 Thread confile
I use iOS7 and Super dev mode as described by Daniel here . I use -strict -XjsInteropMode JS and output style detailed to compile the code for the PhoneGap container. Am Freitag, 31. Oktober 2014 01:02:58 UTC+1 schrieb Ray Cromwell

Re: [gwt-contrib] Re: GWT 2.7.0-RC1 is available

2014-10-30 Thread 'Ray Cromwell' via GWT Contributors
I am not aware of any changes in 2.7 that should effect performance loading images. Are you running on iOS7 or iOS8? Daniel would probably be best able to help you. Are you talking about SuperDevMode loading performance, or fully optimized compile loading performance? On Thu, Oct 30, 2014 at 2:2

Re: [gwt-contrib] Re: GWT 2.7.0-RC1 is available

2014-10-30 Thread 'Brian Slesinsky' via GWT Contributors
Release notes are here: http://www.gwtproject.org/release-notes.html#Release_Notes_2_7_0_RC1 -- 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-toolk

Re: [gwt-contrib] Re: GWT 2.7.0-RC1 is available

2014-10-30 Thread 'Roberto Lublinerman' via GWT Contributors
Yes. Will be fixed before final release. On Thu, Oct 30, 2014 at 2:23 PM, jay wrote: > I'll give that a try... > > Will the issue be handled before the final release? > > jay > > On Thursday, October 30, 2014 11:47:54 AM UTC-7, Roberto Lublinerman wrote: >> >> There seems that some assertions in

[gwt-contrib] Re: GWT 2.7.0-RC1 is available

2014-10-30 Thread confile
I compared my GWT-PhoneGap written in GWT 2.6.1 which switching to GWT 2.7beta. Here are my experience. I feel that loading of data especially images are much slower in GWT 2.7 than in GWT 2.6.1. I tested it on an iPhone 5. Due to the delay in loading the app feels slow and scrolling does not w

Re: [gwt-contrib] Re: GWT 2.7.0-RC1 is available

2014-10-30 Thread jay
I'll give that a try... Will the issue be handled before the final release? jay On Thursday, October 30, 2014 11:47:54 AM UTC-7, Roberto Lublinerman wrote: > > There seems that some assertions in UnifyAST are not being satisfied in > incremental SDM but it runs fine (and correctly) if you turn

Re: [gwt-contrib] Re: GWT 2.7.0-RC1 is available

2014-10-30 Thread 'Roberto Lublinerman' via GWT Contributors
There seems that some assertions in UnifyAST are not being satisfied in incremental SDM but it runs fine (and correctly) if you turn off assertions. On Wed, Oct 29, 2014 at 10:53 PM, jay wrote: > I grabbed the RC and switched to use it from my IntelliJ project. > > When starting my run configura

[gwt-contrib] Re: GWT 2.7.0-RC1 is available

2014-10-30 Thread Jens
> > Turning off precompile in incremental mode. > Super Dev Mode starting up >workDir: > /var/folders/xh/1xkfq26532j97q23qw5pdhs4gn/T/gwt-codeserver-7573159147938212004.tmp > > > Does this mean anything? Is it a problem if precompile is turned off or > does it mean that incremental compi

[gwt-contrib] Re: GWT 2.7.0-RC1 is available

2014-10-30 Thread confile
When I use GWT 2.7RC1 with GTW-PhoneGap and run the codeserver I get the following output from the code server: Turning off precompile in incremental mode. Super Dev Mode starting up workDir: /var/folders/xh/1xkfq26532j97q23qw5pdhs4gn/T/gwt-codeserver-7573159147938212004.tmp Does this m

[gwt-contrib] Re: GWT 2.7.0-RC1 is available

2014-10-29 Thread jay
I grabbed the RC and switched to use it from my IntelliJ project. When starting my run configuration using SDM, all seems well until the compiler dies (see below). What can I do to provide more information to help track this down? (Sorry, I cannot make the code available...) // Lots and lots o