Plugin Directory

Changeset 3485488


Ignore:
Timestamp:
03/18/2026 10:00:57 AM (9 days ago)
Author:
webdigit
Message:

Release v0.7.0

Location:
gestoo-connector-for-peppol-invoicing/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • gestoo-connector-for-peppol-invoicing/trunk/assets/js/admin-settings.js

    r3485472 r3485488  
    2222    }
    2323
    24     var $result = $( '<span id="gestoo-peppol-test-result" style="margin-left:10px;"></span>' );
     24    var $result = $( '<span id="gestoo-peppol-connection-result" style="margin-left:10px;"></span>' );
    2525    $input.after( $result );
    2626
  • gestoo-connector-for-peppol-invoicing/trunk/gestoo-connector-for-peppol-invoicing.php

    r3485472 r3485488  
    44 * Plugin URI:        https://www.gestoo.be
    55 * Description:       WooCommerce to GestOO connector: create invoices and send via Peppol. Official invoicing stays in GestOO.
    6  * Version:           0.6.0
     6 * Version:           0.7.0
    77 * Requires at least: 6.0
    88 * Requires PHP:      7.4
     
    4242);
    4343
    44 define( 'GESTOO_PEPPOL_INVOICE_VERSION', '0.6.0' );
     44define( 'GESTOO_PEPPOL_INVOICE_VERSION', '0.7.0' );
    4545define( 'GESTOO_PEPPOL_INVOICE_PLUGIN_FILE', __FILE__ );
    4646define( 'GESTOO_PEPPOL_INVOICE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
  • gestoo-connector-for-peppol-invoicing/trunk/includes/class-gestoo-peppol-wc-integration.php

    r3485472 r3485488  
    174174                'title' => __( 'Mapping', 'gestoo-connector-for-peppol-invoicing' ),
    175175                'type'  => 'title',
    176                 'desc'  => __( 'Configure meta keys for VAT number and invoice language. First found is used.', 'gestoo-connector-for-peppol-invoicing' ),
     176                'desc'  => __( 'Configure meta keys for VAT number and invoice language. Keys are tested in order (one per line); the first that returns a non-empty value is used.', 'gestoo-connector-for-peppol-invoicing' ),
    177177                'tab'   => 'general',
    178178            ],
     
    180180                'title'       => __( 'VAT number meta keys (one per line)', 'gestoo-connector-for-peppol-invoicing' ),
    181181                'type'        => 'textarea',
    182                 'description' => __( 'e.g. billing_tva, vat_number, _billing_vat_number', 'gestoo-connector-for-peppol-invoicing' ),
     182                'description' => __( 'Keys are tested in order; first non-empty value wins. Examples: billing_tva, vat_number, _billing_vat_number', 'gestoo-connector-for-peppol-invoicing' ),
    183183                'default'     => "billing_tva\nvat_number",
    184184                'css'         => 'width: 100%; min-height: 80px;',
     
    188188                'title'       => __( 'Invoice language meta keys (one per line)', 'gestoo-connector-for-peppol-invoicing' ),
    189189                'type'        => 'textarea',
    190                 'description' => __( 'e.g. wcpdf_trp_language, trp_language. Fallback: site language.', 'gestoo-connector-for-peppol-invoicing' ),
     190                'description' => __( 'Keys are tested in order; first non-empty value wins. Examples: wcpdf_trp_language, trp_language. Fallback: site language.', 'gestoo-connector-for-peppol-invoicing' ),
    191191                'default'     => "wcpdf_trp_language\ntrp_language",
    192192                'css'         => 'width: 100%; min-height: 80px;',
  • gestoo-connector-for-peppol-invoicing/trunk/readme.txt

    r3485472 r3485488  
    55Requires at least: 6.0
    66Tested up to: 6.9
    7 Stable tag: 0.6.0
     7Stable tag: 0.7.0
    88Requires PHP: 7.4
    99Requires Plugins: woocommerce
     
    8080== Changelog ==
    8181
     82= 0.7.0 =
     83* Fixed Test payload result not visible (ID conflict between API token and payload result div).
     84* Improved mapping descriptions: explicit note that keys are tested in order and first non-empty value wins.
     85
    8286= 0.6.0 =
    8387* Reorganized settings page into tabs: General settings | Diagnostic | Test order.
     
    122126== Upgrade Notice ==
    123127
     128= 0.7.0 =
     129Fixes Test payload result visibility and improves mapping field descriptions. Safe to update.
     130
    124131= 0.6.0 =
    125132Settings page now organized in three tabs (General, Diagnostic, Test order). Buttons fixed. Safe to update.
Note: See TracChangeset for help on using the changeset viewer.