Skip to content

Commit

Permalink
Regex pattern search fix, scssphp update, removed Google Optimize
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisblakley committed Oct 9, 2023
1 parent f8d5add commit 50aced2
Show file tree
Hide file tree
Showing 24 changed files with 76 additions and 82 deletions.
2 changes: 1 addition & 1 deletion .github/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nebula-wp",
"title": "Nebula",
"description": "Advanced Starter WordPress Theme for Developers",
"version": "11.4.21.615",
"version": "11.5.9.034",
"homepage": "https://gearside.com/nebula/",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion Nebula-Child/assets/css/admin.css

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

2 changes: 1 addition & 1 deletion Nebula-Child/resources/sw.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//BEGIN automated edits. These will be automatically overwritten.
const THEME_NAME = 'nebula-child';
const NEBULA_VERSION = 'v11.4.21.615'; //Thursday, September 21, 2023 2:45:08 PM
const NEBULA_VERSION = 'v11.5.9.034'; //Monday, October 9, 2023 12:49:12 AM
const OFFLINE_URL = 'https://nebula.gearside.com/offline/';
const OFFLINE_IMG = 'https://nebula.gearside.com/wp-content/themes/Nebula-main/assets/img/offline.svg';
const META_ICON = 'https://nebula.gearside.com/wp-content/themes/Nebula-main/assets/img/meta/android-chrome-512x512.png';
Expand Down
4 changes: 2 additions & 2 deletions Nebula-Child/style.css

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/css/critical.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/css/login.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/pre.css

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

6 changes: 3 additions & 3 deletions assets/js/modules/measure.js
Original file line number Diff line number Diff line change
Expand Up @@ -981,8 +981,8 @@ nebula.eventTracking = async function(){
}

//Dead Clicks (Non-Linked Click Attempts)
nebula.dom.document.on('click', 'img', function(e){ //Clicks on images
if ( !jQuery(this).parents('a, button').length ){
nebula.dom.document.on('click', 'img', function(e){ //Clicks on images (Remember to never return false inside of these functions!)
if ( !jQuery(this).parents('a, button').length && !jQuery(this).is('[data-bs-toggle]') ){ //If it is not inside of a button and not used as a Bootstrap trigger
let thisEvent = {
event: e,
event_name: 'dead_click',
Expand Down Expand Up @@ -1818,7 +1818,7 @@ nebula.hj = function(type='event', value=''){
if ( typeof hj === 'function' && value ){
hj(type, value);
}
}
};

//Send data to the CRM
nebula.crm = async function(action, data, sendNow = true){
Expand Down
2 changes: 1 addition & 1 deletion assets/js/modules/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ nebula.keywordFilter = function(container, parent, values = 'string', filteredCl
if ( value && value.trim().length ){ //If the value exists and is not empty
//Check if the value is a valid RegEx string
try {
let regex = new RegExp(value, 'i');
var regex = new RegExp(value, 'i'); //Keep var here so variable can be used outside of the try/catch without erroring
} catch(error){ //This is an invalid RegEx pattern
return false; //Ignore this search
}
Expand Down
2 changes: 1 addition & 1 deletion assets/scss/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Description: Nebula is a springboard WordPress theme framework for developers. Like other WordPress startup themes, it has custom functionality built-in (like shortcodes, styles, and JS/PHP functions), but unlike other themes Nebula is not meant for the end-user.
Author: Pinckney Hugo Group
Author URI: http://www.pinckneyhugo.com
Version: 11.4.21.615
Version: 11.5.9.034
License: GNU General Public License v2.0 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, threaded-comments, theme-options, sticky-post, post-formats, microformats, full-width-template, front-page-post-form, flexible-header, featured-images, featured-image-header, editor-style, custom-menu, custom-colors, accessibility-ready
Expand Down
2 changes: 1 addition & 1 deletion inc/data/nebula_theme.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "11.4.21.615",
"version": "11.5.9.034",
"details_url": "https://github.com/chrisblakley/Nebula/commits/main",
"download_url": "https://github.com/chrisblakley/Nebula/archive/main.zip"
}
2 changes: 1 addition & 1 deletion inc/vendor/scssphp/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"thoughtbot/bourbon": "^7.0",
"twbs/bootstrap": "~5.0",
"twbs/bootstrap4": "4.6.1",
"zurb/foundation": "~6.5"
"zurb/foundation": "~6.7.0"
},
"repositories": [
{
Expand Down
Loading

0 comments on commit 50aced2

Please sign in to comment.