Plugin Directory

Changeset 2533806


Ignore:
Timestamp:
05/18/2021 06:22:46 PM (5 years ago)
Author:
firetree
Message:

Update to version 1.4.1 from GitHub

Location:
hey-notify
Files:
13 edited
1 copied

Legend:

Unmodified
Added
Removed
  • hey-notify/tags/1.4.1/changelog.txt

    r2476609 r2533806  
    22
    33This is an archive of older changelog entries. Most recent entries are maintained in readme.txt
     4
     5= 1.3.0 =
     6* Added default settings for Slack and Discord.
     7* Added a button to manually refresh the list of Custom Post Types.
     8* Added a page for viewing the available Add-ons.
    49
    510= 1.2.2 =
  • hey-notify/tags/1.4.1/hey-notify.php

    r2526791 r2533806  
    44 * Plugin URI: https://heynotifywp.com/
    55 * Description: Get notified when things happen in WordPress.
    6  * Version: 1.4.0
     6 * Version: 1.4.1
    77 * Author: FireTree Design, LLC <info@firetreedesign.com>
    88 * Author URI: https://firetreedesign.com/
     
    2020}
    2121
    22 define( 'HEY_NOTIFY_VERSION', '1.4.0' );
     22define( 'HEY_NOTIFY_VERSION', '1.4.1' );
    2323define( 'HEY_NOTIFY_PLUGIN_FILE', __FILE__ );
    2424define( 'HEY_NOTIFY_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
  • hey-notify/tags/1.4.1/includes/cpt.php

    r2526791 r2533806  
    247247        $data = json_decode( $data );
    248248        if ( null === $data ) {
    249             $data = wp_json_decode( wp_json_encode( new stdClass() ) );
     249            $data = json_decode( wp_json_encode( new stdClass() ) );
    250250        }
    251251        usort( $data, __NAMESPACE__ . '\\sort_addons_data' );
     
    270270    $data = json_decode( $data );
    271271    if ( null === $data ) {
    272         $data = wp_json_decode( wp_json_encode( new stdClass() ) );
     272        $data = json_decode( wp_json_encode( new stdClass() ) );
    273273    }
    274274    usort( $data, __NAMESPACE__ . '\\sort_addons_data' );
  • hey-notify/tags/1.4.1/readme.txt

    r2526791 r2533806  
    11=== Hey Notify ===
    22Contributors: firetree, danielmilner
    3 Tags: notifications, slack, discord, email, ninja forms, gravity forms
     3Tags: notifications, alert, slack, discord, email, microsoft teams, ninja forms, gravity forms
    44Requires at least: 4.3
    55Tested up to: 5.7
    66Requires PHP: 5.3
    7 Stable tag: 1.4.0
     7Stable tag: 1.4.1
    88License: GPLv2 or later
    99License URI: http://ww.gnu.org/licenses/gpl-2.0.html
     
    7575== Changelog ==
    7676
     77= 1.4.1 =
     78* Fixed a reference to a function that did not exist.
     79
    7780= 1.4.0 =
    7881* Added support for Microsoft Teams.
    7982* Improved the type of status changes than can be detected for Posts, Pages, and Custom Post Types.
    8083* Reorganized the Settings page.
    81 
    82 = 1.3.0 =
    83 * Added default settings for Slack and Discord.
    84 * Added a button to manually refresh the list of Custom Post Types.
    85 * Added a page for viewing the available Add-ons.
  • hey-notify/trunk/changelog.txt

    r2476609 r2533806  
    22
    33This is an archive of older changelog entries. Most recent entries are maintained in readme.txt
     4
     5= 1.3.0 =
     6* Added default settings for Slack and Discord.
     7* Added a button to manually refresh the list of Custom Post Types.
     8* Added a page for viewing the available Add-ons.
    49
    510= 1.2.2 =
  • hey-notify/trunk/hey-notify.php

    r2526791 r2533806  
    44 * Plugin URI: https://heynotifywp.com/
    55 * Description: Get notified when things happen in WordPress.
    6  * Version: 1.4.0
     6 * Version: 1.4.1
    77 * Author: FireTree Design, LLC <info@firetreedesign.com>
    88 * Author URI: https://firetreedesign.com/
     
    2020}
    2121
    22 define( 'HEY_NOTIFY_VERSION', '1.4.0' );
     22define( 'HEY_NOTIFY_VERSION', '1.4.1' );
    2323define( 'HEY_NOTIFY_PLUGIN_FILE', __FILE__ );
    2424define( 'HEY_NOTIFY_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
  • hey-notify/trunk/includes/cpt.php

    r2526791 r2533806  
    247247        $data = json_decode( $data );
    248248        if ( null === $data ) {
    249             $data = wp_json_decode( wp_json_encode( new stdClass() ) );
     249            $data = json_decode( wp_json_encode( new stdClass() ) );
    250250        }
    251251        usort( $data, __NAMESPACE__ . '\\sort_addons_data' );
     
    270270    $data = json_decode( $data );
    271271    if ( null === $data ) {
    272         $data = wp_json_decode( wp_json_encode( new stdClass() ) );
     272        $data = json_decode( wp_json_encode( new stdClass() ) );
    273273    }
    274274    usort( $data, __NAMESPACE__ . '\\sort_addons_data' );
  • hey-notify/trunk/readme.txt

    r2526791 r2533806  
    11=== Hey Notify ===
    22Contributors: firetree, danielmilner
    3 Tags: notifications, slack, discord, email, ninja forms, gravity forms
     3Tags: notifications, alert, slack, discord, email, microsoft teams, ninja forms, gravity forms
    44Requires at least: 4.3
    55Tested up to: 5.7
    66Requires PHP: 5.3
    7 Stable tag: 1.4.0
     7Stable tag: 1.4.1
    88License: GPLv2 or later
    99License URI: http://ww.gnu.org/licenses/gpl-2.0.html
     
    7575== Changelog ==
    7676
     77= 1.4.1 =
     78* Fixed a reference to a function that did not exist.
     79
    7780= 1.4.0 =
    7881* Added support for Microsoft Teams.
    7982* Improved the type of status changes than can be detected for Posts, Pages, and Custom Post Types.
    8083* Reorganized the Settings page.
    81 
    82 = 1.3.0 =
    83 * Added default settings for Slack and Discord.
    84 * Added a button to manually refresh the list of Custom Post Types.
    85 * Added a page for viewing the available Add-ons.
Note: See TracChangeset for help on using the changeset viewer.