Plugin Directory

Changeset 1368257


Ignore:
Timestamp:
03/10/2016 12:26:24 PM (10 years ago)
Author:
perenoel
Message:

Update description and bump version to 0.4

Location:
talkus/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • talkus/trunk/readme.txt

    r1343867 r1368257  
    1 === Talkus for WordPress ===
     1=== Your help desk. In Slack. ===
    22Contributors: perenoel, acemtp
    33Tags: livechat, talkus, support, plugin, widget, customer support, slack
    4 Stable tag: 0.3
     4Stable tag: 0.4
    55Requires at least: 4.2
    66Tested up to: 4.2.2
     
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
    99
    10 Chat with your website users from Slack.
     10With Talkus, Slack becomes the place for your team to communicate with customers, personally, on your website by live chat or by email, phone or SMS.
    1111
    1212== Description ==
    1313
    14 Talkus is the most powerful chat widget entirely based on Slack. Increase visitor conversion, user retention, engagement and create happy customers in a snap.
     14Talkus is the most powerful help desk entirely based on Slack. Increase visitor conversion, user retention, engagement and create happy customers in a snap.
    1515
    1616Your users see a beautiful chat window on your website: all their chat messages are piled in your Talkus channel in your own Slack. With simple Slack commands, you can assign them to your team, take screenshots for your users and invite your expert teammates to the discussion, in addition to all the cool Slack features (auto-completion, emojis, etc). Talkus also automatically performs a user satisfaction survey when you close tickets and remembers all you need to know about your customers.
    1717
    18 You don't need another complicated and expensive app to chat with your online customers: install, customize the look and display of Talkus and invite teammates in a few seconds, and start making your users happy.
     18You don't need another complicated and expensive app to help your online customers: install, customize the look and display of Talkus and invite teammates in a few seconds, and start making your users happy.
    1919
    2020For more details, visit https://talkus.io and talk to us!
     
    2222== Installation ==
    2323These instructions assume you have already signed up for Talkus and have gone through the setup here https://app.talkus.io/
    24 You will find in screenshot image to help you to find your application ID.
     24You will find in screenshot image to help you to find your Application Id.
    2525
    26 1. Download the zip 
     261. Download the zip
    27272. Install the plugin through the 'Plugins > Add New' menu in WordPress and click on 'upload plugin'
    28283. Click on choose file, select the zip you download in step 1 and click on 'install Now'
    29294. Activate the plugin through the 'Plugins' menu in WordPress
    30 5. Add your application ID through the 'Tools > Talkus' menu in WordPress (Your application ID can be found on https://app.talkus.io)
     305. Add your Application Id through the 'Tools > Talkus' menu in WordPress (Your Application Id can be found on https://app.talkus.io)
    3131
    3232== Screenshots ==
    33 1. Talkus settings page - find your application ID
    34 2. Talkus WordPress settings - setup with your application ID
     331. Talkus settings page - find your Application Id
     342. Talkus WordPress settings - setup with your Application Id
    35353. Example of Talkus discussion
    3636
    3737== Changelog ==
     38
     39= 0.4 =
     40Update description of the product
    3841
    3942= 0.3 =
  • talkus/trunk/talkus.php

    r1342935 r1368257  
    22
    33/**
    4  *  Plugin Name: Talkus
     4 *  Plugin Name: Talkus. Your help desk. In Slack.
    55 *  Plugin URI: https://github.com/peernohell/wp-talkus
    6  *  Description: Chat with your website users from Slack
    7  *  Version: 0.3
    8  *  Author: Francois Lecroart / talkus
     6 *  Description: With Talkus, Slack becomes the place for your team to communicate with customers, personally, on your website by live chat or by email, phone or SMS.
     7 *  Version: 0.4
     8 *  Author: Francois Lecroart / Talkus
    99 **/
    1010
     
    1414    exit;
    1515}
    16 
    17 if ( is_admin() ) {
    18 
    19     if ( file_exists( plugin_dir_path( __FILE__ ) . '/github-updater.php' ) ) {
    20 
    21         include_once( plugin_dir_path( __FILE__ ) . '/github-updater.php' );
    22 
    23         if ( class_exists( 'WP_GitHub_Updater' ) ) {
    24 
    25             new WP_GitHub_Updater( array(
    26                 'slug' => plugin_basename(__FILE__),
    27                 'proper_folder_name' => 'wp-talkus',
    28                 'api_url' => 'https://api.github.com/repos/peernohell/wp-talkus',
    29                 'raw_url' => 'https://raw.github.com/peernohell/wp-talkus/master',
    30                 'github_url' => 'https://github.com/peernohell/wp-talkus',
    31                 'zip_url' => 'https://github.com/peernohell/wp-talkus/archive/master.zip',
    32                 'sslverify' => true,
    33                 'requires' => '4.2',
    34                 'tested' => '4.2.2',
    35                 'readme' => 'version.md', // where the current version is stored. must be updated when a new release is tagged
    36                 'access_token' => '',
    37             ) );
    38 
    39         } else {
    40 
    41             error_log( 'TALKUS ERROR: The "WP_GitHub_Updater" class could not be loaded. Auto updates are not working...' );
    42 
    43         }
    44 
    45     } else {
    46 
    47         error_log( 'TAlKUS ERROR: The "github-updater.php" file could not be loaded. Auto updates are not working...' );
    48 
    49     }
    50 
    51 }
    52 
    53 
    5416
    5517class Talkus {
Note: See TracChangeset for help on using the changeset viewer.