[GitHub] cordova-firefoxos pull request: [CB-4556] Add a ./cordova/clean pr...

2014-07-17 Thread rodms10
Github user rodms10 commented on the pull request: https://github.com/apache/cordova-firefoxos/pull/18#issuecomment-49261707 Thanks! I'll test tomorrow, need to setup a windows machine. --- If your project is set up for it, you can reply to this email and have your reply appear on

[GitHub] cordova-plugin-camera pull request: StatusBar Hidden Fix

2014-07-17 Thread DarioDP
GitHub user DarioDP opened a pull request: https://github.com/apache/cordova-plugin-camera/pull/37 StatusBar Hidden Fix If I click cancel on imagePicker and I have status bar hidden it re-appear, so I have to hide it also in this case. You can merge this pull request into a Git

[GitHub] cordova-plugin-globalization pull request: CB-7102 - Initial imple...

2014-07-17 Thread zalun
Github user zalun commented on a diff in the pull request: https://github.com/apache/cordova-plugin-globalization/pull/17#discussion_r15045656 --- Diff: www/firefoxos/locales/get_files.sh --- @@ -0,0 +1,8 @@ +while read line --- End diff -- it's mine to download

[GitHub] cordova-plugin-globalization pull request: CB-7102 - Initial imple...

2014-07-17 Thread zalun
Github user zalun closed the pull request at: https://github.com/apache/cordova-plugin-globalization/pull/17 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or

[GitHub] cordova-plugin-globalization pull request: CB-7102 - Initial imple...

2014-07-17 Thread zalun
GitHub user zalun reopened a pull request: https://github.com/apache/cordova-plugin-globalization/pull/17 CB-7102 - Initial implementation of globalization plugin in Firefox OS Partial. No currency and number functions You can merge this pull request into a Git repository by

[GitHub] cordova-plugin-globalization pull request: CB-7102 - Initial imple...

2014-07-17 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/cordova-plugin-globalization/pull/17 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or

[GitHub] cordova-lib pull request: build configuration for AppVeyor

2014-07-17 Thread sgrebnov
GitHub user sgrebnov opened a pull request: https://github.com/apache/cordova-lib/pull/60 build configuration for AppVeyor You can merge this pull request into a Git repository by running: $ git pull https://github.com/sgrebnov/cordova-lib appveyor Alternatively you can

[GitHub] cordova-lib pull request: build configurations for Travis

2014-07-17 Thread sgrebnov
GitHub user sgrebnov opened a pull request: https://github.com/apache/cordova-lib/pull/59 build configurations for Travis You can merge this pull request into a Git repository by running: $ git pull https://github.com/sgrebnov/cordova-lib travis Alternatively you can review

RE: Add build status to github

2014-07-17 Thread Sergey Grebnov (Akvelon)
I've sent separate PRs for Travis and AppVeyor build configurations: https://github.com/apache/cordova-lib/pull/59 https://github.com/apache/cordova-lib/pull/60 #1 Both Travis and AppVeyor use very similar .yml based configuration files which are very easy to use/understand.

Change background color of Android Cordova app

2014-07-17 Thread Jan Velecký
Hello, how can I change background color, which is visible during orientation change until WebView is correctly resized. I specified it more at http:// stackoverflow.com/questions/24601226/change-background-color-of-app-visible- during-resizing-webview-due-to-device-ori But, it look

[GitHub] cordova-mobile-spec pull request: Fix arguments order in contacts....

2014-07-17 Thread mbektchiev
Github user mbektchiev commented on the pull request: https://github.com/apache/cordova-mobile-spec/pull/72#issuecomment-49305119 Closing this PR as it is no longer valid. The arguments order has been restored:

[GitHub] cordova-mobile-spec pull request: Fix arguments order in contacts....

2014-07-17 Thread mbektchiev
Github user mbektchiev closed the pull request at: https://github.com/apache/cordova-mobile-spec/pull/72 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if

[GitHub] cordova-lib pull request: build configurations for Travis

2014-07-17 Thread kamrik
Github user kamrik commented on the pull request: https://github.com/apache/cordova-lib/pull/59#issuecomment-49307412 Looks good. What's needed in terms of setting up the hooks on GitHub side? Do we need in INFRA ticket for this? --- If your project is set up for it, you can reply

Re: Add build status to github

