diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..d3a7b41 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,40 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## [1.1.5] - 2025-07-16 + +### Fixed +- Fixed deprecated PHP string interpolation syntax for PHP 8.2+ compatibility + +## [1.1.4] - 2024-XX-XX + +### Changed +- Enhanced class loading for the GitHub plugin updater + +## [1.1.3] - 2024-XX-XX + +### Changed +- Use generic [WordPress Plugin GitHub Updater](https://github.com/soderlind/wordpress-plugin-gitHub-updater?tab=readme-ov-file#wordpress-plugin-github-updater) + +## [1.1.2] - 2024-XX-XX + +### Changed +- Minor code improvements + +## [1.1.1] - 2024-XX-XX + +### Added +- Plugin updater + +## [1.1.0] - 2024-XX-XX + +### Changed +- Updated compatibility with WordPress 6.5 +- Code improvements and optimization +- Enhanced security measures + +## [1.0.0] - 2024-XX-XX + +### Added +- Initial release diff --git a/additional-javascript.php b/additional-javascript.php index d81bebe..74449d9 100644 --- a/additional-javascript.php +++ b/additional-javascript.php @@ -12,7 +12,7 @@ * Plugin URI: https://github.com/soderlind/additional-javascript * GitHub Plugin URI: https://github.com/soderlind/additional-javascript * Description: Add additional JavaScript using the WordPress Customizer. - * Version: 1.1.4 + * Version: 1.1.5 * Author: Per Soderlind * Author URI: https://soderlind.no * Text Domain: additional-javascript @@ -374,10 +374,10 @@ function customize_preview_additional_javascript() { function on_customize_controls_enqueue_scripts() { $suffix = is_rtl() ? '-rtl' : ''; $handle = 'additional-javascript-controls' . $suffix; - $src = plugins_url( "/css/customize-controls-custom-javascript${suffix}.css", __FILE__ ); + $src = plugins_url( "/css/customize-controls-custom-javascript{$suffix}.css", __FILE__ ); $deps = [ 'customize-controls' ]; - if ( file_exists( plugin_dir_path( __FILE__ ) . "css/customize-controls-custom-javascript${suffix}.css" ) ) { + if ( file_exists( plugin_dir_path( __FILE__ ) . "css/customize-controls-custom-javascript{$suffix}.css" ) ) { wp_enqueue_style( $handle, $src, $deps, ADDITIONAL_JAVASCRIPT_VERSION ); } } diff --git a/package.json b/package.json index 62ed0f5..28eaee0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "additional-javascript", - "version": "1.1.4", + "version": "1.1.5", "description": "Add additional JavaScript using the WordPress Customizer.", "keywords": [ "wordpress", diff --git a/readme.txt b/readme.txt index d29c5a5..9a27022 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: javascript, customizer, code, custom code, js Donate link: https://paypal.me/PerSoderlind Requires at least: 6.5 Tested up to: 6.8 -Stable tag: 1.1.4 +Stable tag: 1.1.5 Requires PHP: 8.2 License: GPL-2.0+ License URI: http://www.gnu.org/licenses/gpl-2.0.txt @@ -62,6 +62,9 @@ The JavaScript is added at the end of the `` section of your site with a p == Changelog == += 1.1.5 = +* Fixed deprecated PHP string interpolation syntax for PHP 8.2+ compatibility + = 1.1.4 = * Enhanced class loading for the GitHub plugin updater.