WD Instagram Feed – Instagram Gallery - Version 1.2.8

Version Description

Changed: Allow more users and hashtags in feed settings

Download this release

Release Info

Developer webdorado
Plugin Icon 128x128 WD Instagram Feed – Instagram Gallery
Version 1.2.8
Comparing to
See all releases

Code changes from version 1.2.7 to 1.2.8

admin-functions.php CHANGED
@@ -113,7 +113,7 @@ function wdi_install()
113
  thumb_user varchar(30) NOT NULL,
114
  published varchar(1) NOT NULL,
115
  theme_id varchar(10) NOT NULL,
116
- feed_users varchar(1000) NOT NULL,
117
  feed_display_view varchar(30) NOT NULL,
118
  sort_images_by varchar(30) NOT NULL,
119
  display_order varchar(30) NOT NULL,
113
  thumb_user varchar(30) NOT NULL,
114
  published varchar(1) NOT NULL,
115
  theme_id varchar(10) NOT NULL,
116
+ feed_users varchar(2000) NOT NULL,
117
  feed_display_view varchar(30) NOT NULL,
118
  sort_images_by varchar(30) NOT NULL,
119
  display_order varchar(30) NOT NULL,
changelog.txt CHANGED
@@ -1,3 +1,6 @@
 
 
 
1
  = 1.2.7 =
2
  Changed: Show notification to install Backup WD plugin only on plugin pages
3
 
1
+ = 1.2.8 =
2
+ Changed: Allow more users and hashtags in feed settings
3
+
4
  = 1.2.7 =
5
  Changed: Show notification to install Backup WD plugin only on plugin pages
6
 
readme.txt CHANGED
@@ -3,8 +3,9 @@ Contributors: webdorado, progmastery
3
  Donate link: https://web-dorado.com/products/wordpress-instagram-feed-wd.html
4
  Tags: custom instagram feed, feed, instagram, hashtag, Instagram feed, instagram gallery, instagram posts, Instagram images, Instagram photos, lightbox, photos,instagram account
5
  Requires at least: 3.9
6
- Tested up to: 4.8
7
- Stable tag: 1.2.7
 
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -12,6 +13,7 @@ Instagram Feed WD is a user-friendly plugin to display user or hashtag-based Ins
12
 
13
  == Description ==
14
 
 
15
  [WordPress WD Instagram Feed ](https://web-dorado.com/products/wordpress-instagram-feed-wd.html)
16
  [Demo](http://wpdemo.web-dorado.com/instagram-wd/)
17
  [User Guide](https://web-dorado.com/wordpress-instagram-feed-wd/installation-and-configuration/installation.html)
@@ -84,7 +86,7 @@ Upgrade to [Instagram Feed Pro](https://web-dorado.com/products/wordpress-instag
84
 
85
  ### Minimum requirements.
86
  * Wordpress 3.9+
87
- * PHP 5.x
88
  * MySQL 5.x
89
 
90
  ### Perform a new installation
@@ -110,6 +112,9 @@ After downloading the ZIP file of the Instagram Feed WD plugin,
110
 
111
  == Changelog ==
112
 
 
 
 
113
  = 1.2.7 =
114
  Changed: Show notification to install Backup WD plugin only on plugin pages
115
 
3
  Donate link: https://web-dorado.com/products/wordpress-instagram-feed-wd.html
4
  Tags: custom instagram feed, feed, instagram, hashtag, Instagram feed, instagram gallery, instagram posts, Instagram images, Instagram photos, lightbox, photos,instagram account
5
  Requires at least: 3.9
6
+ Requires PHP: 5.2
7
+ Tested up to: 4.9
8
+ Stable tag: 1.2.8
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
13
 
14
  == Description ==
15
 
16
+ [Special Offer for all Premium Plugins](https://web-dorado.com/wordpress-plugins-bundle.html)
17
  [WordPress WD Instagram Feed ](https://web-dorado.com/products/wordpress-instagram-feed-wd.html)
18
  [Demo](http://wpdemo.web-dorado.com/instagram-wd/)
19
  [User Guide](https://web-dorado.com/wordpress-instagram-feed-wd/installation-and-configuration/installation.html)
86
 
87
  ### Minimum requirements.
88
  * Wordpress 3.9+
89
+ * PHP 5.2+
90
  * MySQL 5.x
91
 
92
  ### Perform a new installation
112
 
113
  == Changelog ==
114
 
115
+ = 1.2.8 =
116
+ Changed: Allow more users and hashtags in feed settings
117
+
118
  = 1.2.7 =
119
  Changed: Show notification to install Backup WD plugin only on plugin pages
120
 
update/wdi_update.php CHANGED
@@ -88,6 +88,10 @@ function wdi_update_diff($new_v, $old_v = 0.0){
88
  if(version_compare($old_v, "2.2", '<')){
89
  $wpdb->query("ALTER TABLE " . $wpdb->prefix . WDI_FEED_TABLE . " ADD `redirect_url` varchar(255) NOT NULL DEFAULT ''");
90
  }
 
 
 
 
91
 
92
 
93
 
88
  if(version_compare($old_v, "2.2", '<')){
89
  $wpdb->query("ALTER TABLE " . $wpdb->prefix . WDI_FEED_TABLE . " ADD `redirect_url` varchar(255) NOT NULL DEFAULT ''");
90
  }
91
+ if(version_compare($old_v, "2.8", '<')){
92
+ $wpdb->query("ALTER TABLE " . $wpdb->prefix . WDI_FEED_TABLE . " MODIFY `feed_users` VARCHAR(2000) NOT NULL");
93
+ }
94
+
95
 
96
 
97
 
wd-instagram-feed.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Instagram Feed WD
4
  Plugin URI: https://web-dorado.com/products/wordpress-instagram-feed-wd.html
5
  Description: WD Instagram Feed is a user-friendly tool for displaying user or hashtag-based feeds on your website. You can create feeds with one of the available layouts. It allows displaying image metadata, open up images in lightbox, download them and even share in social networking websites.
6
- Version: 1.2.7
7
  Author: WebDorado
8
  Author URI: https://web-dorado.com
9
  License: GPLv2 or later
@@ -21,7 +21,7 @@ define("WDI_META", "_".WDI_VAR."_meta");
21
  //define("wdi",'wdi');
22
  define('WDI_FEED_TABLE','wdi_feeds');
23
  define('WDI_THEME_TABLE','wdi_themes');
24
- define('WDI_VERSION','1.2.7');
25
  define('WDI_IS_PRO','false');
26
 
27
 
3
  Plugin Name: Instagram Feed WD
4
  Plugin URI: https://web-dorado.com/products/wordpress-instagram-feed-wd.html
5
  Description: WD Instagram Feed is a user-friendly tool for displaying user or hashtag-based feeds on your website. You can create feeds with one of the available layouts. It allows displaying image metadata, open up images in lightbox, download them and even share in social networking websites.
6
+ Version: 1.2.8
7
  Author: WebDorado
8
  Author URI: https://web-dorado.com
9
  License: GPLv2 or later
21
  //define("wdi",'wdi');
22
  define('WDI_FEED_TABLE','wdi_feeds');
23
  define('WDI_THEME_TABLE','wdi_themes');
24
+ define('WDI_VERSION','1.2.8');
25
  define('WDI_IS_PRO','false');
26
 
27