Changeset 2153183
- Timestamp:
- 09/08/2019 10:04:35 PM (7 years ago)
- Location:
- wp-my-instagram
- Files:
-
- 24 added
- 3 edited
-
tags/1.2.0 (added)
-
tags/1.2.0/css (added)
-
tags/1.2.0/css/.sassbuilder-config.json (added)
-
tags/1.2.0/css/style.css (added)
-
tags/1.2.0/css/style.css.map (added)
-
tags/1.2.0/css/style.min.css (added)
-
tags/1.2.0/css/style.scss (added)
-
tags/1.2.0/inc (added)
-
tags/1.2.0/inc/public (added)
-
tags/1.2.0/inc/public/main.php (added)
-
tags/1.2.0/inc/public/shortcode.php (added)
-
tags/1.2.0/inc/public/widget.php (added)
-
tags/1.2.0/inc/templates (added)
-
tags/1.2.0/inc/templates/item.php (added)
-
tags/1.2.0/index.php (added)
-
tags/1.2.0/js (added)
-
tags/1.2.0/js/script.js (added)
-
tags/1.2.0/js/script.min.js (added)
-
tags/1.2.0/langs (added)
-
tags/1.2.0/langs/wp-my-instagram.pot (added)
-
tags/1.2.0/license.txt (added)
-
tags/1.2.0/readme.txt (added)
-
tags/1.2.0/wp-my-instagram.php (added)
-
trunk/inc/public/main.php (modified) (1 diff)
-
trunk/langs/wp-my-instagram.pot (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-my-instagram.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-my-instagram/trunk/inc/public/main.php
r2136695 r2153183 213 213 return false; 214 214 215 $remote = wp_remote_get( $url, array( 'timeout' => 120, 'sslverify' => false ) ); 215 $remote = wp_remote_get( $url, array( 216 'user-agent' => 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1', 217 'timeout' => 120, 218 'sslverify' => false 219 ) ); 216 220 217 221 if ( is_wp_error( $remote ) ) -
wp-my-instagram/trunk/readme.txt
r2136695 r2153183 4 4 Tags: instagram, widget 5 5 Requires at least: 3.9 6 Tested up to: 5.2. 27 Stable tag: 1. 1.96 Tested up to: 5.2.3 7 Stable tag: 1.2.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 65 65 == Changelog == 66 66 67 = 1.2.0 - SEP 8 2019 = 68 * BUGFIXES ;) 69 67 70 = 1.1.9 - Aug 8 2019 = 68 71 * bugfixes & improvements -
wp-my-instagram/trunk/wp-my-instagram.php
r2136695 r2153183 4 4 Plugin URI: https://wordpress.org/plugins/wp-my-instagram 5 5 Description: Display Instagram feeds on your site from your Instagram account 6 Version: 1. 1.96 Version: 1.2.0 7 7 Author: mnmlthms 8 8 Author URI: http://mnmlthms.com … … 29 29 if ( ! defined( 'ABSPATH' ) ) exit; 30 30 31 define( 'WP_MY_INSTAGRAM_VERSION', '1. 1.9' );31 define( 'WP_MY_INSTAGRAM_VERSION', '1.2.0' ); 32 32 define( 'WP_MY_INSTAGRAM_OPTION', 'wp_my_instagram' ); 33 33
Note: See TracChangeset
for help on using the changeset viewer.