RE: [REVIEW] Blog post for plugins release

2014-04-23 Thread Parashuram Narasimhan (MS OPEN TECH)
The Jira links seem to be broken. Not sure if that is due to the gist, or if 
they are really broken.  

-Original Message-
From: iclell...@google.com [mailto:iclell...@google.com] On Behalf Of Ian 
Clelland
Sent: Wednesday, April 23, 2014 8:28 AM
To: dev@cordova.apache.org
Subject: [REVIEW] Blog post for plugins release

I've put up a draft blog post here:

https://gist.github.com/clelland/6cf7cefcbb86f9b9d115

(Gist for easy markdown support)

Please review and comment, and we can get these plugins out the door!

Ian


[REVIEW] Blog post for plugins release

2014-04-23 Thread Ian Clelland
I've put up a draft blog post here:

https://gist.github.com/clelland/6cf7cefcbb86f9b9d115

(Gist for easy markdown support)

Please review and comment, and we can get these plugins out the door!

Ian


Re: [REVIEW] Blog post for plugins release

2014-04-23 Thread Shazron
Looks like viewing the raw output browser in the links should be browse


On Wed, Apr 23, 2014 at 8:34 AM, Parashuram Narasimhan (MS OPEN TECH) 
panar...@microsoft.com wrote:

 The Jira links seem to be broken. Not sure if that is due to the gist, or
 if they are really broken.

 -Original Message-
 From: iclell...@google.com [mailto:iclell...@google.com] On Behalf Of Ian
 Clelland
 Sent: Wednesday, April 23, 2014 8:28 AM
 To: dev@cordova.apache.org
 Subject: [REVIEW] Blog post for plugins release

 I've put up a draft blog post here:

 https://gist.github.com/clelland/6cf7cefcbb86f9b9d115

 (Gist for easy markdown support)

 Please review and comment, and we can get these plugins out the door!

 Ian



Re: [REVIEW] Blog post for plugins release

2014-04-23 Thread Ian Clelland
On Wed, Apr 23, 2014 at 11:34 AM, Parashuram Narasimhan (MS OPEN TECH) 
panar...@microsoft.com wrote:

 The Jira links seem to be broken. Not sure if that is due to the gist, or
 if they are really broken.


Nope -- that was me :) (too quick to type an 'r' after browse)

I've fixed that in the gist, thanks.



 -Original Message-
 From: iclell...@google.com [mailto:iclell...@google.com] On Behalf Of Ian
 Clelland
 Sent: Wednesday, April 23, 2014 8:28 AM
 To: dev@cordova.apache.org
 Subject: [REVIEW] Blog post for plugins release

 I've put up a draft blog post here:

 https://gist.github.com/clelland/6cf7cefcbb86f9b9d115

 (Gist for easy markdown support)

 Please review and comment, and we can get these plugins out the door!

 Ian



Re: [REVIEW] Blog post for plugins release

2014-04-23 Thread Andrew Grieve
Looks great. Only nit is toURI - toURL

On Wed, Apr 23, 2014 at 11:37 AM, Ian Clelland iclell...@chromium.org wrote:
 On Wed, Apr 23, 2014 at 11:34 AM, Parashuram Narasimhan (MS OPEN TECH) 
 panar...@microsoft.com wrote:

 The Jira links seem to be broken. Not sure if that is due to the gist, or
 if they are really broken.


 Nope -- that was me :) (too quick to type an 'r' after browse)

 I've fixed that in the gist, thanks.



 -Original Message-
 From: iclell...@google.com [mailto:iclell...@google.com] On Behalf Of Ian
 Clelland
 Sent: Wednesday, April 23, 2014 8:28 AM
 To: dev@cordova.apache.org
 Subject: [REVIEW] Blog post for plugins release

 I've put up a draft blog post here:

 https://gist.github.com/clelland/6cf7cefcbb86f9b9d115

 (Gist for easy markdown support)

 Please review and comment, and we can get these plugins out the door!

 Ian



