Skip to content

Commit

Permalink
Merge branch 'development' into dev/build
Browse files Browse the repository at this point in the history
  • Loading branch information
Soare-Robert-Daniel authored Apr 12, 2024
2 parents bc8b526 + abb4b92 commit 45ad0ee
Show file tree
Hide file tree
Showing 10 changed files with 76 additions and 11 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
##### [Version 3.8.6](https://github.com/Codeinwp/neve/compare/v3.8.5...v3.8.6) (2024-04-05)

### Bug Fixes
- **Fixed menu items** where long item names with a dropdown on the mobile were overlapping with the dropdown button.
### Improvements
- **Updated internal dependencies**

##### [Version 3.8.5](https://github.com/Codeinwp/neve/compare/v3.8.4...v3.8.5) (2024-04-01)

### Improvements
- **Updated internal dependencies**
- **Update Google Fonts**​:​ Get the newest Google fonts from the public font library.

##### [Version 3.8.4](https://github.com/Codeinwp/neve/compare/v3.8.3...v3.8.4) (2024-03-29)

### Bug Fixes
Expand Down
12 changes: 6 additions & 6 deletions composer.lock

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

6 changes: 6 additions & 0 deletions e2e-tests/specs/customizer/hfg/hfg-menu-item-wrap.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,11 @@ test.describe('Menu item alignment', function () {
.getByRole('link', {
name: 'Level 3b',
});

// Check that a toggle menu has proper padding.
const toggleItemLink = page.getByRole('link', {
name: 'About The Tests',
});
await expect(toggleItemLink).toHaveCSS('padding-right', '46px');
});
});
2 changes: 1 addition & 1 deletion functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @package Neve
*/

