diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f66403f..33e3c7ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 2.13.2 (25 Jan 2019) +* Removed potentially problematic cursor position saving feature + ## 2.13.1 (22 Jan 2019) * Added: Add menu buttons to settings page for compact menu * Updated: French translation updated thanks to momo-fr diff --git a/README.md b/README.md index 2b292342..80f178c2 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ * __Stable version:__ [2.13.1](https://downloads.wordpress.org/plugin/code-snippets.latest-stable.zip) * __License:__ [MIT](license.txt) -Code Snippets is an easy, clean and simple way to add code snippets to your site. It removes the need to add custom snippets to your theme theme's `functions.php` file. +Code Snippets is an easy, clean and simple way to run code snippets on your site. It removes the need to add custom snippets to your theme theme's `functions.php` file. A snippet is a small chunk of PHP code that you can use to extend the functionality of a WordPress-powered website; essentially a mini-plugin with less load on your site. Most snippet-hosting sites tell you to add snippet code to your active theme's `functions.php` file, which can get rather long and messy after a while. diff --git a/code-snippets.php b/code-snippets.php index 8646632f..a5b75322 100644 --- a/code-snippets.php +++ b/code-snippets.php @@ -10,7 +10,7 @@ * @author Shea Bunge * @copyright 2012-2019 Shea Bunge * @license MIT http://opensource.org/licenses/MIT - * @version 2.13.1 + * @version 2.13.2 * @link https://github.com/sheabunge/code-snippets */ @@ -20,7 +20,7 @@ Description: An easy, clean and simple way to add code snippets to your site. No need to edit to your theme's functions.php file again! Author: Shea Bunge Author URI: https://sheabunge.com -Version: 2.13.1 +Version: 2.13.2 License: MIT License URI: license.txt Text Domain: code-snippets @@ -42,7 +42,7 @@ * @since 2.0 * @var string A PHP-standardized version number string */ -define( 'CODE_SNIPPETS_VERSION', '2.13.1' ); +define( 'CODE_SNIPPETS_VERSION', '2.13.2' ); /** * The full path to the main file of this plugin diff --git a/package.json b/package.json index 89f24774..d55a007d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "code-snippets", - "version": "2.13.1", + "version": "2.13.2", "description": "Manage code snippets running on a WordPress-powered site through a graphical interface", "homepage": "https://wordpress.org/plugins/code-snippets", "main": "gulpfile.babel.js", diff --git a/readme.txt b/readme.txt index dc6c6e1c..942e189d 100644 --- a/readme.txt +++ b/readme.txt @@ -9,11 +9,11 @@ Stable tag: 2.13.1 License: MIT License URI: license.txt -An easy, clean and simple way to add code snippets to your site. +An easy, clean and simple way to run code snippets on your site. == Description == -Code Snippets is an easy, clean and simple way to add code snippets to your site. It removes the need to add custom snippets to your theme theme's `functions.php` file. +Code Snippets is an easy, clean and simple way to run PHP code snippets on your site. It removes the need to add custom snippets to your theme theme's `functions.php` file. A snippet is a small chunk of PHP code that you can use to extend the functionality of a WordPress-powered website; essentially a mini-plugin with less load on your site. Most snippet-hosting sites tell you to add snippet code to your active theme's `functions.php` file, which can get rather long and messy after a while. @@ -122,6 +122,9 @@ That's fantastic! Fork the [repository on GitHub](http://github.com/sheabunge/co == Changelog == += 2.13.2 (25 Jan 2019) = +* Removed potentially problematic cursor position saving feature + = 2.13.1 (22 Jan 2019) = * Added: Add menu buttons to settings page for compact menu * Updated: French translation updated thanks to momo-fr