Plugin Directory

Changeset 3377085


Ignore:
Timestamp:
10/12/2025 08:13:12 PM (6 months ago)
Author:
yournotify
Message:

v1.1.6: stable release (Subscriber Form + SMTP tabs, fixed save, preconfigured smtp.yournotify.com:587 TLS).

Location:
yournotify
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • yournotify/tags/2.0.1/readme.txt

    r3242205 r3377085  
    44Requires at least: 4.6
    55Tested up to: 6.7
    6 Stable tag: 2.0.0
     6Stable tag: 1.1.4
    77License: GPLv3 or later
    88
  • yournotify/tags/2.0.1/yournotify.php

    r3242707 r3377085  
    44 * Plugin URI: https://yournotify.com
    55 * Description: Yournotify WP Plugin to power your email and sms marketing communications with features to support (WooCommerce, Automation, SMTP, Subscriber Form)
    6  * Version: 2.0.1
     6 * Version: 1.1.4
    77 * Author: Yournotify
    88 * Author URI: https://yournotify.com
     
    6262// Admin menu
    6363function yournotify_add_admin_menu() {
    64     add_menu_page('Yournotify Settings', 'Yournotify', 'manage_options', 'yournotify-settings', 'yournotify_settings_page');
     64    add_menu_page('Yournotify Settings','Yournotify','manage_options','yournotify','yournotify_settings_page_router');
    6565}
    6666add_action('admin_menu', 'yournotify_add_admin_menu');
     
    9494new Yournotify_Optin();
    9595new Yournotify_Subscription();
    96 ?>
     96
     97require_once __DIR__ . '/admin-settings-router.php';
  • yournotify/trunk/readme.txt

    r3376881 r3377085  
    44Requires at least: 4.6
    55Tested up to: 6.7
    6 Stable tag: 1.1.4
     6Stable tag: 1.1.6
    77License: GPLv3 or later
    88
  • yournotify/trunk/yournotify.php

    r3376881 r3377085  
    44 * Plugin URI: https://yournotify.com
    55 * Description: Yournotify WP Plugin to power your email and sms marketing communications with features to support (WooCommerce, Automation, SMTP, Subscriber Form)
    6  * Version: 1.1.4
     6 * Version: 1.1.6
    77 * Author: Yournotify
    88 * Author URI: https://yournotify.com
     
    9595new Yournotify_Subscription();
    9696
     97// load settings definition early so register_setting hooks attach before admin_init
     98require_once __DIR__ . '/admin-settings-tabbed.php';
     99
     100// router renders the UI
    97101require_once __DIR__ . '/admin-settings-router.php';
Note: See TracChangeset for help on using the changeset viewer.