Plugin Directory

Changeset 2793980


Ignore:
Timestamp:
10/04/2022 10:11:05 AM (3 years ago)
Author:
onlinebilling
Message:

Automated new release

Location:
online-billing-service/trunk
Files:
18 edited

Legend:

Unmodified
Added
Removed
  • online-billing-service/trunk/README.txt

    r2774936 r2793980  
    77Requires PHP: 7.2
    88Tested up to: 6.0
    9 Stable tag: 1.1.4
     9Stable tag: 1.1.5
    1010Author: Online Billing Service
    1111Author URI: www.online-billing-service.com
     
    2929
    3030*   "Contributors" onlinebilling
    31 *   "Tags" v1.1.4
     31*   "Tags" v1.1.5
    3232*   "Requires at least" WordPress version 4.7.0 and WooCommerce 3.0.0.
    3333*   "Tested up to" WordPress version 6.0 and WooCommerce 5.5.2.
     
    5656Ready to deploy!
    5757
    58 = 1.1.4 =
     58= 1.1.5 =
    5959* update company buyer name settings
    6060= 0.9.8 =
     
    7575== Upgrade Notice ==
    7676
    77 = 1.1.4 =
     77= 1.1.5 =
    7878Update company buyer name settings and fix some bugs.
    7979
  • online-billing-service/trunk/VERSION

    r2774936 r2793980  
    1 v1.1.4
     1v1.1.5
  • online-billing-service/trunk/admin/class-obs-admin-authentication.php

    r2774936 r2793980  
    55 *
    66 * @link       online-billing-service.com
    7  * @since      1.1.4
     7 * @since      1.1.5
    88 *
    99 * @package    OBS
     
    6464                $results = $wpdb->get_results( "SELECT * FROM " . $obs . " WHERE api_key ='" . self::crypt_api_key($obs_api_key, 'e') . "'", OBJECT );
    6565               
    66                 if(empty($results[0]->api_key)) {
    67                     $wpdb->insert(
    68                         $obs,
    69                         array(
    70                             'api_key' => self::crypt_api_key($obs_api_key, 'e')
    71                         )
    72                     );
    73                 }
     66                // if(empty($results[0]->api_key)) {
     67                $wpdb->insert(
     68                    $obs,
     69                    array(
     70                        'api_key' => self::crypt_api_key($obs_api_key, 'e')
     71                    )
     72                );
     73                // }
    7474
    7575                foreach ($results as $result) {
  • online-billing-service/trunk/admin/class-obs-admin-orders.php

    r2774936 r2793980  
    55 *
    66 * @link       online-billing-service.com
    7  * @since      1.1.4
     7 * @since      1.1.5
    88 *
    99 * @package    OBS
  • online-billing-service/trunk/admin/class-obs-admin-query.php

    r2774936 r2793980  
    55 *
    66 * @link       online-billing-service.com
    7  * @since      1.1.4
     7 * @since      1.1.5
    88 *
    99 * @package    OBS
     
    621621        }
    622622
    623         $query_string = 'mutation { ' . $invoice_or_proforma . '( replaceMissingAttributesWithDefaults: true, documentState: \\"' . $document_state .  '\\", note: \\"' . 'Created with online-billing-service.com woocommerce plugin v1.1.4' .  '\\", exchangeRate: \\"' . $order_exchange_rate .  '\\", currency: \\"' . $order_currency .  '\\", clientId: \\"' . $client_id .'\\", documentSeriesId: \\"' . $invoice_series[0] . '\\", documentDate: \\"' . $current_date . '\\", documentSeriesCounter: \\"' . $new_seris_counter . '\\", vatType: \\"' . $vat_type . '\\", delegateId: \\"' . $delegate_id . '\\", documentPositions: [';
     623        $query_string = 'mutation { ' . $invoice_or_proforma . '( replaceMissingAttributesWithDefaults: true, documentState: \\"' . $document_state .  '\\", note: \\"' . 'Created with online-billing-service.com woocommerce plugin v1.1.5' .  '\\", exchangeRate: \\"' . $order_exchange_rate .  '\\", currency: \\"' . $order_currency .  '\\", clientId: \\"' . $client_id .'\\", documentSeriesId: \\"' . $invoice_series[0] . '\\", documentDate: \\"' . $current_date . '\\", documentSeriesCounter: \\"' . $new_seris_counter . '\\", vatType: \\"' . $vat_type . '\\", delegateId: \\"' . $delegate_id . '\\", documentPositions: [';
    624624
    625625        $no_of_products = sizeof($order->get_items());
  • online-billing-service/trunk/admin/class-obs-admin-settings.php

    r2774936 r2793980  
    55 *
    66 * @link       online-billing-service.com
    7  * @since      1.1.4
     7 * @since      1.1.5
    88 *
    99 * @package    OBS
  • online-billing-service/trunk/admin/class-obs-admin.php

    r2774936 r2793980  
    55 *
    66 * @link       online-billing-service.com
    7  * @since      1.1.4
     7 * @since      1.1.5
    88 *
    99 * @package    OBS
     
    3131     * The ID of this plugin.
    3232     *
    33      * @since    1.1.4
     33     * @since    1.1.5
    3434     * @access   private
    3535     * @var      string    $plugin_name    The ID of this plugin.
     
    4040     * The version of this plugin.
    4141     *
    42      * @since    1.1.4
     42     * @since    1.1.5
    4343     * @access   private
    4444     * @var      string    $version    The current version of this plugin.
     
    4949     * Initialize the class and set its properties.
    5050     *
    51      * @since    1.1.4
     51     * @since    1.1.5
    5252     * @param      string    $plugin_name       The name of this plugin.
    5353     * @param      string    $version    The version of this plugin.
     
    6262     * Register the stylesheets for the admin area.
    6363     *
    64      * @since    1.1.4
     64     * @since    1.1.5
    6565     */
    6666    public function enqueue_styles() {
     
    8585     * Register the JavaScript for the admin area.
    8686     *
    87      * @since    1.1.4
     87     * @since    1.1.5
    8888     */
    8989    public function enqueue_scripts() {
  • online-billing-service/trunk/admin/partials/obs-admin-display-settings.php

    r2774936 r2793980  
    77 *
    88 * @link       online-billing-service.com
    9  * @since      1.1.4
     9 * @since      1.1.5
    1010 *
    1111 * @package    OBS
  • online-billing-service/trunk/admin/partials/obs-admin-display.php

    r2774936 r2793980  
    77 *
    88 * @link       online-billing-service.com
    9  * @since      1.1.4
     9 * @since      1.1.5
    1010 *
    1111 * @package    OBS
  • online-billing-service/trunk/admin/partials/obs-admin-redirect-to-obs.php

    r2774936 r2793980  
    77 *
    88 * @link       online-billing-service.com
    9  * @since      1.1.4
     9 * @since      1.1.5
    1010 *
    1111 * @package    OBS
  • online-billing-service/trunk/includes/class-obs-activator.php

    r2774936 r2793980  
    55 *
    66 * @link       online-billing-service.com
    7  * @since      1.1.4
     7 * @since      1.1.5
    88 *
    99 * @package    OBS
     
    1616 * This class defines all code necessary to run during the plugin's activation.
    1717 *
    18  * @since      1.1.4
     18 * @since      1.1.5
    1919 * @package    OBS
    2020 * @subpackage OBS/includes
     
    2828     * Long Description.
    2929     *
    30      * @since    1.1.4
     30     * @since    1.1.5
    3131     */
    3232    public static function activate() {
  • online-billing-service/trunk/includes/class-obs-deactivator.php

    r2774936 r2793980  
    55 *
    66 * @link       online-billing-service.com
    7  * @since      1.1.4
     7 * @since      1.1.5
    88 *
    99 * @package    OBS
     
    1616 * This class defines all code necessary to run during the plugin's activation.
    1717 *
    18  * @since      1.1.4
     18 * @since      1.1.5
    1919 * @package    OBS
    2020 * @subpackage OBS/includes
     
    2828     * Long Description.
    2929     *
    30      * @since    1.1.4
     30     * @since    1.1.5
    3131     */
    3232    public static function deactivate() {
  • online-billing-service/trunk/includes/class-obs-i18n.php

    r2774936 r2793980  
    88 *
    99 * @link       online-billing-service.com
    10  * @since      1.1.4
     10 * @since      1.1.5
    1111 *
    1212 * @package    OBS
     
    2020 * so that it is ready for translation.
    2121 *
    22  * @since      1.1.4
     22 * @since      1.1.5
    2323 * @package    OBS
    2424 * @subpackage OBS/includes
     
    3131     * Load the plugin text domain for translation.
    3232     *
    33      * @since    1.1.4
     33     * @since    1.1.5
    3434     */
    3535    public function load_plugin_textdomain() {
  • online-billing-service/trunk/includes/class-obs-loader.php

    r2774936 r2793980  
    55 *
    66 * @link       online-billing-service.com
    7  * @since      1.1.4
     7 * @since      1.1.5
    88 *
    99 * @package    OBS
     
    2727     * The array of actions registered with WordPress.
    2828     *
    29      * @since    1.1.4
     29     * @since    1.1.5
    3030     * @access   protected
    3131     * @var      array    $actions    The actions registered with WordPress to fire when the plugin loads.
     
    3636     * The array of filters registered with WordPress.
    3737     *
    38      * @since    1.1.4
     38     * @since    1.1.5
    3939     * @access   protected
    4040     * @var      array    $filters    The filters registered with WordPress to fire when the plugin loads.
     
    4545     * Initialize the collections used to maintain the actions and filters.
    4646     *
    47      * @since    1.1.4
     47     * @since    1.1.5
    4848     */
    4949    public function __construct() {
     
    5757     * Add a new action to the collection to be registered with WordPress.
    5858     *
    59      * @since    1.1.4
     59     * @since    1.1.5
    6060     * @param    string               $hook             The name of the WordPress action that is being registered.
    6161     * @param    object               $component        A reference to the instance of the object on which the action is defined.
     
    7171     * Add a new filter to the collection to be registered with WordPress.
    7272     *
    73      * @since    1.1.4
     73     * @since    1.1.5
    7474     * @param    string               $hook             The name of the WordPress filter that is being registered.
    7575     * @param    object               $component        A reference to the instance of the object on which the filter is defined.
     
    8686     * collection.
    8787     *
    88      * @since    1.1.4
     88     * @since    1.1.5
    8989     * @access   private
    9090     * @param    array                $hooks            The collection of hooks that is being registered (that is, actions or filters).
     
    113113     * Register the filters and actions with WordPress.
    114114     *
    115      * @since    1.1.4
     115     * @since    1.1.5
    116116     */
    117117    public function run() {
  • online-billing-service/trunk/obs.php

    r2774936 r2793980  
    1010 *
    1111 * @link              online-billing-service.com
    12  * @since             1.1.4
     12 * @since             1.1.5
    1313 * @package           OBS
    1414 *
     
    1717 * Plugin URI:        https://online-billing-service.com
    1818 * Description:       online billing service plugin integrates WooCommerce with online-billing-service.com invoicing app.
    19  * Version:           1.1.4
     19 * Version:           1.1.5
    2020 * Author:            online-billing-service.com
    2121 * Author URI:        online-billing-service.com
     
    3535/**
    3636 * Currently plugin version.
    37  * Start at version 1.1.4 and use SemVer - https://semver.org
     37 * Start at version 1.1.5 and use SemVer - https://semver.org
    3838 * Rename this for your plugin and update it as you release new versions.
    3939 */
    40 define( 'FAC_WOO_OBS_VERSION', '1.1.4' );
     40define( 'FAC_WOO_OBS_VERSION', '1.1.5' );
    4141
    4242/**
     
    7474 * not affect the page life cycle.
    7575 *
    76  * @since    1.1.4
     76 * @since    1.1.5
    7777 */
    7878
  • online-billing-service/trunk/public/class-obs-public.php

    r2774936 r2793980  
    55 *
    66 * @link       online-billing-service.com
    7  * @since      1.1.4
     7 * @since      1.1.5
    88 *
    99 * @package    OBS
     
    2626     * The ID of this plugin.
    2727     *
    28      * @since    1.1.4
     28     * @since    1.1.5
    2929     * @access   private
    3030     * @var      string    $plugin_name    The ID of this plugin.
     
    3535     * The version of this plugin.
    3636     *
    37      * @since    1.1.4
     37     * @since    1.1.5
    3838     * @access   private
    3939     * @var      string    $version    The current version of this plugin.
     
    4444     * Initialize the class and set its properties.
    4545     *
    46      * @since    1.1.4
     46     * @since    1.1.5
    4747     * @param      string    $plugin_name       The name of the plugin.
    4848     * @param      string    $version    The version of this plugin.
     
    5858     * Register the stylesheets for the public-facing side of the site.
    5959     *
    60      * @since    1.1.4
     60     * @since    1.1.5
    6161     */
    6262    public function enqueue_styles() {
     
    8181     * Register the JavaScript for the public-facing side of the site.
    8282     *
    83      * @since    1.1.4
     83     * @since    1.1.5
    8484     */
    8585    public function enqueue_scripts() {
  • online-billing-service/trunk/public/partials/obs-public-display.php

    r2774936 r2793980  
    77 *
    88 * @link       online-billing-service.com
    9  * @since      1.1.4
     9 * @since      1.1.5
    1010 *
    1111 * @package    OBS
  • online-billing-service/trunk/uninstall.php

    r2774936 r2793980  
    2121 *
    2222 * @link       online-billing-service.com
    23  * @since      1.1.4
     23 * @since      1.1.5
    2424 *
    2525 * @package    OBS
Note: See TracChangeset for help on using the changeset viewer.