Changeset 1906877
- Timestamp:
- 07/10/2018 07:52:49 AM (8 years ago)
- Location:
- stay-alive/trunk
- Files:
-
- 2 edited
-
README.txt (modified) (4 diffs)
-
stay-alive.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
stay-alive/trunk/README.txt
r1906857 r1906877 4 4 Donate link: https://profiles.wordpress.org/rajulmondal5 5 5 Tags: users, online, active, live, pusher, chat, login 6 Requires at least: 2.4. 47 Tested up to: 2.4. 48 Stable tag: 2.4. 46 Requires at least: 2.4.3 7 Tested up to: 2.4.5 8 Stable tag: 2.4.5 9 9 Requires PHP: 5.2.4 10 10 License: GPLv2 or later … … 68 68 2. Create profile if you don't have one. 69 69 3. Go to dashboard. 70 4. Create your <a href="https://dashboard.pusher.com/#wizard-modal" >Channels</a> app70 4. Create your <a href="https://dashboard.pusher.com/#wizard-modal" target="_blank">Channels</a> app 71 71 5. Go to App Key tab. 72 72 … … 75 75 = Demo Pusher credentials = 76 76 77 < table>78 < tr><td><b>app_id</b></td><td>271772</td></tr>79 < tr><td><b>key</b></td><td>de239293c1b9a0043237</td></tr>80 < tr><td><b>secret</b></td><td>5fdfbbe99495441683ac</td></tr>81 < tr><td><b>cluster</b></td><td>mt1</td></tr>82 < table>77 <ul> 78 <li><b>app_id</b>: 271772</li> 79 <li><b>key</b>: de239293c1b9a0043237</li> 80 <li><b>secret</b>: 5fdfbbe99495441683ac</li> 81 <li><b>cluster</b>: mt1</li> 82 </ul> 83 83 84 84 = Short Code = … … 101 101 == Changelog == 102 102 103 = 2.4.0 = 103 = 2.4.5 = 104 * 10-07-2018 105 * Updated readme.txt to mention pusher service used in our application 106 * added pusher demo credentials 107 * added banner 108 * added icon 109 * https://github.com/razzul/stay-alive/releases 110 111 = 2.4.1 = 104 112 * 08-07-2018 105 113 * Updated readme.txt to mention pusher service used in our application -
stay-alive/trunk/stay-alive.php
r1906857 r1906877 4 4 Plugin URI: https://github.com/razzul/stayalive 5 5 description: Stay Alive: wordpress plugin to check logged in user's status 6 Version: 2.4. 46 Version: 2.4.5 7 7 Author: razzul 8 8 Author URI: https://github.com/razzul … … 96 96 $stay_alive_trigger = !empty($options['stay_alive_trigger']) ? $options['stay_alive_trigger'] : 'test_stay_alive'; 97 97 wp_enqueue_script('pusher', '//js.pusher.com/4.1/pusher.min.js', array(), '4.1.0', true); 98 wp_register_script('stay_aliv_js', plugins_url( 'assets/js/stay-alive.js', __FILE__ ), array(), '2.4. 4', true );98 wp_register_script('stay_aliv_js', plugins_url( 'assets/js/stay-alive.js', __FILE__ ), array(), '2.4.5', true ); 99 99 wp_localize_script('stay_aliv_js', 'config', array('current_user_id' => $current_user_id, 'channel_name' => $channel_name,'event_name' => $event_name, 'credentials' => $options, 'auth_url' => site_url() .'/wp-admin/admin-ajax.php?action=stay_alive_auth')); 100 100 wp_enqueue_script('stay_aliv_js');
Note: See TracChangeset
for help on using the changeset viewer.