diff --git a/CHANGELOG.md b/CHANGELOG.md index b70ffda..66d9c15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file, formatted via [this recommendation](https://keepachangelog.com/). +## [1.1.1] - 2020-07-02 +* Fix - Ignore file types that are already allowed by default. +* Fix - Remove duplicate MIME types of the same extension that could create conflict. + ## [1.1.0] - 2020-05-13 * Refactor - Autoloading plugin files and use namespace. * Fix - Error uploading file types with numerical extension. diff --git a/file-upload-types.php b/file-upload-types.php index 7c12335..e147d85 100644 --- a/file-upload-types.php +++ b/file-upload-types.php @@ -2,7 +2,7 @@ /** * Plugin Name: File Upload Types * Description: Easily allow WordPress to accept and upload any file type extension or MIME type, including custom file types. - * Version: 1.1.0 + * Version: 1.1.1 * Author: WPForms * Author URI: https://wpforms.com * Text Domain: file-upload-types @@ -60,7 +60,7 @@ function file_upload_types_deactivate_msg() { */ define( 'FILE_UPLOAD_TYPES_PLUGIN_FILE', __FILE__ ); define( 'FILE_UPLOAD_TYPES_PLUGIN_PATH', dirname( __FILE__ ) ); -define( 'FILE_UPLOAD_TYPES_VERSION', '1.1.0' ); +define( 'FILE_UPLOAD_TYPES_VERSION', '1.1.1' ); /** * Return the main instance of Plugin class. diff --git a/languages/file-upload-types.pot b/languages/file-upload-types.pot index 543a59c..1b80e66 100644 --- a/languages/file-upload-types.pot +++ b/languages/file-upload-types.pot @@ -1,13 +1,13 @@ msgid "" msgstr "" -"Project-Id-Version: File Upload Types 1.1.0\n" +"Project-Id-Version: File Upload Types 1.1.1\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/file-upload-types\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-05-13T14:23:00+00:00\n" +"POT-Creation-Date: 2020-07-02T14:25:11+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.4.0\n" "X-Domain: file-upload-types\n" @@ -23,7 +23,7 @@ msgid "Easily allow WordPress to accept and upload any file type extension or MI msgstr "" #. Author of the plugin -#: src/Settings.php:469 +#: src/Settings.php:480 msgid "WPForms" msgstr "" @@ -79,12 +79,12 @@ msgid "Description" msgstr "" #: src/Settings.php:220 -#: src/Settings.php:307 +#: src/Settings.php:313 msgid "MIME Type" msgstr "" #: src/Settings.php:221 -#: src/Settings.php:309 +#: src/Settings.php:315 msgid "Extension" msgstr "" @@ -96,65 +96,65 @@ msgstr "" msgid "AVAILABLE" msgstr "" -#: src/Settings.php:297 +#: src/Settings.php:303 msgid "ADD CUSTOM FILE TYPES" msgstr "" -#: src/Settings.php:300 +#: src/Settings.php:306 msgid "Add the custom file types to allow uploads" msgstr "" -#: src/Settings.php:306 +#: src/Settings.php:312 msgid "File Description" msgstr "" -#: src/Settings.php:329 +#: src/Settings.php:335 msgid "You might like our other products" msgstr "" #. translators: %s - wpforms.com link. -#: src/Settings.php:335 +#: src/Settings.php:341 msgid "File Upload Types is built by the team behind the most popular WordPress form plugin, WPForms. Check out some of our other plugins." msgstr "" #. translators: %1$s - Plugin URL; %2$s - Plugin Name; %3$s - Image source. -#: src/Settings.php:366 +#: src/Settings.php:372 msgid "Get %2$s" msgstr "" -#: src/Settings.php:450 +#: src/Settings.php:461 msgid "Your settings have been saved." msgstr "" -#: src/Settings.php:470 +#: src/Settings.php:481 msgid "The most beginner friendly WordPress contact form plugin." msgstr "" -#: src/Settings.php:475 +#: src/Settings.php:486 msgid "MonsterInsights" msgstr "" -#: src/Settings.php:476 +#: src/Settings.php:487 msgid "Effortlessly connect your WP site with Google Analytics." msgstr "" -#: src/Settings.php:481 +#: src/Settings.php:492 msgid "OptinMonster" msgstr "" -#: src/Settings.php:482 +#: src/Settings.php:493 msgid "Turn your traffic into leads, conversions and sales." msgstr "" -#: src/Settings.php:487 +#: src/Settings.php:498 msgid "SeedProd" msgstr "" -#: src/Settings.php:488 +#: src/Settings.php:499 msgid "Create beautiful coming soon pages, skyrocket your email list." msgstr "" #. translators: %1$s - WP.org link; %2$s - same WP.org link. -#: src/Settings.php:513 +#: src/Settings.php:524 msgid "Please rate File Upload Types ★★★★★ on WordPress.org to help us spread the word. Thank you from the File Upload Types team!" msgstr "" diff --git a/package-lock.json b/package-lock.json index a7840b7..7090299 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "file-upload-types", - "version": "1.1.0", + "version": "1.1.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 5b48bbb..e489e84 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "file-upload-types", "description": "Manage the types of files that can be uploaded to your WordPress site.", - "version": "1.1.0", + "version": "1.1.1", "homepage": "", "repository": { "type": "git", diff --git a/readme.txt b/readme.txt index a4024f2..42a787a 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: wpforms, smub, jaredatch, slaFFik, sanzeeb3 Tags: files, upload, file upload, mime, attachments Requires at least: 4.9 Tested up to: 5.4 -Stable tag: 1.1.0 +Stable tag: 1.1.1 Requires PHP: 5.6 Easily allow WordPress to accept and upload any file type extension or MIME type, including custom file types. @@ -80,6 +80,10 @@ Visit