Skip to content

Commit 1cb269e

Browse files
committed
Update version number to 3.7.0-beta.7.
1 parent ecb1434 commit 1cb269e

File tree

5 files changed

+34
-66
lines changed

5 files changed

+34
-66
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77

88
### Changed
99
* Redesigned edit menu with refreshed look and functionality.
10+
* Updated snippet type badges to be more visually distinct.
11+
* Redesigned tooltips used throughout the plugin.
12+
* Moved content snippet shortcode options into separate modal window.
13+
* Updated snippet tag editor to use built-in WordPress tag editor.
14+
* Created proper form for sharing beta feedback.
15+
* Improved UX of snippet activation toggle.
1016

1117
### Fixed
1218
* Fetching active snippets on a multisite network now respects the 'priority' field above all else when ordering snippets.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "code-snippets",
33
"description": "Manage code snippets running on a WordPress-powered site through a graphical interface.",
44
"homepage": "https://codesnippets.pro",
5-
"version": "3.7.0-beta.5",
5+
"version": "3.7.0-beta.7",
66
"main": "src/dist/edit.js",
77
"directories": {
88
"test": "tests"

src/code-snippets.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
* License: GPL-2.0-or-later
99
* License URI: license.txt
1010
* Text Domain: code-snippets
11-
* Version: 3.7.0-beta.5
11+
* Version: 3.7.0-beta.7
1212
* Requires PHP: 7.4
1313
* Requires at least: 5.0
1414
*
15-
* @version 3.7.0-beta.5
15+
* @version 3.7.0-beta.7
1616
* @package Code_Snippets
1717
* @author Shea Bunge <shea@codesnippets.pro>
1818
* @copyright 2012-2024 Code Snippets Pro
@@ -37,7 +37,7 @@
3737
*
3838
* @const string
3939
*/
40-
define( 'CODE_SNIPPETS_VERSION', '3.7.0-beta.5' );
40+
define( 'CODE_SNIPPETS_VERSION', '3.7.0-beta.7' );
4141

4242
/**
4343
* The full path to the main file of this plugin.

src/readme.txt

Lines changed: 22 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: https://codesnippets.pro
44
Tags: code, snippets, multisite, php, css
55
License: GPL-2.0-or-later
66
License URI: license.txt
7-
Stable tag: 3.7.0-beta.5
7+
Stable tag: 3.7.0-beta.7
88
Tested up to: 6.8.2
99

1010
An easy, clean and simple way to enhance your site with code snippets.
@@ -106,38 +106,53 @@ You can report security bugs found in the source code of this plugin through the
106106

107107
= 3.7.0 (beta release) =
108108

109-
### Added
109+
__Added__
110+
110111
* New 'conditions' feature: control where and when snippets execute with a powerful logic builder. (PRO)
111112

112-
### Changed
113+
__Changed__
114+
113115
* Redesigned edit menu with refreshed look and functionality.
116+
* Updated snippet type badges to be more visually distinct.
117+
* Redesigned tooltips used throughout the plugin.
118+
* Moved content snippet shortcode options into separate modal window.
119+
* Updated snippet tag editor to use built-in WordPress tag editor.
120+
* Created proper form for sharing beta feedback.
121+
* Improved UX of snippet activation toggle.
122+
123+
__Fixed__
114124

115-
### Fixed
116125
* Fetching active snippets on a multisite network now respects the 'priority' field above all else when ordering snippets.
117126
* Cloud search appears correctly and allows downloading snippets in the free version of Code Snippets.
118127

119128
= 3.6.9 (2025-02-17) =
120129

121130
__Changed__
131+
122132
* Updated `Cloud_API::get_bundles()` to properly check bundle data and return an empty array if no valid bundles are present.
123133
* Refactored `Cloud_List_Table::fetch_snippets()` to always return a valid `Cloud_Snippets` instance.
124134
* Cleaned up bundle iteration code and improved translation handling in the bundles view.
125135

126136
__Fixed__
137+
127138
* Fixed errors in bundle iteration by adding a check for the bundles array before iterating.
128139

129140
= 3.6.8 (2025-02-14) =
130141

131142
__Added__
143+
132144
* `code_snippets/hide_welcome_banner` filter hook for hiding welcome banner in dashboard.
133145

134146
__Changed__
147+
135148
* Updated Freemius SDK to the latest version. (PRO)
136149

137150
__Removed__
151+
138152
* Functionality allowing `[code_snippet]` shortcodes to be embedded recursively – it will be re-added in a future version.
139153

140154
__Fixed__
155+
141156
* Shortcodes embedded within `[code_snippet]` shortcodes not evaluating correctly.
142157
* Translation functions being called too early in some instances when loading plugin settings.
143158
* 'Generate' button not appearing on some sites. (PRO)
@@ -147,15 +162,18 @@ __Fixed__
147162
= 3.6.7 (2025-01-24) =
148163

149164
__Added__
165+
150166
* Generated snippet shortcode tags will include the snippet name, for easier identification.
151167
* Admin notices will dismiss automatically after five seconds. ([#208](https://github.com/codesnippetspro/code-snippets/issues/208))
152168

153169
__Changed__
170+
154171
* Updated CSS to use latest Sass features.
155172
* Moved theme selector to just above editor preview on settings page (thanks to brandonjp). ([#206](https://github.com/codesnippetspro/code-snippets/issues/206))
156173
* `[code_snippet]` shortcodes can now be nested within each other. ([#198](https://github.com/codesnippetspro/code-snippets/issues/198))
157174

158175
__Fixed__
176+
159177
* Save buttons above editor did not follow usual validation process in Pro. (PRO) ([#197](https://github.com/codesnippetspro/code-snippets/issues/197))
160178
* Minor inconsistencies in consistent UI elements between Core and Pro.
161179
* Tags input not allowing input. ([#211](https://github.com/codesnippetspro/code-snippets/issues/211))
@@ -301,60 +319,4 @@ __Fixed__
301319

302320
* Error when attempting to update network shared snippets after saving. [[#](https://wordpress.org/support/topic/activating-snippets-breaks-on-wordpress-6-3/)]
303321

304-
= 3.4.2 (2023-07-05) =
305-
306-
__Fixed__
307-
308-
* Issue causing export process to fail with fatal error. [[#](https://wordpress.org/support/topic/critical-error-on-exporting-snippets/)]
309-
* Type issue on `the_posts` filter when no posts available. [[#](https://wordpress.org/support/topic/collision-with-plugin-xml-sitemap-google-news/)]
310-
311-
= 3.4.1 (2023-06-29) =
312-
313-
__Added__
314-
315-
* Added better debugging when calling REST API methods from the edit menu.
316-
317-
__Changed__
318-
319-
* Escape special characters when sending snippet code through AJAX to avoid false-positives from security modules. [[#](https://wordpress.org/support/topic/latest-3-4-0-ajax-bug-cannot-save-snippets-403-error/)]
320-
* Only display the latest update or error notice on the edit page, instead of allowing them to stack.
321-
322-
__Fixed__
323-
324-
* Undefined array key error. [[#](https://wordpress.org/support/topic/after-updating-occasionally-getting-undefined-array-key-query/)]
325-
* Potential type issue when loading Prism. [[#](https://wordpress.org/support/topic/code-snippets-fatal-error-breaking-xml-sitemaps/)]
326-
* Potential type issue when sorting snippets. [[#](https://github.com/codesnippetspro/code-snippets/issues/166)]
327-
* Issue preventing asset revision numbers from updating correctly. (PRO) [[#](https://github.com/codesnippetspro/code-snippets/issues/166)]
328-
329-
= 3.4.0 (2023-05-17) =
330-
331-
__Added__
332-
333-
* Proper WordPress REST API support for retrieving and modifying snippets.
334-
* Added help links to content snippet options.
335-
336-
__Changed__
337-
338-
* Better compatibility with modern versions of PHP (7.0+).
339-
* Converted Edit/Add New Snippet page to use React.
340-
* Converted action buttons to asynchronously use REST API endpoints through AJAX.
341-
* Load page components dynamically through React.
342-
* Added action notice queue system.
343-
* Replaced native alert dialog with proper React modal.
344-
* Catch snippet execution errors to prevent site from crashing.
345-
* Display recent snippet errors in admin dashboard instead.
346-
* Updated editor block to use new REST API endpoints. (PRO)
347-
* Change colour of upgrade notice in Pro plugin. (PRO)
348-
* All available snippet data is included in export files.
349-
* Only import specific fields from export file, even if additional fields specified.
350-
* Pass additional attributes specified in `[code_snippet]` content shortcode to shortcode content.
351-
* Make shortcode attributes available as individual variables.
352-
* Allow boolean attributes to be passed to code snippets shortcodes without specifying a value.
353-
* Replace external links to Pro pricing page with an upgrade modal.
354-
355-
__Fixed__
356-
357-
* Issue preventing editor colorpicker from loading correctly. (PRO)
358-
* Issue preventing linting libraries from loading correctly in the code editor.
359-
360322
**[The full changelog is available on GitHub](https://github.com/codesnippetspro/code-snippets/blob/core/CHANGELOG.md)**

0 commit comments

Comments
 (0)