Plugin Directory

Changeset 3212120


Ignore:
Timestamp:
12/23/2024 11:14:31 AM (15 months ago)
Author:
endzevich
Message:

Version: 1.4.6

Location:
stratum/trunk
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • stratum/trunk/includes/admin-page.php

    r3189021 r3212120  
    156156
    157157<!-- start markdowntohtml.com -->
     158<p>= 1.4.6, Dec 23 2024 =</p>
     159<ul>
     160<li>Improved compatibility with Elementor 3.26.</li>
     161</ul>
     162
    158163<p>= 1.4.5, Nov 14 2024 =</p>
    159164<ul>
  • stratum/trunk/includes/settings.php

    r3110694 r3212120  
    2323        }
    2424
    25         $this->pluginData = get_plugin_data(STRATUM_PLUGIN_FILE);
     25        // shouldn't translate anything before 'init' hook
     26        $this->pluginData = get_plugin_data(STRATUM_PLUGIN_FILE, true, false);
    2627        $this->version = $this->pluginData['Version'];
    2728        $this->prefix = $this->pluginData['TextDomain'];
  • stratum/trunk/includes/translation.php

    r3110694 r3212120  
    1010}
    1111
    12 add_action( 'plugins_loaded', 'stratum_load_textdomain' );
     12add_action( 'init', 'stratum_load_textdomain' );
    1313
    1414
  • stratum/trunk/includes/widgets/advanced-posts.php

    r3138090 r3212120  
    5050    public function get_style_depends() {
    5151        return [
     52            'swiper',
    5253            'font-awesome-5-all',
    5354            'font-awesome-4-shim',
  • stratum/trunk/includes/widgets/advanced-slider.php

    r3110694 r3212120  
    3838    public function get_style_depends() {
    3939        return [
     40            'swiper',
    4041            'font-awesome-5-all',
    4142            'font-awesome-4-shim'
  • stratum/trunk/includes/widgets/countdown.php

    r3110694 r3212120  
    88namespace Stratum;
    99
    10 use \Elementor\Core\Schemes;
    1110use \Elementor\Controls_Manager;
    1211use \Elementor\Group_Control_Border;
  • stratum/trunk/includes/widgets/flip-box.php

    r3110694 r3212120  
    99
    1010use \Elementor\Controls_Manager;
    11 use Elementor\Core\Schemes;
     11use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
    1212use Elementor\Utils;
    1313use Elementor\Group_Control_Border;
     
    859859                [
    860860                    'name' => 'front_title_typography',
    861                     'scheme' => Schemes\Typography::TYPOGRAPHY_1,
     861                    'global' => [
     862                        'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
     863                    ],
    862864                    'selector' => '{{WRAPPER}} .stratum-flip-box__front .stratum-flip-box__title',
    863865                    'condition' => [
     
    897899                [
    898900                    'name' => 'front_description_typography',
    899                     'scheme' => Schemes\Typography::TYPOGRAPHY_3,
     901                    'global' => [
     902                        'default' => Global_Typography::TYPOGRAPHY_TEXT,
     903                    ],
    900904                    'selector' => '{{WRAPPER}} .stratum-flip-box__front .stratum-flip-box__description',
    901905                    'condition' => [
     
    10461050                [
    10471051                    'name' => 'back_title_typography',
    1048                     'scheme' => Schemes\Typography::TYPOGRAPHY_1,
     1052                    'global' => [
     1053                        'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
     1054                    ],
    10491055                    'selector' => '{{WRAPPER}} .stratum-flip-box__back .stratum-flip-box__title',
    10501056                    'condition' => [
     
    10841090                [
    10851091                    'name' => 'back_description_typography',
    1086                     'scheme' => Schemes\Typography::TYPOGRAPHY_3,
     1092                    'global' => [
     1093                        'default' => Global_Typography::TYPOGRAPHY_TEXT,
     1094                    ],
    10871095                    'selector' => '{{WRAPPER}} .stratum-flip-box__back .stratum-flip-box__description',
    10881096                    'condition' => [
     
    11311139                    'name' => 'button_typography',
    11321140                    'selector' => '{{WRAPPER}} .stratum-flip-box__button',
    1133                     'scheme' => Schemes\Typography::TYPOGRAPHY_4,
     1141                    'global' => [
     1142                        'default' => Global_Typography::TYPOGRAPHY_ACCENT,
     1143                    ],
    11341144                    'condition' => [
    11351145                        'button_text!' => '',
  • stratum/trunk/includes/widgets/testimonial-carousel.php

    r3110694 r3212120  
    1313use Elementor\Repeater;
    1414use Elementor\Utils;
    15 use Elementor\Core\Schemes;
    1615use Elementor\Plugin;
    1716
     
    4039    public function get_style_depends() {
    4140        return [
     41            'swiper',
    4242            'font-awesome-5-all',
    4343            'font-awesome-4-shim'
  • stratum/trunk/readme.txt

    r3189021 r3212120  
    66Tested up to: 6.7
    77Requires PHP: 5.6
    8 Stable tag: 1.4.5
     8Stable tag: 1.4.6
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    111111== Changelog ==
    112112
     113= 1.4.6, Dec 23 2024 =
     114* Improved compatibility with Elementor 3.26.
     115
    113116= 1.4.5, Nov 14 2024 =
    114117* Minor bugfixes and improvements.
  • stratum/trunk/stratum.php

    r3189021 r3212120  
    44 * Plugin URI: https://motopress.com/products/stratum/
    55 * Description: Advanced Elementor addon to extend page builder capabilities and add more advanced features.
    6  * Version: 1.4.5
     6 * Version: 1.4.6
    77 * Author: MotoPress
    88 * Author URI: https://motopress.com/
Note: See TracChangeset for help on using the changeset viewer.