diff --git a/readme.txt b/readme.txt new file mode 100644 index 0000000..6393cb0 --- /dev/null +++ b/readme.txt @@ -0,0 +1,55 @@ +=== WooCommerce Product Generator === +Contributors: itthinx +Donate link: http://www.itthinx.com/plugins/woocommerce-product-generator/ +Tags: automatic, benchmark, example, generator, performance, product, products, sample, test, tester, testing, test-tool, woocommerce +Requires at least: 4.0 +Tested up to: 4.1.1 +Stable tag: 1.0.1 +License: GPLv3 + +A sample product generator for WooCommerce. + +== Description == + +This plugin is intended to be used as a sample product generator for WooCommerce. + +It's purpose is to provide an automated way of creating even very large sets +of products, useful in providing a test environment for performance benchmarks +and use case testing. + +== Installation == + += Dashboard = + +Log in as an administrator and go to Plugins > Add New. + +Type WooCommerce Product Generator in the search field and click Search Plugins, locate the WooCommerce Product Generator plugin by itthinx and install it by clicking Install Now. +Now activate the plugin to be able to generate sample products. + += FTP = + +You can install the plugin via FTP, see [Manual Plugin Installation](http://codex.wordpress.org/Managing_Plugins#Manual_Plugin_Installation). + +== Screenshots == + +1. WooCommerce menu integration. +2. Generator settings. +3. Generator actions, single and continuous product generation runs. + +== Changelog == + += 1.0.1 = +* Tested with WordPress 4.1.1 and WooCommerce 2.3.6. +* WordPress-compliant readme.txt added. +* Added an admin section container. + += 1.0.0 = +* Initial release. + +== Upgrade Notice == + += 1.0.1 = +* Tested with latest version of WordPress and WooCommerce, also added a compliant readme.txt. + += 1.0.0 = +* Initial release. diff --git a/woocommerce-product-generator.php b/woocommerce-product-generator.php index 33e713f..10bf70a 100644 --- a/woocommerce-product-generator.php +++ b/woocommerce-product-generator.php @@ -21,14 +21,14 @@ * Plugin Name: WooCommerce Product Generator * Plugin URI: http://www.itthinx.com/ * Description: A sample product generator for WooCommerce. - * Version: 1.0.0 + * Version: 1.0.1 * Author: itthinx * Author URI: http://www.itthinx.com * Donate-Link: http://www.itthinx.com * License: GPLv3 */ -define( 'WOOPROGEN_PLUGIN_VERSION', '1.0.0' ); +define( 'WOOPROGEN_PLUGIN_VERSION', '1.0.1' ); define( 'WOOPROGEN_PLUGIN_DOMAIN', 'woocommerce-product-generator' ); define( 'WOOPROGEN_PLUGIN_URL', WP_PLUGIN_URL . '/woocommerce-product-generator' ); @@ -700,6 +700,8 @@ public static function generator() { echo __( 'Product Generator', WOOPROGEN_PLUGIN_DOMAIN ); echo ''; + echo '
'; + echo '
'; echo __( 'This produces demo products for testing purposes.', WOOPROGEN_PLUGIN_DOMAIN ); echo ' '; @@ -858,6 +860,8 @@ public static function generator() { echo '});'; // ready echo '}'; echo ''; + + echo '
'; // .product-generator-admin } }