Changeset 2533806
- Timestamp:
- 05/18/2021 06:22:46 PM (5 years ago)
- Location:
- hey-notify
- Files:
-
- 13 edited
- 1 copied
-
assets/banner-1544x500-rtl.png (modified) (previous)
-
assets/banner-1544x500.png (modified) (previous)
-
assets/banner-772x250-rtl.png (modified) (previous)
-
assets/banner-772x250.png (modified) (previous)
-
assets/screenshot-1.png (modified) (previous)
-
tags/1.4.1 (copied) (copied from hey-notify/trunk)
-
tags/1.4.1/changelog.txt (modified) (1 diff)
-
tags/1.4.1/hey-notify.php (modified) (2 diffs)
-
tags/1.4.1/includes/cpt.php (modified) (2 diffs)
-
tags/1.4.1/readme.txt (modified) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/hey-notify.php (modified) (2 diffs)
-
trunk/includes/cpt.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hey-notify/tags/1.4.1/changelog.txt
r2476609 r2533806 2 2 3 3 This 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. 4 9 5 10 = 1.2.2 = -
hey-notify/tags/1.4.1/hey-notify.php
r2526791 r2533806 4 4 * Plugin URI: https://heynotifywp.com/ 5 5 * Description: Get notified when things happen in WordPress. 6 * Version: 1.4. 06 * Version: 1.4.1 7 7 * Author: FireTree Design, LLC <info@firetreedesign.com> 8 8 * Author URI: https://firetreedesign.com/ … … 20 20 } 21 21 22 define( 'HEY_NOTIFY_VERSION', '1.4. 0' );22 define( 'HEY_NOTIFY_VERSION', '1.4.1' ); 23 23 define( 'HEY_NOTIFY_PLUGIN_FILE', __FILE__ ); 24 24 define( 'HEY_NOTIFY_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); -
hey-notify/tags/1.4.1/includes/cpt.php
r2526791 r2533806 247 247 $data = json_decode( $data ); 248 248 if ( null === $data ) { 249 $data = wp_json_decode( wp_json_encode( new stdClass() ) );249 $data = json_decode( wp_json_encode( new stdClass() ) ); 250 250 } 251 251 usort( $data, __NAMESPACE__ . '\\sort_addons_data' ); … … 270 270 $data = json_decode( $data ); 271 271 if ( null === $data ) { 272 $data = wp_json_decode( wp_json_encode( new stdClass() ) );272 $data = json_decode( wp_json_encode( new stdClass() ) ); 273 273 } 274 274 usort( $data, __NAMESPACE__ . '\\sort_addons_data' ); -
hey-notify/tags/1.4.1/readme.txt
r2526791 r2533806 1 1 === Hey Notify === 2 2 Contributors: firetree, danielmilner 3 Tags: notifications, slack, discord, email, ninja forms, gravity forms3 Tags: notifications, alert, slack, discord, email, microsoft teams, ninja forms, gravity forms 4 4 Requires at least: 4.3 5 5 Tested up to: 5.7 6 6 Requires PHP: 5.3 7 Stable tag: 1.4. 07 Stable tag: 1.4.1 8 8 License: GPLv2 or later 9 9 License URI: http://ww.gnu.org/licenses/gpl-2.0.html … … 75 75 == Changelog == 76 76 77 = 1.4.1 = 78 * Fixed a reference to a function that did not exist. 79 77 80 = 1.4.0 = 78 81 * Added support for Microsoft Teams. 79 82 * Improved the type of status changes than can be detected for Posts, Pages, and Custom Post Types. 80 83 * 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 2 2 3 3 This 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. 4 9 5 10 = 1.2.2 = -
hey-notify/trunk/hey-notify.php
r2526791 r2533806 4 4 * Plugin URI: https://heynotifywp.com/ 5 5 * Description: Get notified when things happen in WordPress. 6 * Version: 1.4. 06 * Version: 1.4.1 7 7 * Author: FireTree Design, LLC <info@firetreedesign.com> 8 8 * Author URI: https://firetreedesign.com/ … … 20 20 } 21 21 22 define( 'HEY_NOTIFY_VERSION', '1.4. 0' );22 define( 'HEY_NOTIFY_VERSION', '1.4.1' ); 23 23 define( 'HEY_NOTIFY_PLUGIN_FILE', __FILE__ ); 24 24 define( 'HEY_NOTIFY_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); -
hey-notify/trunk/includes/cpt.php
r2526791 r2533806 247 247 $data = json_decode( $data ); 248 248 if ( null === $data ) { 249 $data = wp_json_decode( wp_json_encode( new stdClass() ) );249 $data = json_decode( wp_json_encode( new stdClass() ) ); 250 250 } 251 251 usort( $data, __NAMESPACE__ . '\\sort_addons_data' ); … … 270 270 $data = json_decode( $data ); 271 271 if ( null === $data ) { 272 $data = wp_json_decode( wp_json_encode( new stdClass() ) );272 $data = json_decode( wp_json_encode( new stdClass() ) ); 273 273 } 274 274 usort( $data, __NAMESPACE__ . '\\sort_addons_data' ); -
hey-notify/trunk/readme.txt
r2526791 r2533806 1 1 === Hey Notify === 2 2 Contributors: firetree, danielmilner 3 Tags: notifications, slack, discord, email, ninja forms, gravity forms3 Tags: notifications, alert, slack, discord, email, microsoft teams, ninja forms, gravity forms 4 4 Requires at least: 4.3 5 5 Tested up to: 5.7 6 6 Requires PHP: 5.3 7 Stable tag: 1.4. 07 Stable tag: 1.4.1 8 8 License: GPLv2 or later 9 9 License URI: http://ww.gnu.org/licenses/gpl-2.0.html … … 75 75 == Changelog == 76 76 77 = 1.4.1 = 78 * Fixed a reference to a function that did not exist. 79 77 80 = 1.4.0 = 78 81 * Added support for Microsoft Teams. 79 82 * Improved the type of status changes than can be detected for Posts, Pages, and Custom Post Types. 80 83 * 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.