diff --git a/gulpfile.js b/gulpfile.js index a871f4e1aa..2b682f2796 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -247,6 +247,7 @@ function onWatchEvent(path) { ) } +exports.assets = assets exports.html = html exports.js = js exports.mocha = mocha diff --git a/html/index.html b/html/index.html index f296159c0e..d844382677 100644 --- a/html/index.html +++ b/html/index.html @@ -17,7 +17,7 @@ - + diff --git a/html/options.html b/html/options.html index 7ad522b207..0fb89adea9 100644 --- a/html/options.html +++ b/html/options.html @@ -26,7 +26,7 @@ - + diff --git a/manifest.chrome.json b/manifest.chrome.json index 3c6f1f246c..728d80409b 100644 --- a/manifest.chrome.json +++ b/manifest.chrome.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "floccus bookmarks sync", "short_name": "floccus", - "version": "5.2.0.0", + "version": "5.2.0.1", "description": "__MSG_DescriptionExtension__", "icons": { "48": "icons/logo.png", diff --git a/manifest.firefox.json b/manifest.firefox.json index 40e0c1cdee..28fbcaab28 100644 --- a/manifest.firefox.json +++ b/manifest.firefox.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "floccus bookmarks sync", "short_name": "floccus", - "version": "5.2.0.0", + "version": "5.2.0.1", "description": "__MSG_DescriptionExtension__", "icons": { "48": "icons/logo.png", diff --git a/manifest.json b/manifest.json index 40e0c1cdee..28fbcaab28 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "floccus bookmarks sync", "short_name": "floccus", - "version": "5.2.0.0", + "version": "5.2.0.1", "description": "__MSG_DescriptionExtension__", "icons": { "48": "icons/logo.png", diff --git a/package-lock.json b/package-lock.json index 86137ccd7e..20299e160f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "floccus", - "version": "5.2.0-beta.1", + "version": "5.2.0-beta.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "floccus", - "version": "5.2.0-beta.1", + "version": "5.2.0-beta.2", "license": "MPL-2.0", "dependencies": { "@byteowls/capacitor-oauth2": "5.x", diff --git a/package.json b/package.json index 69fe374d71..f9cba400a6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "floccus", - "version": "5.2.0-beta.1", + "version": "5.2.0-beta.2", "description": "Sync your bookmarks privately across browsers and devices", "scripts": { "build": "gulp", diff --git a/webpack.prod.js b/webpack.prod.js index 02f736dc5a..1c531a76bb 100644 --- a/webpack.prod.js +++ b/webpack.prod.js @@ -13,7 +13,7 @@ module.exports = merge(common, { }, plugins: [ new webpack.DefinePlugin({ - DEBUG: JSON.stringify(false) + DEBUG: JSON.stringify(true) }), sentryWebpackPlugin({ authToken: process.env.SENTRY_AUTH_TOKEN,