diff --git a/gravityview.php b/gravityview.php
index d3100ad5b..c7390165e 100644
--- a/gravityview.php
+++ b/gravityview.php
@@ -16,7 +16,7 @@
* Plugin Name: GravityView
* Plugin URI: http://gravityview.co
* Description: Create directories based on a Gravity Forms form, insert them using a shortcode, and modify how they output.
- * Version: 1.16.1
+ * Version: 1.16.2
* Author: Katz Web Services, Inc.
* Author URI: http://www.katzwebservices.com
* Text Domain: gravityview
@@ -89,7 +89,7 @@
*/
final class GravityView_Plugin {
- const version = '1.16.1';
+ const version = '1.16.2';
private static $instance;
diff --git a/includes/class-admin-welcome.php b/includes/class-admin-welcome.php
index 445e3777b..60e96d043 100644
--- a/includes/class-admin-welcome.php
+++ b/includes/class-admin-welcome.php
@@ -272,6 +272,61 @@ public function changelog_screen() {
What’s New
+ 1.16.2 on February 15
+
+
+ - Added: Support for Post Image field on the Edit Entry screen
+ - Added: Now use any Merge Tags as
[gravityview]
parameters
+ - Fixed: Support for User Registration Addon Version 3
+ - Fixed: Support for rich text editor for Post Body fields
+ - Fixed: Admin-only fields may get overwritten when fields aren't visible during entry edit by user (non-admin)
+ - Fixed: Address fields displayed hidden inputs
+ - Fixed: Merge Tag dropdown list can be too wide when field names are long
+ - Fixed: When sorting, recent entries disappeared from results
+ - Fixed: Searches that included apostrophes
 or ampersands returned no results
+ - Fixed: Zero values not set in fields while in Edit Entry
+ - Fixed: Re-calculate fields where calculation is enabled after entry is updated
+ - Fixed: Warning message when Number fields not included in custom Edit Entry configurations
+
+
+
+ Developer Notes:
+
+
+ - Reminder: GravityView will soon require PHP 5.3
+ - Added:
gravityview/widgets/container_css_class
filter to modify widget container <div>
CSS class
+
+
+ - Added
gv-widgets-{zone}
class to wrapper ({zone}
will be either header
or footer
)
+
+
+ - Fixed: Conflict with some plugins when
?action=delete
is processed in the Admin (#624, reported by dcavins)
+ - Fixed: Removed
icon
CSS class name from the table sorting icon links. Now just gv-icon
instead of icon gv-icon
.
+ - Fixed: "Clear" search link now set to
display: inline-block
instead of display: block
+ - Added:
gravityview/common/get_entry/check_entry_display
filter to disable validating whether to show entries or not against View filters
+ - Fixed:
GravityView_API::replace_variables
no longer requires $form
and $entry
arguments
+
+
+ 1.16.1 on January 21
+
+
+ - Fixed: GravityView prevented Gravity Forms translations from loading
+ - Fixed: Field Width setting was visible in Edit Entry
+ - Fixed: Don't display embedded Gravity Forms forms when editing an entry in GravityView
+
+
+
+ Developer Notes:
+
+
+ - Added:
gravityview_excerpt_more
filter. Modify the "Read more" link used when "Maximum Words" setting is enabled and the output is truncated.
+
+
+ - Removed:
excerpt_more
filter on textarea.php
- many themes use permalink values to generate links.
+
+
+
+
1.16 on January 14
diff --git a/includes/class-gravityview-merge-tags.php b/includes/class-gravityview-merge-tags.php
index e241b3ed5..d736969e4 100644
--- a/includes/class-gravityview-merge-tags.php
+++ b/includes/class-gravityview-merge-tags.php
@@ -63,6 +63,7 @@ public static function replace_variables($text, $form = array(), $entry = array(
* Make sure the required keys are set for GFCommon::replace_variables
*
* @internal Reported to GF Support on 12/3
+ * @internal Fixed in Gravity Forms
*/
$form['title'] = isset( $form['title'] ) ? $form['title'] : '';
$form['id'] = isset( $form['id'] ) ? $form['id'] : '';
diff --git a/readme.txt b/readme.txt
index 188a7fd22..bac1188bb 100644
--- a/readme.txt
+++ b/readme.txt
@@ -19,13 +19,19 @@ Beautifully display your Gravity Forms entries. Learn more on [gravityview.co](h
3. Follow the instructions
== Changelog ==
-* Added: Support for Post Image field on the Edit Entry view
+
+= 1.16.2 on February 15 =
+
+* Added: Support for Post Image field on the Edit Entry screen
* Added: Now use any Merge Tags as `[gravityview]` parameters
+* Fixed: Support for User Registration Addon Version 3
+* Fixed: Support for rich text editor for Post Body fields
* Fixed: Admin-only fields may get overwritten when fields aren't visible during entry edit by user (non-admin)
* Fixed: Address fields displayed hidden inputs
* Fixed: Merge Tag dropdown list can be too wide when field names are long
-* Fixed: When sorting recent entries disappeared from the view.
-* Fixed: Zero values not appearing in Edit Entry
+* Fixed: When sorting, recent entries disappeared from results
+* Fixed: Searches that included apostrophes
 or ampersands returned no results
+* Fixed: Zero values not set in fields while in Edit Entry
* Fixed: Re-calculate fields where calculation is enabled after entry is updated
* Fixed: Warning message when Number fields not included in custom Edit Entry configurations
* Translation updates:
@@ -35,6 +41,7 @@ Beautifully display your Gravity Forms entries. Learn more on [gravityview.co](h
__Developer Notes:__
+* Reminder: GravityView will soon require PHP 5.3
* Added: `gravityview/widgets/container_css_class` filter to modify widget container `` CSS class
- Added `gv-widgets-{zone}` class to wrapper (`{zone}` will be either `header` or `footer`)
* Fixed: Conflict with some plugins when `?action=delete` is processed in the Admin ([#624](https://github.com/gravityview/GravityView/issues/624), reported by [dcavins](https://github.com/dcavins))