This is an automated email from the ASF dual-hosted git repository.

niklasmerz pushed a change to branch 3.0.x
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-screen-orientation.git


    from 9bd2ef7  CB-13714 Updated version and RELEASENOTES.md for release 
3.0.1 (via coho)
     add 63fbbf4  Set VERSION to 3.0.2-dev (via coho)
     add 76f290e  Fix release notes (#29)
     add 6fd974d  CB-13765: Add build-tools-26.0.2 to travis
     add c5802c5  Merge pull request #30 from jcesarmobile/CB-13765
     add 13b34f0  Update README.md
     add a89e94c  Landscape Issue Fix and prevent orientation change when 
already in orientation
     add 26eb47e  Merge pull request #25 from 
fortunes-technology/ios-landscape-issue
     add 950d339  CB-11843: fix package information (#33)
     add 9d2a422  also accept terms for android sdk `android-27`
     add ccc17fb  Add or update GitHub pull request and issue template
     add de7f6fe  chore: drop Node.js v4 support (#45)
     add 7f493ce  chore: add missing keywords to package.json for plugin search 
(#49)
     add 83370a8  ci(travis): Update Travis CI configuration for new paramedic 
(#47)
     add 34c9c29  docs: move legacy release notes to RELEASENOTES.md
     add ae60fa9  build: add .gitattributes to force LF (instead of possible 
CRLF on Windows)
     add 80724df  build: update .npmignore to remove unneeded files from npm 
package
     add 7f35359  chore(release): release notes for 3.0.2
     add 95e664d  chore(release): 3.0.2 (version string)
     add 1d5b987  chore(release): 3.0.3-dev
     add c5c85da  ci(travis): upgrade to node 8
     add 8d76ec1  ci(appveyor): replace node 6 with node 12
     add 464ab85  test: let Jasmine handle promises (#57)
     add 8ff1bab  ci: updates Node.js versions (#61)
     add c6a7f13  chore(npm): improve ignore list (#60)
     add fb733d8  Update CONTRIBUTING.md
     add 01c10dc  chore(asf): update git notification settings
     add 2c6b348  chore: removes old demo project. closes #52 (#65)
     add 4b71984  chore(npm): use short notation in package.json (#64)
     add 57df018  refactor(eslint): use cordova-eslint /w fix (#66)
     add 3c08d39  chore: adds package-lock file (#67)
     add 8f4488f  ci(travis): updates Android API level (#71)
     add 9a668cc  ci(travis): update osx xcode image (#72)
     add e0a1f39  fix: resolveOrientation function not working correctly (#77)
     add c60dc80  ci: add node-14.x to workflow (#76)
     add f835583  ci: add gh-actions workflows (#84)
     add 3d77257  ci: remove travis & appveyor (#86)
     add ab0f00c  ci: add action-badge (#87)
     add f6975fa  ci(ios): update workflow w/ iOS 15 (#88)
     add 1bfe111  ci(android): update java requirement for cordova-android@11 
(#92)
     add 7a4087c  chore(npm): bump package-lock v2 w/ rebuild (#99)
     add 7a4b5c9  ci: sync workflow with paramedic (#101)
     add 989d957  chore: package-lock update (#104)
     add b4030fc  chore: add .npmrc file to ensure the official NPM registry is 
used for package installations. (#103)
     add 98ec1cf  fix(chrome): lock test (#105)
     add b444df6  feat(ios): add support for ios 16 (#107)
     add f518c32  build(deps): bump json5 from 1.0.1 to 1.0.2 (#110)
     add 4e57a7e  Updated version and RELEASENOTES.md for release 3.0.3

No new revisions were added by this update.

Summary of changes:
 .appveyor.yml                              |   28 -
 .asf.yaml                                  |   22 +
 .eslintrc.yml                              |   23 +
 .gitattributes                             |    1 +
 .github/ISSUE_TEMPLATE.md                  |   42 +
 .github/ISSUE_TEMPLATE/BUG_REPORT.md       |   50 +
 .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md  |   29 +
 .github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md |   27 +
 .github/PULL_REQUEST_TEMPLATE.md           |   27 +-
 .github/workflows/android.yml              |  137 +
 .github/workflows/chrome.yml               |   73 +
 .github/workflows/ios.yml                  |   97 +
 .github/workflows/lint.yml                 |   56 +
 .gitignore                                 |   15 +-
 .npmignore                                 |    3 +-
 .npmrc                                     |    2 +
 .travis.yml                                |   82 -
 CONTRIBUTING.md                            |   37 +
 README.md                                  |   56 +-
 RELEASENOTES.md                            |  127 +
 demo/config.xml                            |   44 -
 demo/www/css/index.css                     |  119 -
 demo/www/img/logo.png                      |  Bin 21814 -> 0 bytes
 demo/www/index.html                        |   68 -
 demo/www/js/index.js                       |  120 -
 package-lock.json                          | 4061 ++++++++++++++++++++++++++++
 package.json                               |   24 +-
 plugin.xml                                 |    4 +-
 src/ios/CDVOrientation.m                   |  126 +-
 src/windows/CDVOrientationProxy.js         |   28 +-
 tests/package.json                         |    2 +-
 tests/plugin.xml                           |    2 +-
 tests/tests.js                             |  110 +-
 www/screenorientation.js                   |  107 +-
 34 files changed, 5048 insertions(+), 701 deletions(-)
 delete mode 100644 .appveyor.yml
 create mode 100644 .asf.yaml
 create mode 100644 .eslintrc.yml
 create mode 100644 .gitattributes
 create mode 100644 .github/ISSUE_TEMPLATE.md
 create mode 100644 .github/ISSUE_TEMPLATE/BUG_REPORT.md
 create mode 100644 .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md
 create mode 100644 .github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md
 create mode 100644 .github/workflows/android.yml
 create mode 100644 .github/workflows/chrome.yml
 create mode 100644 .github/workflows/ios.yml
 create mode 100644 .github/workflows/lint.yml
 create mode 100644 .npmrc
 delete mode 100644 .travis.yml
 create mode 100644 CONTRIBUTING.md
 delete mode 100644 demo/config.xml
 delete mode 100644 demo/www/css/index.css
 delete mode 100644 demo/www/img/logo.png
 delete mode 100644 demo/www/index.html
 delete mode 100644 demo/www/js/index.js
 create mode 100644 package-lock.json


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to