2014-07-17 Thread Mark Koudritsky
+1 for running both, Travis and AppVeyor. What's needed in terms of setting up the hooks on GitHub side? Do we need in INFRA ticket for this? On Thu, Jul 17, 2014 at 6:56 AM, Sergey Grebnov (Akvelon) v-seg...@microsoft.com wrote: I've sent separate PRs for Travis and AppVeyor build

RE: Add build status to github

2014-07-17 Thread Sergey Grebnov (Akvelon)
We require someone with github admin rights to login to both services using github account and activate build for cordova-lib repo. The rest of the work will be done by the services. Thx! Sergey -Original Message- From: Mark Koudritsky [mailto:kam...@google.com] Sent: Thursday, July

RE: Change background color of Android Cordova app

2014-07-17 Thread Sergey Grebnov (Akvelon)
I suppose this could be done by backgroundColor preference (config.xml) preference name=backgroundColor value=0xFFF / Thx! Sergey -Original Message- From: Jan Velecký [mailto:vve...@seznam.cz] Sent: Thursday, July 17, 2014 4:18 PM To: dev@cordova.apache.org Subject: Change background

Re: Change background color of Android Cordova app

2014-07-17 Thread Andrew Grieve
I was actually looking at this recently and found that the backgroundColor preference is not being applied to the actual WebView element. Didn't want to change it because I was changing other things at the time, but likely this is just a bug that we should fix. Filed an issue:

Re: Change background color of Android Cordova app

2014-07-17 Thread Joe Bowser
The WebView element isn't supposed to have the backgroundColor, it's the view behind the WebView that's supposed to have the backgroundColor. Also, I haven't seen this behaviour on any of the tests that we done. Unless we can reproduce the issue, we can't fix it, and shouldn't just throw things

Re: Change background color of Android Cordova app

2014-07-17 Thread Andrew Grieve
Try setting opacity:0 on the html tag and you can reproduce white showing instead of your backgroundColor. On Thu, Jul 17, 2014 at 10:54 AM, Joe Bowser bows...@gmail.com wrote: The WebView element isn't supposed to have the backgroundColor, it's the view behind the WebView that's supposed to

Re: Change background color of Android Cordova app

2014-07-17 Thread Joe Bowser
So, this is only an issue if you set the html tag opacity to 0? Why would anyone do this? On Thu, Jul 17, 2014 at 7:56 AM, Andrew Grieve agri...@chromium.org wrote: Try setting opacity:0 on the html tag and you can reproduce white showing instead of your backgroundColor. On Thu, Jul 17, 2014

Re: Pluggable webview design thread

2014-07-17 Thread Andrew Grieve
Thanks Ian! Probably a good idea to discuss the heck of this. On Wed, Jul 16, 2014 at 4:23 PM, Ian Clelland iclell...@chromium.org wrote: [Opening this discussion up on the list, as it had previously been the domain of private conversations and limited-audience discussions] On the 4.0.x

Re: Change background color of Android Cordova app

2014-07-17 Thread Andrew Grieve
I did it to test whether the backgroundColor preference was working. Do you know another way to test that preference? On Thu, Jul 17, 2014 at 11:12 AM, Joe Bowser bows...@gmail.com wrote: So, this is only an issue if you set the html tag opacity to 0? Why would anyone do this? On Thu, Jul

Re: Change background color of Android Cordova app

2014-07-17 Thread Joe Bowser
Delay the loading of the URL without a screenshot? Also, you could run the manual test application in test that's marked Test Background Color. This isn't automated because it would require the inclusion of a third party library like Robotium, and there's no way to programmatically test the

Re: sticker?

2014-07-17 Thread Carlos Santana
I'm speaking about Cordova on two upcoming conferences. [1] [2] I would also like to give away some cordova/phonegap swag to attendees. I always like to finish with ... here are different ways to contribute to Cordova..., here are some stickers boom! How do we order some swag, and does ASF

3.6.0 Release Discussion, Schedule + Planning

2014-07-17 Thread Jesse
As has been mentioned in a few other threads, Windows 8.1 and WP 8.1 Universal apps will be supported in 3.6.0. This requires a release/publish of both the tooling, and the platforms as we have dependencies between them. Parashuram and I discussed this last week, and MSOpenTech would like to

Re: 3.6.0 Release Discussion, Schedule + Planning

2014-07-17 Thread Michal Mocny
Thanks for volunteering! On Thu, Jul 17, 2014 at 1:49 PM, Jesse purplecabb...@gmail.com wrote: As has been mentioned in a few other threads, Windows 8.1 and WP 8.1 Universal apps will be supported in 3.6.0. This requires a release/publish of both the tooling, and the platforms as we have

