Skip to content

Commit

Permalink
Merge pull request #180 from alleyinteractive/feature/misc-changes
Browse files Browse the repository at this point in the history
Plugin: Misc changes
  • Loading branch information
renatonascalves committed Jan 10, 2024
2 parents 6ca76ec + 5a45e74 commit f938dba
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ We try to maintain backwards compatibility as much as possible. It's possible th

SearchPress has a thorough battery of unit and integration tests to help add compatibility with each new Elasticsearch release, without compromising compatibility with older releases.


Prerequisites
-------------

Expand Down Expand Up @@ -70,14 +69,15 @@ add_filter(
);
```


Changelog
---------

### 0.5 _(in progress)_

* Adds UI for authentication
* **POSSIBLE BREAKING CHANGE**: Moves SearchPress integration to the `posts_pre_query`.
* Updated the "Tested up to" the latest current version (6.4).
* Removed the phpDoc `@author` field.

### 0.4.3

Expand Down
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: mboynes, alleyinteractive
Tags: search, elasticsearch, faceted search, performance
Requires at least: 5.9
Requires PHP: 7.4
Tested up to: 6.0
Tested up to: 6.4
Stable tag: 0.4.3
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down
2 changes: 0 additions & 2 deletions lib/class-sp-integration.php
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,6 @@ public function query_vars( $qv ) {
* Set a faceted search as a search (and thus force the search template). A hook for the parse_query action.
*
* @param object $wp_query The current WP_Query. Passed by reference and modified if necessary.
* @return void
* @author Matthew Boynes
*/
public function force_search_template( &$wp_query ) {
if ( ! $wp_query->is_main_query() ) {
Expand Down
3 changes: 0 additions & 3 deletions lib/class-sp-sync-manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
* @todo Trigger massive reindex (potentially) when indexed usermeta is edited
* @todo Trigger massive reindex when term data is edited
* @todo Changing permalinks should trigger full reindex?
*
* @author Matthew Boynes
*/
class SP_Sync_Manager extends SP_Singleton {

Expand Down Expand Up @@ -316,7 +314,6 @@ function SP_Sync_Manager() { // phpcs:ignore WordPress.NamingConventions.ValidFu
return SP_Sync_Manager::instance();
}


/**
* SP_Sync_Manager only gets instantiated when necessary, so we register these
* hooks outside of the class.
Expand Down
2 changes: 0 additions & 2 deletions lib/class-sp-sync-meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
* Simple class for working with the meta information associated with ES Syncing.
* Many of the methods are disabled if we're in the WP-CLI environment, but this
* class is still used to track the meta data (for consistency)
*
* @author Matthew Boynes
*/
class SP_Sync_Meta extends SP_Singleton {

Expand Down
6 changes: 3 additions & 3 deletions searchpress.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php
/**
* Plugin Name: SearchPress
* Plugin URI: http://searchpress.org/
* Description: Elasticsearch for WordPress.
* Plugin URI: http://searchpress.org
* Description: Elasticsearch integration for WordPress.
* Version: 0.5
* Author: Matthew Boynes, Alley Interactive
* Author URI: http://www.alleyinteractive.com/
* Author URI: https://alley.com
*
* @package SearchPress
*/
Expand Down

0 comments on commit f938dba

Please sign in to comment.