Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge dev into master #9

Merged
merged 9 commits into from
Jul 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ module.exports = function ( grunt ) {
'!node_modules/**',
'!build/**',
'!.git/**',
'!changelog.txt',
'!Gruntfile.js',
'!package.json',
'!package-lock.json',
Expand Down
20 changes: 14 additions & 6 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,21 +1,29 @@
== Changelog ==

= 1.6.4 =
- Fixed: Missing Dependencies script 'butterbean'
- Fixed: Updated Mailchimp API
- Added: SEO Improvement - added "noopener noreferrer" tags when link opens in a new tab: Custom Links, About Me, Social Icons, Contact Info.
- Added: Accessibility Improvement - aria labels with warnings when link opens in a new tab: Custom Links, About Me, Social Icons, Contact Info.
- Added: Accessibility Improvement - aria-hidden on icons for following widgets: About Me, Social Icons, Contact Info.
- Added: Option to add a 'nofollow' link rel to following widgets: Custom Links, About Me, Social Icons, Contact Info.

= 1.6.3 =
- fixed: Uncaught ReferenceError: butterbean is not defined
- fixed: OceanWP javascripts won't execute on fast pages
- Fixed: Uncaught ReferenceError: butterbean is not defined
- Fixed: OceanWP javascripts doesn't execute on fast pages

= 1.6.2 =
- fixed: [oceanwp_nav] error.
- Fixed: [oceanwp_nav] error.

= 1.6.1 =
- fixed: Shortocde [oceanwp_nav] is not working.
- Fixed: Shortocde [oceanwp_nav] is not working.

= 1.6.0 =
- fixed: Freemius account details display.
- Fixed: Freemius account details display.
- Added: Updated custom header nav widget with respect to theme for accessibitly.
- Updated: Freemius SDK for better account and license management.
- Fixed: [oceanwp_nav] shortcode mobile menu issue.
- Fixed: Theme Panel > Scripts & Styles - PHP7.4 Warning message after disabling/enabling styles & scripts.
- Fixed: Theme Panel > Scripts & Styles - PHP 7.4 Warning message after disabling/enabling styles & scripts.
- Fixed: Replaced get_woocommerce_term_meta (deprecated) by get_term_meta.
- Added: Accessibility Improvement - Added 'aria-hidden' labels to the social icon widget.

Expand Down
2 changes: 1 addition & 1 deletion includes/metabox/metabox.php
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ private function setup_actions() {
public function enqueue_scripts( $hook ) {

// Only needed on these admin screens
if ( $hook != 'edit.php' && $hook != 'post.php' && $hook != 'post-new.php' ) {
if ( $hook != 'post.php' && $hook != 'post-new.php' ) {
return;
}

Expand Down
Loading