BlossomThemes Social Feed - Version 2.0.1

Version Description

Released on: 23rd November, 2020

Fixes:

  • Instragram caption escaping fixes.
  • Minor bug fixes.
Download this release

Release Info

Developer blossomthemes
Plugin Icon 128x128 BlossomThemes Social Feed
Version 2.0.1
Comparing to
See all releases

Code changes from version 2.0.0 to 2.0.1

README.txt CHANGED
@@ -3,9 +3,9 @@ Contributors: blossomthemes
3
  Donate link: https://blossomthemes.com
4
  Tags: instagram, popup, responsive, insta widget
5
  Requires at least: 4.3
6
- Tested up to: 5.5
7
  Requires PHP: 5.6
8
- Stable tag: 2.0.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -66,6 +66,15 @@ If you do not enter the Instagram username in the widget, the username assigned
66
 
67
  == Changelog ==
68
 
 
 
 
 
 
 
 
 
 
69
  = 2.0.0 =
70
 
71
  Released on: 17th March, 2020
3
  Donate link: https://blossomthemes.com
4
  Tags: instagram, popup, responsive, insta widget
5
  Requires at least: 4.3
6
+ Tested up to: 5.6
7
  Requires PHP: 5.6
8
+ Stable tag: 2.0.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
66
 
67
  == Changelog ==
68
 
69
+ = 2.0.1 =
70
+
71
+ Released on: 23rd November, 2020
72
+
73
+ Fixes:
74
+
75
+ * Instragram caption escaping fixes.
76
+ * Minor bug fixes.
77
+
78
  = 2.0.0 =
79
 
80
  Released on: 17th March, 2020
blossomthemes-instagram-feed.php CHANGED
@@ -15,7 +15,7 @@
15
  * Plugin Name: BlossomThemes Social Feed
16
  * Plugin URI: https://wordpress.org/plugins/blossomthemes-instagram-feed
17
  * Description: Show instagram feed on your website using shortcode and widget.
18
- * Version: 2.0.0
19
  * Author: blossomthemes
20
  * Author URI: https://blossomthemes.com
21
  * License: GPL-2.0+
@@ -32,7 +32,7 @@ if ( ! defined( 'WPINC' ) ) {
32
  define( 'BTIF_BASE_PATH', dirname( __FILE__ ) );
33
  define( 'BTIF_FILE_PATH', __FILE__ );
34
  define( 'BTIF_FILE_URL', rtrim( plugin_dir_url( __FILE__ ), '/' ) );
35
- define( 'BTIF_PLUGIN_VERSION', '2.0.0' );
36
 
37
  // Instagram API image limit.
38
  if ( ! defined( 'BTIF_INSTAGRAM_API_IMAGE_LIMIT' ) ) {
15
  * Plugin Name: BlossomThemes Social Feed
16
  * Plugin URI: https://wordpress.org/plugins/blossomthemes-instagram-feed
17
  * Description: Show instagram feed on your website using shortcode and widget.
18
+ * Version: 2.0.1
19
  * Author: blossomthemes
20
  * Author URI: https://blossomthemes.com
21
  * License: GPL-2.0+
32
  define( 'BTIF_BASE_PATH', dirname( __FILE__ ) );
33
  define( 'BTIF_FILE_PATH', __FILE__ );
34
  define( 'BTIF_FILE_URL', rtrim( plugin_dir_url( __FILE__ ), '/' ) );
35
+ define( 'BTIF_PLUGIN_VERSION', '2.0.1' );
36
 
37
  // Instagram API image limit.
38
  if ( ! defined( 'BTIF_INSTAGRAM_API_IMAGE_LIMIT' ) ) {
languages/blossomthemes-instagram-feed.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the GPL-2.0+.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: BlossomThemes Social Feed 2.0.0\n"
6
  "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: 2020-03-17 07:11:08+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
2
  # This file is distributed under the GPL-2.0+.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: BlossomThemes Social Feed 2.0.1\n"
6
  "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2020-11-23 06:26:43+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
public/partials/blossomthemes-instagram-feed-public-display.php CHANGED
@@ -20,12 +20,12 @@
20
  <?php if( 'VIDEO' === $item->media_type ) : ?>
21
  <a href="<?php echo esc_url($item->media_url); ?>" class="mfp-iframe">
22
  <img src="<?php echo esc_url($item->thumbnail_url); ?>"
23
- alt="<?php echo html_entity_decode($item->caption); ?>">
24
  </a>
25
  <?php else: ?>
26
  <a href="<?php echo esc_url($item->media_url); ?>">
27
  <img src="<?php echo esc_url($item->media_url); ?>"
28
- alt="<?php echo html_entity_decode($item->caption); ?>">
29
  </a>
30
  <?php endif; ?>
31
  </li>
20
  <?php if( 'VIDEO' === $item->media_type ) : ?>
21
  <a href="<?php echo esc_url($item->media_url); ?>" class="mfp-iframe">
22
  <img src="<?php echo esc_url($item->thumbnail_url); ?>"
23
+ alt="<?php echo esc_attr($item->caption); ?>">
24
  </a>
25
  <?php else: ?>
26
  <a href="<?php echo esc_url($item->media_url); ?>">
27
  <img src="<?php echo esc_url($item->media_url); ?>"
28
+ alt="<?php echo esc_attr($item->caption); ?>">
29
  </a>
30
  <?php endif; ?>
31
  </li>