Plugin Directory

Changeset 2216797


Ignore:
Timestamp:
12/23/2019 09:17:43 AM (6 years ago)
Author:
sabbir1991
Message:

Deploy v1.1.1

Location:
wepos/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • wepos/trunk/languages/wepos.pot

    r2208388 r2216797  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: wePOS - Point Of Sale (POS) for WooCommerce 1.1.0\n"
     5"Project-Id-Version: wePOS - Point Of Sale (POS) for WooCommerce 1.1.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wepos\n"
    7 "POT-Creation-Date: 2019-12-09 09:11:32+00:00\n"
     7"POT-Creation-Date: 2019-12-23 09:13:19+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=utf-8\n"
     
    375375
    376376#: assets/js/frontend.min.js:1 assets/src/frontend/components/Home.vue:277
    377 #: lib/appsero/src/Insights.php:765
     377#: lib/appsero/src/Insights.php:764
    378378msgid "Cancel"
    379379msgstr ""
     
    705705msgstr ""
    706706
    707 #: lib/appsero/src/Insights.php:380
     707#: lib/appsero/src/Insights.php:381
    708708msgid "Allow"
    709709msgstr ""
    710710
    711 #: lib/appsero/src/Insights.php:381
     711#: lib/appsero/src/Insights.php:382
    712712msgid "No thanks"
    713713msgstr ""
    714714
    715 #: lib/appsero/src/Insights.php:749
     715#: lib/appsero/src/Insights.php:747
    716716msgid "If you have a moment, please let us know why you are deactivating:"
    717717msgstr ""
    718718
     719#: lib/appsero/src/Insights.php:762
     720msgid "I rather wouldn't say"
     721msgstr ""
     722
    719723#: lib/appsero/src/Insights.php:763
    720 msgid "I rather wouldn't say"
    721 msgstr ""
    722 
    723 #: lib/appsero/src/Insights.php:764
    724724msgid "Submit & Deactivate"
    725725msgstr ""
  • wepos/trunk/lib/appsero/src/Client.php

    r2208388 r2216797  
    1414     * @var string
    1515     */
    16     public $version = '1.1.7';
     16    public $version = '1.1.9';
    1717
    1818    /**
     
    6767     */
    6868    public $type;
     69
     70    /**
     71     * textdomain
     72     *
     73     * @var string
     74     */
     75    public $textdomain;
    6976
    7077    /**
     
    155162            $this->project_version = $plugin_data['Version'];
    156163            $this->type = 'plugin';
     164            $this->textdomain = $this->slug;
    157165
    158166        } else {
  • wepos/trunk/lib/appsero/src/Insights.php

    r2208388 r2216797  
    277277     * @return bool
    278278     */
    279     private function tracking_allowed() {
     279    public function tracking_allowed() {
    280280        $allow_tracking = get_option( $this->client->slug . '_allow_tracking', 'no' );
    281281
     
    298298     */
    299299    private function notice_dismissed() {
    300         $hide_notice = get_option( $this->client->slug . '_tracking_notice', 'no' );
     300        $hide_notice = get_option( $this->client->slug . '_tracking_notice', null );
    301301
    302302        if ( 'hide' == $hide_notice ) {
     
    367367
    368368            if ( empty( $this->notice ) ) {
    369                 $notice = sprintf( __( 'Want to help make <strong>%1$s</strong> even more awesome? Allow %1$s to collect non-sensitive diagnostic data and usage information.', 'textdomain' ), $this->client->name );
     369                $notice = sprintf( __( 'Want to help make <strong>%1$s</strong> even more awesome? Allow %1$s to collect non-sensitive diagnostic data and usage information.', $this->client->textdomain ), $this->client->name );
    370370            } else {
    371371                $notice = $this->notice;
    372372            }
    373373
    374             $notice .= ' (<a class="' . $this->client->slug . '-insights-data-we-collect" href="#">' . __( 'what we collect', 'textdomain' ) . '</a>)';
    375             $notice .= '<p class="description" style="display:none;">' . implode( ', ', $this->data_we_collect() ) . '. No sensitive data is tracked.</p>';
     374            $notice .= ' (<a class="' . $this->client->slug . '-insights-data-we-collect" href="#">' . __( 'what we collect', $this->client->textdomain ) . '</a>)';
     375            $notice .= '<p class="description" style="display:none;">' . implode( ', ', $this->data_we_collect() ) . '. No sensitive data is tracked. ';
     376            $notice .= 'We are using Appsero to collect your data. <a href="https://appsero.com/privacy-policy/">Learn more</a> about how Appsero collects and handle your data.</p>';
    376377
    377378            echo '<div class="updated"><p>';
    378379                echo $notice;
    379380                echo '</p><p class="submit">';
    380                 echo '&nbsp;<a href="' . esc_url( $optin_url ) . '" class="button-primary button-large">' . __( 'Allow', 'textdomain' ) . '</a>';
    381                 echo '&nbsp;<a href="' . esc_url( $optout_url ) . '" class="button-secondary button-large">' . __( 'No thanks', 'textdomain' ) . '</a>';
     381                echo '&nbsp;<a href="' . esc_url( $optin_url ) . '" class="button-primary button-large">' . __( 'Allow', $this->client->textdomain ) . '</a>';
     382                echo '&nbsp;<a href="' . esc_url( $optout_url ) . '" class="button-secondary button-large">' . __( 'No thanks', $this->client->textdomain ) . '</a>';
    382383            echo '</p></div>';
    383384
     
    386387                    jQuery(this).parents('.updated').find('p.description').slideToggle('fast');
    387388                });
    388                 jQuery.getJSON('https://api.ipify.org?format=jsonp&callback=?', function(json) {
    389                     json.ip;
    390                 } );
    391389                </script>
    392390            ";
     
    747745            <div class="wd-dr-modal-wrap">
    748746                <div class="wd-dr-modal-header">
    749                     <h3><?php _e( 'If you have a moment, please let us know why you are deactivating:', 'domain' ); ?></h3>
     747                    <h3><?php _e( 'If you have a moment, please let us know why you are deactivating:', $this->client->textdomain ); ?></h3>
    750748                </div>
    751749
     
    758756                        <?php } ?>
    759757                    </ul>
     758                    <p class="wd-dr-modal-reasons-bottom">We share your data with <a href="https://appsero.com/">Appsero</a> to troubleshoot problems &amp; make product improvements. <a href="https://appsero.com/privacy-policy/">Learn more</a> about how Appsero handles your data.</p>
    760759                </div>
    761760
    762761                <div class="wd-dr-modal-footer">
    763                     <a href="#" class="dont-bother-me"><?php _e( 'I rather wouldn\'t say', 'domain' ); ?></a>
    764                     <button class="button-secondary"><?php _e( 'Submit & Deactivate', 'domain' ); ?></button>
    765                     <button class="button-primary"><?php _e( 'Cancel', 'domain' ); ?></button>
     762                    <a href="#" class="dont-bother-me"><?php _e( 'I rather wouldn\'t say', $this->client->textdomain ); ?></a>
     763                    <button class="button-secondary"><?php _e( 'Submit & Deactivate', $this->client->textdomain ); ?></button>
     764                    <button class="button-primary"><?php _e( 'Cancel', $this->client->textdomain ); ?></button>
    766765                </div>
    767766            </div>
     
    813812                padding: 12px 20px;
    814813                text-align: right;
     814            }
     815            .wd-dr-modal-reasons-bottom {
     816                margin: 15px 0 0 0;
    815817            }
    816818        </style>
  • wepos/trunk/readme.txt

    r2208388 r2216797  
    44Tags: WooCommerce POS, point of sale, free pos, pos plugin, woocommerce point of sale
    55Requires at least: 4.4
    6 Tested up to: 5.3.0
     6Tested up to: 5.3.2
    77WC requires at least: 3.0
    88WC tested up to: 3.8.1
     
    2727= Shortcut / Hotkey Support =
    2828wePOS has shortcut key support that lets you use its features faster. This is very important for any physical store so that the sales executive can read the Barcodes and process the orders with pace.
     29
     30= Privacy Policy =
     31wePOS uses [Appsero](https://appsero.com) SDK to collect some telemetry data upon user's confirmation. This helps us to troubleshoot problems faster & make product improvements.
     32
     33Appsero SDK **does not gather any data by default.** The SDK only starts gathering basic telemetry data **when a user allows it via the admin notice**. We collect the data to ensure great user experience for all our users.
     34
     35Integrating Appsero SDK **DOES NOT IMMEDIATELY** start gathering data, **without confirmation from users in any case.**
    2936
    3037= Contribute =
     
    5360
    5461== Changelog ==
     62
     63= v1.1.1 -> 23 December, 2019 =
     64----------------------------
     65- **Tweak**  Appser client updated
    5566
    5667= v1.1.0 -> 09 December, 2019 =
  • wepos/trunk/wepos.php

    r2208388 r2216797  
    44Plugin URI: https://wedevs.com/wepos
    55Description: A beautiful and fast Point of Sale (POS) system for WooCommerce
    6 Version: 1.1.0
     6Version: 1.1.1
    77Author: weDevs
    88Author URI: https://wedevs.com/
     
    5656     * @var string
    5757     */
    58     public $version = '1.1.0';
     58    public $version = '1.1.1';
    5959
    6060    /**
Note: See TracChangeset for help on using the changeset viewer.