Plugin Directory

Changeset 3149687


Ignore:
Timestamp:
09/11/2024 12:20:44 AM (18 months ago)
Author:
notificationmaster
Message:

version 1.3.3

Location:
notification-master
Files:
278 added
8 edited

Legend:

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

    r3118722 r3149687  
    1111
    1212use Notification_Master\Merge_Tags\Loader as Merge_Tags_Loader;
    13 use Notification_Master\Triggers\Loader as Triggers_Loader;
    1413use Notification_Master\Abstracts\Trigger;
    1514
  • notification-master/trunk/includes/class-background-process.php

    r3125253 r3149687  
    2323     * @var string
    2424     */
    25     protected $action = 'nm_background_process';
     25    protected $action = 'ntfm_background_process';
    2626
    2727    /**
  • notification-master/trunk/includes/class-plugin.php

    r3122227 r3149687  
    132132        // Load connections class.
    133133        Connections_Process::get_instance();
     134        // Load triggers class.
     135        Triggers_Loader::get_instance();
    134136
    135137        // Load logger class.
     
    151153        }
    152154
    153         // Load triggers class.
    154         Triggers_Loader::get_instance();
    155155        // Load merge tags class.
    156156        Merge_Tags_Loader::get_instance();
  • notification-master/trunk/languages/notification-master.pot

    r3144651 r3149687  
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2024-08-31T07:01:09+02:00\n"
     12"POT-Creation-Date: 2024-09-10T15:37:56+02:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.10.0\n"
  • notification-master/trunk/notifications-master.php

    r3144671 r3149687  
    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.2
     7 * Version: 1.3.3
    88 *
    99 * Author: Notification Master
     
    2626
    2727// Define notification-master constants.
    28 define( 'NOTIFICATION_MASTER_VERSION', '1.3.2' );
     28define( 'NOTIFICATION_MASTER_VERSION', '1.3.3' );
    2929define( 'NOTIFICATION_MASTER_FILE', __FILE__ );
    3030define( 'NOTIFICATION_MASTER_DIR', plugin_dir_path( __FILE__ ) );
  • notification-master/trunk/readme.txt

    r3144671 r3149687  
    33Donate link: https://notification-master.com
    44Tags: web push, email, alerts, notifications, webhooks
    5 Stable tag: 1.3.2
     5Stable tag: 1.3.3
    66Requires at least: 4.9
    77Tested up to: 6.6
     
    154154== Changelog ==
    155155
     156= 1.3.3 =
     157* Fixed: Some plugin trigger merge tags not working.
     158* Improved: Code Improvements.
     159
    156160= 1.3.2 =
    157161* Fixed: Changelog issue.
  • notification-master/trunk/src/constants.ts

    r3118722 r3149687  
    1 export const NM_NAMESPACE = '/ntfm/v1';
     1export const NTFM_NAMESPACE = '/ntfm/v1';
  • notification-master/trunk/src/pages/settings/index.tsx

    r3138615 r3149687  
    2020import './style.scss';
    2121import type { Settings } from '@Store';
    22 import { NM_NAMESPACE } from '@Constants';
     22import { NTFM_NAMESPACE } from '@Constants';
    2323import { usePageTitle } from '@Hooks';
    2424import { getPath } from '@Utils';
     
    5959            // @ts-ignore - TS doesn't recognize the settings object
    6060            const response = await apiFetch({
    61                 path: `${NM_NAMESPACE}/settings`,
     61                path: `${NTFM_NAMESPACE}/settings`,
    6262                method: 'POST',
    6363                data: { settings },
Note: See TracChangeset for help on using the changeset viewer.