From 22721a013bdd10d5eb395ba18453585f5f3f1f7f Mon Sep 17 00:00:00 2001 From: Jules Laplace Date: Mon, 31 Aug 2020 23:07:20 +0200 Subject: rebuild the ios platform and the plugins --- .../cordova-plugin-firebasex/.github/FUNDING.yml | 6 + .../.github/ISSUE_TEMPLATE/bug_report.md | 125 +++++++++++++++++++++ .../.github/ISSUE_TEMPLATE/documentation-issue.md | 36 ++++++ .../.github/ISSUE_TEMPLATE/feature_request.md | 43 +++++++ .../.github/PULL_REQUEST_TEMPLATE.md | 37 ++++++ 5 files changed, 247 insertions(+) create mode 100644 StoneIsland/plugins/cordova-plugin-firebasex/.github/FUNDING.yml create mode 100644 StoneIsland/plugins/cordova-plugin-firebasex/.github/ISSUE_TEMPLATE/bug_report.md create mode 100644 StoneIsland/plugins/cordova-plugin-firebasex/.github/ISSUE_TEMPLATE/documentation-issue.md create mode 100644 StoneIsland/plugins/cordova-plugin-firebasex/.github/ISSUE_TEMPLATE/feature_request.md create mode 100644 StoneIsland/plugins/cordova-plugin-firebasex/.github/PULL_REQUEST_TEMPLATE.md (limited to 'StoneIsland/plugins/cordova-plugin-firebasex/.github') diff --git a/StoneIsland/plugins/cordova-plugin-firebasex/.github/FUNDING.yml b/StoneIsland/plugins/cordova-plugin-firebasex/.github/FUNDING.yml new file mode 100644 index 00000000..c3f3e5bf --- /dev/null +++ b/StoneIsland/plugins/cordova-plugin-firebasex/.github/FUNDING.yml @@ -0,0 +1,6 @@ +# These are supported funding model platforms + +github: [ dpa99c ] +custom: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ZRD3W47HQ3EMJ&source=url +patreon: dpa99c +ko_fi: davealden \ No newline at end of file diff --git a/StoneIsland/plugins/cordova-plugin-firebasex/.github/ISSUE_TEMPLATE/bug_report.md b/StoneIsland/plugins/cordova-plugin-firebasex/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..c16abb50 --- /dev/null +++ b/StoneIsland/plugins/cordova-plugin-firebasex/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,125 @@ +--- +name: Bug report +about: Report a problem +title: '' +labels: '' +assignees: '' + +--- + + + + + +# Bug report + + +**CHECKLIST** +- [ ] I have read the [issue reporting guidelines](https://github.com/dpa99c/cordova-plugin-firebasex#reporting-issues) + +- [ ] I confirm this is a suspected bug or issue that will affect other users + + +- [ ] I have reproduced the issue using the [example project](https://github.com/dpa99c/cordova-plugin-firebasex-test) or provided the necessary information to reproduce the issue. + + +- [ ] I have read [the documentation](https://github.com/dpa99c/cordova-plugin-firebasex) thoroughly and it does not help solve my issue. + + +- [ ] I have checked that no similar issues (open or closed) already exist. + + + + +**Current behavior:** + + + + + +**Expected behavior:** + + +**Steps to reproduce:** + + +**Screenshots** + + +**Environment information** + +- Cordova CLI version + - `cordova -v` +- Cordova platform version + - `cordova platform ls` +- Plugins & versions installed in project (including this plugin) + - `cordova plugin ls` +- Dev machine OS and version, e.g. + - OSX + - `sw_vers` + - Windows 10 + - `winver` + +_Runtime issue_ +- Device details + - _e.g. iPhone X, Samsung Galaxy S8, iPhone X Simulator, Pixel XL Emulator_ +- OS details + - _e.g. iOS 12.2, Android 9.0_ + +_Android build issue:_ +- Node JS version + - `node -v` +- Gradle version + - `ls platforms/android/.gradle` +- Target Android SDK version + - `android:targetSdkVersion` in `AndroidManifest.xml` +- Android SDK details + - `sdkmanager --list | sed -e '/Available Packages/q'` + +_iOS build issue:_ +- Node JS version + - `node -v` +- XCode version + + +**Related code:** +``` +insert any relevant code here such as plugin API calls / input parameters +``` + +**Console output** +
+console output + +``` + +// Paste any relevant JS/native console output here + +``` + +


+ +**Other information:** + + + + + + + + diff --git a/StoneIsland/plugins/cordova-plugin-firebasex/.github/ISSUE_TEMPLATE/documentation-issue.md b/StoneIsland/plugins/cordova-plugin-firebasex/.github/ISSUE_TEMPLATE/documentation-issue.md new file mode 100644 index 00000000..f8d8d819 --- /dev/null +++ b/StoneIsland/plugins/cordova-plugin-firebasex/.github/ISSUE_TEMPLATE/documentation-issue.md @@ -0,0 +1,36 @@ +--- +name: Documentation issue +about: Describe an issue with the documentation +title: '' +labels: '' +assignees: '' + +--- + + + +# Documentation issue + + + + + + diff --git a/StoneIsland/plugins/cordova-plugin-firebasex/.github/ISSUE_TEMPLATE/feature_request.md b/StoneIsland/plugins/cordova-plugin-firebasex/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..539d7766 --- /dev/null +++ b/StoneIsland/plugins/cordova-plugin-firebasex/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,43 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: '' + +--- + + + +# Feature request + + + + diff --git a/StoneIsland/plugins/cordova-plugin-firebasex/.github/PULL_REQUEST_TEMPLATE.md b/StoneIsland/plugins/cordova-plugin-firebasex/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..fa6ad932 --- /dev/null +++ b/StoneIsland/plugins/cordova-plugin-firebasex/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,37 @@ +## PR Type +What kind of change does this PR introduce? + + +- [ ] Bugfix +- [ ] Feature +- [ ] Code style update (formatting, local variables) +- [ ] Refactoring (no functional changes, no api changes) +- [ ] Documentation changes +- [ ] Other... Please describe: + + + +## PR Checklist +For bug fixes / features, please check if your PR fulfills the following requirements: + +- [ ] Testing has been carried out for the changes have been added +- [ ] Regression testing has been carried out for existing functionality +- [ ] Docs have been added / updated + +## What is the purpose of this PR? + + + +## Does this PR introduce a breaking change? +- [ ] Yes +- [ ] No + + + +## What testing has been done on the changes in the PR? + + +## What testing has been done on existing functionality? + + +## Other information \ No newline at end of file -- cgit v1.2.3-70-g09d2