From 50991a45b1feec524ce32db6425c74d7b1029b72 Mon Sep 17 00:00:00 2001 From: "Ian M. Jones" Date: Tue, 20 Feb 2018 23:14:58 +0000 Subject: [PATCH] Deploying version 1.3.1 --- README.md | 5 ++++- classes/as3cf-plugin-compatibility.php | 2 +- languages/amazon-s3-and-cloudfront-en.pot | 2 +- readme.txt | 5 ++++- wordpress-s3.php | 4 ++-- 5 files changed, 12 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e1cc08b4..26444818 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ **Tags:** uploads, amazon, s3, amazon s3, mirror, admin, media, cdn, cloudfront **Requires at least:** 4.6 **Tested up to:** 4.9 -**Stable tag:** 1.3 +**Stable tag:** 1.3.1 **License:** GPLv3 Copies files to Amazon S3 as they are uploaded to the Media Library. Optionally configure Amazon CloudFront for faster delivery. @@ -69,6 +69,9 @@ This version requires PHP 5.3.3+ and the Amazon Web Services plugin ## Changelog ## +### WP Offload S3 Lite 1.3.1 - 2018-02-20 ### +* Bug fix: Fatal error in stream wrapper setup when AWS Keys not set + ### WP Offload S3 Lite 1.3 - 2018-02-20 ### * [Release Summary Blog Post](https://deliciousbrains.com/wp-offload-s3-1-6-released/?utm_campaign=changelogs&utm_source=wordpress.org&utm_medium=free%2Bplugin%2Blisting) * New: [Amazon Web Services plugin](https://wordpress.org/plugins/amazon-web-services/) is no longer required to run WP Offload S3 Lite diff --git a/classes/as3cf-plugin-compatibility.php b/classes/as3cf-plugin-compatibility.php index e6a8a5b4..f8e7f3e7 100644 --- a/classes/as3cf-plugin-compatibility.php +++ b/classes/as3cf-plugin-compatibility.php @@ -71,7 +71,7 @@ function compatibility_init() { // Maybe warn about PHP version if in admin screens. add_action( 'admin_init', array( $this, 'maybe_warn_about_php_version' ) ); - if ( $this->as3cf->is_plugin_setup() ) { + if ( $this->as3cf->is_plugin_setup( true ) ) { $this->compatibility_init_if_setup(); } } diff --git a/languages/amazon-s3-and-cloudfront-en.pot b/languages/amazon-s3-and-cloudfront-en.pot index 03af508e..05abe63b 100644 --- a/languages/amazon-s3-and-cloudfront-en.pot +++ b/languages/amazon-s3-and-cloudfront-en.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: amazon-s3-and-cloudfront\n" "Report-Msgid-Bugs-To: nom@deliciousbrains.com\n" -"POT-Creation-Date: 2018-02-20 13:49+0000\n" +"POT-Creation-Date: 2018-02-20 23:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/readme.txt b/readme.txt index 141ce4d7..45e0717b 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: bradt, deliciousbrains Tags: uploads, amazon, s3, amazon s3, mirror, admin, media, cdn, cloudfront Requires at least: 4.6 Tested up to: 4.9 -Stable tag: 1.3 +Stable tag: 1.3.1 License: GPLv3 Copies files to Amazon S3 as they are uploaded to the Media Library. Optionally configure Amazon CloudFront for faster delivery. @@ -65,6 +65,9 @@ This version requires PHP 5.3.3+ and the Amazon Web Services plugin == Changelog == += WP Offload S3 Lite 1.3.1 - 2018-02-20 = +* Bug fix: Fatal error in stream wrapper setup when AWS Keys not set + = WP Offload S3 Lite 1.3 - 2018-02-20 = * [Release Summary Blog Post](https://deliciousbrains.com/wp-offload-s3-1-6-released/?utm_campaign=changelogs&utm_source=wordpress.org&utm_medium=free%2Bplugin%2Blisting) * New: [Amazon Web Services plugin](https://wordpress.org/plugins/amazon-web-services/) is no longer required to run WP Offload S3 Lite diff --git a/wordpress-s3.php b/wordpress-s3.php index 63965d21..89cc7780 100644 --- a/wordpress-s3.php +++ b/wordpress-s3.php @@ -4,7 +4,7 @@ Plugin URI: http://wordpress.org/extend/plugins/amazon-s3-and-cloudfront/ Description: Automatically copies media uploads to Amazon S3 for storage and delivery. Optionally configure Amazon CloudFront for even faster delivery. Author: Delicious Brains -Version: 1.3 +Version: 1.3.1 Author URI: https://deliciousbrains.com/ Network: True Text Domain: amazon-s3-and-cloudfront @@ -26,7 +26,7 @@ // Then completely rewritten. */ -$GLOBALS['aws_meta']['amazon-s3-and-cloudfront']['version'] = '1.3'; +$GLOBALS['aws_meta']['amazon-s3-and-cloudfront']['version'] = '1.3.1'; require_once dirname( __FILE__ ) . '/classes/as3cf-compatibility-check.php';