diff --git a/library/StaticHtmlOutput.php b/library/StaticHtmlOutput.php index 36133d7f..2fb886ad 100644 --- a/library/StaticHtmlOutput.php +++ b/library/StaticHtmlOutput.php @@ -9,7 +9,7 @@ * WP Static HTML Output Plugin */ class StaticHtmlOutput { - const VERSION = '1.2.1'; + const VERSION = '1.2.2'; const OPTIONS_KEY = 'wp-static-html-output-options'; /** diff --git a/publish_release.sh b/publish_release.sh index 81d7c9a3..64e90ff6 100755 --- a/publish_release.sh +++ b/publish_release.sh @@ -2,7 +2,7 @@ PROJECT_ROOT=$(pwd) SVN_ROOT=/home/leon/svnplugindir -NEW_TAG=1.2.1 +NEW_TAG=1.2.2 # run from project root diff --git a/readme.md b/readme.md index 6c572550..5822e624 100644 --- a/readme.md +++ b/readme.md @@ -5,7 +5,10 @@ Allows you to leverage WordPress as a great CMS, but benefit from the speed, sec ## Features - generates a standalone, static html copy of your whole WordPress website + - auto-deploy to local folder, FTP or S3 + - one site to unlimited export targets - specify extra files to include in the output (ie, dynamically loaded assets) + - desktop notifications alert you to when exports are complete - multi-language support (English/Japanese currently) ## Demo site @@ -16,7 +19,6 @@ You can [see a working example here](https://leonstafford.github.io/demo-site-wo - selectively export only changed pages since last output - deploy your static files via sFTP, SCP, Dropbox, etc - - have a one-liner provisioning script for testing/development ## Development diff --git a/readme.txt b/readme.txt index 69a6b4b1..109422c8 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i Tags: static,html,export,performance,security,portable Requires at least: 3.2 Tested up to: 4.7.3 -Stable tag: 1.2.1 +Stable tag: 1.2.2 Allows you to leverage WordPress as a great CMS, but benefit from the speed, security and portability that a static website provides. @@ -13,9 +13,10 @@ Allows you to leverage WordPress as a great CMS, but benefit from the speed, sec = Features = * generates a standalone, static html copy of your whole WordPress website + * auto-deploy to local folder, FTP or S3 + * one site to unlimited export targets * specify extra files to include in the output (ie, dynamically loaded assets) - * multiple export targets allows multilingual sites published to different folders/domains - * 1-click static site creation and publishing to an FTP server + * desktop notifications alert you to when exports are complete * multi-language support (English/Japanese currently) This plugin produces a static HTML version of your wordpress install, incredibly useful for anyone who would like the publishing power of wordpress but whose webhost doesn't allow dynamic PHP driven sites - such as Dropbox. You can run your development site on a different domain or offline, and the plugin will change all relevant URLs when you publish your site. It's a simple but powerful plugin, and after hitting the publish button, the plugin will output a ZIP file of your entire site, ready to upload straight to it's new home. @@ -83,6 +84,10 @@ See the readme. In brief: you can't use dynamic WordPress functions such as comm == Changelog == += 1.2.2 = + + * supports Amazon Web Service's S3 as an export option + = 1.2.1 = * unlimited export targets @@ -169,6 +174,10 @@ Initial release to Wordpress community == Upgrade Notice == += 1.2.2 = + + * supports Amazon Web Service's S3 as an export option + = 1.2.1 = This update brings much desired multiple export targets. Please note, it will need you to enter your settings again as the guts of the plugin changed quite a bit and a settings migration didn't make the cut. diff --git a/wp-static-html-output.php b/wp-static-html-output.php index da701696..85ad0686 100644 --- a/wp-static-html-output.php +++ b/wp-static-html-output.php @@ -3,7 +3,7 @@ Plugin Name: WP Static HTML Output Plugin URI: https://leonstafford.github.io Description: Benefit from WordPress as a CMS but with the speed, performance and portability of a static site -Version: 1.2.1 +Version: 1.2.2 Author: Leon Stafford Author URI: https://leonstafford.github.io Text Domain: static-html-output-plugin