RE: Pluggable webview design thread

2014-07-17 Thread Hu, Ningxin
Ian, thanks for open this thread. Does the API design consider cookie sharing use case? For example, in current FileTransfer plugin, it uses android.webkit.CookieManager directly. It will cause issue when using third party webviews, such as Crosswalk. -ningxin -Original Message-

Re: 3.6.0 Release Discussion, Schedule + Planning

2014-07-17 Thread Carlos Santana
Glad to see some windows love :-). And again thanks to Jesse for being a great platform leader and the folks from MSOpenTech keep the good stuff coming On Thu, Jul 17, 2014 at 1:59 PM, Michal Mocny mmo...@chromium.org wrote: Thanks for volunteering! On Thu, Jul 17, 2014 at 1:49 PM, Jesse

[GitHub] cordova-lib pull request: CB-7124: Fix `cordova platform add plat...

2014-07-17 Thread pascalw
GitHub user pascalw opened a pull request: https://github.com/apache/cordova-lib/pull/61 CB-7124: Fix `cordova platform add platform@version` with `--usegit` https://issues.apache.org/jira/browse/CB-7124 The `cordova_git` function didn't consider that platform strings can

[GitHub] cordova-plugin-battery-status pull request: CB-6957 Ported Battery...

2014-07-17 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/cordova-plugin-battery-status/pull/13 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or

[GitHub] cordova-plugin-device-motion pull request: CB-7160 manual tests fo...

2014-07-17 Thread stacic
GitHub user stacic opened a pull request: https://github.com/apache/cordova-plugin-device-motion/pull/14 CB-7160 manual tests for accelerometer Pulled out the changes to plugin.xml and added the manual tests. Can this be merged into cdvtest, and then cdvtest into master? You can

[GitHub] cordova-plugin-media pull request: CB-6963 Port Media automated te...

2014-07-17 Thread martincgg
Github user martincgg closed the pull request at: https://github.com/apache/cordova-plugin-media/pull/20 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if

[GitHub] cordova-plugin-file pull request: CB-7094 Ported File manual tests

2014-07-17 Thread martincgg
Github user martincgg closed the pull request at: https://github.com/apache/cordova-plugin-file/pull/62 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the

[GitHub] cordova-plugin-vibration pull request: CB-6963 Ported Vibration au...

2014-07-17 Thread martincgg
Github user martincgg closed the pull request at: https://github.com/apache/cordova-plugin-vibration/pull/14 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or

[GitHub] cordova-plugin-device-orientation pull request: CB-6960

2014-07-17 Thread stacic
GitHub user stacic opened a pull request: https://github.com/apache/cordova-plugin-device-orientation/pull/11 CB-6960 All tests for device-orientation ported to plugin-test-framework You can merge this pull request into a Git repository by running: $ git pull

[GitHub] cordova-plugin-file-transfer pull request: CB-6961 port file-trans...

2014-07-17 Thread stacic
Github user stacic commented on the pull request: https://github.com/apache/cordova-plugin-file-transfer/pull/34#issuecomment-49363842 Closing momentarily to make an additional style change and rebase... --- If your project is set up for it, you can reply to this email and have your

[GitHub] cordova-lib pull request: CB-7124: Fix `cordova platform add plat...

2014-07-17 Thread kamrik
Github user kamrik commented on the pull request: https://github.com/apache/cordova-lib/pull/61#issuecomment-49363885 Looks good. Merging. You don't yet have commit rights, right? --- If your project is set up for it, you can reply to this email and have your reply appear on

[GitHub] cordova-plugin-file-transfer pull request: CB-6961 port file-trans...

2014-07-17 Thread stacic
Github user stacic closed the pull request at: https://github.com/apache/cordova-plugin-file-transfer/pull/34 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or

[GitHub] cordova-plugin-device-orientation pull request: [CB-6960] Port com...

2014-07-17 Thread SSRico
Github user SSRico closed the pull request at: https://github.com/apache/cordova-plugin-device-orientation/pull/10 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes

[GitHub] cordova-lib pull request: CB-7124: Fix `cordova platform add plat...

2014-07-17 Thread pascalw
Github user pascalw commented on the pull request: https://github.com/apache/cordova-lib/pull/61#issuecomment-49365253 @kamrik awesome. I don't have commits right no. My ICLA did got acknowledged today so that should be good right? --- If your project is set up for it, you can reply

[GitHub] cordova-lib pull request: CB-7124: Fix `cordova platform add plat...

