Plugin Directory

Changeset 3228490


Ignore:
Timestamp:
01/25/2025 01:55:43 PM (14 months ago)
Author:
vedicastroapiadmin
Message:

V1.0.12 release with shortcode issues fixed

Location:
vedicastroapi
Files:
141 added
3 edited

Legend:

Unmodified
Added
Removed
  • vedicastroapi/trunk/ReadMe.txt

    r3113588 r3228490  
    33Tags: kundli, panchang, marriage matching, planets, numerology, moon calendar, daily prediction, weekly prediction, sun sign, moon sign, planetary details, horoscope, dashas, gem stones, retrograde dates, rudraksh, sade sati
    44Requires at least: 6.0
    5 Tested up to: 6.5.5
    6 Stable tag: 1.0.11
     5Tested up to: 6.7
     6Stable tag: 1.0.12
    77Requires PHP: 7.4 or later
    88Donate link: https://vedicastroapi.com/
     
    8383== Changelog ==
    8484
     85= 1.0.12 =
     86* Version 1.0.12 - January 25, 2025
     87* Issue: Panchang and Moon Calendar shortcode issues fixed.
     88
    8589= 1.0.11 =
    8690* Version 1.0.11 - July 6, 2024
     
    141145== Upgrade Notice ==
    142146
     147= 1.0.12 =
     148* Title: "Plugin Update Available"
     149* Introduction: "A new version of VedicAstroAPI is now available."
     150* Description: "Panchang and Moon Calendar shortcode issues fixed."
     151
    143152= 1.0.11 =
    144153* Title: "Plugin Update Available"
  • vedicastroapi/trunk/public/class-vedic-astro-api-public.php

    r3039647 r3228490  
    30333033                "api_key" => $api_key,
    30343034                "lang" => $user_lang,
     3035                "tz" => VAAPI_LOCATION_TIMEZONE,
    30353036            ];
    30363037
     
    30493050                    "date" => date("d/m/Y", strtotime($ndate)),
    30503051                    "lang" => "en",
     3052                    "tz" => VAAPI_LOCATION_TIMEZONE,
    30513053                ];
    30523054                $get_moonphase_data_en = $this->vedicastro_api(
     
    35453547            if (!empty($total_days)) :
    35463548                $api_data = [
    3547                     "api_key" => $api_key,
    3548                     "date" => date("d/m/Y", strtotime($ndate)),
    3549                     "lang" => $language,
     3549                    "api_key"   => $api_key,
     3550                    "date"      => date("d/m/Y", strtotime($ndate)),
     3551                    "lang"      => $language,
     3552                    "lat"       => VAAPI_LOCATION_LATITUDE,
     3553                    "lon"       => VAAPI_LOCATION_LONGITUDE,
     3554                    "tz"        => VAAPI_LOCATION_TIMEZONE,
    35503555                ];
    35513556                $get_monthly_data = $this->vedicastro_api(
     
    35573562                    $api_data_en = [
    35583563                        "api_key" => $api_key,
    3559                         "date" => date("d/m/Y", strtotime($ndate)),
    3560                         "lang" => "en",
     3564                        "date"  => date("d/m/Y", strtotime($ndate)),
     3565                        "lang"  => "en",
     3566                        "lat"   => VAAPI_LOCATION_LATITUDE,
     3567                        "lon"   => VAAPI_LOCATION_LONGITUDE,
     3568                        "tz"    => VAAPI_LOCATION_TIMEZONE,
    35613569                    ];
    35623570                    $get_monthly_data_en = $this->vedicastro_api(
     
    35663574
    35673575                    $get_monthly_panchang = [
    3568                         "get_monthly_data" => $get_monthly_data["response"],
    3569                         "get_monthly_data_en" => $get_monthly_data_en["response"],
    3570                         "year" => $year,
    3571                         "month" => $month,
     3576                        "get_monthly_data"      => $get_monthly_data["response"],
     3577                        "get_monthly_data_en"   => $get_monthly_data_en["response"],
     3578                        "year"                  => $year,
     3579                        "month"                 => $month,
    35723580                    ];
    35733581                    if (!empty($get_monthly_data)) :
  • vedicastroapi/trunk/vedic-astro-api.php

    r3113588 r3228490  
    1717 * Plugin URI:        https://vedicastroapi.com
    1818 * Description:       Horoscope and Astrology is the first vedic astrology plugin that lets you generate horoscope reports based on the birth details.
    19  * Version:           1.0.11
     19 * Version:           1.0.12
    2020 * Author:            Vedic Astro API
    2121 * Author URI:        https://sohamsolution.com
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'VEDIC_ASTRO_API_VERSION', '1.0.11' );
     38define( 'VEDIC_ASTRO_API_VERSION', '1.0.12' );
    3939define( 'VEDICASTRO_URL', plugin_dir_url( __FILE__ ) );
    4040define( 'VEDIC_ASTRO_API_ROOT_URL', 'https://api.vedicastroapi.com/v3-json/' );
Note: See TracChangeset for help on using the changeset viewer.