-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into fix/in-querie
# Conflicts: # classes/class-query.php
- Loading branch information
Showing
129 changed files
with
14,813 additions
and
4,736 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
coverage_clover: tests/reports/clover.xml | ||
json_path: tests/reports/coveralls-upload.json | ||
service_name: travis-ci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/ui/lib/ | ||
**/*.min.js | ||
/vendor/ | ||
/node_modules/ | ||
/build/ | ||
/local/public/ | ||
/dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"env": { | ||
"browser": true | ||
}, | ||
"extends": [ | ||
"plugin:@wordpress/eslint-plugin/es5" | ||
], | ||
"rules": { | ||
"camelcase": "off", | ||
"no-alert": "off", | ||
"vars-on-top": "warn" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
Delete the section that is not applicable: | ||
|
||
# Feature Request | ||
|
||
Describe the suggested feature and how it's beneficial to Stream users. | ||
|
||
|
||
# Bug Report | ||
|
||
## Expected Behavior | ||
|
||
Describe what should happen. | ||
|
||
## Actual Behavior | ||
|
||
Describe what actually happens. | ||
|
||
## Steps to Reproduce the Problem | ||
|
||
1. | ||
|
||
2. | ||
|
||
3. | ||
|
||
## Screenshots | ||
|
||
Drag and drop screenshots in this area that help illustrate the problem. | ||
|
||
## System Information | ||
|
||
- Stream plugin version: | ||
- WordPress version: | ||
- PHP version: | ||
- Browser: | ||
- Computer operating system: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
Fixes #000. | ||
|
||
Describe your approach and how it fixes the issue. | ||
|
||
# Checklist | ||
|
||
- [ ] Project documentation has been updated to reflect the changes in this pull request, if applicable. | ||
- [ ] I have tested the changes in the local development environment (see `contributing.md`). | ||
- [ ] I have added phpunit tests. | ||
|
||
|
||
## Release Changelog | ||
|
||
- Fix: Describe a bug fix included in this release. | ||
- New: Describe a new feature in this release. | ||
|
||
|
||
## Release Checklist | ||
|
||
- [ ] This pull request is to the `master` branch. | ||
- [ ] Release version follows [semantic versioning](https://semver.org). Does it include breaking changes? | ||
- [ ] Update changelog in `readme.txt`. | ||
- [ ] Bump version in `stream.php`. | ||
- [ ] Bump `Stable tag` in `readme.txt`. | ||
- [ ] Bump version in `classes/class-plugin.php`. | ||
- [ ] Draft a release [on GitHub](https://github.com/xwp/stream/releases/new). | ||
|
||
|
||
Change `[ ]` to `[x]` to mark the items as done. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"recommendations": [ | ||
"EditorConfig.EditorConfig", | ||
"felixfbecker.php-debug", | ||
"ikappas.phpcs" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Listen for Stream XDebug", | ||
"type": "php", | ||
"request": "launch", | ||
"port": 9000, | ||
"pathMappings": { | ||
"/var/www/html/wp-content/plugins/stream-src": "${workspaceRoot}", | ||
"/var/www/html/wp-content/plugins/stream": "${workspaceRoot}/build", | ||
"/var/www/html": "${workspaceRoot}/local/public" | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.