diff --git a/README.md b/README.md
index edc4dfe..ba8b91b 100644
--- a/README.md
+++ b/README.md
@@ -1,12 +1,12 @@
# Full Screen Morphing Search
Contributors: lebcit
-Tags: search, full screen search, morphing search, search overlay, jQuery UI autocomplete
+Tags: search, full screen search, morphing search, search overlay, autocomplete
Requires at least: 4.1.0
-Tested up to: 5.5.3
+Tested up to: 5.6
Requires PHP: 5.6
-Stable tag: 3.2
+Stable tag: 3.3
License: GPLv2 or later
-License URI: https://www.gnu.org/licenses/gpl-2.0.html
+License URI: https://spdx.org/licenses/GPL-2.0-or-later.html
Responsive Full Screen Morphing Search Page Overlay With Predictive Autocomplete !
@@ -28,20 +28,18 @@ You can change colors, search placeholder's text and default icons with a stylin
Don't forget to take a look at the FAQ Section.
If you have some issues **don't hesitate**, head over to the Support Section !
-You can also visit my site LebCit.Tk to see the plugin in action and leave your comments.
If you use this plugin, please consider leaving a Review to give me a push forward ;)
## Credits
-This plugin is created by Manoela Ilic and adapted for WordPress by LebCit.
+This plugin is created by Manoela Ilic and ported to WordPress by LebCit.
If you want to learn more about this plugin, visit the Simple Morphing Search original post.
> A Picture is worth a thousand words
I think that a demo is even better !
See how Full Screen Morphing Search works.
-The jQuery UI autocompletition implemented in this plugin is based on Dominykas Gelucevičius post :
-How to create a jQuery autocomplete drop down in WordPress
+The autocompletition implemented in this plugin is based on autoComplete.js by Tarek Raafat under the Apache 2.0 License.
The main plugin icon is made by Pixel Buddha from www.flaticon.com and is licensed by CC 3.0 BY
The article icon is made by Freepik from www.flaticon.com and is licensed by CC 3.0 BY
@@ -85,6 +83,13 @@ First make sure that you have used a thumbnail regenerator, see first FAQ.
Then, click on the checkbox option **Icon/Image Round or Not ?!**
If the new Icon/Image is already round (like the default one of category and tag), this option will have no effect !
+### Hitting Enter key doesn't fire a search !
+
+**As long as** the autocompletition gives results as you type,
+the Enter key will only work on given results.
+If you wish to ignore given results and fire a search query,
+type your search then just click on the search icon.
+
### Autocomplete predicts only posts and pages !
Yes, just for now !
@@ -121,6 +126,14 @@ Old screenshot.
## Changelog
+### 3.3 =
+* Add autoComplete.js to plugin.
+* Force thumbnails size.
+* Main JS file without jQuery only vanilla JS.
+* Move .morphsearch-content below autocomplete
.
+* Removing jQuery dependencies.
+* Tested up to version 5.6 of WordPress.
+
### 3.2 =
* Added empty value for $classes.
* Added important for .morphsearch-submit:hover
diff --git a/full-screen-morphing-search.php b/full-screen-morphing-search.php
index f7a345e..20853ba 100644
--- a/full-screen-morphing-search.php
+++ b/full-screen-morphing-search.php
@@ -2,12 +2,12 @@
/**
* Plugin Name: Full Screen Morphing Search
* Plugin URI: http://tympanus.net/codrops/2014/11/04/simple-morphing-search/
- * Version: 3.2
+ * Version: 3.3
* Author: LebCit
* Author URI: https://lebcit.tk/
* Text Domain: full-screen-morphing-search
- * License: GPL2
- * License URI: https://www.gnu.org/licenses/gpl-2.0.html
+ * License: GPL-2.0-or-later
+ * License URI: https://spdx.org/licenses/GPL-2.0-or-later.html
* Description: Effect for any WordPress search input that morphs into a fullscreen overlay.
*
* This program is free software; you can redistribute it and/or modify
diff --git a/readme.txt b/readme.txt
index 8847787..fbc6ce0 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,12 +1,12 @@
=== Full Screen Morphing Search ===
Contributors: lebcit
-Tags: search, full screen search, morphing search, search overlay, jQuery UI autocomplete
+Tags: search, full screen search, morphing search, search overlay, autocomplete
Requires at least: 4.1.0
-Tested up to: 5.5.3
+Tested up to: 5.6
Requires PHP: 5.6
-Stable tag: 3.2
+Stable tag: 3.3
License: GPLv2 or later
-License URI: https://www.gnu.org/licenses/gpl-2.0.html
+License URI: https://spdx.org/licenses/GPL-2.0-or-later.html
Responsive Full Screen Morphing Search Page Overlay With Predictive Autocomplete !
@@ -28,20 +28,18 @@ You can change colors, search placeholder's text and default icons with a stylin
Don't forget to take a look at the FAQ Section.
If you have some issues **don't hesitate**, head over to the Support Section !
-You can also visit my site LebCit.Tk to see the plugin in action and leave your comments.
If you use this plugin, please consider leaving a Review to give me a push forward ;)
= Credits =
-This plugin is created by Manoela Ilic and adapted for WordPress by LebCit.
+This plugin is created by Manoela Ilic and ported to WordPress by LebCit.
If you want to learn more about this plugin, visit the Simple Morphing Search original post.
> A Picture is worth a thousand words
I think that a demo is even better !
See how Full Screen Morphing Search works.
-The jQuery UI autocompletition implemented in this plugin is based on Dominykas Gelucevičius post :
-How to create a jQuery autocomplete drop down in WordPress
+The autocompletition implemented in this plugin is based on autoComplete.js by Tarek Raafat under the Apache 2.0 License.
The main plugin icon is made by Pixel Buddha from www.flaticon.com and is licensed by CC 3.0 BY
The article icon is made by Freepik from www.flaticon.com and is licensed by CC 3.0 BY
@@ -85,6 +83,13 @@ First make sure that you have used a thumbnail regenerator, see first FAQ.
Then, click on the checkbox option **Icon/Image Round or Not ?!**
If the new Icon/Image is already round (like the default one of category and tag), this option will have no effect !
+= Hitting Enter key doesn't fire a search ! =
+
+**As long as** the autocompletition gives results as you type,
+the Enter key will only work on given results.
+If you wish to ignore given results and fire a search query,
+type your search then just click on the search icon.
+
= Autocomplete predicts only posts and pages ! =
Yes, just for now !
@@ -109,6 +114,14 @@ The third column shows the top 5 used tags and how many posts each tag has.
== Changelog ==
+= 3.3 =
+* Add autoComplete.js to plugin.
+* Force thumbnails size.
+* Main JS file without jQuery only vanilla JS.
+* Move .morphsearch-content below autocomplete .
+* Removing jQuery dependencies.
+* Tested up to version 5.6 of WordPress.
+
= 3.2 =
* Added empty value for $classes.
* Added important for .morphsearch-submit:hover