diff --git a/CHANGELOG.md b/CHANGELOG.md index 64d59bc6..451b8e93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [3.9.2] (2025-11-17) + +### Changed +* Introduced a custom scissors icon and updated button title for the TinyMCE extension. +* Improved back-navigation styling on the edit page. +* Refined layout for column names and action buttons in the Cloud Snippets list. +* Enhanced overall styling of cloud-related UI components. +* Optimized cloud search with more efficient pagination and snippet retrieval. +* Introduced groundwork to prevent Composer dependency collisions with other plugins. + +### Fixed +* Improved sanitization and normalization across Cloud API and pagination outputs. +* Resolved various TinyMCE issues reported in the WordPress support forum. + ## [3.9.1] (2025-11-14) ### Changed diff --git a/package-lock.json b/package-lock.json index 0d9cc560..c2c2c1d4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "code-snippets", - "version": "3.9.1", + "version": "3.9.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "code-snippets", - "version": "3.9.1", + "version": "3.9.2", "license": "GPL-2.0-or-later", "dependencies": { "@codemirror/fold": "^0.19.4", diff --git a/package.json b/package.json index 35739080..2cd64ae5 100644 --- a/package.json +++ b/package.json @@ -2,10 +2,10 @@ "name": "code-snippets", "description": "Manage code snippets running on a WordPress-powered site through a graphical interface.", "homepage": "https://codesnippets.pro", - "version": "3.9.1", + "version": "3.9.2", "main": "src/dist/edit.js", "directories": { - "test": "tests" + "test": "tests" }, "scripts": { "test:playwright": "playwright test -c tests/playwright/playwright.config.ts", diff --git a/src/code-snippets.php b/src/code-snippets.php index 3b04350c..96f14d21 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.1 + * Version: 3.9.2 * Requires PHP: 7.4 * Requires at least: 5.0 * - * @version 3.9.1 + * @version 3.9.2 * @package Code_Snippets * @author Shea Bunge * @copyright 2012-2024 Code Snippets Pro @@ -37,7 +37,7 @@ * * @const string */ - define( 'CODE_SNIPPETS_VERSION', '3.9.1' ); + define( 'CODE_SNIPPETS_VERSION', '3.9.2' ); /** * The full path to the main file of this plugin. diff --git a/src/readme.txt b/src/readme.txt index cad52a60..adb2cf95 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.1 +Stable tag: 3.9.2 Tested up to: 6.8 An easy, clean and simple way to enhance your site with code snippets. @@ -104,6 +104,22 @@ You can report security bugs found in the source code of this plugin through the == Changelog == += 3.9.2 (2025-11-17) = + +__Changed__ + +* Introduced a custom scissors icon and updated button title for the TinyMCE extension. +* Improved back-navigation styling on the edit page. +* Refined layout for column names and action buttons in the Cloud Snippets list. +* Enhanced overall styling of cloud-related UI components. +* Optimized cloud search with more efficient pagination and snippet retrieval. +* Introduced groundwork to prevent Composer dependency collisions with other plugins. + +__Fixed__ + +* Improved sanitization and normalization across Cloud API and pagination outputs. +* Resolved various TinyMCE issues reported in the WordPress support forum. + = 3.9.1 (2025-11-14) = __Changed__