diff --git a/README.md b/README.md index 27302b1..fdf0b64 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,21 @@ After running `start`, or `build` command, there will be a folder called `/build You need activate the plugin from plugin list page. http://localhost/wpex/wp-admin/plugins.php +### Zip making process [Build, Localization, Version replace & Zip] +```sh +# One by one. +npm run build +npm run makepot +npm run version +npm run zip + +# Single release command - which actually will run the above all in single command. +npm run release +``` + +After running `release` command, there will be a folder called `/dist` will be generated at the root directory with `wp-react-kit.zip` project files. + + ### Run PHP Unit Test ```sh @@ -176,7 +191,7 @@ Or, it could be your custom processed URL. [View Detailed documentations with parameters and responses of the REST API](https://github.com/ManiruzzamanAkash/wp-react-kit/blob/main/Rest-API-Docs.MD) ### Version & Changelogs -**v0.5.0 - 14/11/2022** +**v0.5.0 - 15/11/2022** 1. New Feature : Job Create. 2. New Feature : Job Update. @@ -186,6 +201,9 @@ Or, it could be your custom processed URL. 6. New: Updated logo icon and plugin name. 7. New Components: Input Text-Editor, Improved design. 8. Refactor: Refactored codebase and updated docs. +9. New: Job type seeder. +10. Chore: Zip file generator. +11. Chore: i18n localization generator. ### Version & Changelogs **v0.4.1 - 18/08/2022** diff --git a/changelog.txt b/changelog.txt new file mode 100644 index 0000000..fb70e65 --- /dev/null +++ b/changelog.txt @@ -0,0 +1,39 @@ +### Changelogs + +**v0.5.0 - 14/11/2022** + +1. New Feature : Job Create. +2. New Feature : Job Update. +3. New Feature : Job Delete. +4. New Feature : Job Status change. +5. New API: Company dropdown list. +6. New: Updated logo icon and plugin name. +7. New Components: Input Text-Editor, Improved design. +8. Refactor: Refactored codebase and updated docs. +9. New: Job type seeder. +10. Chore: Zip file generator. +11. Chore: i18n localization generator. + +**v0.4.1 - 18/08/2022** + +1. Added Jest Unit Test Setup. +2. Added some dummy Jest Unit Test. +3. Fix #11 - Version naming while installing. + +**v0.4.0 - 12/08/2022** + +1. Added many re-usable general components. +1. Header Component refactored and re-designed. +1. WP-Data setup and made Job Store. +1. Job List Page frontend added. + +**v0.3.1 - 11/08/2022** + +1. PHPUnit Test cases setup. +1. PHPUnit Test cases added for Job Manager and Job REST API's. + +**v0.3.0 - 02/08/2022** + +1. Necessary traits to handle - sanitization, query. +1. Advanced setup for migration, seeder, REST API. +1. Jobs, Job Types REST API developed. \ No newline at end of file