UPDATE INSTRUCTION:
The following files has been changed in version 1.3

Mobile app files

  1. config.xml
  2. www/index.html
  3. www/js/template.js
  4. www/js/map-wrapper.js
  5. www/js/app.js
  6. www/css/app.css
  7. www/lib/jquery-v3.4.1.js - new file
  8. www/lib/jquery-v3.3.1.js - old library file please delete
  9. www/res/icons/ios/icon-83.5@2x.png - new file

Modules files

  1. assets/js/app.js
  2. components/itemWrapper.php
  3. components/mobileWrapper.php
  4. components/LocationWrapper.php - new file
  5. controllers/AjaxController.php
  6. controllers/ApiController.php
  7. controllers/CronController.php
  8. controllers/IndexController.php
  9. controllers/UpdateController.php
  10. translation-file/mobile2.php
  11. views/index/settings_application.php
  12. views/index/banner_add.php - new file
  13. views/index/banner_list.php - new file
  14. views/index/error.php - new file
  15. views/layouts/left_menu.php
  16. Mobileappv2Module.php

DATABASE

  1. new table - mobile2_homebanner
  2. new fields in table mobile2_cart
  3. new fields in table address_book_location

UPDATE TO KMRS FILE

  1. issue with sms empty
    fixed update the file componemts/PrintWrapper.php with http://bastisapp.com/helpfiles/PrintWrapper.phps
  2. issue with non taxable item
    in components/functions.php function displayOrderHTML in line 4132 change the condition
    	if($temp_subtotal>=0.0001){
        					   $taxable_subtotal=($temp_subtotal+$temp_delivery_charges+$merchant_packaging_charge)*$tax;
        					}
    
    to
    	if($temp_subtotal>=0.0001){
        					   $taxable_subtotal=($temp_subtotal+$temp_delivery_charges+$merchant_packaging_charge)*$tax;
        					} else {    						
        					   $taxable_subtotal=($temp_delivery_charges+$merchant_packaging_charge)*$tax;
        					}