diff --git a/CHANGELOG.md b/CHANGELOG.md index b44a78de3..a543ea9da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,24 @@ # Popup Maker Changelog + +## [v1.16.0 - 02/22/2021](https://github.com/PopupMaker/Popup-Maker/milestone/31) + +* Feature: Add 'flush popup cache' link in admin bar menu [Issue #931](https://github.com/PopupMaker/Popup-Maker/issues/931) +* Improvement: Remove 'Tools -> System Info' page, use WP Site Health page instead. [Issue #862](https://github.com/PopupMaker/Popup-Maker/issues/862) +* Improvement: Accessibility forced focus can now focus main close button if nothing else is available. [Issue #943](https://github.com/PopupMaker/Popup-Maker/issues/943) +* Improvement: Updated admin form styles to match recent WP core changes. [Issue #707](https://github.com/PopupMaker/Popup-Maker/issues/707) +* Fix: Bug preventing saving "Sitewide" cookie option unchecked. [Issue #642](https://github.com/PopupMaker/Popup-Maker/issues/642) +* Fix: Removed Action Scheduler library due to edge case issues with no reasonable long term solutions. [Issue #853](https://github.com/PopupMaker/Popup-Maker/issues/853) + ## [v1.15.0 - 01/12/2021](https://github.com/PopupMaker/Popup-Maker/milestone/30) -* Feature: Automatically enqueue popups when detected during page load [Issue 543](https://github.com/PopupMaker/Popup-Maker/issues/543) -* Improvement: Improvements to 'Extend' page [Issue 913](https://github.com/PopupMaker/Popup-Maker/issues/913) +* Feature: Automatically enqueue popups when detected during page load [Issue #543](https://github.com/PopupMaker/Popup-Maker/issues/543) +* Improvement: Improvements to 'Extend' page [Issue #913](https://github.com/PopupMaker/Popup-Maker/issues/913) * Improvement: Start working toward more consistent linking/documentation strategy -* Fix: Popup defaults() method only returns default values for checkbox fields [Issue 927](https://github.com/PopupMaker/Popup-Maker/issues/927) -* Fix: PUM_Telemetry triggers PHP warnings in (CLI) cron [Issue 919](https://github.com/PopupMaker/Popup-Maker/issues/919) -* Fix: pum-admin-bar Script Fails to Load [Issue 907](https://github.com/PopupMaker/Popup-Maker/issues/907) Thanks @fluxism! -* Fix: JS error: Uncaught TypeError: Cannot set property 'popups' of undefined [Issue 635](https://github.com/PopupMaker/Popup-Maker/issues/635) +* Fix: Popup defaults() method only returns default values for checkbox fields [Issue #927](https://github.com/PopupMaker/Popup-Maker/issues/927) +* Fix: PUM_Telemetry triggers PHP warnings in (CLI) cron [Issue #919](https://github.com/PopupMaker/Popup-Maker/issues/919) +* Fix: pum-admin-bar Script Fails to Load [Issue #907](https://github.com/PopupMaker/Popup-Maker/issues/907) Thanks @fluxism! +* Fix: JS error: Uncaught TypeError: Cannot set property 'popups' of undefined [Issue #635](https://github.com/PopupMaker/Popup-Maker/issues/635) * Fix: Undefined SCSS variable causing errors in building block components ## [v1.14.0 - 12/16/2020](https://github.com/PopupMaker/Popup-Maker/milestone/29) @@ -65,7 +75,7 @@ ## v1.11.1 - 07/22/2020 -* Fix: Form submission cookies no longer set with Contact Form 7 5.2 +* Fix: Form submission cookies no longer set with Contact Form 7 5.2 ## v1.11.0 - 06/25/2020 @@ -94,7 +104,7 @@ ## v1.10.0 - 04/20/2020 * Feature: Display presets for top bar, bottom right slide-ins, full-screen popups & bottom left notifications to make it simple to get common setups done much quicker -* Feature: Popup Trigger inline text format for the block editor. +* Feature: Popup Trigger inline text format for the block editor. * Feature: Turn any block in Gutenberg block editor into a popup trigger. * Feature: Font Awesome support added to close button text setting. * Feature: Play a sound when a popup is opened. Choose from 5 included sounds or upload your own. diff --git a/package.json b/package.json index 06ba0e359..f1ed3d97d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "popup-maker", - "version": "1.15.0", + "version": "1.16.0-beta.1", "description": "WordPress Popup Plugin", "homepage": "https://wppopupmaker.com", "author": "Code Atlantic LLC", diff --git a/popup-maker.php b/popup-maker.php index aea08745c..5b020b61e 100644 --- a/popup-maker.php +++ b/popup-maker.php @@ -3,7 +3,7 @@ * Plugin Name: Popup Maker * Plugin URI: https://wppopupmaker.com/?utm_campaign=plugin-info&utm_source=plugin-header&utm_medium=plugin-uri * Description: Easily create & style popups with any content. Theme editor to quickly style your popups. Add forms, social media boxes, videos & more. - * Version: 1.15.0 + * Version: 1.16.0-beta.1 * Author: Popup Maker * Author URI: https://wppopupmaker.com/?utm_campaign=plugin-info&utm_source=plugin-header&utm_medium=author-uri * License: GPL2 or later @@ -93,7 +93,7 @@ class Popup_Maker { /** * @var string Plugin Version */ - public static $VER = '1.15.0'; + public static $VER = '1.16.0-beta.1'; /** * @var int DB Version diff --git a/readme.txt b/readme.txt index 1a6d60747..e68859684 100644 --- a/readme.txt +++ b/readme.txt @@ -181,14 +181,22 @@ There are several common causes for this, check [this guide for help](https://do View our [complete changelog](https://github.com/PopupMaker/Popup-Maker/blob/master/CHANGELOG.md) for up-to-date information on what has been going on with the development of Popup Maker. += v1.16.0 - 02/22/2021 +* Feature: Add 'flush popup cache' link in admin bar menu to quickly clear cached plugin JS & CSS files. [Issue #931](https://github.com/PopupMaker/Popup-Maker/issues/931) +* Improvement: Remove 'Tools -> System Info' page, use WP Site Health page instead. [Issue #862](https://github.com/PopupMaker/Popup-Maker/issues/862) +* Improvement: Accessibility forced focus can now focus main close button if nothing else is available. [Issue #943](https://github.com/PopupMaker/Popup-Maker/issues/943) +* Improvement: Updated admin form styles to match recent WP core changes. [Issue #707](https://github.com/PopupMaker/Popup-Maker/issues/707) +* Fix: Bug preventing saving "Sitewide" cookie option unchecked. [Issue #642](https://github.com/PopupMaker/Popup-Maker/issues/642) +* Fix: Removed Action Scheduler library due to edge case issues with no reasonable long term solutions. [Issue #853](https://github.com/PopupMaker/Popup-Maker/issues/853) + = v1.15.0 - 01/12/2021 = -* Feature: Automatically enqueue popups when detected during page load [Issue 543](https://github.com/PopupMaker/Popup-Maker/issues/543) -* Improvement: Improvements to 'Extend' page [Issue 913](https://github.com/PopupMaker/Popup-Maker/issues/913) +* Feature: Automatically enqueue popups when detected during page load [Issue $543](https://github.com/PopupMaker/Popup-Maker/issues/543) +* Improvement: Improvements to 'Extend' page [Issue $913](https://github.com/PopupMaker/Popup-Maker/issues/913) * Improvement: Start working toward more consistent linking/documentation strategy -* Fix: Popup defaults() method only returns default values for checkbox fields [Issue 927](https://github.com/PopupMaker/Popup-Maker/issues/927) -* Fix: PUM_Telemetry triggers PHP warnings in (CLI) cron [Issue 919](https://github.com/PopupMaker/Popup-Maker/issues/919) -* Fix: pum-admin-bar Script Fails to Load [Issue 907](https://github.com/PopupMaker/Popup-Maker/issues/907) Thanks @fluxism! -* Fix: JS error: Uncaught TypeError: Cannot set property 'popups' of undefined [Issue 635](https://github.com/PopupMaker/Popup-Maker/issues/635) +* Fix: Popup defaults() method only returns default values for checkbox fields [Issue $927](https://github.com/PopupMaker/Popup-Maker/issues/927) +* Fix: PUM_Telemetry triggers PHP warnings in (CLI) cron [Issue $919](https://github.com/PopupMaker/Popup-Maker/issues/919) +* Fix: pum-admin-bar Script Fails to Load [Issue $907](https://github.com/PopupMaker/Popup-Maker/issues/907) Thanks @fluxism! +* Fix: JS error: Uncaught TypeError: Cannot set property 'popups' of undefined [Issue $635](https://github.com/PopupMaker/Popup-Maker/issues/635) * Fix: Undefined SCSS variable causing errors in building block components = v1.14.0 - 12/16/2020 =