Skip to content

Commit

Permalink
Version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
joedolson committed Dec 30, 2023
1 parent 463cf19 commit c8c24e9
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 18 deletions.
6 changes: 3 additions & 3 deletions init.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@
*
* @package XPoster
* @author Joe Dolson
* @copyright 2008-2023 Joe Dolson
* @copyright 2008-2024 Joe Dolson
* @license GPL-2.0+
*
* @wordpress-plugin
* Plugin Name: XPoster
* Plugin URI: http://www.xposterpro.com
* Description: Posts a Tweet when you update your WordPress blog or post a link, using your URL shortener. Many options to customize and promote your Tweets.
* Description: Posts a status update when you update your WordPress blog or post a link, using your URL shortener. Many options to customize and promote your updates.
* Author: Joseph C Dolson
* Author URI: http://www.joedolson.com
* Text Domain: wp-to-twitter
* License: GPL-2.0+
* License URI: http://www.gnu.org/license/gpl-2.0.txt
* Domain Path: lang
* Version: 4.1.2
* Version: 4.2.0-alpha
*/

/*
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Automatically send your posts as Tweets.
* Tags: accessibility, WordPress
* Requires at least: 6.0
* Tested up to: 6.4
* Stable tag: `4.1.2`
* Stable tag: `4.2.0-alpha`
* License: GPLv2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down
32 changes: 20 additions & 12 deletions src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,40 +7,44 @@ Tested up to: 6.4
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: wp-to-twitter
Stable tag: 4.1.2
Stable tag: 4.2.0-alpha

Posts to X when you update your WordPress blog or add a link, with your chosen URL shortening service.

== Description ==

= Post Tweets from WordPress to X.com. =
= Post Updates from WordPress to X.com and Mastodon. =

*New in version 4.2: Mastodon support.*

XPoster, formerly known as WP to Twitter, is a time-saving tool for keeping your X.com accounts up to date with news and posts from your site.

XPoster uses a customizable Tweet template for Tweets sent when updating or editing posts and pages or custom post types. You can customize your Tweet for each post, using custom template tags to generate the Tweet.
XPoster uses customizable status templates for updates sent when updating or editing posts, pages, or custom post types. You can customize your messages for each post, using custom template tags to generate the status update.

= Free Features =

* Use post tags as X.com hashtags
* Support for X.com and Mastodon.
* Use post tags as hashtags
* Use alternate URLs in place of post permalinks
* Support for Google Analytics
* Support for XMLRPC remote clients
* Use [YOURLS](https://yourls.org), [Bit.ly](https://wordpress.org/plugins/codehaveli-bitly-url-shortener/), [jotURL](https://joturl.com), or [Hum](https://wordpress.org/plugins/hum/) as external URL shorteners.
* Rate limiting: make sure you don't exceed X.com's API rate limits.

= Premium Features in [XPoster Pro](https://xposterpro.com) =
* Authors can set up their own X.com accounts in their profiles
* Time delayed Tweeting
* Scheduled Tweet management
* Simultaneously Tweet to site and author X.com accounts
* Preview and Tweet comments
* Filter Tweets by taxonomy (categories, tags, or custom taxonomies)

* Authors can set up their own accounts in their profiles
* Time delayed status updates
* Scheduled update management
* Simultaneously post updates to site and author accounts
* Preview and send status updates for comments
* Filter updates by taxonomy (categories, tags, or custom taxonomies)
* Upload images to X.com with alt attributes
* Integrated X.com Card support
* Support for Player Cards with integrated captions
* Automatically schedule Tweets of old posts
* Automatically schedule updates from old posts

Want to stay up to date on XPoster? [Follow me on X.com!](https://twitter.com/joedolson)
Want to stay up to date on XPoster? [Follow me on X.com!](https://twitter.com/joedolson) or [Follow me on Mastodon!](https://toot.io/@joedolson)

= Translations =

Expand All @@ -54,6 +58,10 @@ Check out my <a href="https://github.com/joedolson/plugin-extensions/tree/master

== Changelog ==

= 4.2.0

* Add support for posting to Mastodon instances.

= 4.1.2 =

* Bug fix: Checkbox marked as checked in plugin settings if parent array exists.
Expand Down
4 changes: 2 additions & 2 deletions src/wp-to-twitter.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* License: GPL-2.0+
* License URI: http://www.gnu.org/license/gpl-2.0.txt
* Domain Path: lang
* Version: 4.1.2
* Version: 4.2.0-alpha
*/

/*
Expand Down Expand Up @@ -69,7 +69,7 @@
require_once( plugin_dir_path( __FILE__ ) . 'wpt-rate-limiting.php' );

global $wpt_version;
$wpt_version = '4.1.2';
$wpt_version = '4.2.0-alpha';

add_action( 'init', 'wpt_load_textdomain' );
/**
Expand Down

0 comments on commit c8c24e9

Please sign in to comment.