Plugin Directory

Changeset 2346337


Ignore:
Timestamp:
07/25/2020 03:51:03 AM (5 years ago)
Author:
aware
Message:

Update to version 1.2.3 from GitHub

Location:
courier-notices
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • courier-notices/tags/1.2.3/CHANGELOG.md

    r2344125 r2346337  
    11# Changelog #
    22
     3## 1.2.3 ##
     4* Fixed - issue with notice placement (whoops)
     5
    36## 1.2.1 ##
     7
    48* Updated sanitization to match wordpress.org audit.
    59
  • courier-notices/tags/1.2.3/composer.json

    r2344125 r2346337  
    33  "description": "Courier Notification for WordPress",
    44  "homepage": "https://github.com/linchpin/courier",
    5   "version": "1.2.2",
     5  "version": "1.2.3",
    66  "authors": [
    77    {
  • courier-notices/tags/1.2.3/courier-notices.php

    r2344125 r2346337  
    44 * Plugin URI:  https://wordpress.org/plugins/courier-notices
    55 * Description: A way to display, manage, and control front end notifications for your WordPress install.
    6  * Version:     1.2.2
     6 * Version:     1.2.3
    77 * Author:      Linchpin
    88 * Author URI:  https://linchpin.com
     
    2323
    2424if ( ! defined( 'COURIER_NOTICES_VERSION' ) ) {
    25     define( 'COURIER_NOTICES_VERSION', '1.2.2' );
     25    define( 'COURIER_NOTICES_VERSION', '1.2.3' );
    2626}
    2727
    2828if ( ! defined( 'COURIER_NOTICES_RELEASE_DATE' ) ) {
    29     define( 'COURIER_NOTICES_RELEASE_DATE', '07/21/2020' );
     29    define( 'COURIER_NOTICES_RELEASE_DATE', '07/24/2020' );
    3030}
    3131
  • courier-notices/tags/1.2.3/package.json

    r2344125 r2346337  
    11{
    22  "name": "courier-notices",
    3   "version": "1.2.2",
     3  "version": "1.2.3",
    44  "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.",
    55  "main": "gulpfile.babel.js",
  • courier-notices/tags/1.2.3/readme.txt

    r2344125 r2346337  
    44Requires at least: 5.0
    55Tested up to: 5.3.2
    6 Stable tag: 1.2.2
     6Stable tag: 1.2.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3636== Changelog ==
    3737
     38= 1.2.3 =
     39* Fixed - issue with notice placement (whoops)
     40
    3841= 1.2.1 =
     42
    3943* Updated sanitization to match wordpress.org audit.
    4044
  • courier-notices/tags/1.2.3/src/Controller/Placement.php

    r2344125 r2346337  
    2020    public function register_actions() {
    2121        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 );
    2424    }
    2525
  • courier-notices/trunk/CHANGELOG.md

    r2344125 r2346337  
    11# Changelog #
    22
     3## 1.2.3 ##
     4* Fixed - issue with notice placement (whoops)
     5
    36## 1.2.1 ##
     7
    48* Updated sanitization to match wordpress.org audit.
    59
  • courier-notices/trunk/composer.json

    r2344125 r2346337  
    33  "description": "Courier Notification for WordPress",
    44  "homepage": "https://github.com/linchpin/courier",
    5   "version": "1.2.2",
     5  "version": "1.2.3",
    66  "authors": [
    77    {
  • courier-notices/trunk/courier-notices.php

    r2344125 r2346337  
    44 * Plugin URI:  https://wordpress.org/plugins/courier-notices
    55 * Description: A way to display, manage, and control front end notifications for your WordPress install.
    6  * Version:     1.2.2
     6 * Version:     1.2.3
    77 * Author:      Linchpin
    88 * Author URI:  https://linchpin.com
     
    2323
    2424if ( ! defined( 'COURIER_NOTICES_VERSION' ) ) {
    25     define( 'COURIER_NOTICES_VERSION', '1.2.2' );
     25    define( 'COURIER_NOTICES_VERSION', '1.2.3' );
    2626}
    2727
    2828if ( ! defined( 'COURIER_NOTICES_RELEASE_DATE' ) ) {
    29     define( 'COURIER_NOTICES_RELEASE_DATE', '07/21/2020' );
     29    define( 'COURIER_NOTICES_RELEASE_DATE', '07/24/2020' );
    3030}
    3131
  • courier-notices/trunk/package.json

    r2344125 r2346337  
    11{
    22  "name": "courier-notices",
    3   "version": "1.2.2",
     3  "version": "1.2.3",
    44  "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.",
    55  "main": "gulpfile.babel.js",
  • courier-notices/trunk/readme.txt

    r2344125 r2346337  
    44Requires at least: 5.0
    55Tested up to: 5.3.2
    6 Stable tag: 1.2.2
     6Stable tag: 1.2.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3636== Changelog ==
    3737
     38= 1.2.3 =
     39* Fixed - issue with notice placement (whoops)
     40
    3841= 1.2.1 =
     42
    3943* Updated sanitization to match wordpress.org audit.
    4044
  • courier-notices/trunk/src/Controller/Placement.php

    r2344125 r2346337  
    2020    public function register_actions() {
    2121        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 );
    2424    }
    2525
Note: See TracChangeset for help on using the changeset viewer.