2014-07-17 Thread kamrik
Github user kamrik commented on the pull request: https://github.com/apache/cordova-lib/pull/61#issuecomment-49366276 Yep, I can see you on the ICLA list here http://people.apache.org/committer-index.html Merging. --- If your project is set up for it, you can reply to this

[GitHub] cordova-lib pull request: CB-7124: Fix `cordova platform add plat...

2014-07-17 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/cordova-lib/pull/61 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is

Re: Monthly Cordova hangouts

2014-07-17 Thread Frederico Galvão
Or even people who doesn't contribute in code as of now, but still participates in the project somehow... What's the scope of the meetings, considering it's being discussed on an open mailing list? 2014-07-17 1:44 GMT-03:00 Puneet Kaur puneet.gk...@gmail.com: Hey all, Just wished to ask if

[GitHub] cordova-plugin-vibration pull request: CB-6963 Ported Vibration au...

2014-07-17 Thread martincgg
GitHub user martincgg reopened a pull request: https://github.com/apache/cordova-plugin-vibration/pull/14 CB-6963 Ported Vibration automated manual tests Ported tests from Mobilespec. Jasmine version: ported from v1.3 to v2.0 You can merge this pull request into a Git

Re: Monthly Cordova hangouts

2014-07-17 Thread Joe Bowser
I'd personally prefer it if we limited it to committers. It's extremely difficult to fit all the current committers in these hangouts as it is. On Thu, Jul 17, 2014 at 2:12 PM, Frederico Galvão frederico.gal...@pontoget.com.br wrote: Or even people who doesn't contribute in code as of now, but

Re: Monthly Cordova hangouts

2014-07-17 Thread Shazron
All are welcome, we are an open project. Currently we are using Google Hangouts, so video slots are limited to 10 and we would like to reserve that for committers talking about the agenda (usually multiple committers in a geographical location gather together and use one slot), and we may have to

Re: Monthly Cordova hangouts

2014-07-17 Thread Frederico Galvão
I wouldn't try to participate actively on the meeting anyway, if that's what it seemed I was asking. I just like the possibility of watching it and keeping an eye on the future of the project, as I'm very much interested in it's future overall. Thanks Shazron, I'm looking foward to the youtube

[GitHub] cordova-plugin-battery-status pull request: CB-6957 Style improvem...

2014-07-17 Thread martincgg
GitHub user martincgg opened a pull request: https://github.com/apache/cordova-plugin-battery-status/pull/14 CB-6957 Style improvements on Manual tests Usage of info, which is wired a css class, aimed to only show results. Reorganization of titles and tables. Just

[GitHub] cordova-plugin-file pull request: CB-7094 Ported File manual tests

2014-07-17 Thread martincgg
GitHub user martincgg reopened a pull request: https://github.com/apache/cordova-plugin-file/pull/62 CB-7094 Ported File manual tests Only contains file manual tests for android and iOS. Both tested and validated. All outputs and results to log content.

[GitHub] cordova-plugin-file pull request: CB-7094 Ported File manual tests

2014-07-17 Thread martincgg
Github user martincgg commented on the pull request: https://github.com/apache/cordova-plugin-file/pull/62#issuecomment-49370393 Screenshot: ![filescreenshot](https://cloud.githubusercontent.com/assets/6596402/3620009/b8dc513a-0dfa-11e4-8fc3-6bdbd1f80b4b.png) --- If your

[GitHub] cordova-plugin-vibration pull request: CB-6963 Ported Vibration au...

2014-07-17 Thread martincgg
Github user martincgg closed the pull request at: https://github.com/apache/cordova-plugin-vibration/pull/14 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or

[GitHub] cordova-plugin-vibration pull request: CB-6966 Ported Vibration au...

2014-07-17 Thread martincgg
GitHub user martincgg opened a pull request: https://github.com/apache/cordova-plugin-vibration/pull/15 CB-6966 Ported Vibration automated manual tests Ported tests from Mobilespec. Jasmine version: ported from v1.3 to v2.0 You can merge this pull request into a Git

Re: 3.6.0 Release Discussion, Schedule + Planning

2014-07-17 Thread Shazron
+1 Thanks purplecabbage! On Thu, Jul 17, 2014 at 11:12 AM, Carlos Santana csantan...@gmail.com wrote: Glad to see some windows love :-). And again thanks to Jesse for being a great platform leader and the folks from MSOpenTech keep the good stuff coming On Thu, Jul 17, 2014 at 1:59 PM,

[GitHub] cordova-docs pull request: CB-7113 - Document UseWKWebView config....

2014-07-17 Thread shazron
GitHub user shazron opened a pull request: https://github.com/apache/cordova-docs/pull/222 CB-7113 - Document UseWKWebView config.xml preference Pull in only when [CB-7093](https://issues.apache.org/jira/browse/CB-7090) is complete You can merge this pull request into a Git

[GitHub] cordova-docs pull request: CB-7121 - Document MinimumFontSize sett...

2014-07-17 Thread shazron
GitHub user shazron opened a pull request: https://github.com/apache/cordova-docs/pull/223 CB-7121 - Document MinimumFontSize setting for WKWebView preferences Pull in only when [CB-7090](https://issues.apache.org/jira/browse/CB-7090) is complete. You can merge this pull request

RE: Add build status to github

2014-07-17 Thread Parashuram Narasimhan (MS OPEN TECH)
We would need to raise an INFRA ticket for this, right ? -Original Message- From: Sergey Grebnov (Akvelon) [mailto:v-seg...@microsoft.com] Sent: Thursday, July 17, 2014 6:53 AM To: dev@cordova.apache.org Subject: RE: Add build status to github We require someone with github admin

Re: Add build status to github

2014-07-17 Thread Shazron
Yes, only INFRA ppl have the privileges on Github to add anything to the repos. On Thu, Jul 17, 2014 at 4:20 PM, Parashuram Narasimhan (MS OPEN TECH) panar...@microsoft.com wrote: We would need to raise an INFRA ticket for this, right ? -Original Message- From: Sergey Grebnov

[GitHub] cordova-blackberry pull request: Fixed issue: --buildId will disna...

2014-07-17 Thread dylin
GitHub user dylin opened a pull request: https://github.com/apache/cordova-blackberry/pull/169 Fixed issue: --buildId will disnable --no-signing 1. `webworks build --release --buildId 1234 --no-signing`: `--no-signing` will be ignored when a `--buildId` is provided 2. `webworks

