Changeset 2346337
- Timestamp:
- 07/25/2020 03:51:03 AM (5 years ago)
- Location:
- courier-notices
- Files:
-
- 12 edited
- 1 copied
-
tags/1.2.3 (copied) (copied from courier-notices/trunk)
-
tags/1.2.3/CHANGELOG.md (modified) (1 diff)
-
tags/1.2.3/composer.json (modified) (1 diff)
-
tags/1.2.3/courier-notices.php (modified) (2 diffs)
-
tags/1.2.3/package.json (modified) (1 diff)
-
tags/1.2.3/readme.txt (modified) (2 diffs)
-
tags/1.2.3/src/Controller/Placement.php (modified) (1 diff)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/composer.json (modified) (1 diff)
-
trunk/courier-notices.php (modified) (2 diffs)
-
trunk/package.json (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/Controller/Placement.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
courier-notices/tags/1.2.3/CHANGELOG.md
r2344125 r2346337 1 1 # Changelog # 2 2 3 ## 1.2.3 ## 4 * Fixed - issue with notice placement (whoops) 5 3 6 ## 1.2.1 ## 7 4 8 * Updated sanitization to match wordpress.org audit. 5 9 -
courier-notices/tags/1.2.3/composer.json
r2344125 r2346337 3 3 "description": "Courier Notification for WordPress", 4 4 "homepage": "https://github.com/linchpin/courier", 5 "version": "1.2. 2",5 "version": "1.2.3", 6 6 "authors": [ 7 7 { -
courier-notices/tags/1.2.3/courier-notices.php
r2344125 r2346337 4 4 * Plugin URI: https://wordpress.org/plugins/courier-notices 5 5 * Description: A way to display, manage, and control front end notifications for your WordPress install. 6 * Version: 1.2. 26 * Version: 1.2.3 7 7 * Author: Linchpin 8 8 * Author URI: https://linchpin.com … … 23 23 24 24 if ( ! defined( 'COURIER_NOTICES_VERSION' ) ) { 25 define( 'COURIER_NOTICES_VERSION', '1.2. 2' );25 define( 'COURIER_NOTICES_VERSION', '1.2.3' ); 26 26 } 27 27 28 28 if ( ! defined( 'COURIER_NOTICES_RELEASE_DATE' ) ) { 29 define( 'COURIER_NOTICES_RELEASE_DATE', '07/2 1/2020' );29 define( 'COURIER_NOTICES_RELEASE_DATE', '07/24/2020' ); 30 30 } 31 31 -
courier-notices/tags/1.2.3/package.json
r2344125 r2346337 1 1 { 2 2 "name": "courier-notices", 3 "version": "1.2. 2",3 "version": "1.2.3", 4 4 "description": "A way to display, manage, and control front end notifications for users, globally or individually, in the header,footer, by shortcode or by page.", 5 5 "main": "gulpfile.babel.js", -
courier-notices/tags/1.2.3/readme.txt
r2344125 r2346337 4 4 Requires at least: 5.0 5 5 Tested up to: 5.3.2 6 Stable tag: 1.2. 26 Stable tag: 1.2.3 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 36 36 == Changelog == 37 37 38 = 1.2.3 = 39 * Fixed - issue with notice placement (whoops) 40 38 41 = 1.2.1 = 42 39 43 * Updated sanitization to match wordpress.org audit. 40 44 -
courier-notices/tags/1.2.3/src/Controller/Placement.php
r2344125 r2346337 20 20 public function register_actions() { 21 21 add_action( 'wp_body_open', array( __CLASS__, 'place_header_notices' ), 100 ); 22 //add_action( 'get_footer', array( __CLASS__, 'place_footer_notices' ), 100 );23 //add_action( 'get_footer', array( __CLASS__, 'place_modal_notices' ), 100 );22 add_action( 'get_footer', array( __CLASS__, 'place_footer_notices' ), 100 ); 23 add_action( 'get_footer', array( __CLASS__, 'place_modal_notices' ), 100 ); 24 24 } 25 25 -
courier-notices/trunk/CHANGELOG.md
r2344125 r2346337 1 1 # Changelog # 2 2 3 ## 1.2.3 ## 4 * Fixed - issue with notice placement (whoops) 5 3 6 ## 1.2.1 ## 7 4 8 * Updated sanitization to match wordpress.org audit. 5 9 -
courier-notices/trunk/composer.json
r2344125 r2346337 3 3 "description": "Courier Notification for WordPress", 4 4 "homepage": "https://github.com/linchpin/courier", 5 "version": "1.2. 2",5 "version": "1.2.3", 6 6 "authors": [ 7 7 { -
courier-notices/trunk/courier-notices.php
r2344125 r2346337 4 4 * Plugin URI: https://wordpress.org/plugins/courier-notices 5 5 * Description: A way to display, manage, and control front end notifications for your WordPress install. 6 * Version: 1.2. 26 * Version: 1.2.3 7 7 * Author: Linchpin 8 8 * Author URI: https://linchpin.com … … 23 23 24 24 if ( ! defined( 'COURIER_NOTICES_VERSION' ) ) { 25 define( 'COURIER_NOTICES_VERSION', '1.2. 2' );25 define( 'COURIER_NOTICES_VERSION', '1.2.3' ); 26 26 } 27 27 28 28 if ( ! defined( 'COURIER_NOTICES_RELEASE_DATE' ) ) { 29 define( 'COURIER_NOTICES_RELEASE_DATE', '07/2 1/2020' );29 define( 'COURIER_NOTICES_RELEASE_DATE', '07/24/2020' ); 30 30 } 31 31 -
courier-notices/trunk/package.json
r2344125 r2346337 1 1 { 2 2 "name": "courier-notices", 3 "version": "1.2. 2",3 "version": "1.2.3", 4 4 "description": "A way to display, manage, and control front end notifications for users, globally or individually, in the header,footer, by shortcode or by page.", 5 5 "main": "gulpfile.babel.js", -
courier-notices/trunk/readme.txt
r2344125 r2346337 4 4 Requires at least: 5.0 5 5 Tested up to: 5.3.2 6 Stable tag: 1.2. 26 Stable tag: 1.2.3 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 36 36 == Changelog == 37 37 38 = 1.2.3 = 39 * Fixed - issue with notice placement (whoops) 40 38 41 = 1.2.1 = 42 39 43 * Updated sanitization to match wordpress.org audit. 40 44 -
courier-notices/trunk/src/Controller/Placement.php
r2344125 r2346337 20 20 public function register_actions() { 21 21 add_action( 'wp_body_open', array( __CLASS__, 'place_header_notices' ), 100 ); 22 //add_action( 'get_footer', array( __CLASS__, 'place_footer_notices' ), 100 );23 //add_action( 'get_footer', array( __CLASS__, 'place_modal_notices' ), 100 );22 add_action( 'get_footer', array( __CLASS__, 'place_footer_notices' ), 100 ); 23 add_action( 'get_footer', array( __CLASS__, 'place_modal_notices' ), 100 ); 24 24 } 25 25
Note: See TracChangeset
for help on using the changeset viewer.