Changeset 1903492
- Timestamp:
- 07/03/2018 04:33:40 PM (8 years ago)
- Location:
- aklamator-twitch-classic
- Files:
-
- 5 added
- 10 edited
- 1 copied
-
assets/banner-1544x500.png (added)
-
assets/banner-772x250.png (added)
-
assets/icon-128x128.png (added)
-
assets/icon-256x256.png (added)
-
assets/icon-300x300.png (added)
-
tags/1.1 (copied) (copied from aklamator-twitch-classic/trunk)
-
tags/1.1/aklamator-twitch.php (modified) (1 diff)
-
tags/1.1/images/logo.png (modified) (previous)
-
tags/1.1/includes/class-aklamatorTwitch-pr.php (modified) (4 diffs)
-
tags/1.1/readme.txt (modified) (4 diffs)
-
tags/1.1/views/admin-page.php (modified) (1 diff)
-
trunk/aklamator-twitch.php (modified) (1 diff)
-
trunk/images/logo.png (modified) (previous)
-
trunk/includes/class-aklamatorTwitch-pr.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (4 diffs)
-
trunk/views/admin-page.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
aklamator-twitch-classic/tags/1.1/aklamator-twitch.php
r1901278 r1903492 4 4 Plugin URI: https://www.aklamator.com/wordpress 5 5 Description: Aklamator Twitch Classic service enables you to sell PR announcements, cross promote web sites using RSS feed and provide new services to your clients in digital advertising. 6 Version:1. 06 Version:1.1 7 7 Author: Aklamator 8 8 Author URI: https://www.aklamator.com/ -
aklamator-twitch-classic/tags/1.1/includes/class-aklamatorTwitch-pr.php
r1901278 r1903492 59 59 register_setting('aklamatorTwitch-options', 'aklamatorTwitchApplicationID'); 60 60 register_setting('aklamatorTwitch-options', 'aklamatorTwitchChannelName'); 61 register_setting('aklamatorTwitch-options', 'aklamatorTwitchGameName'); 61 62 register_setting('aklamatorTwitch-options', 'aklamatorTwitchPoweredBy'); 62 63 register_setting('aklamatorTwitch-options', 'aklamatorTwitchSingleWidgetID'); … … 79 80 add_option('aklamatorTwitchApplicationID', ''); 80 81 add_option('aklamatorTwitchChannelName', ''); 82 add_option('aklamatorTwitchGameName', ''); 81 83 add_option('aklamatorTwitchPoweredBy', ''); 82 84 add_option('aklamatorTwitchSingleWidgetID', ''); … … 93 95 delete_option('aklamatorTwitchApplicationID'); 94 96 delete_option('aklamatorTwitchChannelName'); 97 delete_option('aklamatorTwitchGameName'); 95 98 delete_option('aklamatorTwitchPoweredBy'); 96 99 delete_option('aklamatorTwitchSingleWidgetID'); … … 295 298 $p['AklamatorApplicationID'] = get_option('aklamatorTwitchApplicationID'); 296 299 $p['aklamatorTwitchChannelName'] = get_option("aklamatorTwitchChannelName"); 300 $p['aklamatorTwitchGameName'] = get_option("aklamatorTwitchGameName"); 297 301 298 302 $data = wp_remote_post( $service, array( -
aklamator-twitch-classic/tags/1.1/readme.txt
r1901278 r1903492 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.9.6 7 Stable tag: 1. 07 Stable tag: 1.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 13 13 == Description == 14 14 15 **How to choose what product informationto show on your widget?**15 **How to choose what twitch videos to show on your widget?** 16 16 17 In plugin configuration, choose if you want to show product review score, old price, and new price. Only product title and image is necessary to show. 18 Install plugin, create account and paste Application ID. Aklamator will find newest products and automatically populate the widgets. 17 Just enter twitch username or game name (delete username leave only gamename). Only that videos will be shown in your widget. 18 Install plugin, create account and paste Application ID. Aklamator will find newest videos and automatically populate the widgets. 19 20 If you want to show live streams from twitch, try our [Twitch Video Float plugin](https://wordpress.org/plugins/aklamator-twitch-videofloat/) 19 21 20 22 **What is Aklamator ?** … … 53 55 Login to your wordpress dashboard as administrator, go to Plugins> Add New and type "Aklamator Twitch", click install! 54 56 or manually : 55 * [get plugin](https://wordpress.org/plugins/aklamator-twitch- promotion/) and57 * [get plugin](https://wordpress.org/plugins/aklamator-twitch-classic/) and 56 58 * Upload and unzip plugin to the `/wp-content/plugins/` directory 57 59 * Activate the Aklamator Twitch wordpress plugin through the 'Plugins' menu in WordPress … … 121 123 == Changelog == 122 124 123 = 1.0.0 = 125 = 1.1 = 126 * Added option to choose twitch by game name (username was already available) 127 = 1.0 = 124 128 * First version of Aklamator Twitch plugin, tested up to 4.9.6 (newest wp version) -
aklamator-twitch-classic/tags/1.1/views/admin-page.php
r1901278 r1903492 64 64 </p> 65 65 <h3>Twich username</h3> 66 <p >66 <p style="margin: 5px 0"> 67 67 <input type="text" style="width: 400px" name="aklamatorTwitchChannelName" 68 68 id="aklamatorTwitchChannelName" value="<?php 69 69 echo(get_option("aklamatorTwitchChannelName")); 70 ?>" maxlength="999" /> 71 72 </p> 73 <p style="margin: 5px 0">or</p> 74 <h3 style="margin: 5px 0">Game name</h3> 75 <p style="margin: 5px 0"> 76 <input type="text" style="width: 400px" name="aklamatorTwitchGameName" 77 id="aklamatorTwitchGameName" value="<?php 78 echo(get_option("aklamatorTwitchGameName")); 70 79 ?>" maxlength="999" /> 71 80 -
aklamator-twitch-classic/trunk/aklamator-twitch.php
r1901278 r1903492 4 4 Plugin URI: https://www.aklamator.com/wordpress 5 5 Description: Aklamator Twitch Classic service enables you to sell PR announcements, cross promote web sites using RSS feed and provide new services to your clients in digital advertising. 6 Version:1. 06 Version:1.1 7 7 Author: Aklamator 8 8 Author URI: https://www.aklamator.com/ -
aklamator-twitch-classic/trunk/includes/class-aklamatorTwitch-pr.php
r1901278 r1903492 59 59 register_setting('aklamatorTwitch-options', 'aklamatorTwitchApplicationID'); 60 60 register_setting('aklamatorTwitch-options', 'aklamatorTwitchChannelName'); 61 register_setting('aklamatorTwitch-options', 'aklamatorTwitchGameName'); 61 62 register_setting('aklamatorTwitch-options', 'aklamatorTwitchPoweredBy'); 62 63 register_setting('aklamatorTwitch-options', 'aklamatorTwitchSingleWidgetID'); … … 79 80 add_option('aklamatorTwitchApplicationID', ''); 80 81 add_option('aklamatorTwitchChannelName', ''); 82 add_option('aklamatorTwitchGameName', ''); 81 83 add_option('aklamatorTwitchPoweredBy', ''); 82 84 add_option('aklamatorTwitchSingleWidgetID', ''); … … 93 95 delete_option('aklamatorTwitchApplicationID'); 94 96 delete_option('aklamatorTwitchChannelName'); 97 delete_option('aklamatorTwitchGameName'); 95 98 delete_option('aklamatorTwitchPoweredBy'); 96 99 delete_option('aklamatorTwitchSingleWidgetID'); … … 295 298 $p['AklamatorApplicationID'] = get_option('aklamatorTwitchApplicationID'); 296 299 $p['aklamatorTwitchChannelName'] = get_option("aklamatorTwitchChannelName"); 300 $p['aklamatorTwitchGameName'] = get_option("aklamatorTwitchGameName"); 297 301 298 302 $data = wp_remote_post( $service, array( -
aklamator-twitch-classic/trunk/readme.txt
r1901278 r1903492 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.9.6 7 Stable tag: 1. 07 Stable tag: 1.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 13 13 == Description == 14 14 15 **How to choose what product informationto show on your widget?**15 **How to choose what twitch videos to show on your widget?** 16 16 17 In plugin configuration, choose if you want to show product review score, old price, and new price. Only product title and image is necessary to show. 18 Install plugin, create account and paste Application ID. Aklamator will find newest products and automatically populate the widgets. 17 Just enter twitch username or game name (delete username leave only gamename). Only that videos will be shown in your widget. 18 Install plugin, create account and paste Application ID. Aklamator will find newest videos and automatically populate the widgets. 19 20 If you want to show live streams from twitch, try our [Twitch Video Float plugin](https://wordpress.org/plugins/aklamator-twitch-videofloat/) 19 21 20 22 **What is Aklamator ?** … … 53 55 Login to your wordpress dashboard as administrator, go to Plugins> Add New and type "Aklamator Twitch", click install! 54 56 or manually : 55 * [get plugin](https://wordpress.org/plugins/aklamator-twitch- promotion/) and57 * [get plugin](https://wordpress.org/plugins/aklamator-twitch-classic/) and 56 58 * Upload and unzip plugin to the `/wp-content/plugins/` directory 57 59 * Activate the Aklamator Twitch wordpress plugin through the 'Plugins' menu in WordPress … … 121 123 == Changelog == 122 124 123 = 1.0.0 = 125 = 1.1 = 126 * Added option to choose twitch by game name (username was already available) 127 = 1.0 = 124 128 * First version of Aklamator Twitch plugin, tested up to 4.9.6 (newest wp version) -
aklamator-twitch-classic/trunk/views/admin-page.php
r1901278 r1903492 64 64 </p> 65 65 <h3>Twich username</h3> 66 <p >66 <p style="margin: 5px 0"> 67 67 <input type="text" style="width: 400px" name="aklamatorTwitchChannelName" 68 68 id="aklamatorTwitchChannelName" value="<?php 69 69 echo(get_option("aklamatorTwitchChannelName")); 70 ?>" maxlength="999" /> 71 72 </p> 73 <p style="margin: 5px 0">or</p> 74 <h3 style="margin: 5px 0">Game name</h3> 75 <p style="margin: 5px 0"> 76 <input type="text" style="width: 400px" name="aklamatorTwitchGameName" 77 id="aklamatorTwitchGameName" value="<?php 78 echo(get_option("aklamatorTwitchGameName")); 70 79 ?>" maxlength="999" /> 71 80
Note: See TracChangeset
for help on using the changeset viewer.