Comparing version 1.1.1 to 1.2.0
@@ -263,3 +263,3 @@ /** | ||
* @borrows module:leadfoot/Session#getLogsFor as module:leadfoot/Command#getLogsFor | ||
* @borrows module:leadfoot/Session#getAvailableLogTimes as module:leadfoot/Command#getAvailableLogTimes | ||
* @borrows module:leadfoot/Session#getAvailableLogTypes as module:leadfoot/Command#getAvailableLogTypes | ||
* @borrows module:leadfoot/Session#getApplicationCacheStatus as module:leadfoot/Command#getApplicationCacheStatus | ||
@@ -266,0 +266,0 @@ * @borrows module:leadfoot/Session#quit as module:leadfoot/Command#quit |
Contribution guidelines | ||
======================= | ||
## For people that are using Intern | ||
## Hi! | ||
* Sorry, the bug tracker is for bugs and feature enhancement requests only, not questions. If you aren’t sure if your | ||
* The issues tab is for **bugs and feature enhancement requests only**, not questions. If you aren’t sure if your | ||
problem is a bug (or you know that it isn’t), please ask in one of the | ||
[support areas](https://github.com/theintern/intern/wiki/Support) instead. Any help questions posted to the bug | ||
tracker will normally be closed without a response in order to keep the bug tracker focused only on the development | ||
process. | ||
* General guidelines for choosing the appropriate issue tracker for your problem: | ||
[support forums](https://github.com/theintern/intern/wiki/Support) instead. Any help questions posted to the bug | ||
tracker will normally be closed without a good answer in order to keep the bug tracker focused only on the development | ||
process. Sorry for any inconvenience! | ||
* If you can, find the right issue tracker for your problem: | ||
* [Dig Dug](https://github.com/theintern/digdug/issues) should be used for issues regarding downloading or starting | ||
@@ -18,25 +18,22 @@ service tunnels, or interacting with a service provider’s REST API | ||
## For people that want to submit a new feature or bug fix | ||
## Want to submit a new feature or bug fix? | ||
* Thank you for your contribution! | ||
* If you want to help, but aren’t sure where to start, come [talk to us on IRC](irc://irc.freenode.net/intern) or ask | ||
in a ticket about where you’d start. You should also talk to us if you are working on a big thing so we can coordinate | ||
before you spend a lot of time on it | ||
* Please search the issue tracker before submitting new issues to avoid duplicates, and to make sure someone else is not | ||
already working on your thing | ||
* You must have a signed [Dojo Foundation CLA](http://dojofoundation.org/about/claForm) for any non-trivial patches to | ||
be accepted | ||
* Any submitted code should conform to the project’s | ||
[code style guidelines](https://github.com/csnover/dojo2-core#code-conventions) | ||
* If appropriate, a test case should be part of the pull request | ||
* Thank you for your contribution! | ||
how to start on a ticket that interests you | ||
* You should also talk to us if you are working on a big thing so we can coordinate before you spend a lot of time on it | ||
:) | ||
* Please make sure you sign a [Dojo Foundation CLA](http://dojofoundation.org/about/claForm) or we cannot accept your | ||
code | ||
* Code should conform to our [code style guidelines](https://github.com/sitepen/.jshintrc) | ||
* If possible and appropriate, updated tests should be a part of your pull request | ||
## For committers | ||
## Committers! | ||
* Provide rigorous code review for contributors | ||
* Please make sure to provide rigorous code review on new contributions | ||
* When in doubt, ask for a second review; don’t commit code that smells wrong just because it exists | ||
* Squash all pull requests into a single commit using | ||
`git pull --squash --no-commit https://github.com/contributor/intern branch-name` and then | ||
`git commit --author="Author Name <email@example>"`. Don’t use the shiny green button! | ||
* Squash all pull requests into a single commit by using `git rebase -i` after a merge. Don’t use the shiny green | ||
button! | ||
* Put `[ci skip]` at the end of commit messages for commits that do not modify any code (readme changes, etc.) | ||
* (Intern only) After committing to master, always checkout `geezer` and `git merge master` if the code applies to both | ||
branches |
{ | ||
"name": "leadfoot", | ||
"version": "1.1.1", | ||
"version": "1.2.0", | ||
"description": "Leadfoot. A JavaScript client library that brings cross-platform consistency to the Selenium WebDriver API.", | ||
@@ -13,3 +13,3 @@ "repository": { | ||
"dependencies": { | ||
"dojo": "2.0.0-alpha2" | ||
"dojo": "2.0.0-alpha3" | ||
}, | ||
@@ -16,0 +16,0 @@ "devDependencies": { |
@@ -1388,4 +1388,2 @@ /*global document:false, window:false */ | ||
* Depresses a new finger at the given point on a touch screen device without releasing it. | ||
* TODO: If someone specifies the same coordinates as as an existing finger, will it switch the active finger | ||
* back to that finger instead of adding a new one? | ||
* | ||
@@ -1397,2 +1395,4 @@ * @param {number} x The screen x-coordinate to press, maybe in device pixels. | ||
pressFinger: function (x, y) { | ||
// TODO: If someone specifies the same coordinates as as an existing finger, will it switch the active finger | ||
// back to that finger instead of adding a new one? | ||
return this._post('touch/down', { | ||
@@ -1571,3 +1571,2 @@ x: x, | ||
* Sets the geographical location of the remote environment. | ||
* TODO: Is it weird that this accepts an object argument? `setCookie` does too, but nothing else does. | ||
* | ||
@@ -1581,2 +1580,3 @@ * @param {Geolocation} location | ||
setGeolocation: function (location) { | ||
// TODO: Is it weird that this accepts an object argument? `setCookie` does too, but nothing else does. | ||
if (location.altitude !== undefined) { | ||
@@ -1592,7 +1592,9 @@ this._lastAltitude = location.altitude; | ||
/** | ||
* Gets all logs from the remote environment of the given type. The logs are destroyed after they have been | ||
* retrieved. | ||
* Gets all logs from the remote environment of the given type. The logs in the remote environment are cleared | ||
* once they have been retrieved. | ||
* | ||
* @param {string} type | ||
* The type of log entries to retrieve. Available log types differ between remote environments. | ||
* The type of log entries to retrieve. Available log types differ between remote environments. Use | ||
* {@link module:leadfoot/Session#getAvailableLogTypes} to learn what log types are currently available. Not all | ||
* environments support all possible log types. | ||
* | ||
@@ -1599,0 +1601,0 @@ * @returns {Promise.<LogEntry[]>} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5131
197362
+ Addeddojo@2.0.0-alpha3(transitive)
- Removeddojo@2.0.0-alpha2(transitive)
Updateddojo@2.0.0-alpha3