Plugin Directory

Changeset 3424348


Ignore:
Timestamp:
12/20/2025 07:19:27 PM (3 weeks ago)
Author:
itthinx
Message:

version 2.0.0

Location:
search-live/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • search-live/trunk/COPYRIGHT.txt

    r3017529 r3424348  
    11 Search Live                                                     COPYRIGHT.txt
    22
    3  Copyright 2015 - 2024 "kento" (Karim Rahimpur) - www.itthinx.com
     3 Copyright 2015 - 2025 "kento" (Karim Rahimpur) - www.itthinx.com
    44
    55 The files COPYRIGHT.txt and LICENSE.txt as well as ALL NOTICES IN THE
  • search-live/trunk/LICENSE.txt

    r3017529 r3424348  
    11 Search Live                                                       LICENSE.txt
    22
    3  Copyright 2015 - 2024 "kento" (Karim Rahimpur) www.itthinx.com
     3 Copyright 2015 - 2025 "kento" (Karim Rahimpur) www.itthinx.com
    44
    55  The code and all files of "Search Live" are released under the GNU General
  • search-live/trunk/changelog.txt

    r3017529 r3424348  
    11== Search Live by itthinx - Changelog ==
     2
     3= 2.0.0 =
     4* WordPress 6.9 compatible.
     5* Requires at least WordPress 6.5.
     6* Fixes a deprecated too early call to translation function.
    27
    38= 1.15.0 =
  • search-live/trunk/readme.txt

    r3017529 r3424348  
    22Contributors: itthinx, proaktion
    33Tags: ajax, ajax search, instant search, live search, search
    4 Requires at least: 6.0
    5 Tested up to: 6.4
     4Requires at least: 6.5
     5Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 1.15.0
     7Stable tag: 2.0.0
    88License: GPLv3
    99Donate Link: https://www.itthinx.com
  • search-live/trunk/search-live.php

    r3017529 r3424348  
    33 * search-live.php
    44 *
    5  * Copyright (c) 2015 - 2024 "kento" Karim Rahimpur www.itthinx.com
     5 * Copyright (c) 2015 - 2025 "kento" Karim Rahimpur www.itthinx.com
    66 *
    77 * This code is released under the GNU General Public License Version 3.
     
    4646 * Plugin URI: https://www.itthinx.com/plugins/search-live/
    4747 * Description: Search Live supplies integrated live search facilities and advanced search features.
    48  * Version: 1.15.0
    49  * Requires at least: 6.0
     48 * Version: 2.0.0
     49 * Requires at least: 6.5
    5050 * Requires PHP: 7.4
    5151 * Author: itthinx
     
    6161}
    6262
    63 define( 'SEARCH_LIVE_PLUGIN_VERSION', '1.15.0' );
     63define( 'SEARCH_LIVE_PLUGIN_VERSION', '2.0.0' );
    6464define( 'SEARCH_LIVE_PLUGIN', 'search-live' );
    6565define( 'SEARCH_LIVE_PLUGIN_DOMAIN', 'search-live' );
  • search-live/trunk/views/class-search-live-widget.php

    r2280480 r3424348  
    4646    static $cache_flag = 'widget';
    4747
     48    /**
     49     * @var array
     50     */
    4851    static $defaults = array();
    4952
     
    5356    public static function init() {
    5457        add_action( 'widgets_init', array( __CLASS__, 'widgets_init' ) );
     58    }
     59
     60    /**
     61     * Registers the widget.
     62     */
     63    public static function widgets_init() {
    5564        self::$the_name = __( 'Search Live', 'search-live' );
    56     }
    57 
    58     /**
    59      * Registers the widget.
    60      */
    61     public static function widgets_init() {
    6265        register_widget( 'Search_Live_Widget' );
    6366    }
Note: See TracChangeset for help on using the changeset viewer.