From 4d3e5f9ae4e19ef33c6be795fbd15977174738eb Mon Sep 17 00:00:00 2001 From: code-snippets-bot <139164393+code-snippets-bot@users.noreply.github.com> Date: Tue, 4 Aug 2026 12:04:51 +0000 Subject: [PATCH 1/3] chore(release): bump version to v3.10.0-beta.1 --- package-lock.json | 4 ++-- package.json | 2 +- src/code-snippets.php | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index bb3e8332f..7f515745a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "code-snippets", - "version": "4.0.0-beta.2", + "version": "3.10.0-beta.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "code-snippets", - "version": "4.0.0-beta.2", + "version": "3.10.0-beta.1", "license": "GPL-2.0-or-later", "dependencies": { "@codemirror/fold": "^0.19.4", diff --git a/package.json b/package.json index ecd8c138f..5de45643c 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": "4.0.0-beta.2", + "version": "3.10.0-beta.1", "main": "src/dist/edit.js", "directories": { "test": "tests" diff --git a/src/code-snippets.php b/src/code-snippets.php index 2f7c6ff71..7168a03af 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: 4.0.0-beta.2 + * Version: 3.10.0-beta.1-beta.1 * Requires PHP: 7.4 * Requires at least: 5.5 * - * @version 4.0.0-beta.2 + * @version 3.10.0-beta.1 * @package Code_Snippets * @author Shea Bunge * @copyright 2012-2026 Code Snippets Pro @@ -37,7 +37,7 @@ * * @const string */ - define( 'CODE_SNIPPETS_VERSION', '4.0.0-beta.2' ); + define( 'CODE_SNIPPETS_VERSION', '3.10.0-beta.1' ); /** * The full path to the main file of this plugin. From 26098d321722f76c3a7a4fde08d9e08733e62894 Mon Sep 17 00:00:00 2001 From: Imants Date: Tue, 4 Aug 2026 15:08:09 +0300 Subject: [PATCH 2/3] chore(release): correct the plugin header version --- src/code-snippets.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/code-snippets.php b/src/code-snippets.php index 7168a03af..f9df2c2cc 100644 --- a/src/code-snippets.php +++ b/src/code-snippets.php @@ -8,7 +8,7 @@ * License: GPL-2.0-or-later * License URI: license.txt * Text Domain: code-snippets - * Version: 3.10.0-beta.1-beta.1 + * Version: 3.10.0-beta.1 * Requires PHP: 7.4 * Requires at least: 5.5 * From d6de351a161fdf25673e32a2232db30435470717 Mon Sep 17 00:00:00 2001 From: Imants Date: Tue, 4 Aug 2026 15:34:18 +0300 Subject: [PATCH 3/3] docs: reconcile the changelog for the 3.10 release line --- CHANGELOG.md | 11 +++++++++-- src/readme.txt | 11 +++++++++-- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8acd9182..c9db77a9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,18 @@ # Changelog -## [4.0.0] (UPCOMING) +## [3.10.0] (UPCOMING) ### Added * New admin interface for managing snippets, with a cleaner layout, faster interactions, and a more consistent experience across plugin screens. +* Card view for browsing snippets, with a view switcher on the snippets table and Community Cloud. +* Snippet preview modal for viewing snippet code from the snippets table without opening the editor. +* Automatic hiding of unrelated admin notices from other plugins on Code Snippets screens. * Admin bar snippet drawer, based on the Deckerweb Snippets workflow, for quick access to snippets and Safe Mode from the WordPress admin bar. * Snippet locking to help prevent accidental edits or deletion of important snippets. Props to https://github.com/mgiannopoulos24. * Improved screen options on the main snippets table, including controls for visible columns and truncating long snippet names or descriptions. * Bulk actions and bulk code download support in the redesigned snippets table. * Featured snippets and improved browsing in Community Cloud. -* WordPress 7.0 admin styling compatibility. +* WordPress modern theme admin styling compatibility. * Clearer accessibility labels, headings, tab markup, table checkboxes, sort buttons, copy buttons, and drag-and-drop upload controls. ### Changed @@ -27,6 +30,10 @@ * Fixed redundant frontend logic, improving overall performance. * Fixed Community Cloud search results and pagination to respect WordPress screen options. * Fixed snippet saving and activation feedback to improve validation and runtime error display. +* Fixed downloaded Community Cloud snippets appearing as not downloaded after a page reload. +* Fixed network snippet lookups using the wrong database table on multisite. +* Fixed the inactive snippets count including trashed snippets. +* Fixed featured Community Cloud snippets failing to load with some cloud API responses. ## [3.9.6] (2026-04-28) diff --git a/src/readme.txt b/src/readme.txt index d223c8bc9..7f42f997b 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -106,17 +106,20 @@ You can report security bugs found in the source code of this plugin through the == Changelog == -= 4.0.0 (UPCOMING) = += 3.10.0 (UPCOMING) = __Added__ * New admin interface for managing snippets, with a cleaner layout, faster interactions, and a more consistent experience across plugin screens. +* Card view for browsing snippets, with a view switcher on the snippets table and Community Cloud. +* Snippet preview modal for viewing snippet code from the snippets table without opening the editor. +* Automatic hiding of unrelated admin notices from other plugins on Code Snippets screens. * Admin bar snippet drawer, based on the Deckerweb Snippets workflow, for quick access to snippets and Safe Mode from the WordPress admin bar. * Snippet locking to help prevent accidental edits or deletion of important snippets. Props to https://github.com/mgiannopoulos24. * Improved screen options on the main snippets table, including controls for visible columns and truncating long snippet names or descriptions. * Bulk actions and bulk code download support in the redesigned snippets table. * Featured snippets and improved browsing in Community Cloud. -* WordPress 7.0 admin styling compatibility. +* WordPress modern theme admin styling compatibility. * Clearer accessibility labels, headings, tab markup, table checkboxes, sort buttons, copy buttons, and drag-and-drop upload controls. __Changed__ @@ -136,6 +139,10 @@ __Fixed__ * Fixed redundant frontend logic, improving overall performance. * Fixed Community Cloud search results and pagination to respect WordPress screen options. * Fixed snippet saving and activation feedback to improve validation and runtime error display. +* Fixed downloaded Community Cloud snippets appearing as not downloaded after a page reload. +* Fixed network snippet lookups using the wrong database table on multisite. +* Fixed the inactive snippets count including trashed snippets. +* Fixed featured Community Cloud snippets failing to load with some cloud API responses. = 3.9.6 (2026-04-28) =