[GitHub] cordova-blackberry pull request: Fixed issue: --buildId will disna...

2014-07-17 Thread jsoref
Github user jsoref commented on a diff in the pull request: https://github.com/apache/cordova-blackberry/pull/169#discussion_r15092256 --- Diff: bin/templates/project/cordova/lib/build.js --- @@ -81,10 +74,16 @@ try { keystorepass =

[GitHub] cordova-blackberry pull request: Fixed issue: --buildId will disna...

2014-07-17 Thread jsoref
Github user jsoref commented on a diff in the pull request: https://github.com/apache/cordova-blackberry/pull/169#discussion_r15092273 --- Diff: bin/templates/project/cordova/lib/build.js --- @@ -108,8 +110,15 @@ try { bbwpArgv.push(-d);

[GitHub] cordova-blackberry pull request: Fixed issue: --buildId will disna...

2014-07-17 Thread jsoref
Github user jsoref commented on a diff in the pull request: https://github.com/apache/cordova-blackberry/pull/169#discussion_r15092271 --- Diff: bin/templates/project/cordova/lib/build.js --- @@ -108,8 +110,15 @@ try { bbwpArgv.push(-d);

[GitHub] cordova-blackberry pull request: Fixed issue: --buildId will disna...

2014-07-17 Thread jsoref
Github user jsoref commented on a diff in the pull request: https://github.com/apache/cordova-blackberry/pull/169#discussion_r15092298 --- Diff: bin/templates/project/cordova/lib/cmdline.js --- @@ -20,7 +20,7 @@ var command = require(commander), command

[GitHub] cordova-blackberry pull request: Fixed issue: --buildId will disna...

2014-07-17 Thread jsoref
Github user jsoref commented on a diff in the pull request: https://github.com/apache/cordova-blackberry/pull/169#discussion_r15092316 --- Diff: bin/templates/project/cordova/lib/localize.js --- @@ -29,10 +29,10 @@ var Localize = require(localize), en: Build ID set

[GitHub] cordova-blackberry pull request: Fixed issue: --buildId will disna...

2014-07-17 Thread jsoref
Github user jsoref commented on a diff in the pull request: https://github.com/apache/cordova-blackberry/pull/169#discussion_r15092332 --- Diff: bin/templates/project/cordova/lib/packager-validator.js --- @@ -56,7 +57,7 @@ _self = { }; //If -g