Re: [REVIEW] Blog post for plugins release

2014-04-23 Thread Mike Billau
Looks great Ian, no nitpicks that Josh hasn't already pointed out on the
gist.

Including the curated list of plugin changes is awesome.  (BTW did you
generate that with coho?)


On Wed, Apr 23, 2014 at 1:38 PM, Andrew Grieve agri...@chromium.org wrote:

 Looks great. Only nit is toURI - toURL

 On Wed, Apr 23, 2014 at 11:37 AM, Ian Clelland iclell...@chromium.org
 wrote:
  On Wed, Apr 23, 2014 at 11:34 AM, Parashuram Narasimhan (MS OPEN TECH) 
  panar...@microsoft.com wrote:
 
  The Jira links seem to be broken. Not sure if that is due to the gist,
 or
  if they are really broken.
 
 
  Nope -- that was me :) (too quick to type an 'r' after browse)
 
  I've fixed that in the gist, thanks.
 
 
 
  -Original Message-
  From: iclell...@google.com [mailto:iclell...@google.com] On Behalf Of
 Ian
  Clelland
  Sent: Wednesday, April 23, 2014 8:28 AM
  To: dev@cordova.apache.org
  Subject: [REVIEW] Blog post for plugins release
 
  I've put up a draft blog post here:
 
  https://gist.github.com/clelland/6cf7cefcbb86f9b9d115
 
  (Gist for easy markdown support)
 
  Please review and comment, and we can get these plugins out the door!
 
  Ian
 



Re: [REVIEW] Blog post for plugins release

2014-04-23 Thread Ian Clelland
The plugin release process doc uses a bit of shell logic combined with git
log to update the release notes; I modified that to print out a complete
list, and then curated by hand. I'm updating the release docs as I go
through the steps, so I'll make sure that that snippet is in there.

for l in $ACTIVE;
do
( cd $l;
  v=$(grep version= plugin.xml | grep -v xml | head -n1 | cut
-d'' -f2);
  id=$(grep -o '\bid=\[^\]*\' plugin.xml | head -n1 | cut -d''
-f2);
  echo -e \n\`$id@$v\`;
  git log --pretty=format:'* %s' --topo-order --no-merges
master..dev | grep -v Incremented plugin version
);
done



On Wed, Apr 23, 2014 at 2:06 PM, Mike Billau mike.bil...@gmail.com wrote:

 Looks great Ian, no nitpicks that Josh hasn't already pointed out on the
 gist.

 Including the curated list of plugin changes is awesome.  (BTW did you
 generate that with coho?)


 On Wed, Apr 23, 2014 at 1:38 PM, Andrew Grieve agri...@chromium.org
 wrote:

  Looks great. Only nit is toURI - toURL
 
  On Wed, Apr 23, 2014 at 11:37 AM, Ian Clelland iclell...@chromium.org
  wrote:
   On Wed, Apr 23, 2014 at 11:34 AM, Parashuram Narasimhan (MS OPEN TECH)
 
   panar...@microsoft.com wrote:
  
   The Jira links seem to be broken. Not sure if that is due to the gist,
  or
   if they are really broken.
  
  
   Nope -- that was me :) (too quick to type an 'r' after browse)
  
   I've fixed that in the gist, thanks.
  
  
  
   -Original Message-
   From: iclell...@google.com [mailto:iclell...@google.com] On Behalf Of
  Ian
   Clelland
   Sent: Wednesday, April 23, 2014 8:28 AM
   To: dev@cordova.apache.org
   Subject: [REVIEW] Blog post for plugins release
  
   I've put up a draft blog post here:
  
   https://gist.github.com/clelland/6cf7cefcbb86f9b9d115
  
   (Gist for easy markdown support)
  
   Please review and comment, and we can get these plugins out the door!
  
   Ian