Plugin Directory

Changeset 2719790


Ignore:
Timestamp:
05/07/2022 08:34:40 AM (4 years ago)
Author:
divipeople
Message:

Update to version 1.2.4 from GitHub

Location:
wow-carousel-for-divi-lite
Files:
30 added
20 deleted
16 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wow-carousel-for-divi-lite/assets/banner-1544x500.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • wow-carousel-for-divi-lite/assets/banner-772x250.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • wow-carousel-for-divi-lite/assets/icon-128x128.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • wow-carousel-for-divi-lite/assets/icon-256x256.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • wow-carousel-for-divi-lite/assets/screenshot-1.jpg

    • Property svn:mime-type changed from application/octet-stream to image/jpeg
  • wow-carousel-for-divi-lite/assets/screenshot-2.jpg

    • Property svn:mime-type changed from application/octet-stream to image/jpeg
  • wow-carousel-for-divi-lite/assets/screenshot-3.jpg

    • Property svn:mime-type changed from application/octet-stream to image/jpeg
  • wow-carousel-for-divi-lite/assets/screenshot-4.jpg

    • Property svn:mime-type changed from application/octet-stream to image/jpeg
  • wow-carousel-for-divi-lite/assets/screenshot-5.jpg

    • Property svn:mime-type changed from application/octet-stream to image/jpeg
  • wow-carousel-for-divi-lite/assets/screenshot-6.jpg

    • Property svn:mime-type changed from application/octet-stream to image/jpeg
  • wow-carousel-for-divi-lite/tags/1.2.4/includes/loader.php

    r2598638 r2719790  
    1111// Load custom Divi Builder modules.
    1212$wdc_options = get_option( 'wdc_options' );
    13 $wdcl_merge  = isset( $wdc_options['wdcl_merge'] ) ? $wdc_options['wdcl_merge'] : 'off';
     13$wdcl_merge  = isset( $wdc_options['wdcl_merge'] ) ? $wdc_options['wdcl_merge'] : 'on';
    1414
    15 if ( 'off' === $wdcl_merge ) {
     15if ( 'off' === $wdcl_merge || !wdcl_has_pro() ) {
    1616    foreach ( (array) $module_files as $module_file ) {
    1717        if ( $module_file && preg_match( "/\/modules\/\b([^\/]+)\/\\1\.php$/", $module_file ) ) {
  • wow-carousel-for-divi-lite/tags/1.2.4/readme.txt

    r2712998 r2719790  
    33Tags: divi, divi theme, divi builder, divi module, divi page builder
    44Requires at least: 4.8
    5 Tested up to: 5.9
    6 Stable tag: 1.2.3
     5Tested up to: 6.0
     6Stable tag: 1.2.4
    77Requires PHP: 5.6
    88License: GPLv2
     
    9494= 1.2.3 =
    9595- Added: Freemius SDK
    96 - Updated:
     96- Updated: Security Issue
    9797
    9898= 1.2.2 =
  • wow-carousel-for-divi-lite/tags/1.2.4/wow-divi-carousel-lite.php

    r2712998 r2719790  
    44Plugin URI:  https://wordpress.org/plugins/wow-carousel-for-divi-lite/
    55Description: A Divi touch enabled plugin that lets you create a beautiful responsive carousel slider.
    6 Version:     1.2.3
     6Version:     1.2.4
    77Author:      DiviPeople
    88Author URI:  https://divipeople.com/
     
    3030}
    3131
    32 define( 'WDCL_PLUGIN_VERSION', '1.2.3' );
     32define( 'WDCL_PLUGIN_VERSION', '1.2.4' );
    3333define( 'WDCL_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    3434define( 'WDCL_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
     
    6868                ),
    6969
    70                 #START_REPLACE #END_REPLACE
     70                #START_REPLACE
     71                'secret_key'      => 'sk_4Z=&m_2dtRpS!%kO9VpR1820bF]rr',
     72                #END_REPLACE
    7173            ) );
    7274        }
  • wow-carousel-for-divi-lite/trunk/includes/loader.php

    r2598638 r2719790  
    1111// Load custom Divi Builder modules.
    1212$wdc_options = get_option( 'wdc_options' );
    13 $wdcl_merge  = isset( $wdc_options['wdcl_merge'] ) ? $wdc_options['wdcl_merge'] : 'off';
     13$wdcl_merge  = isset( $wdc_options['wdcl_merge'] ) ? $wdc_options['wdcl_merge'] : 'on';
    1414
    15 if ( 'off' === $wdcl_merge ) {
     15if ( 'off' === $wdcl_merge || !wdcl_has_pro() ) {
    1616    foreach ( (array) $module_files as $module_file ) {
    1717        if ( $module_file && preg_match( "/\/modules\/\b([^\/]+)\/\\1\.php$/", $module_file ) ) {
  • wow-carousel-for-divi-lite/trunk/readme.txt

    r2712998 r2719790  
    33Tags: divi, divi theme, divi builder, divi module, divi page builder
    44Requires at least: 4.8
    5 Tested up to: 5.9
    6 Stable tag: 1.2.3
     5Tested up to: 6.0
     6Stable tag: 1.2.4
    77Requires PHP: 5.6
    88License: GPLv2
     
    9494= 1.2.3 =
    9595- Added: Freemius SDK
    96 - Updated:
     96- Updated: Security Issue
    9797
    9898= 1.2.2 =
  • wow-carousel-for-divi-lite/trunk/wow-divi-carousel-lite.php

    r2712998 r2719790  
    44Plugin URI:  https://wordpress.org/plugins/wow-carousel-for-divi-lite/
    55Description: A Divi touch enabled plugin that lets you create a beautiful responsive carousel slider.
    6 Version:     1.2.3
     6Version:     1.2.4
    77Author:      DiviPeople
    88Author URI:  https://divipeople.com/
     
    3030}
    3131
    32 define( 'WDCL_PLUGIN_VERSION', '1.2.3' );
     32define( 'WDCL_PLUGIN_VERSION', '1.2.4' );
    3333define( 'WDCL_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    3434define( 'WDCL_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
     
    6868                ),
    6969
    70                 #START_REPLACE #END_REPLACE
     70                #START_REPLACE
     71                'secret_key'      => 'sk_4Z=&m_2dtRpS!%kO9VpR1820bF]rr',
     72                #END_REPLACE
    7173            ) );
    7274        }
Note: See TracChangeset for help on using the changeset viewer.