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
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [3.9.0-beta.2] (2025-11-10)

### Added
* Added 'Snippets' row action to the Network Sites table
* Improved snippet name visibility for network users

### Changed
* Refined badge styling and hover effects for row actions and badges
* Impoved icon style and color usage for network snippets for clearer differentiation

### Fixed
* Improved network snippets management with better subsite menu permission checks
* Fixed status labels for shared network snippets
* Corrected network condition checks and improved snippet fetching logic
* Handled fatal errors in file-based snippets to prevent crashes

## [3.9.0-beta.1] (2025-11-03)

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": "3.9.0-beta.1",
"version": "3.9.0-beta.2",
"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: 3.9.0-beta.1
* Version: 3.9.0-beta.2
* Requires PHP: 7.4
* Requires at least: 5.0
*
* @version 3.9.0-beta.1
* @version 3.9.0-beta.2
* @package Code_Snippets
* @author Shea Bunge <shea@codesnippets.pro>
* @copyright 2012-2024 Code Snippets Pro
Expand All @@ -37,7 +37,7 @@
*
* @const string
*/
define( 'CODE_SNIPPETS_VERSION', '3.9.0-beta.1' );
define( 'CODE_SNIPPETS_VERSION', '3.9.0-beta.2' );

/**
* The full path to the main file of this plugin.
Expand Down