Plugin Directory

Changeset 2174145


Ignore:
Timestamp:
10/16/2019 10:03:04 AM (6 years ago)
Author:
leocolomb
Message:

Update to version 3.0.6 from GitHub

Location:
wp-algolia
Files:
12 added
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wp-algolia/tags/3.0.6/LICENSE

    r2100083 r2174145  
    33Copyright (c) 2016 Algolia
    44Copyright (c) 2019 Léo Colombaro
     5Copyright (c) 2019-present Korben & Léo Colombaro
    56
    67Permission is hereby granted, free of charge, to any person obtaining a copy
  • wp-algolia/tags/3.0.6/readme.txt

    r2110046 r2174145  
    11=== Algolia for WordPress ===
    2 Contributors: algolia, leocolomb
     2Contributors: algolia, leocolomb, korben
    33Donate link: https://www.patreon.com/LeoColomb
    44Tags: search, algolia, relevant search, better search, custom search
     
    88Stable tag: trunk
    99License: MIT
    10 License URI: https://github.com/LeoColomb/wp-algolia/blob/master/LICENSE
     10License URI: https://github.com/korben-info/wp-algolia/blob/master/LICENSE
    1111
    1212A (unofficial) WordPress plugin to use Algolia as a search engine.
     
    3535This plugin can be installed with Composer on a Composer-managed WordPress stack.
    3636```
    37 composer require leocolomb/wp-algolia
     37composer require korben-info/wp-algolia
    3838```
    3939
     
    5151== Changelog ==
    5252
    53 [Checkout the complete changelog here](https://github.com/LeoColomb/wp-algolia/releases).
     53[Checkout the complete changelog here](https://github.com/korben-info/wp-algolia/releases).
    5454
    5555== Upgrade Notice ==
  • wp-algolia/tags/3.0.6/src/class-algolia-api.php

    r2110046 r2174145  
    5151
    5252        $integration_name    = (string) apply_filters('algolia_ua_integration_name', 'Integration');
    53         $integration_version = (string) apply_filters('algolia_ua_integration_version', ALGOLIA_VERSION . ' github:LeoColomb/wp-algolia');
     53        $integration_version = (string) apply_filters('algolia_ua_integration_version', ALGOLIA_VERSION . ' github:korben-info/wp-algolia');
    5454
    5555        UserAgent::addCustomUserAgent('WordPress', $wp_version);
  • wp-algolia/tags/3.0.6/src/class-algolia-helper.php

    r2100083 r2174145  
    224224
    225225        $indices = $this->indices;
     226
     227        if (empty($indices)) {
     228            return [];
     229        }
    226230
    227231        if (isset($args['enabled']) && true === $args['enabled']) {
  • wp-algolia/tags/3.0.6/wp-algolia.php

    r2111008 r2174145  
    55 * Plugin URI:        https://www.algolia.com/
    66 * Description:       A (unofficial) WordPress plugin to use Algolia as a search engine.
    7  * Version:           3.0.5
     7 * Version:           3.0.6
    88 * Author:            Léo Colombaro
    99 * Author URI:        https://colombaro.fr/
     
    2121
    2222// The Algolia Search plugin version
    23 define('ALGOLIA_VERSION', '3.0.5');
     23define('ALGOLIA_VERSION', '3.0.6');
    2424
    2525Algolia_Helper::get_instance();
  • wp-algolia/trunk/LICENSE

    r2100083 r2174145  
    33Copyright (c) 2016 Algolia
    44Copyright (c) 2019 Léo Colombaro
     5Copyright (c) 2019-present Korben & Léo Colombaro
    56
    67Permission is hereby granted, free of charge, to any person obtaining a copy
  • wp-algolia/trunk/readme.txt

    r2110046 r2174145  
    11=== Algolia for WordPress ===
    2 Contributors: algolia, leocolomb
     2Contributors: algolia, leocolomb, korben
    33Donate link: https://www.patreon.com/LeoColomb
    44Tags: search, algolia, relevant search, better search, custom search
     
    88Stable tag: trunk
    99License: MIT
    10 License URI: https://github.com/LeoColomb/wp-algolia/blob/master/LICENSE
     10License URI: https://github.com/korben-info/wp-algolia/blob/master/LICENSE
    1111
    1212A (unofficial) WordPress plugin to use Algolia as a search engine.
     
    3535This plugin can be installed with Composer on a Composer-managed WordPress stack.
    3636```
    37 composer require leocolomb/wp-algolia
     37composer require korben-info/wp-algolia
    3838```
    3939
     
    5151== Changelog ==
    5252
    53 [Checkout the complete changelog here](https://github.com/LeoColomb/wp-algolia/releases).
     53[Checkout the complete changelog here](https://github.com/korben-info/wp-algolia/releases).
    5454
    5555== Upgrade Notice ==
  • wp-algolia/trunk/src/class-algolia-api.php

    r2110046 r2174145  
    5151
    5252        $integration_name    = (string) apply_filters('algolia_ua_integration_name', 'Integration');
    53         $integration_version = (string) apply_filters('algolia_ua_integration_version', ALGOLIA_VERSION . ' github:LeoColomb/wp-algolia');
     53        $integration_version = (string) apply_filters('algolia_ua_integration_version', ALGOLIA_VERSION . ' github:korben-info/wp-algolia');
    5454
    5555        UserAgent::addCustomUserAgent('WordPress', $wp_version);
  • wp-algolia/trunk/src/class-algolia-helper.php

    r2100083 r2174145  
    224224
    225225        $indices = $this->indices;
     226
     227        if (empty($indices)) {
     228            return [];
     229        }
    226230
    227231        if (isset($args['enabled']) && true === $args['enabled']) {
  • wp-algolia/trunk/wp-algolia.php

    r2111008 r2174145  
    55 * Plugin URI:        https://www.algolia.com/
    66 * Description:       A (unofficial) WordPress plugin to use Algolia as a search engine.
    7  * Version:           3.0.5
     7 * Version:           3.0.6
    88 * Author:            Léo Colombaro
    99 * Author URI:        https://colombaro.fr/
     
    2121
    2222// The Algolia Search plugin version
    23 define('ALGOLIA_VERSION', '3.0.5');
     23define('ALGOLIA_VERSION', '3.0.6');
    2424
    2525Algolia_Helper::get_instance();
Note: See TracChangeset for help on using the changeset viewer.