Plugin Directory

Changeset 3122368


Ignore:
Timestamp:
07/20/2024 06:16:32 AM (20 months ago)
Author:
fuzzoid
Message:

Price debug bugfix

Location:
3dprint-lite/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • 3dprint-lite/trunk/3dprint-lite.php

    r3117016 r3122368  
    66Text Domain: 3dprint-lite
    77Plugin URI: http://www.wp3dprinting.com
    8 Version: 2.0.8.6
     8Version: 2.0.8.7
    99*/
    1010
     
    1313}
    1414
    15 define('P3DLITE_VERSION', '2.0.8.6');
     15define('P3DLITE_VERSION', '2.0.8.7');
    1616
    1717if ( !function_exists( 'get_home_path' ) ) {
  • 3dprint-lite/trunk/includes/js/3dprint-lite-frontend.js

    r3117016 r3122368  
    18751875    }
    18761876    else if (p3dlite.minimum_price_type=='minimum_price') {
    1877         if (total < p3dlite.min_price) total = p3dlite.min_price;
     1877        if (total < p3dlite.min_price) total = parseFloat(p3dlite.min_price);
    18781878        p3dlitePriceDebug("Minimum Price:", parseFloat(p3dlite.min_price));
    18791879    }
  • 3dprint-lite/trunk/readme.txt

    r3117016 r3122368  
    11=== 3DPrint Lite ===
    22Contributors: fuzzoid
    3 Tags: 3D, printing, 3dprinting, 3D printing, 3dprint, printer, stl
     3Tags: 3D, printing, 3dprinting, 3D printing, 3dprint
    44Requires at least: 3.5
    55Tested up to: 6.6
    6 Stable tag: 2.0.8.6
     6Stable tag: 2.0.8.7
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    109109== Changelog ==
    110110
     111= 2.0.8.7 =
     112
     113Price debug bugfix
     114
    111115= 2.0.8.6 =
    112116
Note: See TracChangeset for help on using the changeset viewer.