Skip to content

Commit

Permalink
Bump version to 2.33 & update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcasual committed Dec 19, 2024
1 parent dcdf012 commit e621cbb
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 57 deletions.
4 changes: 2 additions & 2 deletions gravityview.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: GravityView
* Plugin URI: https://www.gravitykit.com
* Description: The best, easiest way to display Gravity Forms entries on your website.
* Version: 2.32
* Version: 2.33
* Requires PHP: 7.4.0
* Author: GravityKit
* Author URI: https://www.gravitykit.com
Expand Down Expand Up @@ -32,7 +32,7 @@
/**
* The plugin version.
*/
define( 'GV_PLUGIN_VERSION', '2.32' );
define( 'GV_PLUGIN_VERSION', '2.33' );

/**
* Full path to the GravityView file
Expand Down
84 changes: 38 additions & 46 deletions includes/class-admin-welcome.php
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,44 @@ public function changelog_screen() {
* - If 4.28, include to 4.26.
*/
?>
<h3>2.33 on December 19, 2024</h3>

<p>This release introduces support for the Source ID meta (Gravity Forms 2.9+), adds a new User Activation field to the View editor, and includes various fixes and enhancements.</p>

<h4>🚀 Added</h4>

<ul>
<li>Support for the Source ID meta introduced in Gravity Forms 2.9.</li>
<li>New User Activation field in the View editor to activate users added by the Gravity Forms User Registration add-on.</li>
<li>Client-side validation of View editor settings to prevent incorrect values.</li>
<li><code>:initials</code> merge tag modifier for Name fields to display initials.</li>
<li><code>:format</code> merge tag modifier for field inputs (e.g., <code>{Event Field:1.1:format:Y-m-d}</code>).</li>
</ul>

<h4>🐛 Fixed</h4>

<ul>
<li>Merge tags in redirect URLs were not processed after editing or deleting an entry in the lightbox.</li>
<li>Individual Checkboxes field inputs incorrectly exported in CSV.</li>
<li>Custom permalinks not being used in embedded Views.</li>
<li>Deprecated filter notice when both the Advanced Filter extension (version 3 or newer) and Gravity Flow are active.</li>
<li>Labels for fields with empty values disappearing in mobile view when joining forms using the Multiple Forms extension.</li>
<li>Views defaulting to English instead of the site's language for users without certain capabilities.</li>
</ul>

<h4>🔧 Updated</h4>

<ul>
<li><a href="https://www.gravitykit.com/foundation/">Foundation</a> to version 1.2.22.</li>
</ul>

<h4>💻 Developer Updates</h4>

<ul>
<li>Added <code>gravityview/template/field/csv/tick</code> filter to programmatically modify the checkbox "check" output in CSV.</li>
<li>Added <code>gravityview/shortcode/after-processing</code> action after a <code>[gravityview]</code> shortcode is finished.</li>
</ul>

<h3>2.32 on November 21, 2024</h3>

<p>This release adds a new form notification option for updated entries, resolves file upload issues on the Edit Entry screen, and includes developer-focused enhancements.</p>
Expand Down Expand Up @@ -387,52 +425,6 @@ public function changelog_screen() {
<li>Added <code>gravityview/fields/image_choice/output_label</code> filter to control whether to display the value or label of an Image Choice field.</li>
</ul>

<h3>2.30.1 on October 15, 2024</h3>

<p>This hotfix release resolves an issue with the Multiple Forms extension.</p>

<h4>🐛 Fixed</h4>

<ul>
<li>Fatal error in the View editor when using joined data from multiple forms.</li>
</ul>

<h3>2.30 on October 14, 2024</h3>

<p>This release adds the ability to change the entry creator from the Edit Entry screen, improves upload handling, fixes various bugs, and updates internal components.</p>

<h4>🚀 Added</h4>

<ul>
<li>Entry creator can now be changed from the Edit Entry screen.</li>
<li><code>{now}</code>, <code>{yesterday}</code>, and <code>{tomorrow}</code> relative date merge tags.</li>
</ul>

<h4>✨ Improved</h4>

<ul>
<li>Handling of multi-file uploads on the Edit Entry screen.</li>
</ul>

<h4>🐛 Fixed</h4>

<ul>
<li>Entry loading inside a lightbox did not work in some cases when BuddyPress was active.</li>
<li>Resending notifications from the Entries screen did not work when sending to all entries filtered by approval status.</li>
<li>Conflict with the Wordfence plugin caused a fatal error when redirecting users after deleting an entry.</li>
<li>Fatal error when rendering a GravityView View field with a non-existent View ID.</li>
<li>Survey field (Rating type) values were displayed in reverse order when a View was embedded inside another View.</li>
<li>Unexpected scrolling in the View editor after adding a field.</li>
<li>PHP notice when rendering a View with a field associated with an inactive add-on.</li>
<li>Entry duplication not working on the Entries page.</li>
</ul>

<h4>🔧 Updated</h4>

<ul>
<li><a href="https://www.gravitykit.com/foundation/">Foundation</a> to version 1.2.19.</li>
</ul>

<p style="text-align: center;">
<a href="https://www.gravitykit.com/changelog/" class="aligncenter button button-primary button-hero" style="margin: 0 auto; display: inline-block; text-transform: capitalize"><?php esc_html_e( 'View change history', 'gk-gravityview' ); ?></a>
</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,4 +158,4 @@ public static function register_style_assets(): void {
}
}

