11# [ Disqus Conditional Load] ( https://wordpress.org/plugins/disqus-conditional-load ) - for WordPress
22
33Disqus commenting system for WordPress with advanced features like like <strong >lazy load, shortcode</strong > etc.
4+
45<hr />
56
67##### Contributors: <a href =" https://github.com/joel-james/ " >Joel James</a >
8+
79##### Requires at least: WordPress 3.0
8- ##### Tested up to: WordPress 5.0
9- ##### Stable tag: 11.0.1
10+
11+ ##### Tested up to: WordPress 5.5
12+
13+ ##### Stable tag: 11.0.4
1014
1115Before starting development make sure you read and understand everything in this README.
1216
@@ -24,22 +28,26 @@ Clone the plugin repo and checkout the `dev` branch
2428## Installing dependencies and initial configuration
2529
2630Install Node
31+
2732```
2833# curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
2934# sudo apt-get install -y nodejs build-essential
3035```
3136
3237Install the necessary npm modules and packages
38+
3339```
3440# npm install
35- ```
41+ ```
3642
3743After that for the first time, run below command to create updated assets.
44+
3845```
3946# npm run compile
40- ```
47+ ```
4148
4249Set up username and email for Git commits
50+
4351```
4452# git config user.email "<your email>"
4553# git config user.name "<your name>"
@@ -49,40 +57,40 @@ Set up username and email for Git commits
4957
5058Everything (except unit tests) should be handled by npm. Note that you don't need to interact with Grunt in a direct way.
5159
52- Command | Action
53- ------- | ------
54- ` npm run translate ` | Build pot and mo file inside /languages/ folder
55- ` npm run compile ` | Compile and then generates assets (js & css)
56- ` npm run build ` | Build release version, useful to provide for testing
60+ | Command | Action |
61+ | ------------------- | ---------------------------------------------------- |
62+ | ` npm run translate ` | Build pot and mo file inside /languages/ folder |
63+ | ` npm run compile ` | Compile and then generates assets (js & css) |
64+ | ` npm run build ` | Build release version, useful to provide for testing |
5765
5866## Versioning
5967
6068Follow semantic versioning [ http://semver.org/ ] ( http://semver.org/ ) as ` package.json ` won't work otherwise. That's it:
6169
62- - ` X.X.0 ` for mayor versions
63- - ` X.X.X ` for minor versions
64- - ` X.X[.X||.0]-rc.1 ` for release candidates
65- - ` X.X[.X||.0]-beta.1 ` for betas
70+ - ` X.X.0 ` for mayor versions
71+ - ` X.X.X ` for minor versions
72+ - ` X.X[.X||.0]-rc.1 ` for release candidates
73+ - ` X.X[.X||.0]-beta.1 ` for betas
6674
6775## Workflow
6876
6977Do not commit on ` master ` branch (if you are on a forked repo, no need to worry). ` dev ` is the code
7078that accumulates all the code for the next version.
7179
72- - Create a new branch from ` dev ` branch: ` git checkout -b branch-name origin/dev ` . Try to give it a descriptive name. For example:
73- * ` release/X.X.X ` for next releases
74- * ` new/some-feature ` for new features
75- * ` enhance/some-enhancement ` for enhancements
76- * ` fix/some-bug ` for bug fixing
77- - Make your commits and push the new branch: ` git push -u origin branch-name `
78- - File the new Pull Request against ` dev ` branch
79- - Once the PR is approved it will be merged to the ` dev ` branch.
80+ - Create a new branch from ` dev ` branch: ` git checkout -b branch-name origin/dev ` . Try to give it a descriptive name. For example:
81+ - ` release/X.X.X ` for next releases
82+ - ` new/some-feature ` for new features
83+ - ` enhance/some-enhancement ` for enhancements
84+ - ` fix/some-bug ` for bug fixing
85+ - Make your commits and push the new branch: ` git push -u origin branch-name `
86+ - File the new Pull Request against ` dev ` branch
87+ - Once the PR is approved it will be merged to the ` dev ` branch.
8088
8189If you are sending pull requests from your forked repo, follow the same steps.
8290
8391## Important Links and Documentation
8492
85- - <a href =" https://dclwp.com/ " ><strong >Plugin Website</strong ></a >
86- - <a href =" https://wordpress.org/plugins/disqus-conditional-load/ " ><strong >WordPress Page</strong ></a >
87- - <a href =" https://wordpress.org/support/plugin/disqus-conditional-load/ " ><strong >Plugin Support Forum</strong ></a >
88- - <a href =" https://dclwp.com/docs/ " ><strong >Documentation</strong ></a >
93+ - <a href =" https://dclwp.com/ " ><strong >Plugin Website</strong ></a >
94+ - <a href =" https://wordpress.org/plugins/disqus-conditional-load/ " ><strong >WordPress Page</strong ></a >
95+ - <a href =" https://wordpress.org/support/plugin/disqus-conditional-load/ " ><strong >Plugin Support Forum</strong ></a >
96+ - <a href =" https://dclwp.com/docs/ " ><strong >Documentation</strong ></a >
0 commit comments