Skip to content

Commit 31a7ce2

Browse files
authored
Merge pull request #258 from cloudinary/uat
Uat
2 parents cf5a14c + 1b9b5ec commit 31a7ce2

File tree

116 files changed

+53121
-19810
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+53121
-19810
lines changed

.editorconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# See https://make.wordpress.org/core/handbook/coding-standards/
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
end_of_line = lf
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true
9+
indent_style = tab
10+
11+
[*.yml]
12+
indent_style = space
13+
indent_size = 2
14+
15+
[*.md]
16+
trim_trailing_whitespace = false

.gitignore

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,43 @@
1+
*.log
2+
wp-config.php
3+
wp-content/advanced-cache.php
4+
wp-content/backup-db/
5+
wp-content/backups/
6+
wp-content/blogs.dir/
7+
wp-content/cache/
8+
wp-content/upgrade/
9+
wp-content/uploads/
10+
wp-content/mu-plugins/
11+
wp-content/wp-cache-config.php
12+
wp-content/plugins/hello.php
13+
14+
/.htaccess
15+
/license.txt
16+
/readme.html
17+
/sitemap.xml
18+
/sitemap.xml.gz
19+
120
.DS_Store
2-
/wordpress*
21+
22+
# Grunt
23+
/build/
24+
/node_modules/
25+
npm-debug.log
26+
27+
# Dev
28+
/vendor/
29+
/dev-lib/
30+
phpcs.xml
31+
32+
# Tests
33+
tests/data/
34+
tests/includes/
35+
coverage/html/
36+
37+
# ENV files
38+
.env
39+
40+
# IDE
41+
.vscode
42+
cloudinary-image-management-and-manipulation-in-the-cloud-cdn
43+
cloudinary-image-management-and-manipulation-in-the-cloud-cdn.zip

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
12

.travis.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
dist: xenial
2+
3+
language: php
4+
5+
before_install:
6+
- nvm install
7+
- nvm use
8+
9+
install:
10+
- npm install
11+
12+
jobs:
13+
14+
include:
15+
16+
- php: "5.6"
17+
script:
18+
- npm run lint
19+
- npm run build
20+
21+
- php: "7.4"
22+
script:
23+
- npm run lint
24+
- npm run build
25+
26+
notifications:
27+
email: false
28+
29+
cache:
30+
npm: true
31+
directories:
32+
- "$HOME/.composer/cache"

README.md

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,34 @@ This Git repository is the development repository, while there's a mirror public
1616

1717
Additional resources are available at:
1818

19-
* [Website](http://cloudinary.com)
20-
* [Documentation](http://cloudinary.com/documentation)
21-
* [Knowledge Base](http://support.cloudinary.com/forums)
19+
* [Website](https://cloudinary.com)
20+
* [Documentation](https://cloudinary.com/documentation)
21+
* [Knowledge Base](https://support.cloudinary.com/forums)
2222

2323
## Support
2424

2525
You can [open an issue through GitHub](https://github.com/cloudinary/cloudinary_wordpress/issues).
2626

27-
Contact us [http://cloudinary.com/contact](http://cloudinary.com/contact)
27+
Contact us [https://cloudinary.com/contact](https://cloudinary.com/contact)
2828

29-
Stay tuned for updates, tips and tutorials: [Blog](http://cloudinary.com/blog), [Twitter](https://twitter.com/cloudinary), [Facebook](http://www.facebook.com/Cloudinary).
29+
Stay tuned for updates, tips and tutorials: [Blog](https://cloudinary.com/blog), [Twitter](https://twitter.com/cloudinary), [Facebook](https://www.facebook.com/Cloudinary).
3030

31+
## Development
3132

32-
## License #######################################################################
33+
### Create a Plugin Release Package
3334

34-
Released under the GPL license.
35+
Run `npm run package` to create the plugin release in the `/build` directory and package it as `cloudinary-image-management-and-manipulation-in-the-cloud-cdn.zip` in the root directory.
3536

37+
Files included in the release package are defined in the `gruntfile.js` under the `copy` task. Be sure to update this list of files and directories when you add new files to the project.
3638

39+
### Deployment to WordPress.org
40+
41+
1. Tag a release from the `master` branch on GitHub.
42+
43+
2. Run `npm run deploy` to deploy the version referenced in the `cloudinary.php` file of the current branch.
44+
45+
3. Run `npm run deploy-assets` to deploy just the WP.org plugin assets such as screenshots, icons and banners.
46+
47+
## License
48+
49+
Released under the GPL license.

cloudinary-image-management-and-manipulation-in-the-cloud-cdn/.gitignore

Lines changed: 0 additions & 44 deletions
This file was deleted.

cloudinary-image-management-and-manipulation-in-the-cloud-cdn/css/cloudinary.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

cloudinary-image-management-and-manipulation-in-the-cloud-cdn/js/block-editor.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

cloudinary-image-management-and-manipulation-in-the-cloud-cdn/js/block-editor.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

cloudinary-image-management-and-manipulation-in-the-cloud-cdn/js/cloudinary.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)