Phonegap.com message

2013-04-25 Thread Christian Grobmeier
Hi folks, its not directly cordova related, but i know a few folks here work at adobe. When one downloads the latest phongap release from phonegap.com, this message shows up: These downloads and all other PhoneGap code is hosted by Apache Incubator Project Cordova on GitHub until the migration

[iOS] Project-level CLI changes into 2.7.0

2013-04-25 Thread Shazron
I've checked in the fixes for these into master: https://issues.apache.org/jira/browse/CB-2998 https://issues.apache.org/jira/browse/CB-2980 https://issues.apache.org/jira/browse/CB-2988 https://issues.apache.org/jira/browse/CB-2915 https://issues.apache.org/jira/browse/CB-2964

Re: [iOS] Project-level CLI changes into 2.7.0

2013-04-25 Thread Filip Maj
Meh, I'd wait for 2.8. Let the integration bake a little via cordova-cli On 4/25/13 6:48 AM, Shazron shaz...@gmail.com wrote: I've checked in the fixes for these into master: https://issues.apache.org/jira/browse/CB-2998 https://issues.apache.org/jira/browse/CB-2980

Re: [iOS] Project-level CLI changes into 2.7.0

2013-04-25 Thread Shazron
Ok sounds good then. On Thu, Apr 25, 2013 at 8:55 AM, Filip Maj f...@adobe.com wrote: Meh, I'd wait for 2.8. Let the integration bake a little via cordova-cli On 4/25/13 6:48 AM, Shazron shaz...@gmail.com wrote: I've checked in the fixes for these into master:

RC version numbers

2013-04-25 Thread Andrew Grieve
For the JS, we set VERSION = 2.7.0rc1 For Android's Device.java, we set VERSION = 2.7.0 (no rc1). Perhaps not a huge deal, but I just want to get clear on this before automating the instructions on the wiki via scripts. Probably from now on we should put the rc1 on all release candidates, yes?

Re: RC version numbers

2013-04-25 Thread Joe Bowser
OK, even though it won't go into 2.7.0rc1, I added the correct version anyway. I do think we need to cut an RC2 before we do a final release, and I'll start up a separate thread for that. On Thu, Apr 25, 2013 at 10:18 AM, Joe Bowser bows...@gmail.com wrote: That's an accident! The VERSION files

RC2

2013-04-25 Thread Joe Bowser
Hey The RC1 release was kind of done too fast, and the versioning broke. Because of this, I think we should really have an RC2 release before we do a 2.7.0 final release. Perhaps we should start an RC2 today for this? Thoughts? Joe

Re: RC version numbers

2013-04-25 Thread Simon MacDonald
It should be in there. If you change the VERSION file in the Android repo then run the ant script it will update the VERSION in all the files that are required. Then you package that up in the tag commit. Simon Mac Donald http://hi.im/simonmacdonald On Thu, Apr 25, 2013 at 1:15 PM, Andrew

Re: RC version numbers

2013-04-25 Thread Joe Bowser
That's an accident! The VERSION files should be 2.7.0rc1 On Thu, Apr 25, 2013 at 10:15 AM, Andrew Grieve agri...@chromium.org wrote: For the JS, we set VERSION = 2.7.0rc1 For Android's Device.java, we set VERSION = 2.7.0 (no rc1). Perhaps not a huge deal, but I just want to get clear on

Re: RC version numbers

2013-04-25 Thread Joe Bowser
That's exactly what I did. The VERSION was set to 2.7.0, not 2.7.0rc1. On Thu, Apr 25, 2013 at 10:22 AM, Simon MacDonald simon.macdon...@gmail.com wrote: It should be in there. If you change the VERSION file in the Android repo then run the ant script it will update the VERSION in all the

Re: RC2

2013-04-25 Thread Joe Bowser
Android versioning wasn't done right. In fact, none of the versioning was done right, and I kind of feel that we rushed the release a bit. That being said, I'm not totally opposed to us just doing a 2.7.0 release assuming that we can actually write the correct version number in the correct

Re: RC2

