diff --git a/changelog.txt b/changelog.txt index 0d37ada..bd015df 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,6 @@ +v1.0.7.1 (12/18/2015) +- Fixed a bug where repeater would break multipage forms. (Sorry about that!) + v1.0.7 (12/17/2015) - Fixed bug where field order was not saved when a form was submitted. - Fixed syntax error for older versions of PHP. diff --git a/readme.md b/readme.md index 1408fdc..1f869eb 100644 --- a/readme.md +++ b/readme.md @@ -169,23 +169,40 @@ Unfortunately nesting repeaters is not supported at this time. Yes! Just go to the form editor and change the `Add HTML` and `Remove HTML` settings to `Your Link Text` and they should appear as regular links on your form! ### Development + +##### Method 1 (Automatic Updates) It is possible to use the development version of this plugin in your Wordpress install and keep it updated with [Andy Fragen](https://github.com/afragen)'s [GitHub Updater](https://github.com/afragen/github-updater)! 1. Download & Install [GitHub Updater](https://github.com/afragen/github-updater). -1. Go to Settings -> GitHub Updater -1. Enable Branch Switching -1. Go to Plugins +1. Go to Settings -> GitHub Updater. +1. Enable Branch Switching. +1. Go to Plugins. 1. Select "try another branch" under Gravity Forms Repeater Add-On. 1. Select "development". and that's it! You will recieve the latest development versions of this plugin! +##### Method 2 (Manual) + +1. Deactivate & Uninstall current version of Gravity Forms Repeater Add-On. +1. Download the [latest development version](https://github.com/kodie/gravityforms-repeater/archive/development.zip). +1. Go to Plugins. +1. Select "Add New". +1. Select "Upload Plugin". +1. Select "Choose File" and find the zip file that you downloaded in step 2. +1. Select "Install Now". + +and you're good to go! + **Warning: There is a slight possibility that development versions are unstable. Use at your own risk.** ### Version -1.0.7 +1.0.7.1 ### Changelog +##### 1.0.7.1 +* Fixed a bug where repeater would break multipage forms. (Sorry about that!) + ##### 1.0.7 * Fixed bug where field order was not saved when a form was submitted. * Fixed syntax error for older versions of PHP. diff --git a/readme.txt b/readme.txt index 72b8cc6..9a8f526 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: KodieGrantham Tags: gravityforms, gravity, forms, form, gravityforms, repeater, repeat, duplicate, duplication, field, fields Requires at least: 3.9 Tested up to: 4.4 -Stable tag: 1.0.7 +Stable tag: 1.0.7.1 A Gravity Forms add-on that allows specified groups of fields to be repeated by the user. @@ -71,6 +71,9 @@ Yes! Just go to the form editor and change the `Add HTML` and `Remove HTML` sett 4. A view of the front-end. The only visible difference will be the added `+` and `-` buttons. == Changelog == += 1.0.7.1 = +* Fixed a bug where repeater would break multipage forms. (Sorry about that!) + = 1.0.7 = * Fixed bug where field order was not saved when a form was submitted. * Fixed syntax error for older versions of PHP. diff --git a/repeater.php b/repeater.php index 3448382..a5f5234 100644 --- a/repeater.php +++ b/repeater.php @@ -3,14 +3,14 @@ Plugin Name: Gravity Forms Repeater Add-On Plugin URI: https://wordpress.org/plugins/repeater-add-on-for-gravity-forms/ Description: A Gravity Forms add-on that allows specified groups of fields to be repeated by the user. -Version: 1.0.7 +Version: 1.0.7.1 Author: Kodie Grantham Author URI: http://kodieg.com GitHub Plugin URI: https://github.com/kodie/gravityforms-repeater GitHub Branch: master */ -define('GF_REPEATER_VERSION', '1.0.7'); +define('GF_REPEATER_VERSION', '1.0.7.1'); define('GF_REPEATER_PATH', basename(__DIR__).'/'.basename(__FILE__)); add_filter('plugin_row_meta', 'gfrepeater_row_meta', 10, 2);