define( 'NEVE_VERSION', '3.8.4' );
define( 'NEVE_VERSION', '3.8.6' );
define( 'NEVE_INC_DIR', trailingslashit( get_template_directory() ) . 'inc/' );
define( 'NEVE_ASSETS_URL', trailingslashit( get_template_directory_uri() ) . 'assets/' );
define( 'NEVE_MAIN_DIR', get_template_directory() . '/' );
Expand Down
10 changes: 9 additions & 1 deletion globals/google-fonts.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Updated on 11/03/24
* Updated on 01/04/24
*
* @package neve
*/
Expand Down Expand Up @@ -793,6 +793,7 @@
'Macondo' => array( '400',),
'Macondo Swash Caps' => array( '400',),
'Mada' => array( '200', '300', '400', '500', '600', '700', '800', '900',),
'Madimi One' => array( '400',),
'Magra' => array( '400', '700',),
'Maiden Orange' => array( '400',),
'Maitree' => array( '200', '300', '400', '500', '600', '700',),
Expand Down Expand Up @@ -1154,6 +1155,7 @@
'Odor Mean Chey' => array( '400',),
'Offside' => array( '400',),
'Oi' => array( '400',),
'Ojuju' => array( '200', '300', '400', '500', '600', '700', '800',),
'Old Standard TT' => array( '400', '700', '400italic',),
'Oldenburg' => array( '400',),
'Ole' => array( '400',),
Expand Down Expand Up @@ -1297,6 +1299,7 @@
'Red Rose' => array( '300', '400', '500', '600', '700',),
'Redacted' => array( '400',),
'Redacted Script' => array( '300', '400', '700',),
'Reddit Mono' => array( '200', '300', '400', '500', '600', '700', '800', '900',),
'Redressed' => array( '400',),
'Reem Kufi' => array( '400', '500', '600', '700',),
'Reem Kufi Fun' => array( '400', '500', '600', '700',),
Expand Down Expand Up @@ -1508,6 +1511,7 @@
'Syne' => array( '400', '500', '600', '700', '800',),
'Syne Mono' => array( '400',),
'Syne Tactile' => array( '400',),
'Tac One' => array( '400',),
'Tai Heritage Pro' => array( '400', '700',),
'Tajawal' => array( '200', '300', '400', '500', '700', '800', '900',),
'Tangerine' => array( '400', '700',),
Expand Down Expand Up @@ -1613,6 +1617,10 @@
'Yaldevi' => array( '200', '300', '400', '500', '600', '700',),
'Yanone Kaffeesatz' => array( '200', '300', '400', '500', '600', '700',),
'Yantramanav' => array( '100', '300', '400', '500', '700', '900',),
'Yarndings 12' => array( '400',),
'Yarndings 12 Charted' => array( '400',),
'Yarndings 20' => array( '400',),
'Yarndings 20 Charted' => array( '400',),
'Yatra One' => array( '400',),
'Yellowtail' => array( '400',),
'Yeon Sung' => array( '400',),
Expand Down
2 changes: 1 addition & 1 deletion inc/views/nav_walker.php
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public function get_mobile_caret_style() {
$mobile_button_caret_css .= '.header-menu-sidebar .nav-ul li .wrap a .dd-title { width: var(--wrapdropdownwidth); }';
$mobile_button_caret_css .= '.header-menu-sidebar .nav-ul li .wrap button { border: 0; z-index: 1; background: 0; }';
$mobile_button_caret_css .= '.header-menu-sidebar .nav-ul li:not([class*=block]):not(.menu-item-has-children) > .wrap > a { padding-right: calc(1em + (18px*2)); text-wrap: wrap; white-space: normal;}';
$mobile_button_caret_css .= '.header-menu-sidebar .nav-ul li.menu-item-has-children:not([class*=block]) > .wrap > a { margin-right: calc(-1em - (18px*2));}';
$mobile_button_caret_css .= '.header-menu-sidebar .nav-ul li.menu-item-has-children:not([class*=block]) > .wrap > a { margin-right: calc(-1em - (18px*2)); padding-right: 46px;}';

return Dynamic_Css::minify_css( $mobile_button_caret_css );
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "neve",
"nicename": "Neve",
"version": "3.8.4",
"version": "3.8.6",
"description": "Neve theme by ThemeIsle",
"category": "themes",
"author": "ThemeIsle <[email protected]>",
Expand Down
19 changes: 19 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,25 @@ Neve is distributed under the terms of the GNU GPLv2 or later

## Changelog ##

##### [Version 3.8.6](https://github.com/Codeinwp/neve/compare/v3.8.5...v3.8.6) (2024-04-05)

### Bug Fixes
- **Fixed menu items** where long item names with a dropdown on the mobile were overlapping with the dropdown button.
### Improvements
- **Updated internal dependencies**




##### [Version 3.8.5](https://github.com/Codeinwp/neve/compare/v3.8.4...v3.8.5) (2024-04-01)

### Improvements
- **Updated internal dependencies**
- **Update Google Fonts**​:​ Get the newest Google fonts from the public font library.




##### [Version 3.8.4](https://github.com/Codeinwp/neve/compare/v3.8.3...v3.8.4) (2024-03-29)

### Bug Fixes
Expand Down
19 changes: 19 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,25 @@ Neve is distributed under the terms of the GNU GPLv2 or later

== Changelog ==

##### [Version 3.8.6](https://github.com/Codeinwp/neve/compare/v3.8.5...v3.8.6) (2024-04-05)

### Bug Fixes
- **Fixed menu items** where long item names with a dropdown on the mobile were overlapping with the dropdown button.
### Improvements
- **Updated internal dependencies**




##### [Version 3.8.5](https://github.com/Codeinwp/neve/compare/v3.8.4...v3.8.5) (2024-04-01)

### Improvements
- **Updated internal dependencies**
- **Update Google Fonts**​:​ Get the newest Google fonts from the public font library.




##### [Version 3.8.4](https://github.com/Codeinwp/neve/compare/v3.8.3...v3.8.4) (2024-03-29)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Tested up to: 6.2
Requires PHP: 7.0
Requires at least: 5.5
Description: Neve is a super fast, easily customizable, multi-purpose theme. It’s perfect for blogs, small business, startups, agencies, firms, e-commerce shops (WooCommerce storefront) as well as personal portfolio sites and most types of projects. A fully AMP optimized and responsive theme, Neve will load in mere seconds and adapt perfectly on any viewing device. While it is lightweight and has a minimalist design, the theme is highly extendable, it has a highly SEO optimized code, resulting in top rankings in Google search results. Neve works perfectly with Gutenberg and the most popular page builders (Elementor, Brizy, Beaver Builder, Visual Composer, SiteOrigin, Divi). Neve is also WooCommerce ready, responsive, RTL & translation ready. Look no further. Neve is the perfect theme for you!
Version: 3.8.4
Version: 3.8.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: neve
Expand Down

0 comments on commit 45ad0ee

Please sign in to comment.