Version Description
- Minor fix: Media Library searches failed if Relevanssi was enabled in the WP admin, but the
attachment
post type wasn't indexed. Relevanssi will no longer block the default Media Library search in these cases. - Minor fix: Adds more backwards compatibility for the
relevanssi_indexing_restriction
change, there's now an alert on indexing tab if there's a problem.
Download this release
Release Info
Developer | msaari |
Plugin | Relevanssi – A Better Search |
Version | 4.7.2 |
Comparing to | |
See all releases |
Code changes from version 4.7.1 to 4.7.2
- readme.txt +8 -1
- relevanssi.php +2 -2
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: search, relevance, better search
|
|
5 |
Requires at least: 4.9
|
6 |
Tested up to: 5.4
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 4.7.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -133,6 +133,10 @@ Each document database is full of useless words. All the little words that appea
|
|
133 |
* John Calahan for extensive 4.0 beta testing.
|
134 |
|
135 |
== Changelog ==
|
|
|
|
|
|
|
|
|
136 |
= 4.7.1 =
|
137 |
* New feature: New filter hook `relevanssi_post_content_after_shortcodes` filters the post content after shortcodes have been processed but before the HTML tags are stripped.
|
138 |
* Minor fix: Adds more backwards compatibility for the `relevanssi_indexing_restriction` change.
|
@@ -174,6 +178,9 @@ Each document database is full of useless words. All the little words that appea
|
|
174 |
* Minor fix: Indexing did not adjust the number of posts indexed at one go like it should.
|
175 |
|
176 |
== Upgrade notice ==
|
|
|
|
|
|
|
177 |
= 4.7.1 =
|
178 |
* Improved backwards compatibility for the `relevanssi_indexing_restriction` filter hook change.
|
179 |
|
5 |
Requires at least: 4.9
|
6 |
Tested up to: 5.4
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 4.7.2
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
133 |
* John Calahan for extensive 4.0 beta testing.
|
134 |
|
135 |
== Changelog ==
|
136 |
+
= 4.7.2 =
|
137 |
+
* Minor fix: Media Library searches failed if Relevanssi was enabled in the WP admin, but the `attachment` post type wasn't indexed. Relevanssi will no longer block the default Media Library search in these cases.
|
138 |
+
* Minor fix: Adds more backwards compatibility for the `relevanssi_indexing_restriction` change, there's now an alert on indexing tab if there's a problem.
|
139 |
+
|
140 |
= 4.7.1 =
|
141 |
* New feature: New filter hook `relevanssi_post_content_after_shortcodes` filters the post content after shortcodes have been processed but before the HTML tags are stripped.
|
142 |
* Minor fix: Adds more backwards compatibility for the `relevanssi_indexing_restriction` change.
|
178 |
* Minor fix: Indexing did not adjust the number of posts indexed at one go like it should.
|
179 |
|
180 |
== Upgrade notice ==
|
181 |
+
= 4.7.2 =
|
182 |
+
* Improved backwards compatibility for the `relevanssi_indexing_restriction` filter hook change, better Media Library support.
|
183 |
+
|
184 |
= 4.7.1 =
|
185 |
* Improved backwards compatibility for the `relevanssi_indexing_restriction` filter hook change.
|
186 |
|
relevanssi.php
CHANGED
@@ -13,7 +13,7 @@
|
|
13 |
* Plugin Name: Relevanssi
|
14 |
* Plugin URI: https://www.relevanssi.com/
|
15 |
* Description: This plugin replaces WordPress search with a relevance-sorting search.
|
16 |
-
* Version: 4.7.
|
17 |
* Author: Mikko Saari
|
18 |
* Author URI: http://www.mikkosaari.fi/
|
19 |
* Text Domain: relevanssi
|
@@ -65,7 +65,7 @@ $relevanssi_variables['database_version'] = 5;
|
|
65 |
$relevanssi_variables['file'] = __FILE__;
|
66 |
$relevanssi_variables['plugin_dir'] = plugin_dir_path( __FILE__ );
|
67 |
$relevanssi_variables['plugin_basename'] = plugin_basename( __FILE__ );
|
68 |
-
$relevanssi_variables['plugin_version'] = '4.7.
|
69 |
|
70 |
require_once 'lib/admin-ajax.php';
|
71 |
require_once 'lib/common.php';
|
13 |
* Plugin Name: Relevanssi
|
14 |
* Plugin URI: https://www.relevanssi.com/
|
15 |
* Description: This plugin replaces WordPress search with a relevance-sorting search.
|
16 |
+
* Version: 4.7.2
|
17 |
* Author: Mikko Saari
|
18 |
* Author URI: http://www.mikkosaari.fi/
|
19 |
* Text Domain: relevanssi
|
65 |
$relevanssi_variables['file'] = __FILE__;
|
66 |
$relevanssi_variables['plugin_dir'] = plugin_dir_path( __FILE__ );
|
67 |
$relevanssi_variables['plugin_basename'] = plugin_basename( __FILE__ );
|
68 |
+
$relevanssi_variables['plugin_version'] = '4.7.2';
|
69 |
|
70 |
require_once 'lib/admin-ajax.php';
|
71 |
require_once 'lib/common.php';
|