This commit is contained in:
Quang Lam 2019-11-18 18:23:44 -06:00
parent c1ee21e644
commit 81c16d18bc
3 changed files with 16 additions and 3 deletions

View file

@ -18,7 +18,7 @@ baseurl: "" # the subpath of your site, e.g. /blog
url: "https://singleboxapp.com" # the base hostname & protocol for your site, e.g. http://example.com
# Custom
singlebox_version: 1.4.2
singlebox_version: 1.4.3
# Build settings
markdown: kramdown

View file

@ -1,13 +1,13 @@
{
"name": "Singlebox",
"description": "All Your Apps in One Single Window",
"version": "1.4.2",
"version": "1.4.3",
"engines": {
"node": ">=12.0.0 <13.0.0"
},
"main": "public/electron.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"postinstall": "npx patch-package && electron-builder install-app-deps",
"build": "react-scripts build",
"eject": "react-scripts eject",
"lint": "eslint ./public ./src --ext js",

View file

@ -0,0 +1,13 @@
diff --git a/node_modules/builder-util/out/util.js b/node_modules/builder-util/out/util.js
index 8064112..b6e3d81 100644
--- a/node_modules/builder-util/out/util.js
+++ b/node_modules/builder-util/out/util.js
@@ -505,7 +505,7 @@ function isEmptyOrSpaces(s) {
}
function isTokenCharValid(token) {
- return /^[\w\/=+-]+$/.test(token);
+ return /^[.\w\/=+-]+$/.test(token);
}
function addValue(map, key, value) {