Changeset 2174145
- Timestamp:
- 10/16/2019 10:03:04 AM (6 years ago)
- Location:
- wp-algolia
- Files:
-
- 12 added
- 10 edited
- 1 copied
-
tags/3.0.6 (copied) (copied from wp-algolia/trunk)
-
tags/3.0.6/.wordpress-org (added)
-
tags/3.0.6/.wordpress-org/banner-1544x500.png (added)
-
tags/3.0.6/.wordpress-org/banner-772x250.png (added)
-
tags/3.0.6/.wordpress-org/icon-128x128.png (added)
-
tags/3.0.6/.wordpress-org/icon-256x256.png (added)
-
tags/3.0.6/.wordpress-org/screenshot-1.png (added)
-
tags/3.0.6/LICENSE (modified) (1 diff)
-
tags/3.0.6/readme.txt (modified) (4 diffs)
-
tags/3.0.6/src/class-algolia-api.php (modified) (1 diff)
-
tags/3.0.6/src/class-algolia-helper.php (modified) (1 diff)
-
tags/3.0.6/wp-algolia.php (modified) (2 diffs)
-
trunk/.wordpress-org (added)
-
trunk/.wordpress-org/banner-1544x500.png (added)
-
trunk/.wordpress-org/banner-772x250.png (added)
-
trunk/.wordpress-org/icon-128x128.png (added)
-
trunk/.wordpress-org/icon-256x256.png (added)
-
trunk/.wordpress-org/screenshot-1.png (added)
-
trunk/LICENSE (modified) (1 diff)
-
trunk/readme.txt (modified) (4 diffs)
-
trunk/src/class-algolia-api.php (modified) (1 diff)
-
trunk/src/class-algolia-helper.php (modified) (1 diff)
-
trunk/wp-algolia.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-algolia/tags/3.0.6/LICENSE
r2100083 r2174145 3 3 Copyright (c) 2016 Algolia 4 4 Copyright (c) 2019 Léo Colombaro 5 Copyright (c) 2019-present Korben & Léo Colombaro 5 6 6 7 Permission is hereby granted, free of charge, to any person obtaining a copy -
wp-algolia/tags/3.0.6/readme.txt
r2110046 r2174145 1 1 === Algolia for WordPress === 2 Contributors: algolia, leocolomb 2 Contributors: algolia, leocolomb, korben 3 3 Donate link: https://www.patreon.com/LeoColomb 4 4 Tags: search, algolia, relevant search, better search, custom search … … 8 8 Stable tag: trunk 9 9 License: MIT 10 License URI: https://github.com/ LeoColomb/wp-algolia/blob/master/LICENSE10 License URI: https://github.com/korben-info/wp-algolia/blob/master/LICENSE 11 11 12 12 A (unofficial) WordPress plugin to use Algolia as a search engine. … … 35 35 This plugin can be installed with Composer on a Composer-managed WordPress stack. 36 36 ``` 37 composer require leocolomb/wp-algolia37 composer require korben-info/wp-algolia 38 38 ``` 39 39 … … 51 51 == Changelog == 52 52 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). 54 54 55 55 == Upgrade Notice == -
wp-algolia/tags/3.0.6/src/class-algolia-api.php
r2110046 r2174145 51 51 52 52 $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'); 54 54 55 55 UserAgent::addCustomUserAgent('WordPress', $wp_version); -
wp-algolia/tags/3.0.6/src/class-algolia-helper.php
r2100083 r2174145 224 224 225 225 $indices = $this->indices; 226 227 if (empty($indices)) { 228 return []; 229 } 226 230 227 231 if (isset($args['enabled']) && true === $args['enabled']) { -
wp-algolia/tags/3.0.6/wp-algolia.php
r2111008 r2174145 5 5 * Plugin URI: https://www.algolia.com/ 6 6 * Description: A (unofficial) WordPress plugin to use Algolia as a search engine. 7 * Version: 3.0. 57 * Version: 3.0.6 8 8 * Author: Léo Colombaro 9 9 * Author URI: https://colombaro.fr/ … … 21 21 22 22 // The Algolia Search plugin version 23 define('ALGOLIA_VERSION', '3.0. 5');23 define('ALGOLIA_VERSION', '3.0.6'); 24 24 25 25 Algolia_Helper::get_instance(); -
wp-algolia/trunk/LICENSE
r2100083 r2174145 3 3 Copyright (c) 2016 Algolia 4 4 Copyright (c) 2019 Léo Colombaro 5 Copyright (c) 2019-present Korben & Léo Colombaro 5 6 6 7 Permission is hereby granted, free of charge, to any person obtaining a copy -
wp-algolia/trunk/readme.txt
r2110046 r2174145 1 1 === Algolia for WordPress === 2 Contributors: algolia, leocolomb 2 Contributors: algolia, leocolomb, korben 3 3 Donate link: https://www.patreon.com/LeoColomb 4 4 Tags: search, algolia, relevant search, better search, custom search … … 8 8 Stable tag: trunk 9 9 License: MIT 10 License URI: https://github.com/ LeoColomb/wp-algolia/blob/master/LICENSE10 License URI: https://github.com/korben-info/wp-algolia/blob/master/LICENSE 11 11 12 12 A (unofficial) WordPress plugin to use Algolia as a search engine. … … 35 35 This plugin can be installed with Composer on a Composer-managed WordPress stack. 36 36 ``` 37 composer require leocolomb/wp-algolia37 composer require korben-info/wp-algolia 38 38 ``` 39 39 … … 51 51 == Changelog == 52 52 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). 54 54 55 55 == Upgrade Notice == -
wp-algolia/trunk/src/class-algolia-api.php
r2110046 r2174145 51 51 52 52 $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'); 54 54 55 55 UserAgent::addCustomUserAgent('WordPress', $wp_version); -
wp-algolia/trunk/src/class-algolia-helper.php
r2100083 r2174145 224 224 225 225 $indices = $this->indices; 226 227 if (empty($indices)) { 228 return []; 229 } 226 230 227 231 if (isset($args['enabled']) && true === $args['enabled']) { -
wp-algolia/trunk/wp-algolia.php
r2111008 r2174145 5 5 * Plugin URI: https://www.algolia.com/ 6 6 * Description: A (unofficial) WordPress plugin to use Algolia as a search engine. 7 * Version: 3.0. 57 * Version: 3.0.6 8 8 * Author: Léo Colombaro 9 9 * Author URI: https://colombaro.fr/ … … 21 21 22 22 // The Algolia Search plugin version 23 define('ALGOLIA_VERSION', '3.0. 5');23 define('ALGOLIA_VERSION', '3.0.6'); 24 24 25 25 Algolia_Helper::get_instance();
Note: See TracChangeset
for help on using the changeset viewer.