Skip to content

Commit

Permalink
Release 2.26 (#2094)
Browse files Browse the repository at this point in the history
This update resolves various issues, including compatibility with Yoast
SEO, improves performance through enhanced View entries caching, and
adds new functionality.

#### 🚀 Added
* Ability to modify the entry creator’s information on the Edit Entry
screen.
* Merge tag modifier for formatting Date and Time fields (e.g., `{Date
Field:1:format:Y-m-d}`).
* Placeholders in View Settings to inform you that additional
functionality is available.

#### ✨ Improved
* The "Sort By" option in the GravityView Gutenberg block now offers a
dropdown selection of fields instead of requiring manual entry of the
field ID.
* Caching of View entries to prevent unnecessary database queries.

#### 🐛 Fixed
* Timeout issue when rendering a page/post with GravityView Gutenberg
blocks when Yoast SEO is active.
* View editor fields added to the Single or Edit Entry layouts
inheriting options from the View type set in the Multiple Entries
layout.
* An issue in the Search Bar widget configuration where adding a Date
field caused the search mode ("any" and "all") to no longer be
toggleable.
* `[gv_entry_link]` shortcode not rendering inside the Custom HTML
block.

#### 🔧 Updated
* [Foundation](https://www.gravitykit.com/foundation/) and
[TrustedLogin](https://www.trustedlogin.com/) to versions 1.2.17 and
1.8.0, respectively.

#### 💻 Developer Updates
* Added: `gk/gravityview/feature/upgrade/disabled` filter to disable the
functionality placeholders. Return `true` to disable the placeholders.
* Added: `gk/gravityview/metabox/content/before` and
`gk/gravityview/metabox/content/after` actions, triggered before and
after the View metabox is rendered.

💾 [Build
file](https://www.dropbox.com/scl/fi/877aq239dxrpmrxd1sv5d/gravityview-2.25-19725d5d6.zip?rlkey=zjchome8rdbzwtve3l6fwrewl&dl=1)
(19725d5).
  • Loading branch information
mrcasual committed Aug 8, 2024
2 parents cc7e004 + f438933 commit 3905990
Show file tree
Hide file tree
Showing 73 changed files with 1,846 additions and 460 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = function(grunt) {
files: [{
expand: true,
cwd: 'assets/css/scss',
src: ['*.scss','!gf-merge-tags-*.scss','!admin-merge-tags.scss','!admin-tooltips.scss','!admin-metabox-panel.scss','!admin-metabox.scss','!admin-members-plugin.scss','!variables.scss'],
src: ['*.scss','!gf-merge-tags-*.scss','!admin-merge-tags.scss','!admin-tooltips.scss','!admin-metabox-panel.scss','!admin-metabox.scss','!admin-metabox-placeholder.scss','!admin-members-plugin.scss','!variables.scss'],
dest: 'assets/css',
ext: '.css'
}]
Expand Down
8 changes: 4 additions & 4 deletions assets/css/admin-datepicker.css
Original file line number Diff line number Diff line change
Expand Up @@ -196,10 +196,10 @@


/* Corner radius */
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -webkit-border-top-left-radius: 4px; -moz-border-radius-topleft: 4px; border-top-left-radius: 4px; }
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -webkit-border-top-right-radius: 4px; -moz-border-radius-topright: 4px; border-top-right-radius: 4px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -webkit-border-bottom-left-radius: 4px; -moz-border-radius-bottomleft: 4px; border-bottom-left-radius: 4px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -webkit-border-bottom-right-radius: 4px; -moz-border-radius-bottomright: 4px; border-bottom-right-radius: 4px; }
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { border-top-left-radius: 4px; }
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { border-top-right-radius: 4px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { border-bottom-left-radius: 4px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { border-bottom-right-radius: 4px; }


/*
Expand Down
2 changes: 1 addition & 1 deletion assets/css/admin-entries-list.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/css/admin-global.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3905990

Please sign in to comment.