Skip to content

Commit

Permalink
Bump version to 2.31 & update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcasual committed Nov 1, 2024
1 parent 2aefb82 commit 1c4e20f
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 19 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.30.1
* Version: 2.31
* 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.30.1' );
define( 'GV_PLUGIN_VERSION', '2.31' );

/**
* Full path to the GravityView file
Expand Down
39 changes: 39 additions & 0 deletions includes/class-admin-welcome.php
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,45 @@ public function changelog_screen() {
* - If 4.28, include to 4.26.
*/
?>
<h3>2.31 on November 1, 2024</h3>

<p>This release enhances entry-in-a-lightbox functionality, resolves compatibility issues with LiteSpeed and Divi, and includes other fixes and improvements.</p>

<h4>🚀 Added</h4>

<ul>
<li>View setting to control what happens when a user clicks the Cancel link when editing an entry in the lightbox.</li>
</ul>

<h4>🐛 Fixed</h4>

<ul>
<li>GravityView tab not displaying in certain cases under GravityKit > Settings menu.</li>
<li>Widgets could not be configured after being added to a new, unsaved View.</li>
<li>Compatibility with the Divi theme that prevented the Signature field from being edited on the Edit Entry screen.</li>
<li>Conflict with the LiteSpeed plugin that caused a fatal error when redirecting users after duplicating an entry.</li>
<li>JavaScript enqueued in the site's footer was not executed when editing an entry in the lightbox.</li>
<li>It was not possible to add new entry notes when viewing a single entry in the lightbox.</li>
<li>Validation error displayed when adding merge tags to the Entry Slug setting input in the View editor.</li>
</ul>

<h4>🔧 Updated</h4>

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

<h4>💻 Developer Updates</h4>

<ul>
<li>Added <code>gk/gravityview/lightbox/entry/before-output</code> action that fires before the entry content is output in the lightbox.</li>
<li>Added <code>gk/gravityview/lightbox/entry/output/head-before</code> action that fires after the <code>&lt;head&gt;</code> tag is opened.</li>
<li>Added <code>gk/gravityview/lightbox/entry/output/head-after</code> action that fires before the <code>&lt;/head&gt;</code> tag is closed.</li>
<li>Added <code>gk/gravityview/lightbox/entry/output/content-before</code> action that fires after the <code>&lt;body&gt;</code> tag is opened and before the content is rendered.</li>
<li>Added <code>gk/gravityview/lightbox/entry/output/content-after</code> action that fires after the content is rendered and before the footer.</li>
<li>Added <code>gk/gravityview/lightbox/entry/output/footer-after</code> action that fires after the footer and before the closing <code>&lt;/body&gt;</code> tag.</li>
</ul>

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

<p>This hotfix release resolves an issue with the Multiple Forms extension.</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ private function render_entry( $type, $view, $entry, $form ) {
*
* @action `gk/gravityview/lightbox/entry/before-output`
*
* @since TBD
* @since 2.31.0
*
* @param array $args {
* @type View $view The View object being rendered.
Expand Down Expand Up @@ -513,7 +513,7 @@ private function render_entry( $type, $view, $entry, $form ) {
*
* @action `gk/gravityview/lightbox/entry/output/head-before`
*
* @since TBD
* @since 2.31.0
*
* @param string $type The type of the entry view (single or edit).
* @param View $view The View object being rendered.
Expand Down Expand Up @@ -541,7 +541,7 @@ private function render_entry( $type, $view, $entry, $form ) {
*
* @action `gk/gravityview/lightbox/entry/output/head-after`
*
* @since TBD
* @since 2.31.0
*
* @param string $type The type of the entry view (single or edit).
* @param View $view The View object being rendered.
Expand All @@ -559,7 +559,7 @@ private function render_entry( $type, $view, $entry, $form ) {
*
* @action `gk/gravityview/lightbox/entry/output/content-before`
*
* @since TBD
* @since 2.31.0
*
* @param string $type The type of the entry view (single or edit).
* @param View $view The View object being rendered.
Expand All @@ -577,7 +577,7 @@ private function render_entry( $type, $view, $entry, $form ) {
*
* @action `gk/gravityview/lightbox/entry/output/content-after`
*
* @since TBD
* @since 2.31.0
*
* @param string $type The type of the entry view (single or edit).
* @param View $view The View object being rendered.
Expand All @@ -595,7 +595,7 @@ private function render_entry( $type, $view, $entry, $form ) {
*
* @action `gk/gravityview/lightbox/entry/output/footer-after`
*
* @since TBD
* @since 2.31.0
*
* @param string $type The type of the entry view (single or edit).
* @param View $view The View object being rendered.
Expand Down Expand Up @@ -711,7 +711,7 @@ function handleChange( changedInput, otherInput ) {
/**
* Performs actions during <head> output.
*
* @since TBD
* @since 2.31.0
*
* @param string $type The type of the entry view (single or edit).
* @param View $view The View object being rendered.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public function maybe_admin_excluded_shortcodes( $shortcodes ) {
*
* @used-by `et_builder_enable_jquery_body` filter
*
* @since TBD
* @since 2.31.0
*
* @param bool $enable_jquery_compat
*
Expand Down
27 changes: 18 additions & 9 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.6.2
Tested up to: 6.7
Requires PHP: 7.4.0
Stable tag: trunk
Contributors: The GravityKit Team
Expand All @@ -21,15 +21,24 @@ Beautifully display your Gravity Forms entries. Learn more on [gravitykit.com](h

== Changelog ==

= develop =
= 2.31 on November 1, 2024 =

Added: View setting to control what happens when a user clicks on the Cancel link when editing an entry in the lightbox.
Fixed: Settings paged showed an undefined settings tab when the GravityView Settings tab was disabled.
Fixed: Widgets could not be configured on a new unsaved View.
Fixed: Compatability with the Divi theme that prevented the Signature field from being edited on the Edit Entry screen.
Fixed: Conflict with the LiteSpeed plugin caused a fatal error when redirecting users after duplicating an entry.
Fixed: JavaScript enqueued in the site's footer was not executed when editing an entry in the lightbox.
Fixed: Adding entry notes when viewing a single entry in the lightbox did not work.
This release enhances entry-in-a-lightbox functionality, resolves compatibility issues with LiteSpeed and Divi, and includes other fixes and improvements.

#### 🚀 Added
* View setting to control what happens when a user clicks the Cancel link when editing an entry in the lightbox.

#### 🐛 Fixed
* GravityView tab not displaying in certain cases under GravityKit > Settings menu.
* Widgets could not be configured after being added to a new, unsaved View.
* Compatibility with the Divi theme that prevented the Signature field from being edited on the Edit Entry screen.
* Conflict with the LiteSpeed plugin that caused a fatal error when redirecting users after duplicating an entry.
* JavaScript enqueued in the site's footer was not executed when editing an entry in the lightbox.
* It was not possible to add new entry notes when viewing a single entry in the lightbox.
* Validation error displayed when adding merge tags to the Entry Slug setting input in the View editor.

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

#### 💻 Developer Updates
* Added `gk/gravityview/lightbox/entry/before-output` action that fires before the entry content is output in the lightbox.
Expand Down

0 comments on commit 1c4e20f

Please sign in to comment.