Skip to content
This repository has been archived by the owner on Aug 22, 2022. It is now read-only.

Commit

Permalink
Updated to 1.0.7 version
Browse files Browse the repository at this point in the history
  • Loading branch information
josantonius committed Jun 27, 2017
1 parent e7fadb4 commit 8e28c57
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 43 deletions.
37 changes: 1 addition & 36 deletions modules/wp_plugin-info/src/data/plugins.jsond
Original file line number Diff line number Diff line change
@@ -1,36 +1 @@
{
"search-inside": {
"name": "Search Inside",
"slug": "search-inside",
"version": "1.1.6",
"author": "<a href=\"https:\/\/josantonius.com\/\">Josantonius<\/a>",
"author_profile": "https:\/\/profiles.wordpress.org\/josantonius",
"contributors": {
"josantonius": "https:\/\/profiles.wordpress.org\/josantonius"
},
"requires": "3.5",
"tested": "4.7.5",
"compatibility": [],
"rating": 0,
"ratings": [
0
],
"num_ratings": 0,
"support_threads": 0,
"support_threads_resolved": 0,
"downloaded": 249,
"last_updated": "2017-05-03 11:29pm GMT",
"added": "2017-02-15",
"homepage": "https:\/\/github.com\/Josantonius\/Search-Inside.git",
"download_link": "https:\/\/downloads.wordpress.org\/plugin\/search-inside.1.1.6.zip",
"tags": {
"highlighting-words": "highlighting words",
"search-engine": "search engine",
"search-inside-entries": "search inside entries",
"search-inside-pages": "search inside pages",
"wordpress-search-engine": "Wordpress search engine"
},
"donate_link": "https:\/\/paypal.me\/Josantonius",
"last-update": 1498569666
}
}
{}
6 changes: 2 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
=== Search Inside ===
Contributors: josantonius
Donate link: https://paypal.me/Josantonius
Tags: search engine, search inside entries, search inside pages, Wordpress search engine, highlighting words, highlight phrases, highlight paragraphs

Requires at least: 3.5
Tags: search-engine,wp-search-engine,highlight-words,highlight-phrases,highlight-paragraphs
Tested up to: 4.8
Stable tag: 1.1.7
Requires at least: 3.5
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Easily search text within your pages or blog posts.


== Description ==

With Search Inside now you can search within your posts or pages.
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/Uninstall/Uninstall.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Uninstall extends Controller {
* @uses delete_option() → removes option by name
* @uses delete_site_option() → removes a option by name
*/
public static function removeAll() {
public function removeAll() {

$this->model->removeAll();
}
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Launcher/Launcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Launcher extends Model {
* @uses add_option() → add a new option to Wordpress options
* @uses update_option() → update a named option/value
*/
protected function setOptions() {
public function setOptions() {

$pluginName = App::SearchInside()->get('slug');

Expand Down
2 changes: 1 addition & 1 deletion src/Model/Uninstall/Uninstall.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Uninstall extends Model {
* @uses delete_option() → removes option by name
* @uses delete_site_option() → removes a option by name
*/
public static function removeAll() {
public function removeAll() {

$slug = App::SearchInside()->get('slug');

Expand Down

0 comments on commit 8e28c57

Please sign in to comment.