Plugin Directory

Changeset 2695629


Ignore:
Timestamp:
03/17/2022 09:55:59 PM (4 years ago)
Author:
impacttechpartners
Message:

release version 1.0.15, compability with wordpress 5.9

Location:
impact-partnership-cloud
Files:
3 edited
12 copied

Legend:

Unmodified
Added
Removed
  • impact-partnership-cloud/tags/1.0.15/changelog.txt

    r2631576 r2695629  
    11*** Impact Partnership Cloud ***
     2
     32022-03-09 - version 1.0.15
     4 * Tweak - update for compability with wordpress 5.9
    25
    362021-11-17 - version 1.0.14
  • impact-partnership-cloud/tags/1.0.15/impact.php

    r2631576 r2695629  
    33 * Plugin Name:       Impact: Partnership Cloud
    44 * Description:       Partnership cloud app plugin for Woocomerce that tracks every conversion made trough one of Impact's referral links.
    5  * Version:           1.0.14
     5 * Version:           1.0.15
    66 * Requires at least: 5.0
    77 * Requires PHP:      7.0
     
    1010 *
    1111 * WC requires at least: 4.7
    12  * WC tested up to: 5.0
     12 * WC tested up to: 6
    1313 *
    1414 * License:           GPL v2 or later
     
    3131     * @var string
    3232     */
    33     private $version = '1.0.14';
     33    private $version = '1.0.15';
    3434    /**
    3535     * Singleton instance of the plugin
     
    3838     */
    3939    private static $instance = false;
     40
     41    private $middleman_url = 'https://saasler-woocommerce-impact.herokuapp.com';
    4042
    4143    /**
     
    143145
    144146        $response = wp_remote_post(
    145             'https://saasler-woocommerce-impact.herokuapp.com/shops',
     147            $this->middleman_url . '/shops',
    146148            array(
    147149                'headers' => array(
     
    579581
    580582        $response = wp_remote_request(
    581             'https://saasler-woocommerce-impact.herokuapp.com/integration_setting',
     583            $this->middleman_url . '/integration_setting',
    582584            array(
    583585                'method'  => 'PUT',
     
    615617
    616618        wp_remote_request(
    617             'https://saasler-woocommerce-impact.herokuapp.com/uninstall',
     619            $this->middleman_url . '/uninstall',
    618620            array(
    619621                'method'  => 'DELETE',
  • impact-partnership-cloud/tags/1.0.15/readme.txt

    r2631576 r2695629  
    22Tags: impact, referrals
    33Requires at least: 5.0
    4 Tested up to: 5.8
     4Tested up to: 5.9
    55Requires PHP: 7.0
    6 Stable tag: 1.0.14
     6Stable tag: 1.0.15
    77License: GPLv2 or later License
    88URI: http://www.gnu.org/licenses/gpl-2.0.html
  • impact-partnership-cloud/trunk/changelog.txt

    r2631576 r2695629  
    11*** Impact Partnership Cloud ***
     2
     32022-03-09 - version 1.0.15
     4 * Tweak - update for compability with wordpress 5.9
    25
    362021-11-17 - version 1.0.14
  • impact-partnership-cloud/trunk/impact.php

    r2631576 r2695629  
    33 * Plugin Name:       Impact: Partnership Cloud
    44 * Description:       Partnership cloud app plugin for Woocomerce that tracks every conversion made trough one of Impact's referral links.
    5  * Version:           1.0.14
     5 * Version:           1.0.15
    66 * Requires at least: 5.0
    77 * Requires PHP:      7.0
     
    1010 *
    1111 * WC requires at least: 4.7
    12  * WC tested up to: 5.0
     12 * WC tested up to: 6
    1313 *
    1414 * License:           GPL v2 or later
     
    3131     * @var string
    3232     */
    33     private $version = '1.0.14';
     33    private $version = '1.0.15';
    3434    /**
    3535     * Singleton instance of the plugin
     
    3838     */
    3939    private static $instance = false;
     40
     41    private $middleman_url = 'https://saasler-woocommerce-impact.herokuapp.com';
    4042
    4143    /**
     
    143145
    144146        $response = wp_remote_post(
    145             'https://saasler-woocommerce-impact.herokuapp.com/shops',
     147            $this->middleman_url . '/shops',
    146148            array(
    147149                'headers' => array(
     
    579581
    580582        $response = wp_remote_request(
    581             'https://saasler-woocommerce-impact.herokuapp.com/integration_setting',
     583            $this->middleman_url . '/integration_setting',
    582584            array(
    583585                'method'  => 'PUT',
     
    615617
    616618        wp_remote_request(
    617             'https://saasler-woocommerce-impact.herokuapp.com/uninstall',
     619            $this->middleman_url . '/uninstall',
    618620            array(
    619621                'method'  => 'DELETE',
  • impact-partnership-cloud/trunk/readme.txt

    r2631576 r2695629  
    22Tags: impact, referrals
    33Requires at least: 5.0
    4 Tested up to: 5.8
     4Tested up to: 5.9
    55Requires PHP: 7.0
    6 Stable tag: 1.0.14
     6Stable tag: 1.0.15
    77License: GPLv2 or later License
    88URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.