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

## [3.9.1] (2025-11-14)

### Changed
* Migrated to native CSS direction handling (RTL/LTR) for improved compatibility and simpler styling
* Updated dependencies to the latest compatible versions

### Fixed
* Fixed TinyMCE menu button registration to prevent initialization failure
* Fixed the position of the 'code direction' control in the editor

## [3.9.0] (2025-11-13)

### Added
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",
"version": "3.9.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: 3.9.0
* Version: 3.9.1
* Requires PHP: 7.4
* Requires at least: 5.0
*
* @version 3.9.0
* @version 3.9.1
* @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' );
define( 'CODE_SNIPPETS_VERSION', '3.9.1' );

/**
* The full path to the main file of this plugin.
Expand Down
14 changes: 13 additions & 1 deletion src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.0
Stable tag: 3.9.1
Tested up to: 6.8.2

An easy, clean and simple way to enhance your site with code snippets.
Expand Down Expand Up @@ -104,6 +104,18 @@ You can report security bugs found in the source code of this plugin through the

== Changelog ==

= 3.9.1 (2025-11-14) =

__Changed__

* Migrated to native CSS direction handling (RTL/LTR) for improved compatibility and simpler styling
* Updated dependencies to the latest compatible versions

__Fixed__

* Fixed TinyMCE menu button registration to prevent initialization failure
* Fixed the position of the 'code direction' control in the editor

= 3.9.0 (2025-11-13) =

__Added__
Expand Down
Loading