Plugin Directory

Changeset 3413801


Ignore:
Timestamp:
12/08/2025 03:27:25 AM (3 months ago)
Author:
leafcrm
Message:

Version 1.2.3 - Updated domain from leaf.my to leafcrm.com

Location:
leaf-crm/trunk
Files:
1 deleted
13 edited

Legend:

Unmodified
Added
Removed
  • leaf-crm/trunk/README.txt

    r3332575 r3413801  
    22Contributors: leafcrm
    33Donate link:
    4 Tags: contactform7,cf7,ninjaforms,contactforms,wpforms,forminator,elementorforms
     4Tags: contactform7,ninjaforms,wpforms,forminator,elementorforms
    55Requires at least: 5.0
    66Tested up to: 6.8
    77Requires PHP: 5.6
    8 Stable tag: 1.2.2
     8Stable tag: 1.2.3
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1111
    12 Leaf CRM streamlines lead capture and management from Facebook, TikTok, Instagram, Google, enhancing sales team productivity and boosting conversion rates.
     12Capture leads from WordPress forms into Leaf CRM. Supports integration with Contact Form 7, Ninja Forms, WPForms, Forminator, and Elementor Form.
    1313
    1414== Description ==
     
    2828
    2929**Prerequisites**
    30 1. You will need an active Leaf CRM account subscription. Head over to our website to sign up: [Leaf.my](https://www.leaf.my)
     301. You will need an active Leaf CRM account subscription. Head over to our website to sign up: [LeafCRM.com](https://www.leafcrm.com)
    31312. Installed a contact form plugin on your WordPress site (Leaf CRM plugin currently supports Contact Form 7, Forminator, NinjaForms, WPForms, and Elementor Forms), and created at least one contact form on your page.
    3232
     
    6565== Changelog ==
    6666
     67= 1.2.3 =
     68* Updated service domain from leaf.my to leafcrm.com
     69
    6770= 1.2.2 =
    6871* Bug fix: Updated API endpoints for all contact form integrations
  • leaf-crm/trunk/admin/class-leaf-crm-admin.php

    r3332553 r3413801  
    44 * The admin-specific functionality of the plugin.
    55 *
    6  * @link       https://www.leaf.my
     6 * @link       https://www.leafcrm.com
    77 * @since      1.0.0
    88 *
  • leaf-crm/trunk/admin/partials/leaf-crm-admin-display.php

    r3296891 r3413801  
    1414 * This file is used to markup the admin-facing aspects of the plugin.
    1515 *
    16  * @link       https://www.leaf.my
     16 * @link       https://www.leafcrm.com
    1717 * @since      1.0.0
    1818 *
     
    6868                        <!--end::Label-->
    6969                        <!--begin::Input-->
    70                         <input class="form-control rounded-1 py-2 px-6 fs-7" name="<?php echo esc_html(Leaf_Crm_Constants::LEAF_DOMAIN_NAME); ?>" id="<?php echo esc_html(Leaf_Crm_Constants::LEAF_DOMAIN_NAME); ?>" type="text" value="" placeholder="app.leaf.my">
    71                         <span class="fs-8 text-muted"><?php esc_html_e('Enter your Leaf CRM tenant domain (e.g., app.leaf.my or your-company.leaf.my)', 'leaf-crm') ?></span>
     70                        <input class="form-control rounded-1 py-2 px-6 fs-7" name="<?php echo esc_html(Leaf_Crm_Constants::LEAF_DOMAIN_NAME); ?>" id="<?php echo esc_html(Leaf_Crm_Constants::LEAF_DOMAIN_NAME); ?>" type="text" value="" placeholder="app.leafcrm.com">
     71                        <span class="fs-8 text-muted"><?php esc_html_e('Enter your Leaf CRM tenant domain (e.g., app.leafcrm.com or your-company.leafcrm.com)', 'leaf-crm') ?></span>
    7272
    7373                        <div class="invalid-feedback"><span id="<?php echo esc_html(Leaf_Crm_Constants::LEAF_DOMAIN_NAME); ?>_error"></span></div>
  • leaf-crm/trunk/includes/class-leaf-crm-activator.php

    r3293619 r3413801  
    44 * Fired during plugin activation
    55 *
    6  * @link       https://www.leaf.my
     6 * @link       https://www.leafcrm.com
    77 * @since      1.0.0
    88 *
  • leaf-crm/trunk/includes/class-leaf-crm-constants.php

    r3332575 r3413801  
    1010    public const API_BASE_URL_TEMPLATE = 'https://%s/api/integration/wordpress';
    1111    // Default API URL for backward compatibility
    12     public const API_BASE_URL = 'https://app.leaf.my/api/integration/wordpress';
    13     public const WEB_BASE_URL = 'https://www.leaf.my';
     12    public const API_BASE_URL = 'https://app.leafcrm.com/api/integration/wordpress';
     13    public const WEB_BASE_URL = 'https://www.leafcrm.com';
    1414    public const LEAF_SUBSCRIBE_URL = self::API_BASE_URL . '/subscribe';
    1515    public const LEAF_UNSUBSCRIBE_URL = self::API_BASE_URL . '/unsubscribe';
  • leaf-crm/trunk/includes/class-leaf-crm-deactivator.php

    r3293619 r3413801  
    44 * Fired during plugin deactivation
    55 *
    6  * @link       https://www.leaf.my
     6 * @link       https://www.leafcrm.com
    77 * @since      1.0.0
    88 *
  • leaf-crm/trunk/includes/class-leaf-crm-i18n.php

    r3293619 r3413801  
    77 * so that it is ready for translation.
    88 *
    9  * @link       https://www.leaf.my
     9 * @link       https://www.leafcrm.com
    1010 * @since      1.0.0
    1111 *
  • leaf-crm/trunk/includes/class-leaf-crm-loader.php

    r3293619 r3413801  
    44 * Register all actions and filters for the plugin
    55 *
    6  * @link       https://www.leaf.my
     6 * @link       https://www.leafcrm.com
    77 * @since      1.0.0
    88 *
  • leaf-crm/trunk/includes/class-leaf-crm.php

    r3310154 r3413801  
    77 * public-facing side of the site and the admin area.
    88 *
    9  * @link       https://www.leaf.my
     9 * @link       https://www.leafcrm.com
    1010 * @since      1.0.0
    1111 *
  • leaf-crm/trunk/languages/leaf-crm-ms_MY.po

    r3332575 r3413801  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Leaf CRM 1.2.2\n"
     5"Project-Id-Version: Leaf CRM 1.2.3\n"
    66"Report-Msgid-Bugs-To: http://wordpress.org/tag/plugin-name\n"
    77"POT-Creation-Date: 2023-04-13 10:13+0800\n"
     
    3333
    3434#: admin/partials/leaf-crm-admin-display.php:59
    35 msgid "Enter your Leaf CRM tenant domain (e.g., app.leaf.my or your-company.leaf.my)"
    36 msgstr "Masukkan domain penyewa Leaf CRM anda (contoh: app.leaf.my atau syarikat-anda.leaf.my)"
     35msgid "Enter your Leaf CRM tenant domain (e.g. your-company.leafcrm.com)"
     36msgstr "Masukkan domain penyewa Leaf CRM anda (contoh: syarikat-anda.leafcrm.com)"
    3737
    3838#: admin/partials/leaf-crm-admin-display.php:65
  • leaf-crm/trunk/languages/leaf-crm.pot

    r3332575 r3413801  
    44msgid ""
    55msgstr ""
    6 "Project-Id-Version: Leaf CRM 1.2.2\n"
     6"Project-Id-Version: Leaf CRM 1.2.3\n"
    77"Report-Msgid-Bugs-To: http://wordpress.org/tag/leaf-crm\n"
    88"POT-Creation-Date: 2023-04-13 10:14+0800\n"
     
    3333
    3434#: admin/partials/leaf-crm-admin-display.php:59
    35 msgid "Enter your Leaf CRM tenant domain (e.g., app.leaf.my or your-company.leaf.my)"
     35msgid "Enter your Leaf CRM tenant domain (e.g. your-company.leafcrm.com)"
    3636msgstr ""
    3737
  • leaf-crm/trunk/leaf-crm.php

    r3332575 r3413801  
    99 * that starts the plugin.
    1010 *
    11  * @link              https://www.leaf.my
     11 * @link              https://www.leafcrm.com
    1212 * @since             1.0.0
    1313 * @package           Leaf_Crm
     
    1717 * Plugin URI:        https://wordpress.org/plugins/leaf-crm
    1818 * Description:       Leaf CRM streamlines lead capture and management from Facebook, TikTok, Instagram, Google, enhancing sales team productivity and boosting conversion rates.
    19  * Version:           1.2.2
     19 * Version:           1.2.3
    2020 * Author:            Leaf CRM Team
    21  * Author URI:        https://www.leaf.my/
     21 * Author URI:        https://www.leafcrm.com/
    2222 * License:           GPL-2.0+
    2323 * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'LEAF_CRM_VERSION', '1.2.2' );
     38define( 'LEAF_CRM_VERSION', '1.2.3' );
    3939
    4040global $wpdb;
  • leaf-crm/trunk/uninstall.php

    r3293619 r3413801  
    2020 * https://github.com/tommcfarlin/WordPress-Plugin-Boilerplate/pull/123#issuecomment-28541913
    2121 *
    22  * @link       https://www.leaf.my
     22 * @link       https://www.leafcrm.com
    2323 * @since      1.0.0
    2424 *
Note: See TracChangeset for help on using the changeset viewer.