Plugin Directory

Changeset 1712088


Ignore:
Timestamp:
08/11/2017 01:28:12 PM (9 years ago)
Author:
NerdCow
Message:

1.1.3

Location:
tweet-wheel
Files:
20 deleted
4 edited
53 copied

Legend:

Unmodified
Added
Removed
  • tweet-wheel/tags/1.1.3/assets/js/twp-templates.js

    r1356848 r1712088  
    9898        if( title !== '' && title !== twp_template_tags.TITLE ) {
    9999
    100             twp_template_tags.TITLE = title;
     100            // clean HTML iz
     101            twp_template_tags.TITLE = title.replace(/<\/?[^>]+(>|$)/g, "");
    101102            t.refreshCounters();
    102103
     
    316317        // Update global variable holding title
    317318        jQuery(document).on('keyup keydown','#title', function(e) {
    318 
    319             twp_template_tags.TITLE = jQuery(this).val();
     319           
     320            // clean from HTML
     321            twp_template_tags.TITLE = jQuery(this).val().replace(/<\/?[^>]+(>|$)/g, "");
    320322            TWPTemplates.refreshCounters();
    321323
  • tweet-wheel/tags/1.1.3/includes/helpers.php

    r1701657 r1712088  
    312312function twp_tweet_parse_title( $post_id ) {
    313313   
    314     return html_entity_decode(get_the_title($post_id),ENT_QUOTES,'UTF-8');
     314    $clean = strip_tags( get_the_title($post_id) ); // some people do have HTML in post titles so gotta get rid of it
     315   
     316    return html_entity_decode($clean,ENT_QUOTES,'UTF-8');
    315317   
    316318}
  • tweet-wheel/tags/1.1.3/readme.txt

    r1701657 r1712088  
    33Tags: automated tweeting, posting to twitter, scheduled tweeting, increasing traffic, social share, auto publish
    44Requires at least: 4.4
    5 Tested up to: 4.8
    6 Stable tag: 1.1.2
     5Tested up to: 4.8.1
     6Stable tag: 1.1.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2727* Customising the queue let's you to supervise the order in which posts are tweeted.
    2828* Looping is optional, but very useful. If on, it will automatially append just tweeted post at the end of queue. Keeps going infinitely this way.
    29 * Queue posts on their publishing. When you create a new post you can ask plugin to automatically queue it for you.
    3029* Pausing and resuming queue comes useful when you need a bit more control. No need to deactivate the plugin to put it on hold.
    3130* Convenient bulk actions - queue, dequeue and exclude multiple posts at once.
    32 * Option to tweet instantly without waiting for post's turn - perfect for hot news!
    3331* Simple view which minifies the queue look so you can fit more items on your screen - helpful for shuffling!
    3432* Health check tab that let's you know if your website is ready for Tweet Wheel and what to fix.
     33* And much more...
    3534
    3635[Online Documentation](https://nerdcow.co.uk/docs/tweet-wheel/)
     
    4039* Unlimited queues
    4140* New type of scheduling by specific date
    42 * Attach **featured images** to your tweets with one click.
    43 * Use your favorite domain for **shortening URLs** (by Bit.ly).
    44 * Tweet on post publish or update.
     41* Attach **featured images** to your tweets
     42* Use your favorite domain for **shortening URLs** (by Bit.ly)
     43* Tweet on post publish or update
    4544* E-mail notifications about occurred events
    4645* History log telling you what was happening within a queue
    4746* User role management - restrict access to the plugin by a role
    48 * Enjoy the **mobile-friendly** interface.
    49 * Fill up the queue using **filtering by date range, amount and post type**.
    50 * Plenty improvements which overally boost user experience and easy of use.
     47* Enjoy the **mobile-friendly** interface
     48* Fill up the queue using **filtering by date range, amount and post type**
     49* Plenty improvements which overally boost user experience and easy of use
    5150* **Premium support**
    5251
     
    5554[CLICK HERE TO JOIN THE AFFILIATES PROGRAMME AND EARN MONEY](http://tweet-wheel.com/affiliates/)
    5655
    57 If you have a suggestion for improvement or a new feature, feel free to use [the Support forum](http://tweet-wheel.com/support/forum/tweet-wheel/).
     56If you have a suggestion for improvement or a new feature, feel free to use [the Support forum](https://tweet-wheel.com/support/forum/tweet-wheel/).
    5857
    5958Want regular updates? Follow us on [Twitter](https://twitter.com/NerdCowUK)
     
    8887
    8988== Changelog ==
     89
     90= 1.1.3 - 11/08/2017 =
     91* Fixed - remove HTML tags from the post title
     92* Added - WP 4.8.1 compatibility
    9093
    9194= 1.1.2 - 24/07/2017 =
  • tweet-wheel/tags/1.1.3/tweet-wheel.php

    r1701657 r1712088  
    55 * Plugin URI: http://www.tweet-wheel.com
    66 * Description: A powerful tool that keeps your Twitter profile active. Even when you are busy.
    7  * Version: 1.1.2
     7 * Version: 1.1.3
    88 * Author: Tomasz Lisiecki from Nerd Cow Ltd.
    99 * Author URI: https://tweet-wheel.com
    1010 * Requires at least: 4.4
    11  * Tested up to: 4.8
     11 * Tested up to: 4.8.1
    1212 *
    1313 * @package Tweet Wheel
     
    3232     * @var string
    3333     */
    34     public $version = '1.1.2';
     34    public $version = '1.1.3';
    3535   
    3636    // ...
  • tweet-wheel/trunk/assets/js/twp-templates.js

    r1356848 r1712088  
    9898        if( title !== '' && title !== twp_template_tags.TITLE ) {
    9999
    100             twp_template_tags.TITLE = title;
     100            // clean HTML iz
     101            twp_template_tags.TITLE = title.replace(/<\/?[^>]+(>|$)/g, "");
    101102            t.refreshCounters();
    102103
     
    316317        // Update global variable holding title
    317318        jQuery(document).on('keyup keydown','#title', function(e) {
    318 
    319             twp_template_tags.TITLE = jQuery(this).val();
     319           
     320            // clean from HTML
     321            twp_template_tags.TITLE = jQuery(this).val().replace(/<\/?[^>]+(>|$)/g, "");
    320322            TWPTemplates.refreshCounters();
    321323
  • tweet-wheel/trunk/includes/helpers.php

    r1701657 r1712088  
    312312function twp_tweet_parse_title( $post_id ) {
    313313   
    314     return html_entity_decode(get_the_title($post_id),ENT_QUOTES,'UTF-8');
     314    $clean = strip_tags( get_the_title($post_id) ); // some people do have HTML in post titles so gotta get rid of it
     315   
     316    return html_entity_decode($clean,ENT_QUOTES,'UTF-8');
    315317   
    316318}
  • tweet-wheel/trunk/readme.txt

    r1701657 r1712088  
    33Tags: automated tweeting, posting to twitter, scheduled tweeting, increasing traffic, social share, auto publish
    44Requires at least: 4.4
    5 Tested up to: 4.8
    6 Stable tag: 1.1.2
     5Tested up to: 4.8.1
     6Stable tag: 1.1.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2727* Customising the queue let's you to supervise the order in which posts are tweeted.
    2828* Looping is optional, but very useful. If on, it will automatially append just tweeted post at the end of queue. Keeps going infinitely this way.
    29 * Queue posts on their publishing. When you create a new post you can ask plugin to automatically queue it for you.
    3029* Pausing and resuming queue comes useful when you need a bit more control. No need to deactivate the plugin to put it on hold.
    3130* Convenient bulk actions - queue, dequeue and exclude multiple posts at once.
    32 * Option to tweet instantly without waiting for post's turn - perfect for hot news!
    3331* Simple view which minifies the queue look so you can fit more items on your screen - helpful for shuffling!
    3432* Health check tab that let's you know if your website is ready for Tweet Wheel and what to fix.
     33* And much more...
    3534
    3635[Online Documentation](https://nerdcow.co.uk/docs/tweet-wheel/)
     
    4039* Unlimited queues
    4140* New type of scheduling by specific date
    42 * Attach **featured images** to your tweets with one click.
    43 * Use your favorite domain for **shortening URLs** (by Bit.ly).
    44 * Tweet on post publish or update.
     41* Attach **featured images** to your tweets
     42* Use your favorite domain for **shortening URLs** (by Bit.ly)
     43* Tweet on post publish or update
    4544* E-mail notifications about occurred events
    4645* History log telling you what was happening within a queue
    4746* User role management - restrict access to the plugin by a role
    48 * Enjoy the **mobile-friendly** interface.
    49 * Fill up the queue using **filtering by date range, amount and post type**.
    50 * Plenty improvements which overally boost user experience and easy of use.
     47* Enjoy the **mobile-friendly** interface
     48* Fill up the queue using **filtering by date range, amount and post type**
     49* Plenty improvements which overally boost user experience and easy of use
    5150* **Premium support**
    5251
     
    5554[CLICK HERE TO JOIN THE AFFILIATES PROGRAMME AND EARN MONEY](http://tweet-wheel.com/affiliates/)
    5655
    57 If you have a suggestion for improvement or a new feature, feel free to use [the Support forum](http://tweet-wheel.com/support/forum/tweet-wheel/).
     56If you have a suggestion for improvement or a new feature, feel free to use [the Support forum](https://tweet-wheel.com/support/forum/tweet-wheel/).
    5857
    5958Want regular updates? Follow us on [Twitter](https://twitter.com/NerdCowUK)
     
    8887
    8988== Changelog ==
     89
     90= 1.1.3 - 11/08/2017 =
     91* Fixed - remove HTML tags from the post title
     92* Added - WP 4.8.1 compatibility
    9093
    9194= 1.1.2 - 24/07/2017 =
  • tweet-wheel/trunk/tweet-wheel.php

    r1701657 r1712088  
    55 * Plugin URI: http://www.tweet-wheel.com
    66 * Description: A powerful tool that keeps your Twitter profile active. Even when you are busy.
    7  * Version: 1.1.2
     7 * Version: 1.1.3
    88 * Author: Tomasz Lisiecki from Nerd Cow Ltd.
    99 * Author URI: https://tweet-wheel.com
    1010 * Requires at least: 4.4
    11  * Tested up to: 4.8
     11 * Tested up to: 4.8.1
    1212 *
    1313 * @package Tweet Wheel
     
    3232     * @var string
    3333     */
    34     public $version = '1.1.2';
     34    public $version = '1.1.3';
    3535   
    3636    // ...
Note: See TracChangeset for help on using the changeset viewer.