diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c0721e..b2823d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +## [0.3.3] + +### Added + +- **Readme.txt Compliance**: Updated the `readme.txt` file to comply with WordPress Plugin Directory requirements. Added missing sections including `Requires PHP` field, `Frequently Asked Questions`, `Changelog`, `Upgrade Notice`, and `Screenshots`. + +### Fixed + +- **API Client URL Encoding**: Ensured proper URL encoding of query parameter values in the `API_Client` class. This fix allows spaces and dashes in advanced query parameters, resolving issues where certain valid characters were not being correctly encoded when making API requests. + +- **Settings Sanitization**: Updated the `Settings_Page` class to allow spaces and dashes in the advanced query parameters. Modified the `sanitize_query` method to permit valid special characters, ensuring that user input is not unnecessarily stripped. + +### Changed + +- **Advanced Query Handling**: Improved processing of advanced query parameters in the `API_Client` to handle special characters correctly. Enhanced the method of parsing and rebuilding the query string to ensure parameters are properly URL-encoded and conflicting parameters are removed. + +- **Integration of Readme Content**: Merged content from `README.md` into `readme.txt` to ensure consistency and completeness. Adjusted formatting and sections to meet WordPress Plugin Directory standards, providing users with detailed plugin information directly from the plugin page. + + ## [0.3.2] ### Fixed diff --git a/bridge-directory/bridge-directory.php b/bridge-directory/bridge-directory.php index 8f1bb67..1f5534d 100644 --- a/bridge-directory/bridge-directory.php +++ b/bridge-directory/bridge-directory.php @@ -3,7 +3,7 @@ * Plugin Name: Bridge Directory * Plugin URI: https://github.com/RAHB-REALTORS-Association/Bridge-Directory-WP * Description: Displays a searchable directory of offices using the Bridge Interactive API. - * Version: 0.3.2 + * Version: 0.3.3 * Author: Cornerstone Association of REALTORS * Author URI: https://www.cornerstone.inc * License: GPL-2.0 diff --git a/bridge-directory/package.json b/bridge-directory/package.json index 01c663d..8e451ed 100644 --- a/bridge-directory/package.json +++ b/bridge-directory/package.json @@ -1,6 +1,6 @@ { "name": "bridge-directory", - "version": "0.3.2", + "version": "0.3.3", "description": "A WordPress plugin that displays a searchable directory of offices using the Bridge Interactive API.", "main": "index.js", "scripts": {