Plugin Directory

Changeset 1422424


Ignore:
Timestamp:
05/23/2016 03:45:13 PM (10 years ago)
Author:
activehelper
Message:

4.1.0

  • Enhanced Push Notification support.
  • Enhanced mobile support.
  • Support Wordpress 4.5.x
  • Core Update.
  • Core Security update.
  • Other small improvements and bug fixes.
Location:
activehelper-livehelp/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • activehelper-livehelp/trunk/activehelper-livehelp.php

    r1365879 r1422424  
    66Plugin Name: ActiveHelper Live Help
    77Plugin URI: http://www.activehelper.com
    8 Description: Provide superior service by real time chat with your website visitors and interact them through your website. Create a more efficient connection with your website visitors, increase your sales and customer satisfaction.
    9 Version: 4.0.0
     8Description: Provide superior service by real time live chat with your website visitors and interact them through your website. Create a more efficient connection with your website visitors, increase your sales and customer satisfaction.
     9Version: 4.1.0
    1010Author: ActiveHelper Inc
    1111Author URI: http://www.activehelper.com
     
    807807                                ' . __('Version : ', 'activehelper_livehelp') . '
    808808                            </td><td class="b">
    809                                 ' . __('4.0.0', 'activehelper_livehelp') . '
     809                                ' . __('4.1.0', 'activehelper_livehelp') . '
    810810                            </td></tr></tbody></table>
    811811                            <table><tbody><tr><td class="first t">
  • activehelper-livehelp/trunk/readme.txt

    r1365879 r1422424  
    11=== ActiveHelper LiveHelp Live Chat===
    22Contributors: activehelper
    3 Tags: wordpress livechat, live chat, live help, live support, chat plugin, visitor tracking, visitor chat, phone live chat
     3Tags: wordpress livechat, wp chat, live chat, live help, live support, chat plugin, visitor tracking, visitor chat, phone live chat
    44Requires at least: 3.2
    5 Tested up to: 4.4.2
    6 Stable tag: 4.0.0
     5Tested up to: 4.5.2
     6Stable tag: 4.1.0
    77
    88Wordpress Live Chat plugin. Manage all your wordpress sites from your desktop or mobile.
     
    1010== Description ==
    1111
    12 Live Chat - Live chat plugin software. Worpress Live chat allows to engage website visitors to contact you in real-time to your computer desktop or mobile device.
    13 
    14 The ActiveHelper Live Chat Plugin is available for WordPress 3.2x, to 4.4x.
    15 
    16 WordPress Live Chat Plugin is the most affordable and scalable Live Chat. ActiveHelper Live Chat System is perfect for small and medium WordPress sites. Answer Live chats from any location, Desktop and mobile are included, Windows and Mac, IOS and Android too.
     12WordPress Live Chat Plugin - Live chat plugin software. Worpress Live chat allows to engage website visitors to contact you in real-time to your computer desktop or mobile device.
     13
     14The ActiveHelper WP Live Chat Plugin is available for WordPress 3.2x, to 4.5x.
     15
     16WordPress Chat Plugin is the most affordable and scalable Live Chat. ActiveHelper Live Chat System is perfect for small and medium WordPress sites. Answer Live chats from any location, Desktop and mobile are included, Windows and Mac, IOS and Android too.
    1717
    1818Monitor in real time your website visitors. Know how many visitors are in the website, who referred, where are from, what keywords we reused to find the website and the visitors navigation history. Know decisive information of your website visitors patterns, conversations and agents service.
     
    7777* Live chat Responsive design
    7878* Floating chat button
     79* Push notification for IOS and Android app
     80* Live Chat Server as WordPress Plugin
    7981
    8082
     
    358360* Other small improvements and bug fixes.
    359361
     362= 4.1.0 =
     363* Enhanced Push Notification support.
     364* Enhanced mobile support.
     365* Support Wordpress 4.5.x
     366* Core Update.
     367* Core Security update.
     368* Other small improvements and bug fixes.
    360369
    361370Upgrade:
     
    582591* Core Security update.
    583592* Other small improvements and bug fixes.
     593
     594= 4.1.0 =
     595* Enhanced Push Notification support.
     596* Enhanced mobile support.
     597* Support Wordpress 4.5.x
     598* Core Update.
     599* Core Security update.
     600* Other small improvements and bug fixes.
     601
  • activehelper-livehelp/trunk/server/push-notify-msg.php

    r1365879 r1422424  
    1919         
    2020         
    21         $query ="  SELECT  lu.device_id , lu.device, lm.id , lm.message ".
     21    /*  $query ="  SELECT  lu.device_id , lu.device, lm.id , lm.message ".
    2222                   " FROM " . $table_prefix . "sessions ls , " . $table_prefix . "users lu ,  " . $table_prefix . "messages lm ".
    2323                     " WHERE ls.active in(1,2) and ls.id_user =  lu.id  and ".
    2424                     " lu.device_id <> '' and ls.id = lm.session and lm.delivered = 0 and ((UNIX_TIMESTAMP(NOW()))- (UNIX_TIMESTAMP(lm.datetime)) )< 60";
     25        */           
     26           
     27        // New condition to always notify by push
     28       
     29          $query ="  SELECT  lu.device_id , lu.device, lm.id , lm.message ".
     30                   " FROM " . $table_prefix . "sessions ls , " . $table_prefix . "users lu ,  " . $table_prefix . "messages lm ".
     31                     " WHERE ls.active in(1,2) and ls.id_user =  lu.id  and ".
     32                     " lu.device_id <> '' and ls.id = lm.session and lm.delivered = 0";                 
    2533                           
    26    // error_log("SQL : " . $query ."\n" , 3 ,"push_message.log");             
     34    //error_log("SQL : " . $query ."\n" , 3 ,"push_message.log");             
    2735
    2836   $rows = $SQL->selectall($query);
     37   $msg_sound = 2;
    2938   
    3039   foreach ($rows as $key => $row)
     
    3948              {
    4049                if ($push_device=="IOS") {             
    41                      $call_URL = $push_api_path . "notify_ios.php?token=".$push_user_device. "&message=" . "$new_msg_arrives" . "$message" ;
     50                     $call_URL = $push_api_path . "notify_ios.php?token=".$push_user_device. "&message=" . "$new_msg_arrives" . "$message" . "&sound=" . "$msg_sound"  ;
    4251                     }
    4352                   else 
    4453                if ($push_device=="Android") {             
    45                      $call_URL = $push_api_path . "notify_android.php?token=".$push_user_device. "&message=" . "$new_msg_arrives" . "$message" ;
     54                     $call_URL = $push_api_path . "notify_android.php?token=".$push_user_device. "&message=" . "$new_msg_arrives" . "$message" . "&sound=" . "$msg_sound"  ;
    4655                   }
    4756                   
  • activehelper-livehelp/trunk/server/push-notify.php

    r1365879 r1422424  
    7373                           $push_user_device = $rowu['device_id']; 
    7474                           $push_device      = $rowu['device'];                       
    75 
     75                           $msg_sound = 1;
     76                           
    7677                           if ($push_device=="IOS") {
    77                              $call_URL = $push_api_path . "notify_ios.php?token=".$push_user_device. "&message="  . "$chat_request" .  "$push_username";
     78                             $call_URL = $push_api_path . "notify_ios.php?token=".$push_user_device. "&message="  . "$chat_request" .  "$push_username" . "&sound=" . "$msg_sound" ;
    7879                           } else
    7980                               
    8081                          if ($push_device=="Android") {
    81                              $call_URL = $push_api_path . "notify_android.php?token=".$push_user_device. "&message="  . "$chat_request" .  "$push_username";
     82                             $call_URL = $push_api_path . "notify_android.php?token=".$push_user_device. "&message="  . "$chat_request" .  "$push_username" . "&sound=" . "$msg_sound" ;
    8283                            }
    8384                             
  • activehelper-livehelp/trunk/sources/livehelp_agents.php

    r1365879 r1422424  
    22/**
    33 * @package ActiveHelper Live Help
    4  * @Version 3.5.0
     4 * @Version 4.1.0
    55 * @Autor ActiveHelper Inc
    66 */
     
    439439        }
    440440
     441        $now_time = current_time( 'mysql', false );
     442       
    441443        $wpdb->query("
    442444            UPDATE {$wpdb->prefix}livehelp_users
     
    448450                email = '{$_POST['agent_email']}',
    449451                department = '{$_POST['agent_department']}',
     452                datetime = '{$now_time}',
     453                refresh = '{$now_time}',               
    450454                privilege = '{$_POST['agent_privilege']}',
    451455                answers = '{$_POST['agent_answers']}',
  • activehelper-livehelp/trunk/sources/livehelp_lib-install.php

    r1365879 r1422424  
    22/**
    33 * @package ActiveHelper Live Help
    4  * @Version 4.0.0
     4 * @Version 4.1.0
    55 */
    66
     
    10511051                   
    10521052       $database_version = "4.0.0";     
     1053     }
     1054
     1055   if ($database_version == "4.0.0") {                 
     1056       $database_version = "4.1.0";     
    10531057     }
     1058
     1059     
    10541060 }
    10551061 
Note: See TracChangeset for help on using the changeset viewer.