Version Description
- Fixes the broken User searches page.
Download this release
Release Info
| Developer | msaari |
| Plugin | |
| Version | 4.1.1.2 |
| Comparing to | |
| See all releases | |
Code changes from version 4.1.1 to 4.1.1.2
- changelog.txt +25 -0
- lib/interface.php +2 -2
- readme.txt +8 -36
- relevanssi.php +1 -1
changelog.txt
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
= 4.0.9 =
|
| 2 |
* Fixes broken tag and category indexing and searching. If you use tags and categories, rebuild the index after updating.
|
| 3 |
* Phrases were not highlighted correctly on documents. This is now fixed.
|
| 1 |
+
= 4.0.11 =
|
| 2 |
+
* Home page links were getting the highlight parameter even though they shouldn't. This has been fixed.
|
| 3 |
+
* Added support for WP JV Post Reading Groups.
|
| 4 |
+
* Improved handling of HTML entities.
|
| 5 |
+
* Events Made Easy Calendar shortcodes are now removed when building excerpts.
|
| 6 |
+
* `set_time_limit()` was removed from the indexing; it's no longer necessary, and it can break the indexing on sites that don't allow the use of the function.
|
| 7 |
+
* `relevanssi_post_title_before_tokenize` filter was moved a bit so that it's the last thing that runs before tokenizing.
|
| 8 |
+
* Disabled shortcodes are handled better in the indexing: the shortcode names won't be indexed anymore like they were before.
|
| 9 |
+
* Made sure there won't be a warning for non-numeric values when searching.
|
| 10 |
+
* New filter: `relevanssi_clean_excerpt` lets you remove unwanted highlights from excerpts.
|
| 11 |
+
* Highlighting works better with `pre` and `code` tags.
|
| 12 |
+
* New filter: `relevanssi_comment_author_to_index` lets you filter comment author names before indexing.
|
| 13 |
+
* `relevanssi_comment_content_to_index` doesn't include the comment author name anymore.
|
| 14 |
+
|
| 15 |
+
= 4.0.10.1 =
|
| 16 |
+
* The privacy features caused an error notice with certain Relevanssi configurations, and the plugin required WP 4.9.6.
|
| 17 |
+
|
| 18 |
+
= 4.0.10 =
|
| 19 |
+
* Privacy: If you log search queries, Relevanssi will suggest some additional content to your privacy policy page.
|
| 20 |
+
* Privacy: Relevanssi now supports the new Privacy Policy and Personal Data tools in WordPress 4.9.6.
|
| 21 |
+
* Saving synonyms with quotes worked, but the synonyms showed up wrong.
|
| 22 |
+
* Relevanssi could in some situations override navigation menu links with links to the user profiles or taxonomy terms found in the search. This update fixes that behaviour.
|
| 23 |
+
* Random order works again; using orderby `rand` didn't work properly. The `rand(seed)` format is also supported now.
|
| 24 |
+
* Fixed quotes and apostrophes in Did you mean suggestions.
|
| 25 |
+
|
| 26 |
= 4.0.9 =
|
| 27 |
* Fixes broken tag and category indexing and searching. If you use tags and categories, rebuild the index after updating.
|
| 28 |
* Phrases were not highlighted correctly on documents. This is now fixed.
|
lib/interface.php
CHANGED
|
@@ -562,13 +562,13 @@ function relevanssi_query_log() {
|
|
| 562 |
relevanssi_date_queries( $days1, __( 'Today and yesterday', 'relevanssi' ) );
|
| 563 |
} else {
|
| 564 |
// Translators: number of days to show.
|
| 565 |
-
relevanssi_date_queries( $days1,
|
| 566 |
}
|
| 567 |
echo '</div>';
|
| 568 |
|
| 569 |
echo "<div style='width: 30%; float: left; margin-right: 2%; overflow: auto'>";
|
| 570 |
// Translators: number of days to show.
|
| 571 |
-
relevanssi_date_queries( $days7,
|
| 572 |
echo '</div>';
|
| 573 |
|
| 574 |
echo "<div style='width: 30%; float: left; margin-right: 2%; overflow: auto'>";
|
| 562 |
relevanssi_date_queries( $days1, __( 'Today and yesterday', 'relevanssi' ) );
|
| 563 |
} else {
|
| 564 |
// Translators: number of days to show.
|
| 565 |
+
relevanssi_date_queries( $days1, sprintf( __( 'Last %d days', 'relevanssi' ), $days1 ) );
|
| 566 |
}
|
| 567 |
echo '</div>';
|
| 568 |
|
| 569 |
echo "<div style='width: 30%; float: left; margin-right: 2%; overflow: auto'>";
|
| 570 |
// Translators: number of days to show.
|
| 571 |
+
relevanssi_date_queries( $days7, sprintf( __( 'Last %d days', 'relevanssi' ), $days7 ) );
|
| 572 |
echo '</div>';
|
| 573 |
|
| 574 |
echo "<div style='width: 30%; float: left; margin-right: 2%; overflow: auto'>";
|
readme.txt
CHANGED
|
@@ -5,7 +5,7 @@ Tags: search, relevance, better search
|
|
| 5 |
Requires at least: 4.0
|
| 6 |
Tested up to: 5.0
|
| 7 |
Requires PHP: 5.6
|
| 8 |
-
Stable tag: 4.1.1.
|
| 9 |
License: GPLv2 or later
|
| 10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 11 |
|
|
@@ -130,6 +130,9 @@ Each document database is full of useless words. All the little words that appea
|
|
| 130 |
|
| 131 |
== Changelog ==
|
| 132 |
|
|
|
|
|
|
|
|
|
|
| 133 |
= 4.1.1.1 =
|
| 134 |
* Adding the missing Gutenberg compatibility file.
|
| 135 |
|
|
@@ -160,33 +163,11 @@ Each document database is full of useless words. All the little words that appea
|
|
| 160 |
* Custom field sorting actually works now.
|
| 161 |
* WP Search Suggest compatibility added.
|
| 162 |
|
| 163 |
-
= 4.0.11 =
|
| 164 |
-
* Home page links were getting the highlight parameter even though they shouldn't. This has been fixed.
|
| 165 |
-
* Added support for WP JV Post Reading Groups.
|
| 166 |
-
* Improved handling of HTML entities.
|
| 167 |
-
* Events Made Easy Calendar shortcodes are now removed when building excerpts.
|
| 168 |
-
* `set_time_limit()` was removed from the indexing; it's no longer necessary, and it can break the indexing on sites that don't allow the use of the function.
|
| 169 |
-
* `relevanssi_post_title_before_tokenize` filter was moved a bit so that it's the last thing that runs before tokenizing.
|
| 170 |
-
* Disabled shortcodes are handled better in the indexing: the shortcode names won't be indexed anymore like they were before.
|
| 171 |
-
* Made sure there won't be a warning for non-numeric values when searching.
|
| 172 |
-
* New filter: `relevanssi_clean_excerpt` lets you remove unwanted highlights from excerpts.
|
| 173 |
-
* Highlighting works better with `pre` and `code` tags.
|
| 174 |
-
* New filter: `relevanssi_comment_author_to_index` lets you filter comment author names before indexing.
|
| 175 |
-
* `relevanssi_comment_content_to_index` doesn't include the comment author name anymore.
|
| 176 |
-
|
| 177 |
-
= 4.0.10.1 =
|
| 178 |
-
* The privacy features caused an error notice with certain Relevanssi configurations, and the plugin required WP 4.9.6.
|
| 179 |
-
|
| 180 |
-
= 4.0.10 =
|
| 181 |
-
* Privacy: If you log search queries, Relevanssi will suggest some additional content to your privacy policy page.
|
| 182 |
-
* Privacy: Relevanssi now supports the new Privacy Policy and Personal Data tools in WordPress 4.9.6.
|
| 183 |
-
* Saving synonyms with quotes worked, but the synonyms showed up wrong.
|
| 184 |
-
* Relevanssi could in some situations override navigation menu links with links to the user profiles or taxonomy terms found in the search. This update fixes that behaviour.
|
| 185 |
-
* Random order works again; using orderby `rand` didn't work properly. The `rand(seed)` format is also supported now.
|
| 186 |
-
* Fixed quotes and apostrophes in Did you mean suggestions.
|
| 187 |
-
|
| 188 |
== Upgrade notice ==
|
| 189 |
|
|
|
|
|
|
|
|
|
|
| 190 |
= 4.1.1.1 =
|
| 191 |
* Adding the missing Gutenberg compatibility file.
|
| 192 |
|
|
@@ -194,13 +175,4 @@ Each document database is full of useless words. All the little words that appea
|
|
| 194 |
* Minor improvements here and there, particularly in custom field sorting.
|
| 195 |
|
| 196 |
= 4.1 =
|
| 197 |
-
* New features and plenty of small fixes.
|
| 198 |
-
|
| 199 |
-
= 4.0.11 =
|
| 200 |
-
* Several small improvements, new filters and highlighting fixes.
|
| 201 |
-
|
| 202 |
-
= 4.0.10.1 =
|
| 203 |
-
* Privacy feature bug fix.
|
| 204 |
-
|
| 205 |
-
= 4.0.10 =
|
| 206 |
-
* Privacy update, with some bug fixes.
|
| 5 |
Requires at least: 4.0
|
| 6 |
Tested up to: 5.0
|
| 7 |
Requires PHP: 5.6
|
| 8 |
+
Stable tag: 4.1.1.2
|
| 9 |
License: GPLv2 or later
|
| 10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 11 |
|
| 130 |
|
| 131 |
== Changelog ==
|
| 132 |
|
| 133 |
+
= 4.1.1.2 =
|
| 134 |
+
* Fixes the broken User searches page.
|
| 135 |
+
|
| 136 |
= 4.1.1.1 =
|
| 137 |
* Adding the missing Gutenberg compatibility file.
|
| 138 |
|
| 163 |
* Custom field sorting actually works now.
|
| 164 |
* WP Search Suggest compatibility added.
|
| 165 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 166 |
== Upgrade notice ==
|
| 167 |
|
| 168 |
+
= 4.1.1.2 =
|
| 169 |
+
* Fixes the broken User searches page.
|
| 170 |
+
|
| 171 |
= 4.1.1.1 =
|
| 172 |
* Adding the missing Gutenberg compatibility file.
|
| 173 |
|
| 175 |
* Minor improvements here and there, particularly in custom field sorting.
|
| 176 |
|
| 177 |
= 4.1 =
|
| 178 |
+
* New features and plenty of small fixes.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.1.1
|
| 17 |
* Author: Mikko Saari
|
| 18 |
* Author URI: http://www.mikkosaari.fi/
|
| 19 |
* Text Domain: relevanssi
|
| 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.1.1.2
|
| 17 |
* Author: Mikko Saari
|
| 18 |
* Author URI: http://www.mikkosaari.fi/
|
| 19 |
* Text Domain: relevanssi
|
