diff --git a/CHANGELOG.md b/CHANGELOG.md index 451b8e93..1e7d50cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog + +## [3.9.3] (2025-12-03) + +### Added +* end-to-end tests to verify the toggle visual state in the snippets list page, improving UI verification and test reliability + +### Fixed +* Fix missing import of common/direction in src/css/manage.scss to restore correct styling and direction-aware layout +* Fix toggle activation check to ensure the correct transformation value is used when detecting active/inactive state + ## [3.9.2] (2025-11-17) ### Changed diff --git a/package-lock.json b/package-lock.json index c2c2c1d4..3260a843 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "code-snippets", - "version": "3.9.2", + "version": "3.9.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "code-snippets", - "version": "3.9.2", + "version": "3.9.3", "license": "GPL-2.0-or-later", "dependencies": { "@codemirror/fold": "^0.19.4", diff --git a/package.json b/package.json index 2cd64ae5..ff50f0f8 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "code-snippets", "description": "Manage code snippets running on a WordPress-powered site through a graphical interface.", "homepage": "https://codesnippets.pro", - "version": "3.9.2", + "version": "3.9.3", "main": "src/dist/edit.js", "directories": { "test": "tests" diff --git a/src/code-snippets.php b/src/code-snippets.php index 96f14d21..ad9b318f 100644 --- a/src/code-snippets.php +++ b/src/code-snippets.php @@ -8,11 +8,11 @@ * License: GPL-2.0-or-later * License URI: license.txt * Text Domain: code-snippets - * Version: 3.9.2 + * Version: 3.9.3 * Requires PHP: 7.4 * Requires at least: 5.0 * - * @version 3.9.2 + * @version 3.9.3 * @package Code_Snippets * @author Shea Bunge * @copyright 2012-2024 Code Snippets Pro @@ -37,7 +37,7 @@ * * @const string */ - define( 'CODE_SNIPPETS_VERSION', '3.9.2' ); + define( 'CODE_SNIPPETS_VERSION', '3.9.3' ); /** * The full path to the main file of this plugin. diff --git a/src/readme.txt b/src/readme.txt index adb2cf95..344ab2c0 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -4,7 +4,7 @@ Donate link: https://codesnippets.pro Tags: code, snippets, multisite, php, css License: GPL-2.0-or-later License URI: license.txt -Stable tag: 3.9.2 +Stable tag: 3.9.3 Tested up to: 6.8 An easy, clean and simple way to enhance your site with code snippets. @@ -104,6 +104,18 @@ You can report security bugs found in the source code of this plugin through the == Changelog == + += 3.9.3 (2025-12-03) = + +__Added__ + +* Enhanced end-to-end tests to verify the toggle visual state in the snippets list page, improving UI verification and test reliability + +__Fixed__ + +* Fix missing import of common/direction in src/css/manage.scss to restore correct styling and direction-aware layout +* Fix toggle activation check to ensure the correct transformation value is used when detecting active/inactive state + = 3.9.2 (2025-11-17) = __Changed__