diff --git a/package.json b/package.json index 52767853..e1dd7088 100644 --- a/package.json +++ b/package.json @@ -30,6 +30,7 @@ "build pwa & deploy to india032": "quasar build -m pwa && scp -r -P 222 dist/pwa/* carsten@carsten.evandor.de:/home/carsten/tabsets/shared.tabsets.net" }, "dependencies": { + "@auth0/auth0-vue": "^2.1.0", "@calumk/editorjs-columns": "^0.3.1", "@codexteam/icons": "^0.3.0", "@editorjs/editorjs": "^2.27.2", @@ -40,6 +41,7 @@ "@quasar/extras": "^1.16.6", "@types/lodash": "^4.14.182", "@types/pngjs": "^6.0.4", + "@types/pouchdb": "^6.4.2", "@types/rangy": "^0.0.38", "@types/sanitize-html": "^2.9.0", "@xenova/transformers": "^2.12.1", @@ -53,18 +55,21 @@ "idb": "^8.0.0", "idraw": "^0.3.1", "isomorphic-git": "^1.25.2", - "js-md5": "^0.8.3", + "jwt-decode": "^3.1.2", + "keytar": "^7.9.0", "lodash": "^4.17.21", "mhtml2html": "^3.0.0", "mqtt": "^5.3.4", "pinia": "^2.0.11", "pixelmatch": "^5.3.0", "pngjs": "^7.0.0", + "pouchdb-browser": "^8.0.1", "quasar": "^2.13.1", "rangy": "^1.3.1", "regenerator-runtime": "^0.14.1", "sanitize-html": "^2.10.0", "throttled-queue": "^2.1.4", + "ts-md5": "^1.3.1", "uuid": "^9.0.0", "v-onboarding": "^2.6.0", "vite-plugin-package-version": "^1.1.0", diff --git a/quasar.config.js b/quasar.config.js index 0f0a726d..10061cbd 100644 --- a/quasar.config.js +++ b/quasar.config.js @@ -28,7 +28,8 @@ module.exports = configure(function (ctx) { // https://v2.quasar.dev/quasar-cli-vite/boot-files boot: [ //'i18n', - 'constants' + 'constants', + 'auth0' ], // https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#css diff --git a/src-bex/background.ts b/src-bex/background.ts index 60392aa6..a9423703 100644 --- a/src-bex/background.ts +++ b/src-bex/background.ts @@ -19,14 +19,12 @@ chrome.runtime.onInstalled.addListener((callback) => { // getting error: "Service worker registration failed. Status code: 15" // Analytics.fireEvent('install-' + callback.reason); if (callback.reason !== OnInstalledReason.CHROME_UPDATE) { - // if (!navigator.webdriver) { chrome.tabs.create({ active: true, url: callback.previousVersion ? "https://tabsets.web.app/#/updatedFrom/" + callback.previousVersion : "https://tabsets.web.app/#/installed/" }) - // } } }); diff --git a/src/App.vue b/src/App.vue index 2125a00a..e84876dc 100644 --- a/src/App.vue +++ b/src/App.vue @@ -3,23 +3,110 @@