PluginProbe
Image Hub – Free Images from Unsplash, Pixabay, Pexels, Openverse & Giphy / trunk
Image Hub – Free Images from Unsplash, Pixabay, Pexels, Openverse & Giphy vtrunk
1.2.0 trunk 1.0.11 1.0.8 1.0.9 1.1.0
← All changes | image-hub.php +4 -4 1.0.8trunk View file →
@@ -1,14 +1,13 @@
1 1 <?php
2 2 /**
3 3 * Plugin Name: Image Hub
4 4 * Plugin URI: https://wpimagehub.com
5 - * Description: Use free images provided by Pexels, Unsplash, Pixabay, Openverse, and Giphy directly from Gutenberg editor.
6 - * Version: 1.0.8
5 + * Description: Access and manage royalty-free images from Unsplash, Pixabay, Pexels, Openverse & Giphy without leaving your WordPress dashboard.
6 + * Version: 1.2.0
7 7 * Author: ExtendThemes
8 8 * Author URI: https://extendthemes.com
9 9 * Text Domain: image-hub
10 - * Domain Path: /lang
11 10 * License: GPL-3.0+
12 11 * License URI: https://www.gnu.org/licenses/gpl-3.0.txt
13 12 * Requires PHP: 7.4
14 13 * Requires at least: 6.5
@@ -22,9 +21,10 @@
22 21 define('IMAGE_HUB_ENTRY_FILE', __FILE__ );
23 22 define('IMAGE_HUB_ROOT_DIR', plugin_dir_path( __FILE__ ) );
24 23 define('IMAGE_HUB_ROOT_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) );
25 24 define("IMAGE_HUB_SERVICE_URL", "https://api.wpimagehub.com");
26 -define("IMAGE_HUB_VERSION", "1.0.8");
25 +define("IMAGE_HUB_VERSION", "1.2.0");
26 +define("IMAGE_HUB_BUILD_NUMBER", '20' );
27 27 define("IMAGE_HUB_PLUGIN_NAME", "Image Hub");
28 28
29 29 require_once plugin_dir_path( __FILE__ ) . 'vendor/autoload.php';
30 30