Plugin Directory

Changeset 3041915

Timestamp:
02/27/2024 12:48:05 PM (5 months ago)
Author:
them.es
Message:

updated trunk

Location:
billy
Files:
727 added
4 edited

Legend:

Unmodified
Added
Removed
  • billy/trunk/billy.php

    r3018666 r3041915  
    44 * Plugin URI: https://wordpress.org/plugins/billy
    55 * Description: A business-oriented billing suite powered by WordPress.
    6  * Version: 1.7.1
     6 * Version: 1.7.
    77 * Author: them.es
    88 * Author URI: https://them.es/plugins/billy
  • billy/trunk/blocks/build/index.asset.php

    r3019080 r3041915  
    1 <?php return array('dependencies' => array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-data', 'wp-edit-post', 'wp-element', 'wp-i18n', 'wp-plugins', 'wp-server-side-render'), 'version' => '0b0f87129ae077d48387');
     1<?php return array('dependencies' => array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-data', 'wp-edit-post', 'wp-element', 'wp-i18n', 'wp-plugins', 'wp-server-side-render'), 'version' => '');
  • billy/trunk/inc/class-billy.php

    r3016777 r3041915  
    13101310            'name',
    13111311            array(
    1312                 'type'     => 'text',
    1313                 'label'    => esc_html__( 'Name', 'billy' ),
    1314                 'section'  => 'billy_general_section',
    1315                 'settings' => 'name',
    1316                 'priority' => 2,
     1312                'type'    => 'text',
     1313                'label'   => esc_html__( 'Name', 'billy' ),
     1314                'section' => 'billy_general_section',
    13171315            )
    13181316        );
     
    13321330            'address',
    13331331            array(
    1334                 'type'     => 'textarea',
    1335                 'label'    => esc_html__( 'Address', 'billy' ),
    1336                 'section'  => 'billy_general_section',
    1337                 'settings' => 'address',
    1338                 'priority' => 3,
     1332                'type'    => 'textarea',
     1333                'label'   => esc_html__( 'Address', 'billy' ),
     1334                'section' => 'billy_general_section',
    13391335            )
    13401336        );
     
    13541350                'description' => esc_html__( 'Enter your VAT identification number or Taxpayer ID', 'billy' ),
    13551351                'section'     => 'billy_general_section',
    1356                 'settings'    => 'vat',
    1357                 'priority'    => 4,
    13581352            )
    13591353        );
     
    13741368                'description' => 'https://w.wiki/Fgw' . '<br>' . esc_html__( 'Caution: Any changes made here may affect existing entries. Create a backup first!', 'billy' ),
    13751369                'section'     => 'billy_general_section',
    1376                 'settings'    => 'currency',
    1377                 'priority'    => 5,
    13781370            )
    13791371        );
     
    13981390                ) . '<br>' . esc_html__( 'Caution: Any changes made here may affect existing entries. Create a backup first!', 'billy' ),
    13991391                'section'     => 'billy_general_section',
    1400                 'settings'    => 'taxrates',
    1401                 'priority'    => 6,
    14021392            )
    14031393        );
     
    14131403            'invoice_number_prefix',
    14141404            array(
    1415                 'type'     => 'text',
    1416                 'label'    => esc_html__( 'Invoice number: Prefix', 'billy' ),
    1417                 'section'  => 'billy_invoice_section',
    1418                 'settings' => 'invoice_number_prefix',
    1419                 'priority' => 1,
     1405                'type'    => 'text',
     1406                'label'   => esc_html__( 'Invoice number: Prefix', 'billy' ),
     1407                'section' => 'billy_invoice_section',
    14201408            )
    14211409        );
     
    14351423                'description' => esc_html__( 'Upcoming invoice numbers will be autoincremented based on this value!', 'billy' ),
    14361424                'section'     => 'billy_invoice_section',
    1437                 'settings'    => 'invoice_number',
    1438                 'priority'    => 2,
    14391425            )
    14401426        );
     
    14621448            'payment_due_days',
    14631449            array(
    1464                 'type'     => 'number',
    1465                 'label'    => esc_html__( 'Payment due within # days', 'billy' ),
    1466                 'section'  => 'billy_invoice_section',
    1467                 'settings' => 'payment_due_days',
    1468                 'priority' => 3,
     1450                'type'    => 'number',
     1451                'label'   => esc_html__( 'Payment due within # days', 'billy' ),
     1452                'section' => 'billy_invoice_section',
    14691453            )
    14701454        );
     
    14881472                'description' => esc_html__( 'Add the payment instructions and link to your terms.', 'billy' ),
    14891473                'section'     => 'billy_invoice_section',
    1490                 'settings'    => 'payment_information',
    1491                 'priority'    => 4,
    14921474            )
    14931475        );
     
    15111493                'description' => esc_html__( 'Inform your contacts about special terms, quote expiration clauses, etc.', 'billy' ),
    15121494                'section'     => 'billy_quote_section',
    1513                 'settings'    => 'quote_information',
    1514                 'priority'    => 1,
    15151495            )
    15161496        );
     
    15301510            'quote_valid_days',
    15311511            array(
    1532                 'type'     => 'number',
    1533                 'label'    => esc_html__( 'Quote valid for # days', 'billy' ),
    1534                 'section'  => 'billy_quote_section',
    1535                 'settings' => 'quote_valid_days',
    1536                 'priority' => 2,
     1512                'type'    => 'number',
     1513                'label'   => esc_html__( 'Quote valid for # days', 'billy' ),
     1514                'section' => 'billy_quote_section',
    15371515            )
    15381516        );
  • billy/trunk/readme.txt

    r3019080 r3041915  
    44Tags: accounting, billing, invoices, quotes
    55Requires at least: 5.6
    6 Tested up to: 6.4
    7 Stable tag: 1.7.1
     6Tested up to: 6.
     7Stable tag: 1.7.
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    140140== Changelog ==
    141141
     142
     143
     144
     145
     146
    142147= 1.7.1 =
    143148* Bugfix: Custom meta deprecation warning
Note: See TracChangeset for help on using the changeset viewer.