[GitHub] cordova-blackberry pull request: Fixed issue: --buildId will disna...

2014-07-17 Thread jsoref
Github user jsoref commented on a diff in the pull request: https://github.com/apache/cordova-blackberry/pull/169#discussion_r15092376 --- Diff: bin/templates/project/cordova/lib/packager-validator.js --- @@ -67,18 +68,18 @@ _self = { } //If a

[GitHub] cordova-lib pull request: build configurations for Travis

2014-07-17 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/cordova-lib/pull/59 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is

[GitHub] cordova-lib pull request: build configurations for Travis

2014-07-17 Thread purplecabbage
Github user purplecabbage commented on the pull request: https://github.com/apache/cordova-lib/pull/59#issuecomment-49383900 We still need INFRA to setup the hooks to travis. I did it in my fork, and the tests are failing, not sure what it is. You can see it here:

[GitHub] cordova-lib pull request: build configurations for Travis

2014-07-17 Thread purplecabbage
Github user purplecabbage commented on the pull request: https://github.com/apache/cordova-lib/pull/59#issuecomment-49384315 Slide#15 has some more apache+travis info : http://www.slideshare.net/jukka/apache-development-with-github-and-travis-ci --- If your project is set up for it,

[GitHub] cordova-lib pull request: build configuration for AppVeyor

2014-07-17 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/cordova-lib/pull/60 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is

[GitHub] cordova-android pull request: 3.5.x

2014-07-17 Thread daavenmessinger
GitHub user daavenmessinger opened a pull request: https://github.com/apache/cordova-android/pull/107 3.5.x You can merge this pull request into a Git repository by running: $ git pull https://github.com/apache/cordova-android 3.5.x Alternatively you can review and apply

[GitHub] cordova-android pull request: 3.5.x

2014-07-17 Thread daavenmessinger
Github user daavenmessinger commented on the pull request: https://github.com/apache/cordova-android/pull/107#issuecomment-49385317 https://github.com/apache/cordova-android/commit/d20d2781eff5439c8a7bc97cdf9b524d67991112 --- If your project is set up for it, you can reply to this

[GitHub] cordova-android pull request: 3.5.x

2014-07-17 Thread daavenmessinger
Github user daavenmessinger closed the pull request at: https://github.com/apache/cordova-android/pull/107 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if

Re: 4.0.x, efcedabe, Patch-Bombing and good faith

2014-07-17 Thread Marcel Kinard
On Jul 16, 2014, at 3:11 PM, Andrew Grieve agri...@chromium.org wrote: Good call here. I should have made JIRAs for a bunch of these. I've now done so retroactively. Watching this, I very much agree that if Jira issues were created before the commit and included in the commit message, that

[GitHub] cordova-docs pull request: Update links for 'Next guide'

2014-07-17 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/cordova-docs/pull/221 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature

[GitHub] cordova-docs pull request: Update links for 'Next guide'

2014-07-17 Thread cmarcelk
Github user cmarcelk commented on the pull request: https://github.com/apache/cordova-docs/pull/221#issuecomment-49392139 Thanks for the contribution! Merged. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your

Re: 4.0.x, efcedabe, Patch-Bombing and good faith

2014-07-17 Thread Joe Bowser
On Thu, Jul 17, 2014 at 8:10 PM, Marcel Kinard cmarc...@gmail.com wrote: On Jul 16, 2014, at 3:11 PM, Andrew Grieve agri...@chromium.org wrote: Good call here. I should have made JIRAs for a bunch of these. I've now done so retroactively. Watching this, I very much agree that if Jira issues

Re: Monthly Cordova hangouts

2014-07-17 Thread Marcel Kinard
So is the consensus 1pm PDT / 4pm EDT on Friday July 25? On Jul 16, 2014, at 6:04 PM, Tommy Williams to...@devgeeks.org wrote: Absolutely. 1pm/4pm in the USA is just 6am here. Barely even have to get up early. :)

Re: Monthly Cordova hangouts

2014-07-17 Thread tommy-carlos williams
+1 On 18 July 2014 at 14:00:59, Marcel Kinard (cmarc...@gmail.com) wrote: So is the consensus 1pm PDT / 4pm EDT on Friday July 25? On Jul 16, 2014, at 6:04 PM, Tommy Williams to...@devgeeks.org wrote: Absolutely. 1pm/4pm in the USA is just 6am here. Barely even have to get up early. :)