2013-04-25 Thread Joe Bowser
Actually, let's just do a release. On Thu, Apr 25, 2013 at 10:30 AM, Joe Bowser bows...@gmail.com wrote: Android versioning wasn't done right. In fact, none of the versioning was done right, and I kind of feel that we rushed the release a bit. That being said, I'm not totally opposed to us

Re: RC2

2013-04-25 Thread Lorin Beer
+1 On Thu, Apr 25, 2013 at 11:20 AM, Joe Bowser bows...@gmail.com wrote: Actually, let's just do a release. On Thu, Apr 25, 2013 at 10:30 AM, Joe Bowser bows...@gmail.com wrote: Android versioning wasn't done right. In fact, none of the versioning was done right, and I kind of feel that

Re: Phonegap.com message

2013-04-25 Thread Steven Gill
Thanks Christian, I will make sure to fix that up. Cheers, -Steve On Thu, Apr 25, 2013 at 6:50 AM, Christian Grobmeier grobme...@gmail.comwrote: Hi folks, its not directly cordova related, but i know a few folks here work at adobe. When one downloads the latest phongap release from

Question about caching

2013-04-25 Thread David Lewis
I've got a Cordova 2.6 app on iOS 6 that uses ~/Documents as the webroot for updating purposes. Because of the JS load, when the index.html is reloaded after it is changed (delete and copy from the update), not everything is loaded again. I don't have the details for it, but there is a display

Re: RC2

2013-04-25 Thread Jesse
How about we let it sit, and plan for 2.7.0 release on Monday? @purplecabbage risingj.com On Thu, Apr 25, 2013 at 11:23 AM, Lorin Beer lorin.beer@gmail.comwrote: +1 On Thu, Apr 25, 2013 at 11:20 AM, Joe Bowser bows...@gmail.com wrote: Actually, let's just do a release. On Thu,

Re: Question about caching

2013-04-25 Thread Shazron
We set up a cache in AppDelegate.m[1], and I suppose you could hook into CDVPageDidLoadNotification[2] in your own plugin, then clear the cache[3]: e.g. [[NSURLCache sharedURLCache] removeAllCachedResponses] [1]

Re: Question about caching

2013-04-25 Thread Shazron
This is more of an Objective-C question now rather than a Cordova API one. Not sure if I have any answers. On Thu, Apr 25, 2013 at 1:15 PM, David Lewis lewi...@gmail.com wrote: I call removeAllCachedResponses before loading the new index.html. The page does appear to reload but we have files

Re: Question about caching

2013-04-25 Thread David Lewis
Thanks. On Apr 25, 2013 4:19 PM, Shazron shaz...@gmail.com wrote: This is more of an Objective-C question now rather than a Cordova API one. Not sure if I have any answers. On Thu, Apr 25, 2013 at 1:15 PM, David Lewis lewi...@gmail.com wrote: I call removeAllCachedResponses before

Re: RC2

2013-04-25 Thread Joe Bowser
Should we fire up the script and create the tickets for tagging today? On Thu, Apr 25, 2013 at 12:01 PM, Jesse purplecabb...@gmail.com wrote: How about we let it sit, and plan for 2.7.0 release on Monday? @purplecabbage risingj.com On Thu, Apr 25, 2013 at 11:23 AM, Lorin Beer

Re: RC2

2013-04-25 Thread Brian LeRoux
YES On Thu, Apr 25, 2013 at 2:05 PM, Joe Bowser bows...@gmail.com wrote: Should we fire up the script and create the tickets for tagging today? On Thu, Apr 25, 2013 at 12:01 PM, Jesse purplecabb...@gmail.com wrote: How about we let it sit, and plan for 2.7.0 release on Monday?

Re: RC2

2013-04-25 Thread Jesse
Yeah, let's. @purplecabbage risingj.com On Thu, Apr 25, 2013 at 2:15 PM, Brian LeRoux b...@brian.io wrote: YES On Thu, Apr 25, 2013 at 2:05 PM, Joe Bowser bows...@gmail.com wrote: Should we fire up the script and create the tickets for tagging today? On Thu, Apr 25, 2013 at 12:01 PM,