Version Description
- Bug: Fixed a variable naming issue that I may, or may not (I did), have created in the latest release
Download this release
Release Info
Developer | dartiss |
Plugin | Code Embed |
Version | 2.3.1 |
Comparing to | |
See all releases |
Code changes from version 2.3 to 2.3.1
- includes/initialise.php +1 -1
- readme.txt +8 -4
- simple-code-embed.php +2 -2
includes/initialise.php
CHANGED
@@ -21,7 +21,7 @@ function ce_initialisation() {
|
|
21 |
|
22 |
$version = get_option( 'code_embed_version' );
|
23 |
|
24 |
-
if (
|
25 |
|
26 |
// Set up default option values (if not already set)
|
27 |
|
21 |
|
22 |
$version = get_option( 'code_embed_version' );
|
23 |
|
24 |
+
if ( CODE_EMBED_VERSION !== $version ) {
|
25 |
|
26 |
// Set up default option values (if not already set)
|
27 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: code, embed, html, javascript, script
|
|
4 |
Requires at least: 4.6
|
5 |
Tested up to: 4.9.4
|
6 |
Requires PHP: 5.3
|
7 |
-
Stable tag: 2.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -30,6 +30,7 @@ Technical specification...
|
|
30 |
* Licensed under [GPLv2 (or later)](http://wordpress.org/about/gpl/ "GNU General Public License")
|
31 |
* Designed for both single and multi-site installations
|
32 |
* PHP7 compatible
|
|
|
33 |
* Fully internationalized, ready for translations **If you would like to add a translation to this plugin then please head to our [Translating WordPress](https://translate.wordpress.org/projects/wp-plugins/simple-embed-code "Translating WordPress") page**
|
34 |
* GDPR compliant
|
35 |
* See FAQ for Gutenberg compatibility
|
@@ -184,7 +185,10 @@ It is, in that it doesn't save any data that could be odds with GDPR compliance
|
|
184 |
|
185 |
== Changelog ==
|
186 |
|
187 |
-
[Learn more about my version numbering methodology](https://artiss.blog/2016/09/wordpress-plugin-versioning/ "WordPress Plugin Versioning")
|
|
|
|
|
|
|
188 |
|
189 |
= 2.3 =
|
190 |
* Enhancement: All the code is now compliant with the full-fat VIP coding standards. It was no mean feat but, as a result, the plugin is more secure than ever before
|
@@ -289,5 +293,5 @@ versions of this plugin
|
|
289 |
|
290 |
== Upgrade Notice ==
|
291 |
|
292 |
-
= 2.3 =
|
293 |
-
*
|
4 |
Requires at least: 4.6
|
5 |
Tested up to: 4.9.4
|
6 |
Requires PHP: 5.3
|
7 |
+
Stable tag: 2.3.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
30 |
* Licensed under [GPLv2 (or later)](http://wordpress.org/about/gpl/ "GNU General Public License")
|
31 |
* Designed for both single and multi-site installations
|
32 |
* PHP7 compatible
|
33 |
+
* Passes [WordPress.com VIP](https://vip.wordpress.com) coding standards and fully compatible with their platform
|
34 |
* Fully internationalized, ready for translations **If you would like to add a translation to this plugin then please head to our [Translating WordPress](https://translate.wordpress.org/projects/wp-plugins/simple-embed-code "Translating WordPress") page**
|
35 |
* GDPR compliant
|
36 |
* See FAQ for Gutenberg compatibility
|
185 |
|
186 |
== Changelog ==
|
187 |
|
188 |
+
[Learn more about my version numbering methodology](https://artiss.blog/2016/09/wordpress-plugin-versioning/ "WordPress Plugin Versioning")
|
189 |
+
|
190 |
+
= 2.3.1 =
|
191 |
+
* Bug: Fixed a variable naming issue that I may, or may not (I did), have created in the latest release
|
192 |
|
193 |
= 2.3 =
|
194 |
* Enhancement: All the code is now compliant with the full-fat VIP coding standards. It was no mean feat but, as a result, the plugin is more secure than ever before
|
293 |
|
294 |
== Upgrade Notice ==
|
295 |
|
296 |
+
= 2.3.1 =
|
297 |
+
* Minor bug fix
|
simple-code-embed.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Code Embed
|
4 |
Plugin URI: https://github.com/dartiss/code-embed
|
5 |
Description: Code Embed provides a very easy and efficient way to embed code (JavaScript and HTML) in your posts and pages.
|
6 |
-
Version: 2.3
|
7 |
Author: David Artiss
|
8 |
Author URI: https://artiss.blog
|
9 |
Text Domain: simple-embed-code
|
@@ -18,7 +18,7 @@ Text Domain: simple-embed-code
|
|
18 |
* @since 1.6
|
19 |
*/
|
20 |
|
21 |
-
define( 'CODE_EMBED_VERSION', '2.3' );
|
22 |
|
23 |
// Include all the various functions
|
24 |
|
3 |
Plugin Name: Code Embed
|
4 |
Plugin URI: https://github.com/dartiss/code-embed
|
5 |
Description: Code Embed provides a very easy and efficient way to embed code (JavaScript and HTML) in your posts and pages.
|
6 |
+
Version: 2.3.1
|
7 |
Author: David Artiss
|
8 |
Author URI: https://artiss.blog
|
9 |
Text Domain: simple-embed-code
|
18 |
* @since 1.6
|
19 |
*/
|
20 |
|
21 |
+
define( 'CODE_EMBED_VERSION', '2.3.1' );
|
22 |
|
23 |
// Include all the various functions
|
24 |
|