mirror of
https://ghproxy.net/https://github.com/elementor/wp2static.git
synced 2025-08-30 19:39:43 +08:00
rel 1.2.2
This commit is contained in:
parent
a7b5cd240f
commit
d65763fb31
5 changed files with 18 additions and 7 deletions
|
@ -9,7 +9,7 @@
|
||||||
* WP Static HTML Output Plugin
|
* WP Static HTML Output Plugin
|
||||||
*/
|
*/
|
||||||
class StaticHtmlOutput {
|
class StaticHtmlOutput {
|
||||||
const VERSION = '1.2.1';
|
const VERSION = '1.2.2';
|
||||||
const OPTIONS_KEY = 'wp-static-html-output-options';
|
const OPTIONS_KEY = 'wp-static-html-output-options';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
PROJECT_ROOT=$(pwd)
|
PROJECT_ROOT=$(pwd)
|
||||||
SVN_ROOT=/home/leon/svnplugindir
|
SVN_ROOT=/home/leon/svnplugindir
|
||||||
NEW_TAG=1.2.1
|
NEW_TAG=1.2.2
|
||||||
|
|
||||||
# run from project root
|
# run from project root
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,10 @@ Allows you to leverage WordPress as a great CMS, but benefit from the speed, sec
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
- generates a standalone, static html copy of your whole WordPress website
|
- 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)
|
- 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)
|
- multi-language support (English/Japanese currently)
|
||||||
|
|
||||||
## Demo site
|
## 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
|
- selectively export only changed pages since last output
|
||||||
- deploy your static files via sFTP, SCP, Dropbox, etc
|
- deploy your static files via sFTP, SCP, Dropbox, etc
|
||||||
- have a one-liner provisioning script for testing/development
|
|
||||||
|
|
||||||
## Development
|
## Development
|
||||||
|
|
||||||
|
|
15
readme.txt
15
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
|
Tags: static,html,export,performance,security,portable
|
||||||
Requires at least: 3.2
|
Requires at least: 3.2
|
||||||
Tested up to: 4.7.3
|
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.
|
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 =
|
= Features =
|
||||||
|
|
||||||
* generates a standalone, static html copy of your whole WordPress website
|
* 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)
|
* specify extra files to include in the output (ie, dynamically loaded assets)
|
||||||
* multiple export targets allows multilingual sites published to different folders/domains
|
* desktop notifications alert you to when exports are complete
|
||||||
* 1-click static site creation and publishing to an FTP server
|
|
||||||
* multi-language support (English/Japanese currently)
|
* 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.
|
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 ==
|
== Changelog ==
|
||||||
|
|
||||||
|
= 1.2.2 =
|
||||||
|
|
||||||
|
* supports Amazon Web Service's S3 as an export option
|
||||||
|
|
||||||
= 1.2.1 =
|
= 1.2.1 =
|
||||||
|
|
||||||
* unlimited export targets
|
* unlimited export targets
|
||||||
|
@ -169,6 +174,10 @@ Initial release to Wordpress community
|
||||||
|
|
||||||
== Upgrade Notice ==
|
== Upgrade Notice ==
|
||||||
|
|
||||||
|
= 1.2.2 =
|
||||||
|
|
||||||
|
* supports Amazon Web Service's S3 as an export option
|
||||||
|
|
||||||
= 1.2.1 =
|
= 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.
|
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.
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
Plugin Name: WP Static HTML Output
|
Plugin Name: WP Static HTML Output
|
||||||
Plugin URI: https://leonstafford.github.io
|
Plugin URI: https://leonstafford.github.io
|
||||||
Description: Benefit from WordPress as a CMS but with the speed, performance and portability of a static site
|
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: Leon Stafford
|
||||||
Author URI: https://leonstafford.github.io
|
Author URI: https://leonstafford.github.io
|
||||||
Text Domain: static-html-output-plugin
|
Text Domain: static-html-output-plugin
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue