diff --git a/CHANGELOG.md b/CHANGELOG.md index ac17784d..5873a7b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 3.6.2 (08 Nov 2023) +* Fixed: Error when attempting to save shared network snippets marked as active. +* Fixed: Type error when rendering checkbox fields without a stored or default value. +* Fixed: Removed automatic encoding of code content. +* Fixed: Label for snippet sharing input incorrectly linked to input field. +* Fixed: Error when attempting to download export files from Edit menu. +* Fixed: Issue loading Freemius string overrides too early. (PRO) +* Fixed: Fix redirect URL when connecting with OAuth on subdirectory or HTTPS sites. (PRO) + ## 3.6.1 (07 Nov 2023) * Fixed: Issue accessing fields on Snippets class. diff --git a/code-snippets.php b/code-snippets.php index 4ab2f8ce..036e3764 100644 --- a/code-snippets.php +++ b/code-snippets.php @@ -8,11 +8,11 @@ * License: GPL-2.0-or-later * License URI: license.txt * Text Domain: code-snippets - * Version: 3.6.1 + * Version: 3.6.2 * Requires PHP: 7.4 * Requires at least: 5.0 * - * @version 3.6.1 + * @version 3.6.2 * @package Code_Snippets * @author Shea Bunge * @copyright 2012-2023 Code Snippets Pro @@ -37,7 +37,7 @@ * * @const string */ - define( 'CODE_SNIPPETS_VERSION', '3.6.1' ); + define( 'CODE_SNIPPETS_VERSION', '3.6.2' ); /** * The full path to the main file of this plugin. diff --git a/package-lock.json b/package-lock.json index b2b338f2..791c921b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "code-snippets", - "version": "3.6.1", + "version": "3.6.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "code-snippets", - "version": "3.6.1", + "version": "3.6.2", "license": "GPL-2.0-or-later", "dependencies": { "@codemirror/fold": "^0.19.3", diff --git a/package.json b/package.json index b48ab38e..1f74dec9 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "description": "Manage code snippets running on a WordPress-powered site through a graphical interface.", "homepage": "https://wordpress.org/plugins/code-snippets", "main": "gulpfile.babel.ts", - "version": "3.6.1", + "version": "3.6.2", "directories": { "test": "tests" }, diff --git a/readme.txt b/readme.txt index c41e022c..f0a116d4 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: https://codesnippets.pro Tags: snippets, functions, multisite, code, php, html, css, javascript License: MIT License URI: license.txt -Stable tag: 3.6.1 +Stable tag: 3.6.2 Tested up to: 6.4 An easy, clean and simple way to run code snippets on your site. @@ -131,7 +131,16 @@ You can report security bugs found in the source code of this plugin through the == Changelog == -## 3.6.1 (07 Nov 2023) += 3.6.2 (08 Nov 2023) = +* Fixed: Error when attempting to save shared network snippets marked as active. +* Fixed: Type error when rendering checkbox fields without a stored or default value. +* Fixed: Removed automatic encoding of code content. +* Fixed: Label for snippet sharing input incorrectly linked to input field. +* Fixed: Error when attempting to download export files from Edit menu. +* Fixed: Issue loading Freemius string overrides too early. (PRO) +* Fixed: Fix redirect URL when connecting with OAuth on subdirectory or HTTPS sites. (PRO) + += 3.6.1 (07 Nov 2023) = * Fixed: Issue accessing fields on Snippets class. = 3.6.0 (07 Nov 2023) = @@ -262,8 +271,3 @@ thanks to contributions made by [Amaral Krichman](https://github.com/karmaral). * Improved: Allow display styles in snippet descriptions. **[The full changelog is available on GitHub](https://github.com/codesnippetspro/code-snippets/blob/master/CHANGELOG.md)** - -== Upgrade Notice == - -= 3.6.1 = -New Pro feature: Generate and explain snippets using AI.