Skip to content

Commit

Permalink
0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Bearded Avenger committed Jun 12, 2015
1 parent 4357e09 commit 7d355cf
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
11 changes: 10 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Plugin URI: http://nickhaskins.com/wpls
Tags: search, live search
Requires at least: 3.5.1
Tested up to: 4.2.1
Stable tag: 0.3
Stable tag: 0.4
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -53,6 +53,15 @@ It's a shortcode. Add [wp_search] to a page. Working on template functions for t

== Changelog ==

= 0.4 =
* dont allow empty values and spaces for search
* allow enter to search so long as nothing is empty
* added a template function
* added searchAction schema
* misc style improvements
* added a define to allow CSS file not be loaded
* returns 20 results for now until we work in pagination/lazy loading

= 0.3 =
* featured image support
* renamed to WP Live Search
Expand Down
2 changes: 1 addition & 1 deletion public/assets/js/wp-live-search.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@

}

})/*.blur(function(){
}).blur(function(){

destroySearch();
})
Expand Down
4 changes: 2 additions & 2 deletions wp-live-search.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Plugin Name: WP Live Search
* Plugin URI: http://nickhaskins.com
* Description: A super light-weight live search plugin that utilizes the WP REST API
* Version: 0.3
* Version: 0.4
* GitHub Plugin URI: https://github.com/bearded-avenger/wp-live-search
*/

Expand All @@ -20,7 +20,7 @@
}

// Set some constants
define('WP_LIVE_SEARCH_VERSION', '0.3');
define('WP_LIVE_SEARCH_VERSION', '0.4');
define('WP_LIVE_SEARCH_DIR', plugin_dir_path( __FILE__ ));
define('WP_LIVE_SEARCH_URL', plugins_url( '', __FILE__ ));

Expand Down

0 comments on commit 7d355cf

Please sign in to comment.