Version Description
N/A
Download this release
Release Info
Developer | yoffegil |
Plugin | Poll, Survey, Quiz, Slideshow, Form, Story & Landing Page |
Version | 1.2.0 |
Comparing to | |
See all releases |
Code changes from version 1.1.0 to 1.2.0
- opinionstage-functions.php +1 -2
- opinionstage-polls.php +2 -2
- readme.txt +4 -0
opinionstage-functions.php
CHANGED
@@ -55,8 +55,7 @@ function opinionstage_create_embed_code($id) {
|
|
55 |
* @return array - raw_data and a success flag
|
56 |
*/
|
57 |
function opinionstage_get_contents($url) {
|
58 |
-
$response = wp_remote_get($url, array('header' => array('Accept' => 'application/json; charset=utf-8')
|
59 |
-
'timeout' => 10));
|
60 |
|
61 |
return opinionstage_parse_response($response);
|
62 |
}
|
55 |
* @return array - raw_data and a success flag
|
56 |
*/
|
57 |
function opinionstage_get_contents($url) {
|
58 |
+
$response = wp_remote_get($url, array('header' => array('Accept' => 'application/json; charset=utf-8')));
|
|
|
59 |
|
60 |
return opinionstage_parse_response($response);
|
61 |
}
|
opinionstage-polls.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Social Polls by OpinionStage
|
4 |
Plugin URI: http://www.opinionstage.com
|
5 |
Description: Adds a highly engaging social polling system to your blog. You can easily add a social poll to your blog post/page by clicking the social poll icon in the WordPress post/page text editor.
|
6 |
-
Version: 1.
|
7 |
Author: OpinionStage.com
|
8 |
Author URI: http://www.opinionstage.com
|
9 |
*/
|
@@ -11,7 +11,7 @@ Author URI: http://www.opinionstage.com
|
|
11 |
/* --- Static initializer for Wordpress hooks --- */
|
12 |
|
13 |
define('OPINIONSTAGE_SERVER_BASE', "www.opinionstage.com"); /* Don't include the protocol, added dynamically */
|
14 |
-
define('OPINIONSTAGE_WIDGET_VERSION', '1.
|
15 |
define('OPINIONSTAGE_WIDGET_PLUGIN_NAME', 'Social Polls by OpinionStage');
|
16 |
define('OPINIONSTAGE_WIDGET_API_KEY', 'wp-v-poll');
|
17 |
define('OPINIONSTAGE_WIDGET_SHORTCODE', 'socialpoll');
|
3 |
Plugin Name: Social Polls by OpinionStage
|
4 |
Plugin URI: http://www.opinionstage.com
|
5 |
Description: Adds a highly engaging social polling system to your blog. You can easily add a social poll to your blog post/page by clicking the social poll icon in the WordPress post/page text editor.
|
6 |
+
Version: 1.2.0
|
7 |
Author: OpinionStage.com
|
8 |
Author URI: http://www.opinionstage.com
|
9 |
*/
|
11 |
/* --- Static initializer for Wordpress hooks --- */
|
12 |
|
13 |
define('OPINIONSTAGE_SERVER_BASE', "www.opinionstage.com"); /* Don't include the protocol, added dynamically */
|
14 |
+
define('OPINIONSTAGE_WIDGET_VERSION', '1.2.0');
|
15 |
define('OPINIONSTAGE_WIDGET_PLUGIN_NAME', 'Social Polls by OpinionStage');
|
16 |
define('OPINIONSTAGE_WIDGET_API_KEY', 'wp-v-poll');
|
17 |
define('OPINIONSTAGE_WIDGET_SHORTCODE', 'socialpoll');
|
readme.txt
CHANGED
@@ -102,6 +102,10 @@ Yes, just post the following syntax into any post/page: [socialpoll ID="xyz"], w
|
|
102 |
N/A
|
103 |
|
104 |
== Changelog ==
|
|
|
|
|
|
|
|
|
105 |
= Version 1.1.0 (2 Oct 2012) =
|
106 |
* Added an optional gender filter to the poll, so that poll results can be viewed by gender
|
107 |
* Added a central dashboard for managing all polls
|
102 |
N/A
|
103 |
|
104 |
== Changelog ==
|
105 |
+
= Version 1.2.0 (25 Nov 2012) =
|
106 |
+
* Poll width can now be set, supported poll widths are 400-620 pxl
|
107 |
+
* Poll widget performance optimizations for high traffic polling deployments
|
108 |
+
* Support customized color themes for the polls
|
109 |
= Version 1.1.0 (2 Oct 2012) =
|
110 |
* Added an optional gender filter to the poll, so that poll results can be viewed by gender
|
111 |
* Added a central dashboard for managing all polls
|