- Housekeeping
- Catch errors in the cache handler. If the cache file is corrupt, update the file and return the .mo file.
- If running WordPress 6.5, give a notice that the plugin is not needed.
- Fail gracefully if cache directory can't be created.
- Housekeeping
- Add uninstall handler. Will remove the cache directory when the plugin is uninstalled.
- Fix bug in cache handler.
- Refactor cache handler.
- Bump version to force deploy to WordPress.org
- Deploy with GitHub Actions to WordPress.org
- Remove
mkdir()
- fail gracefully if
$cache_path
can't be created.
- Add filter
a_faster_load_textdomain_cache_path
- Rename namespace to
Soderlind\Plugin\A_Faster_Load_Textdomain
- Rename cache directory to
WP_CONTENT_DIR . '/cache/a-faster-load-textdomain'
- Rename file to
a-faster-load-textdomain.php
to follow WordPress plugin standards.
- Refactor code, instead of using a transient, save .mo file as an PHP array, and include the array instead of the .mo file.
- Housekeeping.
- DRY (Don't Repeat Yourself) code. Add namespace.
- Add multisite support
- Initial release