Plugin Directory

Changeset 2367989


Ignore:
Timestamp:
08/24/2020 04:32:00 PM (6 years ago)
Author:
junowoocommerce
Message:

Correção de bugs.

Location:
woo-juno/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • woo-juno/trunk/classes/Gateway/Credit_Card.php

    r2365410 r2367989  
    492492            $deps = [ 'juno/direct-checkout' ];
    493493
     494            $assets->add_global_dependency( 'wc-credit-card-form' );
     495
    494496            $assets->add(
    495497                'https://www.boletobancario.com/boletofacil/wro/direct-checkout.min.js',
     
    508510                );
    509511                $deps[] = 'jessepollak/card';
    510             } else {
    511                 wp_enqueue_script( 'wc-credit-card-form' );
    512512            }
    513513
  • woo-juno/trunk/classes/Utils/Asset_Manager.php

    r2119802 r2367989  
    5757        \do_action( h\prefix( 'added_global_asset_dependency' ), $handle );
    5858
    59         h\log_info( 'Added global ' . strtoupper( $type ) . ' dependency: handle=' . $args['handle'] . ' src=' . $args['src'] );
     59        h\log_info( 'Added global ' . strtoupper( $type ) . ' dependency: handle=' . $handle );
    6060    }
    6161
  • woo-juno/trunk/config.php

    r2365410 r2367989  
    44
    55return [
    6     'VERSION' => '2.0.2',
     6    'VERSION' => '2.0.3',
    77    'NAME' => 'Juno para WooCommerce',
    88    'SLUG' => 'woo-juno',
  • woo-juno/trunk/main.php

    r2365410 r2367989  
    66 * Author:               Juno Gateway de Pagamentos para ecommerces
    77 * Author URI:           https://juno.com.br
    8  * Version:              2.0.2
     8 * Version:              2.0.3
    99 * License:              GPLv3
    1010 * License URI:          http://www.gnu.org/licenses/gpl-3.0.html
  • woo-juno/trunk/readme.txt

    r2365410 r2367989  
    55Requires at least: 5.0
    66Tested up to: 5.5
    7 Stable tag: 2.0.2
     7Stable tag: 2.0.3
    88Requires PHP: 7.0
    99License: GPLv3 or later
     
    152152== Changelog ==
    153153
     154= 2.0.3 - 2020/08/24 =
     155
     156- Correções de bugs.
     157
    154158= 2.0.2 - 2020/08/19 =
    155159
  • woo-juno/trunk/vendor/composer/autoload_classmap.php

    r2365410 r2367989  
    3131    'WC_Juno\\Gateway\\Credit_Card' => $baseDir . '/classes/Gateway/Credit_Card.php',
    3232    'WC_Juno\\Notification_Handler' => $baseDir . '/classes/Notification_Handler.php',
    33     'WC_Juno\\Notification_Handler_V2' => $baseDir . '/classes/Notification_Handler_V2.php',
     33    'WC_Juno\\Notification_Handler_V2' => $baseDir . '/classes/Notification_Handler_v2.php',
    3434    'WC_Juno\\Orders\\Actions' => $baseDir . '/classes/Orders/Actions.php',
    3535    'WC_Juno\\Plugin_Dependencies' => $baseDir . '/classes/Plugin_Dependencies.php',
  • woo-juno/trunk/vendor/composer/autoload_static.php

    r2365410 r2367989  
    5454        'WC_Juno\\Gateway\\Credit_Card' => __DIR__ . '/../..' . '/classes/Gateway/Credit_Card.php',
    5555        'WC_Juno\\Notification_Handler' => __DIR__ . '/../..' . '/classes/Notification_Handler.php',
    56         'WC_Juno\\Notification_Handler_V2' => __DIR__ . '/../..' . '/classes/Notification_Handler_V2.php',
     56        'WC_Juno\\Notification_Handler_V2' => __DIR__ . '/../..' . '/classes/Notification_Handler_v2.php',
    5757        'WC_Juno\\Orders\\Actions' => __DIR__ . '/../..' . '/classes/Orders/Actions.php',
    5858        'WC_Juno\\Plugin_Dependencies' => __DIR__ . '/../..' . '/classes/Plugin_Dependencies.php',
Note: See TracChangeset for help on using the changeset viewer.