Plugin Directory

Changeset 3292676


Ignore:
Timestamp:
05/13/2025 03:22:14 PM (10 months ago)
Author:
worldweb
Message:

2.0.1 (May 13, 2025)

  • Resolved graph issue.
Location:
loan-calculator-wp
Files:
70 added
4 edited

Legend:

Unmodified
Added
Removed
  • loan-calculator-wp/trunk/includes/js/frequency_payment.js

    r3267819 r3292676  
    217217    } 
    218218
    219 
    220     return parseFloat(monthlyInterestAmount).toFixed(2);
     219    /* 2025-05-13 */
     220    return monthlyInterestAmount;
    221221
    222222  } else if (frp_option === 'Yearly') {
  • loan-calculator-wp/trunk/includes/js/frontend-script.js

    r3267819 r3292676  
    28302830      repayment_frequency_val
    28312831      ); 
    2832 
    2833 
     2832    /* 2025-05-13 */
     2833    var default_nop_value = jQuery("input[name='loan_terms']").val();
     2834    /* visible note below chart */
     2835    if(default_nop_value > 120){
     2836      jQuery('body').find('.chart-note').show();
     2837    }else{
     2838      jQuery('body').find('.chart-note').hide();
     2839    }
    28342840    var loan_amount = jQuery("#loan_amount").val();
    28352841    if (setting_data.remove_decimal_point == 1) {
  • loan-calculator-wp/trunk/loan-calculator-wp.php

    r3270818 r3292676  
    44 * Plugin URI: https://www.worldwebtechnology.com/
    55 * Description: Advanced Loan Calculator for Home Loans, Personal Loans, and various other types of loans. Includes features like a repayment chart, amortization table, video tab, balloon payment option, and supports all currencies. Use the contact form shortcode for easy access.
    6  * Version: 2.0.0
     6 * Version: 2.0.1
    77 * Author: World Web Technology
    88 * Author URI: https://www.worldwebtechnology.com/
     
    2727 */
    2828if (!defined('WW_LOAN_CALCULATOR_VERSION')) {
    29     define('WW_LOAN_CALCULATOR_VERSION', '2.0.0'); //version of plugin
     29    define('WW_LOAN_CALCULATOR_VERSION', '2.0.1'); //version of plugin
    3030}
    3131if (!defined('WW_LOAN_CALCULATOR_TEXT_DOMAIN')) { //check if variable is not defined previous then define it
  • loan-calculator-wp/trunk/readme.txt

    r3269750 r3292676  
    1010Requires PHP:      7.4
    1111Tested up to:      6.8
    12 Stable tag:        2.0.0
     12Stable tag:        2.0.1
    1313License:           GPLv2 or later
    1414License URI:       https://www.gnu.org/licenses/gpl-2.0.html
    15 Version:           2.0.0
     15Version:           2.0.1
    1616
    1717Loan / EMI Calculator for Home Loan and Personal Loan
     
    129129== Changelog ==
    130130
     131= 2.0.1 (May 13, 2025) =
     132* Resolved graph issue.
     133
    131134= 2.0.0 (Apr 09, 2025) =
    132135* Resolved the error message issue.
Note: See TracChangeset for help on using the changeset viewer.