Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions src/code-snippets.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
* 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 <shea@codesnippets.pro>
* @copyright 2012-2026 Code Snippets Pro
Expand All @@ -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.
Expand Down
11 changes: 9 additions & 2 deletions src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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__
Expand All @@ -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) =

Expand Down
Loading