Skip to content

Commit e6cc8bc

Browse files
committed
Release 2.4.2
1 parent 55d2dcd commit e6cc8bc

5 files changed

Lines changed: 6 additions & 5 deletions

File tree

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "clorith/wordpress-string-locator",
33
"type": "wordpress-plugin",
44
"description": "Find and edit code or texts in your themes and plugins.",
5-
"version": "2.3.1",
5+
"version": "2.4.2",
66
"keywords": [
77
"plugin",
88
"WordPress"

docs/readme.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,9 @@ When writing your search string, make sure to wrap your search in forward slashe
4545

4646
== Changelog ==
4747

48-
= [TBD] =
48+
= 2.4.2 =
4949
* Fixed the option to restore previous search.
50+
* Fixed respecting text capitalization in previews when doing a non-regex search.
5051
* Changed capability checks, now works on hosts that maintain updates for their users.
5152

5253
= 2.4.1 =

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wordpress-string-locator",
3-
"version": "2.3.1",
3+
"version": "2.4.2",
44
"description": "Find and edit code or texts in your themes and plugins.",
55
"author": "clorith",
66
"license": "GPL-2.0-or-later",

src/php/includes/class-string-locator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class String_Locator {
1818
* @var int $max_memory_consumption The server-configured max amount of memory a script can use.
1919
*/
2020
public $string_locator_language = '';
21-
public $version = '2.4.1';
21+
public $version = '2.4.2';
2222
public $notice = array();
2323
public $failed_edit = false;
2424
private $path_to_use = '';

src/php/string-locator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: String Locator
44
* Plugin URI: http://www.clorith.net/wordpress-string-locator/
55
* Description: Scan through theme and plugin files looking for text strings
6-
* Version: 2.4.1
6+
* Version: 2.4.2
77
* Author: Clorith
88
* Author URI: http://www.clorith.net
99
* Text Domain: string-locator

0 commit comments

Comments
 (0)