Skip to content

Commit

Permalink
Version bump!
Browse files Browse the repository at this point in the history
  • Loading branch information
zackkatz committed Feb 15, 2016
1 parent 4ae04a9 commit 2f7cb53
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 5 deletions.
4 changes: 2 additions & 2 deletions gravityview.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -89,7 +89,7 @@
*/
final class GravityView_Plugin {

const version = '1.16.1';
const version = '1.16.2';

private static $instance;

Expand Down
55 changes: 55 additions & 0 deletions includes/class-admin-welcome.php
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,61 @@ public function changelog_screen() {
<h2 style="border-bottom: 1px solid #ccc; padding-bottom: 1em; margin-bottom: 0;">What&rsquo;s New</h2>
</div>

<h3>1.16.2 on February 15</h3>

<ul>
<li>Added: Support for Post Image field on the Edit Entry screen</li>
<li>Added: Now use any Merge Tags as <code>[gravityview]</code> parameters</li>
<li>Fixed: Support for User Registration Addon Version 3</li>
<li>Fixed: Support for rich text editor for Post Body fields</li>
<li>Fixed: Admin-only fields may get overwritten when fields aren't visible during entry edit by user (non-admin)</li>
<li>Fixed: Address fields displayed hidden inputs</li>
<li>Fixed: Merge Tag dropdown list can be too wide when field names are long</li>
<li>Fixed: When sorting, recent entries disappeared from results</li>
<li>Fixed: Searches that included apostrophes
 or ampersands returned no results</li>
<li>Fixed: Zero values not set in fields while in Edit Entry</li>
<li>Fixed: Re-calculate fields where calculation is enabled after entry is updated</li>
<li>Fixed: Warning message when Number fields not included in custom Edit Entry configurations</li>
</ul>


<p><strong>Developer Notes:</strong></p>

<ul>
<li>Reminder: <strong>GravityView will soon require PHP 5.3</strong></li>
<li>Added: <code>gravityview/widgets/container_css_class</code> filter to modify widget container <code>&lt;div&gt;</code> CSS class

<ul>
<li>Added <code>gv-widgets-{zone}</code> class to wrapper (<code>{zone}</code> will be either <code>header</code> or <code>footer</code>)</li>
</ul>
</li>
<li>Fixed: Conflict with some plugins when <code>?action=delete</code> is processed in the Admin (<a href="https://github.com/gravityview/GravityView/issues/624">#624</a>, reported by <a href="https://github.com/dcavins">dcavins</a>)</li>
<li>Fixed: Removed <code>icon</code> CSS class name from the table sorting icon links. Now just <code>gv-icon</code> instead of <code>icon gv-icon</code>.</li>
<li>Fixed: "Clear" search link now set to <code>display: inline-block</code> instead of <code>display: block</code></li>
<li>Added: <code>gravityview/common/get_entry/check_entry_display</code> filter to disable validating whether to show entries or not against View filters</li>
<li>Fixed: <code>GravityView_API::replace_variables</code> no longer requires <code>$form</code> and <code>$entry</code> arguments</li>
</ul>

<h3>1.16.1 on January 21</h3>

<ul>
<li>Fixed: GravityView prevented Gravity Forms translations from loading</li>
<li>Fixed: Field Width setting was visible in Edit Entry</li>
<li>Fixed: Don't display embedded Gravity Forms forms when editing an entry in GravityView</li>
</ul>


<p><strong>Developer Notes:</strong></p>

<ul>
<li>Added: <code>gravityview_excerpt_more</code> filter. Modify the "Read more" link used when "Maximum Words" setting is enabled and the output is truncated.

<ul>
<li>Removed: <code>excerpt_more</code> filter on <code>textarea.php</code> - many themes use permalink values to generate links.</li>
</ul>
</li>
</ul>

<h3 id="toc_0">1.16 on January 14</h3>

<ul>
Expand Down
1 change: 1 addition & 0 deletions includes/class-gravityview-merge-tags.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'] : '';
Expand Down
13 changes: 10 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -35,6 +41,7 @@ Beautifully display your Gravity Forms entries. Learn more on [gravityview.co](h

__Developer Notes:__

* Reminder: <strong>GravityView will soon require PHP 5.3</strong>
* 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](https://github.com/gravityview/GravityView/issues/624), reported by [dcavins](https://github.com/dcavins))
Expand Down

0 comments on commit 2f7cb53

Please sign in to comment.