Changeset 3208332
- Timestamp:
- 12/16/2024 05:35:00 AM (16 months ago)
- Location:
- elemailer-lite
- Files:
-
- 10 edited
- 1 copied
-
tags/2.5 (copied) (copied from elemailer-lite/trunk)
-
tags/2.5/elemailer-lite.php (modified) (1 diff)
-
tags/2.5/languages/elemailer-lite.pot (modified) (2 diffs)
-
tags/2.5/plugin.php (modified) (2 diffs)
-
tags/2.5/public/assets/css/style.css (modified) (1 diff)
-
tags/2.5/readme.txt (modified) (2 diffs)
-
trunk/elemailer-lite.php (modified) (1 diff)
-
trunk/languages/elemailer-lite.pot (modified) (2 diffs)
-
trunk/plugin.php (modified) (2 diffs)
-
trunk/public/assets/css/style.css (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
elemailer-lite/tags/2.5/elemailer-lite.php
r3189868 r3208332 6 6 * Plugin URI: https://elemailer.com/ 7 7 * Description: Elementor Email template & campaign builder for WordPress 8 * Version: 2. 48 * Version: 2.5 9 9 * Author: elemailer 10 10 * Author URI: https://elemailer.com/ -
elemailer-lite/tags/2.5/languages/elemailer-lite.pot
r3189868 r3208332 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Elemailer Lite 2. 4\n"5 "Project-Id-Version: Elemailer Lite 2.5\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/elemailer-lite\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2024-1 1-15T21:43:38+00:00\n"12 "POT-Creation-Date: 2024-12-16T04:44:11+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" -
elemailer-lite/tags/2.5/plugin.php
r3189868 r3208332 32 32 $this->define_constant(); 33 33 Autoloader::run(); 34 add_action( ' plugins_loaded', [ $this, 'load_textdomain' ] );34 add_action( 'init', [ $this, 'load_textdomain' ] ); // plugins_loaded causing issue with latest wp 6.7.0 35 35 } 36 36 … … 43 43 public function define_constant() 44 44 { 45 define( 'ELE_MAILER_LITE_VERSION', '2. 4' );45 define( 'ELE_MAILER_LITE_VERSION', '2.5' ); 46 46 define( 'ELE_MAILER_LITE_PACKAGE', 'free' ); 47 47 define( 'ELE_MAILER_LITE_PLUGIN_URL', trailingslashit(plugin_dir_url(__FILE__ ) ) ); -
elemailer-lite/tags/2.5/public/assets/css/style.css
r3018387 r3208332 172 172 overflow: auto; 173 173 } 174 .elementor-location-floating_buttons{ 175 display: none; 176 } -
elemailer-lite/tags/2.5/readme.txt
r3189868 r3208332 3 3 Tags: email, cf7, email template, elementor addons, email marketing, email template builder, elementor, contact form 7, email design, woocommerce email customizer, free email builder, ai 4 4 Requires at least: 4.5 5 Tested up to: 6.7 5 Tested up to: 6.7.1 6 6 Requires PHP: 7.2 7 Stable tag: 2. 47 Stable tag: 2.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 147 147 148 148 == Changelog == 149 = 2.5 = 150 * Fix: Compatilbity with latest wp release 151 * Fix: Broken Floating icon visible in editor 149 152 = 2.4 = 150 153 * Fix: Compatilbity with latest wp release and elementor fatal error -
elemailer-lite/trunk/elemailer-lite.php
r3189868 r3208332 6 6 * Plugin URI: https://elemailer.com/ 7 7 * Description: Elementor Email template & campaign builder for WordPress 8 * Version: 2. 48 * Version: 2.5 9 9 * Author: elemailer 10 10 * Author URI: https://elemailer.com/ -
elemailer-lite/trunk/languages/elemailer-lite.pot
r3189868 r3208332 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Elemailer Lite 2. 4\n"5 "Project-Id-Version: Elemailer Lite 2.5\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/elemailer-lite\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2024-1 1-15T21:43:38+00:00\n"12 "POT-Creation-Date: 2024-12-16T04:44:11+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" -
elemailer-lite/trunk/plugin.php
r3189868 r3208332 32 32 $this->define_constant(); 33 33 Autoloader::run(); 34 add_action( ' plugins_loaded', [ $this, 'load_textdomain' ] );34 add_action( 'init', [ $this, 'load_textdomain' ] ); // plugins_loaded causing issue with latest wp 6.7.0 35 35 } 36 36 … … 43 43 public function define_constant() 44 44 { 45 define( 'ELE_MAILER_LITE_VERSION', '2. 4' );45 define( 'ELE_MAILER_LITE_VERSION', '2.5' ); 46 46 define( 'ELE_MAILER_LITE_PACKAGE', 'free' ); 47 47 define( 'ELE_MAILER_LITE_PLUGIN_URL', trailingslashit(plugin_dir_url(__FILE__ ) ) ); -
elemailer-lite/trunk/public/assets/css/style.css
r3018387 r3208332 172 172 overflow: auto; 173 173 } 174 .elementor-location-floating_buttons{ 175 display: none; 176 } -
elemailer-lite/trunk/readme.txt
r3189868 r3208332 3 3 Tags: email, cf7, email template, elementor addons, email marketing, email template builder, elementor, contact form 7, email design, woocommerce email customizer, free email builder, ai 4 4 Requires at least: 4.5 5 Tested up to: 6.7 5 Tested up to: 6.7.1 6 6 Requires PHP: 7.2 7 Stable tag: 2. 47 Stable tag: 2.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 147 147 148 148 == Changelog == 149 = 2.5 = 150 * Fix: Compatilbity with latest wp release 151 * Fix: Broken Floating icon visible in editor 149 152 = 2.4 = 150 153 * Fix: Compatilbity with latest wp release and elementor fatal error
Note: See TracChangeset
for help on using the changeset viewer.