Skip to content

Commit d0a7879

Browse files
committed
V10 Release, PHP min version to 7.3, FA6 fixes, device detection improvements, last commit before GA4 migration
#2199, #2165 This is the last commit before Nebula shifts to using Google Analytics v4 (GA4)!!
1 parent e520c97 commit d0a7879

File tree

20 files changed

+102
-32
lines changed

20 files changed

+102
-32
lines changed

.github/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Nebula follows [WordPress recommended requirements](https://wordpress.org/about/
2121

2222
To take full advantage of Nebula's features, the following are recommended:
2323
+ WordPress Latest
24-
+ PHP 7.2+
24+
+ PHP 7.3+
2525
+ MySQL 5.6+
2626
+ SSL
2727

.github/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "nebula-wp",
33
"title": "Nebula",
44
"description": "Advanced Starter WordPress Theme for Developers",
5-
"version": "9.10.18.437",
5+
"version": "10.0.1.009",
66
"homepage": "https://gearside.com/nebula/",
77
"repository": {
88
"type": "git",

Nebula-Child/assets/css/admin.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Nebula-Child/resources/sw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//BEGIN automated edits. These will be automatically overwritten.
22
const THEME_NAME = 'nebula-child';
3-
const NEBULA_VERSION = 'v9.10.18.437'; //Friday, March 18, 2022 10:29:41 AM
3+
const NEBULA_VERSION = 'v10.0.1.009'; //Sunday, May 1, 2022 12:12:24 AM
44
const OFFLINE_URL = 'https://nebula.gearside.com/offline/';
55
const OFFLINE_IMG = 'https://nebula.gearside.com/wp-content/themes/Nebula-main/assets/img/offline.svg';
66
const OFFLINE_GA_DIMENSION = 'cd2';

Nebula-Child/style.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/admin.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/critical.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/login.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/pre.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/scss/partials/_mixins.scss

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@
2525
*/
2626
@mixin font-awesome($type: "solid"){
2727
@if $type == "solid" {
28-
font-family: "Font Awesome 5 Solid", "Font Awesome 5 Free", "Font Awesome 5 Pro", "Font Awesome 5 Brands"; font-weight: 900;
28+
font-family: "Font Awesome 6 Solid", "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands"; font-weight: 900;
2929
} @else if $type == "regular" {
30-
font-family: "Font Awesome 5 Regular", "Font Awesome 5 Free", "Font Awesome 5 Pro", "Font Awesome 5 Brands"; font-weight: 400; //If this falls back to free, the font weight may not be compatible...
30+
font-family: "Font Awesome 6 Regular", "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands"; font-weight: 400; //If this falls back to free, the font weight may not be compatible...
3131
} @else if $type == "light" {
32-
font-family: "Font Awesome 5 Light", "Font Awesome 5 Free", "Font Awesome 5 Pro", "Font Awesome 5 Brands"; font-weight: 300; //If this falls back to free, the font weight may not be compatible...
32+
font-family: "Font Awesome 6 Light", "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands"; font-weight: 300; //If this falls back to free, the font weight may not be compatible...
3333
} @else if $type == "duotone" {
34-
font-family: "Font Awesome 5 Duotone", "Font Awesome 5 Solid", "Font Awesome 5 Free", "Font Awesome 5 Pro", "Font Awesome 5 Brands"; font-weight: 900; //If this falls back to free, the font weight may not be compatible...
34+
font-family: "Font Awesome 6 Duotone", "Font Awesome 6 Solid", "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands"; font-weight: 900; //If this falls back to free, the font weight may not be compatible...
3535
} @else if $type == "free" {
36-
font-family: "Font Awesome 5 Free", "Font Awesome 5 Pro", "Font Awesome 5 Brands"; font-weight: 900;
36+
font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands"; font-weight: 900;
3737
} @else if $type == "brand" {
38-
font-family: "Font Awesome 5 Brands"; font-weight: 400;
38+
font-family: "Font Awesome 6 Brands"; font-weight: 400;
3939
}
4040
}
4141

0 commit comments

Comments
 (0)