From fce58724a382cef9af86bb53405059917e3aa366 Mon Sep 17 00:00:00 2001 From: Aubrey Portwood Date: Fri, 23 Mar 2018 11:51:15 -0700 Subject: [PATCH] Update README --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index 49fa0aa..fbd5d56 100644 --- a/README.md +++ b/README.md @@ -39,3 +39,27 @@ I use Grunt to generate .pot files for language translations, simply run: ...which will generate a `plugin-name.pot` file in `languages/`. You can then use PoEdit and tools like it to open the `.pot` file and generate language `.mo` files. + +_______________ + +# Changelog + +## 1.2 + +This minor release fixes a major issue with `$app` being in the global space and conflicts with other plugins using the same architecture. #5 + +## 1.1 + +This is based off of some of 1.0's uses in different projects and has been improved to be more stable! + +- Added `App::version()` and `App::header()` methods for easy access to version and header information +- Added Grunt for easy `.pot` file creation, etc +- Adds `App->wp-debug` for easy `WP_DEBUG` detection +- Uses `App::attach()` method to attach new classes (must add manually) +- Uses `App::hooks()` method to run hooks when WP is ready (must add manually) +- Adds better `app()` callback and global `$app` that can alternatively be called using `global $app` +- Hardened `phpunit` testing for a good starting point for how the framework should work, you should be able to add additional tests with ease + +## 1.0 + +This came directly from a breakdown of the WDS SSO plugin that used my app framework. It does not work perfectly and has issues that could be problematic, so please use a future version.