Plugin Directory

Changeset 2837996


Ignore:
Timestamp:
12/22/2022 01:41:35 PM (3 years ago)
Author:
appexpertsio
Message:

Fix infinite loading while editing variable product - v1.3.5

Location:
appexperts/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • appexperts/trunk/app-expert.php

    r2833215 r2837996  
    33Plugin Name: AppExperts
    44Description: Integrate App Experts builder functionality with your wordpress website
    5 Version: 1.3.4
     5Version: 1.3.5
    66Author: AppExperts
    77Author URI: https://appexperts.io/
     
    8484//todo:find a better way
    8585
    86 const APP_EXPERT_PLUGIN_VERSION = '1.3.4';  // used in assets
     86const APP_EXPERT_PLUGIN_VERSION = '1.3.5';  // used in assets
    8787const APP_EXPERT_API_NAMESPACE = 'app-expert/v1';
    8888
  • appexperts/trunk/includes/features/log/app-expert-log-init.php

    r2833215 r2837996  
    2828    public function log_errors(){
    2929        $error = error_get_last();
    30         $msg = sprintf( __( '%1$s in %2$s on line %3$s', 'app-expert' ), $error['message'], $error['file'], $error['line'] );
    31         App_Expert_Logger::fatal($msg,$error);
     30        if( is_array( $error ) && !empty($error) ){
     31            $msg = sprintf( __( '%1$s in %2$s on line %3$s', 'app-expert' ), $error['message'], $error['file'], $error['line'] );
     32            App_Expert_Logger::fatal($msg,$error);
     33        }
    3234    }
    3335    public function log_upgrade( $upgrader, $extra ) {
  • appexperts/trunk/readme.txt

    r2835003 r2837996  
    1 === APPExperts – Mobile App Builder for WordPress | WooCommerce to iOS and Android Apps ===
     1=== APPExperts - WordPress to Mobile App - WooCommerce to iOS and Android Apps ===
    22Plugin URI: https://wpexperts.io/
    3 Tags: Android app, mobile app, mobile app builder, app builder, ios app
     3Tags: Android app, mobile app, woocommerce mobile, app builder, ios app
    44Contributors: wpexpertsio, appexpertsio
    55Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&[email protected]&item_name=DonationForPlugin
    66Requires at least: 4.5.0
    77Tested up to: 6.0
    8 Stable tag: 1.3.4
     8Stable tag: 1.3.5
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1111
    1212== Description ==
    13 APPExperts is a freemium [mobile app builder](https://appexperts.io/) that gives you the power to turn your WordPress-powered website into a mobile application for iOS and Android phones, tablets, and other mobile devices.
     13[APPExperts](https://appexperts.io/) is a freemium software that gives you the power to turn your WordPress-powered website into a mobile application for iOS and Android phones, tablets, and other mobile devices.
    1414
    1515APPExperts provides mobility solutions for a broad spectrum of businesses, including blogs, eCommerce stores, CMS websites, and more. It's all about connecting different platforms to your application so users can reach you anytime, anywhere.
     
    6666
    6767= Having trouble customizing your application? =
    68 With App Experts' custom application development services, you can free up your IT resources by getting help with the planning, transformation, implementation, and management of any custom or packaged app.
     68With App Experts custom application development services, you can free up your IT resources by getting help with the planning, transformation, implementation, and management of any custom or packaged app.
    6969
    7070We will help you with every step of the application development process, from conception through maintenance. Visit [here](https://appexperts.io/customization-request/) for more information.
     
    106106The plugin connects your website to a WordPress mobile app builder that supports all types of WordPress websites including [WooCommerce](https://woocommerce.com/).
    107107
    108 = How can I publish my mobile app builder applications on the Apple store or Play store? =
     108= How can I publish my mobile applications on the Apple store or Play store? =
    109109Once you're done creating your Android or iOS mobile app, you will be able to download the version from the APPExperts dashboard. We make sure that the applications are in compliance with the [Apple Store](https://www.apple.com/app-store/) and [Google Play Store](https://play.google.com/store/apps) requirements and standards.
    110110
     
    112112
    113113== Changelog ==
     114
     115= 1.3.5 2022-12-22  =
     116* Fix - Fix infinite loading while editing variable product
    114117
    115118= 1.3.4 2022-12-13  =
     
    148151
    149152= 1.2.6 2022-08-28 =
    150 * update – Update Licence placement
    151 * update – Update webview page design to match material designs used in app
     153* update Update Licence placement
     154* update Update webview page design to match material designs used in app
    152155
    153156= 1.2.5 2022-07-24 =
Note: See TracChangeset for help on using the changeset viewer.