Plugin Directory

Changeset 2901813


Ignore:
Timestamp:
04/20/2023 12:52:26 PM (3 years ago)
Author:
molonies
Message:

Updating readme/assets from GitHub

Location:
moloni-es/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • moloni-es/trunk/README.md

    r2901783 r2901813  
    1616**Tested up to:**      6.2 
    1717**WC tested up to**    7.5.1 
    18 **Stable tag:**        1.0.42 
     18**Stable tag:**        1.0.43 
    1919**License:**           GPLv2 or later 
    2020**License URI:**       [https://www.gnu.org/licenses/gpl-2.0.html](https://www.gnu.org/licenses/gpl-2.0.html)
     
    7272## Changelog
    7373
     74### 1.0.43
     75* Fix image syncronization
     76
    7477### 1.0.42
    7578* Tested up to version 6.2.0 of WordPress
  • moloni-es/trunk/moloni_es.php

    r2901783 r2901813  
    44 *   Plugin Name:  Moloni España
    55 *   Description:  Simple invoicing integration with Moloni ES
    6  *   Version:      1.0.42
     6 *   Version:      1.0.43
    77 *   Tested up to: 6.2
    88 *   WC tested up to: 7.5.1
  • moloni-es/trunk/readme.txt

    r2901783 r2901813  
    33Contributors: Moloni
    44Tags: Invoicing, Orders
    5 Stable tag: 1.0.42
     5Stable tag: 1.0.43
    66Tested up to: 6.2
    77WC tested up to: 7.5.1
     
    6868
    6969== Changelog ==
     70= 1.0.43 =
     71* Fix image syncronization
     72
    7073= 1.0.42 =
    7174* Tested up to version 6.2.0 of WordPress
  • moloni-es/trunk/src/Controllers/Product.php

    r2860677 r2901813  
    579579    private function shouldSyncImages()
    580580    {
    581         return !empty($this->image) && defined('SYNC_IMAGES') && (int)SYNC_IMAGES === 1;
     581        return !empty($this->image) && defined('SYNC_FIELDS_IMAGE') && (int)SYNC_FIELDS_IMAGE === 1;
    582582    }
    583583
  • moloni-es/trunk/src/Curl.php

    r2860677 r2901813  
    154154        $boundary = 'MOLONIRULES';
    155155        $query = str_replace(["\n", "\r"], '', $query);
     156
     157        if (Storage::$MOLONI_ES_COMPANY_ID) {
     158            $variables['companyId'] = Storage::$MOLONI_ES_COMPANY_ID;
     159        }
    156160
    157161        $data = [
Note: See TracChangeset for help on using the changeset viewer.