Skip to content
This repository has been archived by the owner on Sep 8, 2022. It is now read-only.

Commit

Permalink
4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
quanglam2807 committed Dec 18, 2021
1 parent 95a5888 commit 3ad0882
Show file tree
Hide file tree
Showing 8 changed files with 771 additions and 806 deletions.
2 changes: 1 addition & 1 deletion main-src/libs/app-management/install-app-async/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const installAppAsync = (

// use v2 script on Mac
scriptFileName = 'install-app-forked-lite-v2.js';
v = '2.12.0';
v = '2.13.0';

return null;
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ open -n "$PWD"/${addSlash(name)}.app --args --no-sandbox --test-type --app="${ur
})
.then(() => {
const packageJson = JSON.stringify({
version: '2.12.0',
version: '2.13.0',
});
return fsExtra.writeFileSync(packageJsonPath, packageJson);
})
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Chromeless",
"description": "Turn Any Websites into Site-specific Browsers",
"version": "4.0.0",
"version": "4.1.0",
"engines": {
"node": ">=14.0.0 <15.0.0"
},
Expand All @@ -26,7 +26,7 @@
},
"dependencies": {},
"devDependencies": {
"@elastic/app-search-javascript": "7.15.0",
"@elastic/app-search-javascript": "7.16.0",
"@elastic/react-search-ui": "1.8.0",
"@elastic/search-ui-app-search-connector": "1.8.0",
"@electron/remote": "2.0.1",
Expand All @@ -44,11 +44,11 @@
"classnames": "2.3.1",
"clean-webpack-plugin": "3.0.0",
"comlink": "4.3.1",
"concurrently": "6.4.0",
"concurrently": "6.5.0",
"copy-webpack-plugin": "6.4.1",
"cross-env": "7.0.3",
"decompress": "4.2.1",
"electron": "16.0.2",
"electron": "16.0.5",
"electron-builder": "22.14.5",
"electron-context-menu": "3.1.1",
"electron-notarize": "1.1.1",
Expand All @@ -59,17 +59,17 @@
"eslint": "6.8.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.27.1",
"eslint-plugin-react-hooks": "1.7.0",
"follow-redirects": "1.14.5",
"follow-redirects": "1.14.6",
"fs-extra": "10.0.0",
"hasha": "5.2.2",
"icon-gen": "2.1.0",
"is-url": "1.2.4",
"jimp": "0.16.1",
"menubar": "9.1.0",
"menubar": "9.1.1",
"node-cache": "5.1.2",
"node-fetch": "2.6.6",
"notistack": "1.0.10",
Expand All @@ -81,10 +81,10 @@
"react-window": "1.8.6",
"react-window-infinite-loader": "1.0.7",
"redux": "4.1.2",
"redux-thunk": "2.4.0",
"redux-thunk": "2.4.1",
"reselect": "4.1.5",
"semver": "7.3.5",
"slugify": "1.6.3",
"slugify": "1.6.4",
"source-map-support": "0.5.21",
"sudo-prompt": "9.2.1",
"tmp": "0.2.1",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
diff --git a/node_modules/@elastic/app-search-javascript/dist/elastic_app_search.umd.js b/node_modules/@elastic/app-search-javascript/dist/elastic_app_search.umd.js
index 75724f7..26739df 100644
index 5f018c0..9aeee1f 100644
--- a/node_modules/@elastic/app-search-javascript/dist/elastic_app_search.umd.js
+++ b/node_modules/@elastic/app-search-javascript/dist/elastic_app_search.umd.js
@@ -282,6 +282,11 @@
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion public/chromeless-helper/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "__MSG_extName__",
"description": "__MSG_extDesc__",
"version": "1.1",
"version": "1.2",
"manifest_version": 2,
"default_locale": "en",
"background": {
Expand Down
2 changes: 1 addition & 1 deletion src/state/app-management/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const isOutdatedApp = (id, state) => {
// app is Chromium/Firefox-based
// check if app is installed with the latest version of forked-script-v2.js
if (window.process.platform === 'darwin') {
return semver.lt(v, '2.12.0');
return semver.lt(v, '2.13.0');
}
// check if app is installed with the latest version of forked-script-v1.js
return semver.lt(v, '1.8.0');
Expand Down
1,545 changes: 755 additions & 790 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 3ad0882

Please sign in to comment.