new GravityView_Layout_Builder();
// new GravityView_Layout_Builder();
20 changes: 12 additions & 8 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
=== GravityView ===
Tags: gravity forms, directory, gravity forms directory
Requires at least: 4.7
Tested up to: 6.7
Tested up to: 6.7.1
Requires PHP: 7.4.0
Stable tag: trunk
Contributors: The GravityKit Team
Expand All @@ -21,22 +21,27 @@ Beautifully display your Gravity Forms entries. Learn more on [gravitykit.com](h

== Changelog ==

= develop =
= 2.33 on December 19, 2024 =

This release introduces support for the Source ID meta (Gravity Forms 2.9+), adds a new User Activation field to the View editor, and includes various fixes and enhancements.

#### 🚀 Added
* New Layout Builder View type for creating custom layouts with single or multi-column configurations and adjustable widths.
* Support for Source ID meta added in Gravity Forms 2.9
* Support for the Source ID meta introduced in Gravity Forms 2.9.
* New User Activation field in the View editor to activate users added by the Gravity Forms User Registration add-on.
* Client-side validation of View editor settings to prevent incorrect values.
* `:initials` merge tag modifier for Name fields to display initials.
* `:format` merge tag modifier for field inputs (e.g., `{Event Field:1.1:format:Y-m-d}`).

#### 🐛 Fixed
* Merge tags in redirect URLs were not processed after editing or deleting an entry in the lightbox.
* Individual Checkboxes field inputs incorrectly exported in CSV.
* Custom permalinks were not used on embedded Views.
* When multiple Views were embedded on the same page, it would show the other Views when displaying a single entry.
* Custom permalinks not being used in embedded Views.
* Deprecated filter notice when both the Advanced Filter extension (version 3 or newer) and Gravity Flow are active.
* When using the Multiple Forms extension, labels for fields with empty values no longer disappear in the mobile view.
* Labels for fields with empty values disappearing in mobile view when joining forms using the Multiple Forms extension.
* Views defaulting to English instead of the site's language for users without certain capabilities.

#### 🔧 Updated
* [Foundation](https://www.gravitykit.com/foundation/) to version 1.2.22.

#### 💻 Developer Updates
* Added `gravityview/template/field/csv/tick` filter to programmatically modify the checkbox "check" output in CSV.
Expand Down Expand Up @@ -77,7 +82,6 @@ This release introduces [flexible widget positioning](https://docs.gravitykit.co
* Ability to position widgets in the View editor using predefined layouts, offering a range of single or multi-column configurations with varying widths.
* View setting to control what happens when a user clicks the Cancel link when editing an entry in the lightbox.
* Support for the upcoming Image Choice field in Gravity Forms 2.9+.
* Validation for View editor settings to prevent incorrect values from being set.

#### 🐛 Fixed
* GravityView tab not displaying in certain cases under GravityKit > Settings menu.
Expand Down

0 comments on commit e621cbb

Please sign in to comment.