Plugin Directory

Changeset 2446159


Ignore:
Timestamp:
12/26/2020 12:47:30 PM (5 years ago)
Author:
terrathemes
Message:

Release version 1.10

  • Added a missing column class in Skills Circle Widget which created a horizontal scroll bar when used in full width row
  • Added information text in Facts Widget about disabling the value animation to use delimiter, prefix and suffix characters
  • Updated meteorite-extensions.pot
Location:
meteorite-extensions
Files:
70 added
5 edited

Legend:

Unmodified
Added
Removed
  • meteorite-extensions/trunk/README.txt

    r2406391 r2446159  
    33Tags: meteorite, extensions
    44Requires at least: 4.5
    5 Tested up to: 5.5
    6 Stable tag: 1.9.1
     5Tested up to: 5.6
     6Stable tag: 1.10
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6666
    6767== Changelog ==
     68= 1.10 | 12/26/2020 =
     69* Added a missing column class in Skills Circle Widget which created a horizontal scroll bar when used in full width row
     70* Added information text in Facts Widget about disabling the value animation to use delimiter, prefix and suffix characters
     71* Updated meteorite-extensions.pot
     72
    6873= 1.9.1 | 10/25/2020 =
    69 * Fixed a but in the Skills Cirle Widget with second and third outer text
     74* Fixed a bug in the Skills Circle Widget with second and third outer text
    7075
    7176= 1.9 | 02/07/2020 =
  • meteorite-extensions/trunk/inc/widgets/widget-facts.php

    r1946345 r2446159  
    4646                    ); ?>
    4747                </p>
     48                <p><?php _e('Disable the value animation in the counter options below in order to be able to use delimiter, prefix or suffix characters.', 'meteorite_extensions'); ?></p>
    4849            </div>
    4950        </div>
  • meteorite-extensions/trunk/inc/widgets/widget-skills-circle.php

    r2406391 r2446159  
    412412        ?>
    413413
    414 
    415         <div class="meteorite-skill-circle-wrapper row <?php echo $animation_class . $animation_single ?>" data-fillcolor="<?php echo $_fill_color ?>" data-unfillcolor="<?php echo $_unfill_color ?>" data-size="<?php echo $_size ?>" data-linewidth="<?php echo $_line_width ?>" data-speed="<?php echo $_speed ?>">
    416         <?php if ($perc_one != '') : ?>
    417             <div class="meteorite-skill-circle meteorite-item col-md-3 col-sm-6" data-waypoint-active="yes">
    418                 <div class="meteorite-skill-circle-inner" style="height: <?php echo $size; ?>px; line-height: <?php echo $size; ?>px; width: <?php echo $size; ?>px; font-size: <?php echo $font_size; ?>px;" data-percent="<?php echo $perc_one; ?>">
    419                     <?php if ( $icon_one ) :
    420                         echo '<div class="aligncenter"><i class="fa ' . $icon_one . '" aria-hidden="true"></i></div>';
    421                     elseif ( $text_in_one ) :
    422                         echo $text_in_one;
    423                     else :
    424                         echo '<span>' . $perc_one . '</span>';
     414        <div class="col-sm-12">
     415            <div class="meteorite-skill-circle-wrapper row <?php echo $animation_class . $animation_single ?>" data-fillcolor="<?php echo $_fill_color ?>" data-unfillcolor="<?php echo $_unfill_color ?>" data-size="<?php echo $_size ?>" data-linewidth="<?php echo $_line_width ?>" data-speed="<?php echo $_speed ?>">
     416            <?php if ($perc_one != '') : ?>
     417                <div class="meteorite-skill-circle meteorite-item col-md-3 col-sm-6" data-waypoint-active="yes">
     418                    <div class="meteorite-skill-circle-inner" style="height: <?php echo $size; ?>px; line-height: <?php echo $size; ?>px; width: <?php echo $size; ?>px; font-size: <?php echo $font_size; ?>px;" data-percent="<?php echo $perc_one; ?>">
     419                        <?php if ( $icon_one ) :
     420                            echo '<div class="aligncenter"><i class="fa ' . $icon_one . '" aria-hidden="true"></i></div>';
     421                        elseif ( $text_in_one ) :
     422                            echo $text_in_one;
     423                        else :
     424                            echo '<span>' . $perc_one . '</span>';
     425                        endif; ?>
     426                    </div>
     427                    <?php if ( $text_under_one ) :
     428                        echo '<div class="text-outside">' . $text_under_one . '</div>';
    425429                    endif; ?>
    426430                </div>
    427                 <?php if ( $text_under_one ) :
    428                     echo '<div class="text-outside">' . $text_under_one . '</div>';
    429                 endif; ?>
    430             </div>
    431         <?php endif; ?>   
    432         <?php if ($perc_two !='') : ?>
    433             <div class="meteorite-skill-circle meteorite-item col-md-3 col-sm-6" data-waypoint-active="yes">
    434                 <div class="meteorite-skill-circle-inner" style="height: <?php echo $size; ?>px; line-height: <?php echo $size; ?>px; width: <?php echo $size; ?>px; font-size: <?php echo $font_size; ?>px;" data-percent="<?php echo $perc_two; ?>">
    435                     <?php if ( $icon_two ) :
    436                         echo '<div class="aligncenter"><i class="fa ' . $icon_two . '" aria-hidden="true"></i></div>';
    437                     elseif ( $text_in_two ) :
    438                         echo $text_in_two;
    439                     else :
    440                         echo '<span>' . $perc_two . '</span>';
     431            <?php endif; ?>   
     432            <?php if ($perc_two !='') : ?>
     433                <div class="meteorite-skill-circle meteorite-item col-md-3 col-sm-6" data-waypoint-active="yes">
     434                    <div class="meteorite-skill-circle-inner" style="height: <?php echo $size; ?>px; line-height: <?php echo $size; ?>px; width: <?php echo $size; ?>px; font-size: <?php echo $font_size; ?>px;" data-percent="<?php echo $perc_two; ?>">
     435                        <?php if ( $icon_two ) :
     436                            echo '<div class="aligncenter"><i class="fa ' . $icon_two . '" aria-hidden="true"></i></div>';
     437                        elseif ( $text_in_two ) :
     438                            echo $text_in_two;
     439                        else :
     440                            echo '<span>' . $perc_two . '</span>';
     441                        endif; ?>
     442                    </div>
     443                    <?php if ( $text_under_two ) :
     444                        echo '<div class="text-outside">' . $text_under_two . '</div>';
    441445                    endif; ?>
    442446                </div>
    443                 <?php if ( $text_under_two ) :
    444                     echo '<div class="text-outside">' . $text_under_two . '</div>';
    445                 endif; ?>
    446             </div>
    447         <?php endif; ?>
    448         <?php if ($perc_three !='') : ?>
    449             <div class="meteorite-skill-circle meteorite-item col-md-3 col-sm-6" data-waypoint-active="yes">
    450                 <div class="meteorite-skill-circle-inner" style="height: <?php echo $size; ?>px; line-height: <?php echo $size; ?>px; width: <?php echo $size; ?>px; font-size: <?php echo $font_size; ?>px;" data-percent="<?php echo $perc_three; ?>">
    451                     <?php if ( $icon_three ) :
    452                         echo '<div class="aligncenter"><i class="fa ' . $icon_three . '" aria-hidden="true"></i></div>';
    453                     elseif ( $text_in_three ) :
    454                         echo $text_in_three;
    455                     else :
    456                         echo '<span>' . $perc_three . '</span>';
     447            <?php endif; ?>
     448            <?php if ($perc_three !='') : ?>
     449                <div class="meteorite-skill-circle meteorite-item col-md-3 col-sm-6" data-waypoint-active="yes">
     450                    <div class="meteorite-skill-circle-inner" style="height: <?php echo $size; ?>px; line-height: <?php echo $size; ?>px; width: <?php echo $size; ?>px; font-size: <?php echo $font_size; ?>px;" data-percent="<?php echo $perc_three; ?>">
     451                        <?php if ( $icon_three ) :
     452                            echo '<div class="aligncenter"><i class="fa ' . $icon_three . '" aria-hidden="true"></i></div>';
     453                        elseif ( $text_in_three ) :
     454                            echo $text_in_three;
     455                        else :
     456                            echo '<span>' . $perc_three . '</span>';
     457                        endif; ?>
     458                    </div>
     459                    <?php if ( $text_under_three ) :
     460                        echo '<div class="text-outside">' . $text_under_three . '</div>';
    457461                    endif; ?>
    458462                </div>
    459                 <?php if ( $text_under_three ) :
    460                     echo '<div class="text-outside">' . $text_under_three . '</div>';
    461                 endif; ?>
    462             </div>
    463         <?php endif; ?>
    464         <?php if ($perc_four !='') : ?>
    465             <div class="meteorite-skill-circle meteorite-item col-md-3 col-sm-6" data-waypoint-active="yes">
    466                 <div class="meteorite-skill-circle-inner" style="height: <?php echo $size; ?>px; line-height: <?php echo $size; ?>px; width: <?php echo $size; ?>px; font-size: <?php echo $font_size; ?>px;" data-percent="<?php echo $perc_four; ?>">
    467                     <?php if ( $icon_four ) :
    468                         echo '<div class="aligncenter"><i class="fa ' . $icon_four . '" aria-hidden="true"></i></div>';
    469                     elseif ( $text_in_four ) :
    470                         echo $text_in_four;
    471                     else :
    472                         echo '<span>' . $perc_four . '</span>';
     463            <?php endif; ?>
     464            <?php if ($perc_four !='') : ?>
     465                <div class="meteorite-skill-circle meteorite-item col-md-3 col-sm-6" data-waypoint-active="yes">
     466                    <div class="meteorite-skill-circle-inner" style="height: <?php echo $size; ?>px; line-height: <?php echo $size; ?>px; width: <?php echo $size; ?>px; font-size: <?php echo $font_size; ?>px;" data-percent="<?php echo $perc_four; ?>">
     467                        <?php if ( $icon_four ) :
     468                            echo '<div class="aligncenter"><i class="fa ' . $icon_four . '" aria-hidden="true"></i></div>';
     469                        elseif ( $text_in_four ) :
     470                            echo $text_in_four;
     471                        else :
     472                            echo '<span>' . $perc_four . '</span>';
     473                        endif; ?>
     474                    </div>
     475                    <?php if ( $text_under_four ) :
     476                        echo '<div class="text-outside">' . $text_under_four . '</div>';
    473477                    endif; ?>
    474478                </div>
    475                 <?php if ( $text_under_four ) :
    476                     echo '<div class="text-outside">' . $text_under_four . '</div>';
    477                 endif; ?>
    478             </div>
    479         <?php endif; ?>
    480         <div class="clearfix"></div>
     479            <?php endif; ?>
     480            <div class="clearfix"></div>
     481            </div>
    481482        </div>
    482483
  • meteorite-extensions/trunk/languages/meteorite-extensions.pot

    r2240710 r2446159  
    33msgstr ""
    44"Project-Id-Version: Meteorite Extensions 1.9\n"
    5 "POT-Creation-Date: 2020-02-07 20:59+0100\n"
     5"POT-Creation-Date: 2020-12-26 13:40+0100\n"
    66"PO-Revision-Date: 2018-09-24 20:26+0200\n"
    77"Last-Translator: \n"
     
    1111"Content-Type: text/plain; charset=UTF-8\n"
    1212"Content-Transfer-Encoding: 8bit\n"
    13 "X-Generator: Poedit 2.2.3\n"
     13"X-Generator: Poedit 2.4.2\n"
    1414"X-Poedit-Basepath: ..\n"
    1515"Plural-Forms: nplurals=2; plural=(n != 1);\n"
     
    320320#: inc/widgets/widget-buttons.php:31 inc/widgets/widget-call-to-action.php:33
    321321#: inc/widgets/widget-clients.php:42 inc/widgets/widget-contact-info.php:28
    322 #: inc/widgets/widget-employees.php:41 inc/widgets/widget-facts.php:53
     322#: inc/widgets/widget-employees.php:41 inc/widgets/widget-facts.php:54
    323323#: inc/widgets/widget-image-frame.php:31
    324324#: inc/widgets/widget-latest-news-carousel.php:34
     
    336336#: inc/widgets/widget-buttons.php:32 inc/widgets/widget-call-to-action.php:34
    337337#: inc/widgets/widget-clients.php:43 inc/widgets/widget-contact-info.php:29
    338 #: inc/widgets/widget-employees.php:42 inc/widgets/widget-facts.php:54
     338#: inc/widgets/widget-employees.php:42 inc/widgets/widget-facts.php:55
    339339#: inc/widgets/widget-image-frame.php:32
    340340#: inc/widgets/widget-latest-news-carousel.php:35
     
    356356#: inc/widgets/widget-buttons.php:48 inc/widgets/widget-buttons.php:80
    357357#: inc/widgets/widget-call-to-action.php:82
    358 #: inc/widgets/widget-call-to-action.php:114 inc/widgets/widget-facts.php:93
     358#: inc/widgets/widget-call-to-action.php:114 inc/widgets/widget-facts.php:94
    359359msgid "Choose your preferences."
    360360msgstr ""
     
    362362#: inc/widgets/widget-buttons.php:54 inc/widgets/widget-buttons.php:86
    363363#: inc/widgets/widget-call-to-action.php:88
    364 #: inc/widgets/widget-call-to-action.php:120 inc/widgets/widget-facts.php:127
    365 #: inc/widgets/widget-facts.php:152 inc/widgets/widget-facts.php:177
    366 #: inc/widgets/widget-facts.php:202 inc/widgets/widget-skills.php:103
     364#: inc/widgets/widget-call-to-action.php:120 inc/widgets/widget-facts.php:128
     365#: inc/widgets/widget-facts.php:153 inc/widgets/widget-facts.php:178
     366#: inc/widgets/widget-facts.php:203 inc/widgets/widget-skills.php:103
    367367#: inc/widgets/widget-skills.php:124 inc/widgets/widget-skills.php:145
    368368#: inc/widgets/widget-skills.php:166
     
    394394#: inc/widgets/widget-call-to-action.php:168
    395395#: inc/widgets/widget-clients.php:245 inc/widgets/widget-contact-info.php:115
    396 #: inc/widgets/widget-employees.php:220 inc/widgets/widget-facts.php:220
     396#: inc/widgets/widget-employees.php:220 inc/widgets/widget-facts.php:221
    397397#: inc/widgets/widget-image-frame.php:197
    398398#: inc/widgets/widget-latest-news-carousel.php:191
     
    412412#: inc/widgets/widget-call-to-action.php:169
    413413#: inc/widgets/widget-clients.php:246 inc/widgets/widget-contact-info.php:116
    414 #: inc/widgets/widget-employees.php:221 inc/widgets/widget-facts.php:221
     414#: inc/widgets/widget-employees.php:221 inc/widgets/widget-facts.php:222
    415415#: inc/widgets/widget-image-frame.php:198
    416416#: inc/widgets/widget-latest-news-carousel.php:192
     
    485485
    486486#: inc/widgets/widget-clients.php:58 inc/widgets/widget-contact-info.php:44
    487 #: inc/widgets/widget-employees.php:57 inc/widgets/widget-facts.php:69
     487#: inc/widgets/widget-employees.php:57 inc/widgets/widget-facts.php:70
    488488#: inc/widgets/widget-pricing-table.php:61
    489489#: inc/widgets/widget-projects-carousel.php:55
     
    496496
    497497#: inc/widgets/widget-clients.php:59 inc/widgets/widget-contact-info.php:45
    498 #: inc/widgets/widget-employees.php:58 inc/widgets/widget-facts.php:70
     498#: inc/widgets/widget-employees.php:58 inc/widgets/widget-facts.php:71
    499499#: inc/widgets/widget-pricing-table.php:62
    500500#: inc/widgets/widget-projects-carousel.php:56
     
    739739msgstr ""
    740740
    741 #: inc/widgets/widget-facts.php:92
     741#: inc/widgets/widget-facts.php:48
     742msgid ""
     743"Disable the value animation in the counter options below in order to be "
     744"able to use delimiter, prefix or suffix characters."
     745msgstr ""
     746
     747#: inc/widgets/widget-facts.php:93
    742748msgid "Counter Options"
    743749msgstr ""
    744750
    745 #: inc/widgets/widget-facts.php:99
     751#: inc/widgets/widget-facts.php:100
    746752msgid "Animate the values?"
    747753msgstr ""
    748754
    749 #: inc/widgets/widget-facts.php:110
     755#: inc/widgets/widget-facts.php:111
    750756msgid "Count Speed [Default: 2000ms]"
    751757msgstr ""
    752758
    753 #: inc/widgets/widget-facts.php:120
     759#: inc/widgets/widget-facts.php:121
    754760msgid "First Fact"
    755761msgstr ""
    756762
    757 #: inc/widgets/widget-facts.php:121
     763#: inc/widgets/widget-facts.php:122
    758764msgid "Enter details for the first fact."
    759765msgstr ""
    760766
    761 #: inc/widgets/widget-facts.php:131 inc/widgets/widget-facts.php:156
    762 #: inc/widgets/widget-facts.php:181 inc/widgets/widget-facts.php:206
     767#: inc/widgets/widget-facts.php:132 inc/widgets/widget-facts.php:157
     768#: inc/widgets/widget-facts.php:182 inc/widgets/widget-facts.php:207
    763769#: inc/widgets/widget-skills-circle.php:149
    764770#: inc/widgets/widget-skills-circle.php:178
     
    770776msgstr ""
    771777
    772 #: inc/widgets/widget-facts.php:135 inc/widgets/widget-facts.php:160
    773 #: inc/widgets/widget-facts.php:185 inc/widgets/widget-facts.php:210
     778#: inc/widgets/widget-facts.php:136 inc/widgets/widget-facts.php:161
     779#: inc/widgets/widget-facts.php:186 inc/widgets/widget-facts.php:211
    774780#: inc/widgets/widget-list-with-icons.php:72
    775781#: inc/widgets/widget-pricing-table.php:116
     
    782788msgstr ""
    783789
    784 #: inc/widgets/widget-facts.php:145
     790#: inc/widgets/widget-facts.php:146
    785791msgid "Second Fact"
    786792msgstr ""
    787793
    788 #: inc/widgets/widget-facts.php:146
     794#: inc/widgets/widget-facts.php:147
    789795msgid "Enter details for the second fact."
    790796msgstr ""
    791797
    792 #: inc/widgets/widget-facts.php:170
     798#: inc/widgets/widget-facts.php:171
    793799msgid "Third Fact"
    794800msgstr ""
    795801
    796 #: inc/widgets/widget-facts.php:171
     802#: inc/widgets/widget-facts.php:172
    797803msgid "Enter details for the third fact."
    798804msgstr ""
    799805
    800 #: inc/widgets/widget-facts.php:195
     806#: inc/widgets/widget-facts.php:196
    801807msgid "Fourth Fact"
    802808msgstr ""
    803809
    804 #: inc/widgets/widget-facts.php:196
     810#: inc/widgets/widget-facts.php:197
    805811msgid "Enter details for the fourth fact."
    806812msgstr ""
  • meteorite-extensions/trunk/meteorite-extensions.php

    r2406391 r2446159  
    1010 * Plugin Name:     Meteorite Extensions
    1111 * Description:     Meteorite Extensions registers many widgets and extends support for the page builder by SiteOrigin and Elementor for the Meteorite Theme by Terra Themes.
    12  * Version:         1.9.1
     12 * Version:         1.10
    1313 * Author:          Terra Themes
    1414 * Author URI:      https://terra-themes.com
Note: See TracChangeset for help on using the changeset viewer.