Plugin Directory

Changeset 3144651


Ignore:
Timestamp:
08/31/2024 11:47:13 AM (18 months ago)
Author:
notificationmaster
Message:

version 1.3.1

Location:
notification-master
Files:
278 added
2 deleted
11 edited

Legend:

Unmodified
Added
Removed
  • notification-master/trunk/includes/class-utils.php

    r3118722 r3144651  
    3535        if ( isset( $post_types['attachment'] ) ) {
    3636            unset( $post_types['attachment'] );
     37        }
     38
     39        // Remove product post type.
     40        if ( isset( $post_types['product'] ) ) {
     41            unset( $post_types['product'] );
    3742        }
    3843
  • notification-master/trunk/includes/merge-tags/general/class-general.php

    r3138615 r3144651  
    8888                    'description' => __( 'The language of WordPress.', 'notification-master' ),
    8989                ),
     90                'current_time'    => array(
     91                    'label'       => __( 'Current Time', 'notification-master' ),
     92                    'description' => __( 'The current time.', 'notification-master' ),
     93                ),
     94                'current_date'    => array(
     95                    'label'       => __( 'Current Date', 'notification-master' ),
     96                    'description' => __( 'The current date.', 'notification-master' ),
     97                ),
    9098            )
    9199        );
     
    124132            case 'site_icon':
    125133                return get_site_icon_url();
     134            case 'current_time':
     135                $time_format = get_option( 'time_format' );
     136                return date_i18n( $time_format );
     137            case 'current_date':
     138                $date_format = get_option( 'date_format' );
     139                return date_i18n( $date_format );
    126140            default:
    127141                return '';
  • notification-master/trunk/languages/notification-master.pot

    r3138615 r3144651  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Notification Master 1.3.0\n"
     5"Project-Id-Version: Notification Master 1.3.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/notification-master\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2024-08-21T06:26:20+02:00\n"
     12"POT-Creation-Date: 2024-08-31T07:01:09+02:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.10.0\n"
     
    181181msgstr ""
    182182
    183 #: includes/class-utils.php:93
    184 #: includes/class-utils.php:121
     183#: includes/class-utils.php:98
     184#: includes/class-utils.php:126
    185185msgid "Comment"
    186186msgstr ""
    187187
    188 #: includes/class-utils.php:94
    189 #: includes/class-utils.php:122
     188#: includes/class-utils.php:99
     189#: includes/class-utils.php:127
    190190msgid "Pingback"
    191191msgstr ""
    192192
    193 #: includes/class-utils.php:95
    194 #: includes/class-utils.php:123
     193#: includes/class-utils.php:100
     194#: includes/class-utils.php:128
    195195msgid "Trackback"
    196196msgstr ""
    197197
    198 #: includes/class-utils.php:202
     198#: includes/class-utils.php:207
    199199msgid "Media"
    200200msgstr ""
    201201
    202 #: includes/class-utils.php:209
     202#: includes/class-utils.php:214
    203203#: includes/merge-tags/user/class-user.php:47
    204204#: dist/index.js:1
     
    206206msgstr ""
    207207
    208 #: includes/class-utils.php:216
     208#: includes/class-utils.php:221
    209209msgid "Theme"
    210210msgstr ""
    211211
    212 #: includes/class-utils.php:223
     212#: includes/class-utils.php:228
    213213msgid "Plugin"
    214214msgstr ""
    215215
    216 #: includes/class-utils.php:230
     216#: includes/class-utils.php:235
    217217#: dist/index.js:1
    218218msgid "Privacy"
     
    614614msgstr ""
    615615
     616#: includes/merge-tags/general/class-general.php:91
     617msgid "Current Time"
     618msgstr ""
     619
     620#: includes/merge-tags/general/class-general.php:92
     621msgid "The current time."
     622msgstr ""
     623
     624#: includes/merge-tags/general/class-general.php:95
     625msgid "Current Date"
     626msgstr ""
     627
     628#: includes/merge-tags/general/class-general.php:96
     629msgid "The current date."
     630msgstr ""
     631
    616632#: includes/merge-tags/media/class-attachment-author.php:61
    617633msgid "The ID of the author."
  • notification-master/trunk/notifications-master.php

    r3138615 r3144651  
    55 * Description: Enhance user engagement. Trigger notifications for events, support multiple channels like email and Discord, and personalize with dynamic merge tags. Easy setup and customization.
    66 *
    7  * Version: 1.3.0
     7 * Version: 1.3.1
    88 *
    99 * Author: Notification Master
     
    2626
    2727// Define notification-master constants.
    28 define( 'NOTIFICATION_MASTER_VERSION', '1.3.0' );
     28define( 'NOTIFICATION_MASTER_VERSION', '1.3.1' );
    2929define( 'NOTIFICATION_MASTER_FILE', __FILE__ );
    3030define( 'NOTIFICATION_MASTER_DIR', plugin_dir_path( __FILE__ ) );
  • notification-master/trunk/readme.txt

    r3138615 r3144651  
    1 === Notification Master - Custom WordPress Alerts and Notifications ===
     1=== Notification Master - All-in-One WordPress Notifications ===
    22Contributors: notificationmaster
    33Donate link: https://notification-master.com
    44Tags: web push, email, alerts, notifications, webhooks
    5 Stable tag: 1.3.0
     5Stable tag: 1.3.1
    66Requires at least: 4.9
    77Tested up to: 6.6
     
    147147
    148148== Screenshots ==
    149 1. Notification Master - Dashboard
    150 2. Notification Master - Notifications
    151 3. Notification Master - Notification
    152 4. Notification Master - Integrations
    153 5. Notification Master - Integration Settings
    154 6. Notification Master - Merge Tags
     1491. Notification Master - Notifications
     1502. Notification Master - Notification
     1513. Notification Master - Integrations
     1524. Notification Master - Merge Tags
    155153
    156154== Changelog ==
     155
     156== 1.3.1 ==
     157* Fixed: WooCommerce product triggers conflict with custom post type triggers.
     158* Added: Current time and date merge tags for notifications.
    157159
    158160= 1.3.0 =
Note: See TracChangeset for help on using the changeset viewer.