From 8b590e4e9868287743cfd32193ea48a2376f6ded Mon Sep 17 00:00:00 2001 From: Daan Wijns Date: Sat, 7 Nov 2020 13:05:31 +0100 Subject: [PATCH] 0.4.5 (#69) --- .eslintrc.js | 38 +- README.md | 2 +- docker-compose.yml | 2 +- package-lock.json | 314 ++++++++++------- package.json | 25 +- src/App.vue | 17 +- src/components/Modals/AddModal.vue | 11 +- src/components/Modals/ConfirmDeleteModal.vue | 4 +- src/components/Modals/RenameModal.vue | 2 +- src/components/Modals/SearchModal.vue | 184 ---------- .../Modals/SearchModal/PluginManager.vue | 67 ++++ .../Modals/SearchModal/SearchModal.vue | 166 +++++++++ .../Modals/SettingsModal/Tabs/BitTorrent.vue | 2 +- .../Modals/SettingsModal/Tabs/Downloads.vue | 2 +- .../SettingsModal/Tabs/TagsAndCategories.vue | 2 +- .../Modals/SettingsModal/Tabs/VueTorrent.vue | 6 +- .../Tabs/Vuetorrent/Dashboard.vue | 8 +- .../SettingsModal/Tabs/Vuetorrent/General.vue | 4 +- .../Modals/SettingsModal/Tabs/WebUI.vue | 2 +- .../TorrentDetailModal/Tabs/Content.vue | 9 +- .../Tabs/TorrentTagsAndCategories.vue | 4 +- src/components/Navbar/Navbar.vue | 2 +- src/components/Navbar/SpeedGraph.vue | 2 +- src/components/Navbar/TopActions.vue | 11 +- src/components/Torrent.vue | 16 +- .../Torrent/DashboardItems/Category.vue | 2 +- .../Torrent/DashboardItems/Download.vue | 2 +- src/components/Torrent/DashboardItems/ETA.vue | 2 +- .../Torrent/DashboardItems/Peers.vue | 2 +- .../Torrent/DashboardItems/Progress.vue | 8 +- .../Torrent/DashboardItems/Ratio.vue | 2 +- .../Torrent/DashboardItems/Seeds.vue | 2 +- .../Torrent/DashboardItems/Size.vue | 2 +- .../Torrent/DashboardItems/Status.vue | 6 +- .../Torrent/DashboardItems/Tags.vue | 6 +- .../Torrent/DashboardItems/Upload.vue | 2 +- .../Torrent/DashboardItems/index.js | 2 +- .../Torrent/TorrentRightClickMenu.vue | 2 +- src/helpers.js | 8 +- src/mixins/General.js | 12 +- src/mixins/TorrentDashboardItem.js | 6 +- src/mixins/TorrentSelect.js | 2 +- src/mixins/index.js | 2 +- src/models/torrent.js | 8 +- src/router.js | 6 +- src/services/qbit.js | 325 ++++++++---------- src/store/getters.js | 3 +- src/store/index.js | 43 +-- src/store/mutations.js | 13 +- src/views/Dashboard.vue | 39 ++- src/views/Login.vue | 4 +- 51 files changed, 760 insertions(+), 653 deletions(-) delete mode 100644 src/components/Modals/SearchModal.vue create mode 100644 src/components/Modals/SearchModal/PluginManager.vue create mode 100644 src/components/Modals/SearchModal/SearchModal.vue diff --git a/.eslintrc.js b/.eslintrc.js index 2ac35261..68e709f4 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,33 +1,31 @@ module.exports = { - root: true, env: { - node: true, - commonjs: true, + browser: true, es2021: true }, - extends: ['plugin:vue/essential', 'eslint:recommended'], + extends: [ + 'plugin:vue/essential', + 'google' + ], parserOptions: { - parser: 'babel-eslint' + ecmaVersion: 12, + sourceType: 'module' }, + plugins: [ + 'vue' + ], rules: { - 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off', - 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off', indent: ['warn', 4], semi: ['error', 'never'], quotes: ['error', 'single'], 'comma-dangle': ['error', 'never'], 'arrow-parens': ['error', 'as-needed'], - 'no-underscore-dangle': ['warn', { allowAfterThis: true }] - }, - overrides: [ - { - files: [ - '**/__tests__/*.{j,t}s?(x)', - '**/tests/unit/**/*.spec.{j,t}s?(x)' - ], - env: { - jest: true - } - } - ] + 'no-underscore-dangle': ['warn', { allowAfterThis: true }], + 'quote-props': ['error', 'as-needed'], + 'object-curly-spacing': ['error', 'always'], + 'require-jsdoc': 'off', + 'valid-jsdoc': 'off', + 'max-len': ['error', { code: 100 }], + 'vue/html-quotes': ['error', 'double', { avoidEscape: true }] + } } diff --git a/README.md b/README.md index 33bc8892..e1c236a6 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ The sleekest looking WEBUI for qBittorrent made with Vuejs! | | | | | :--------------------------------: | :--------------------------------: | :--------------------------------: | -| ![](https://imgur.com/Zcm98H3.png) | ![](https://imgur.com/OujrH0f.png) | ![](https://imgur.com/OkukwYY.png) | +| ![](https://imgur.com/Zcm98H3.png) | ![](https://imgur.com/OujrH0f.png) | ![](https://imgur.com/3FZTXPL.png) | | ![](https://imgur.com/QYpNCXs.png) | ![](https://imgur.com/6j5wxhl.png) | ![](https://imgur.com/jnzDKjW.png) |

diff --git a/docker-compose.yml b/docker-compose.yml index c86ed3c6..b0a9dc51 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: '3.6' services: qbittorrent: - image: linuxserver/qbittorrent + image: linuxserver/qbittorrent:latest container_name: qbit environment: - PUID=1000 diff --git a/package-lock.json b/package-lock.json index 0d15b287..76524dee 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "vuetorrent", - "version": "0.4.2", + "version": "0.4.5", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -990,9 +990,9 @@ } }, "@eslint/eslintrc": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.1.3.tgz", - "integrity": "sha512-4YVwPkANLeNtRjMekzux1ci8hIaH5eGKktGqR0d3LWsKNn5B2X/1Z6Trxy7jQXl9EBGE6Yj02O+t09FMeRllaA==", + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.1.tgz", + "integrity": "sha512-XRUeBZ5zBWLYgSANMpThFddrZZkEbGHgUdt5UJjZfnlN9BGCiUBrf+nvbRupSjMvqzwnQN0qwCmOxITt1cfywA==", "dev": true, "requires": { "ajv": "^6.12.4", @@ -1007,12 +1007,6 @@ "strip-json-comments": "^3.1.1" }, "dependencies": { - "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true - }, "ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", @@ -1025,23 +1019,6 @@ "uri-js": "^4.2.2" } }, - "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true - }, - "espree": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.0.tgz", - "integrity": "sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw==", - "dev": true, - "requires": { - "acorn": "^7.4.0", - "acorn-jsx": "^5.2.0", - "eslint-visitor-keys": "^1.3.0" - } - }, "globals": { "version": "12.4.0", "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", @@ -1052,9 +1029,9 @@ } }, "import-fresh": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz", - "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==", + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.2.tgz", + "integrity": "sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw==", "dev": true, "requires": { "parent-module": "^1.0.0", @@ -1141,6 +1118,50 @@ "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", "dev": true }, + "@rollup/plugin-babel": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.2.1.tgz", + "integrity": "sha512-Jd7oqFR2dzZJ3NWANDyBjwTtX/lYbZpVcmkHrfQcpvawHs9E4c0nYk5U2mfZ6I/DZcIvy506KZJi54XK/jxH7A==", + "requires": { + "@babel/helper-module-imports": "^7.10.4", + "@rollup/pluginutils": "^3.1.0" + }, + "dependencies": { + "@babel/helper-module-imports": { + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz", + "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==", + "requires": { + "@babel/types": "^7.12.5" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", + "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==" + }, + "@babel/types": { + "version": "7.12.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz", + "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==", + "requires": { + "@babel/helper-validator-identifier": "^7.10.4", + "lodash": "^4.17.19", + "to-fast-properties": "^2.0.0" + } + } + } + }, + "@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "requires": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + } + }, "@soda/friendly-errors-webpack-plugin": { "version": "1.7.1", "resolved": "https://registry.npmjs.org/@soda/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-1.7.1.tgz", @@ -1239,6 +1260,11 @@ "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==", "dev": true }, + "@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" + }, "@types/events": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz", @@ -1414,20 +1440,20 @@ } }, "@vue/cli-plugin-pwa": { - "version": "4.5.7", - "resolved": "https://registry.npmjs.org/@vue/cli-plugin-pwa/-/cli-plugin-pwa-4.5.7.tgz", - "integrity": "sha512-mOaEgoLCT2yE8Pdvlz8LhXKqIs3w4xJjDr2dLrOrxh0+OhSpOHJdJ3yHswlgvkxgg0/FGS6t8haj0DfInQ+fYg==", + "version": "4.5.8", + "resolved": "https://registry.npmjs.org/@vue/cli-plugin-pwa/-/cli-plugin-pwa-4.5.8.tgz", + "integrity": "sha512-B5rFJhwhGLHcPUrAUx185X6jlTUJHgN6FTnU+qKspEoONCtGy09/zIL9ejELRw9jxv5C6x2WKUAkyHhh89RkWw==", "dev": true, "requires": { - "@vue/cli-shared-utils": "^4.5.7", + "@vue/cli-shared-utils": "^4.5.8", "webpack": "^4.0.0", "workbox-webpack-plugin": "^4.3.1" }, "dependencies": { "@vue/cli-shared-utils": { - "version": "4.5.7", - "resolved": "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-4.5.7.tgz", - "integrity": "sha512-oicFfx9PvgupxN/LW0s2ktdn1U6bBu8J4lPcW2xj6TtTWUkkxwzis4Tm+XOvgvZnu44+d7216y0Y4TX90q645w==", + "version": "4.5.8", + "resolved": "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-4.5.8.tgz", + "integrity": "sha512-pa6oenhBO/5HeDLRSokiwVN01gROACEDy3ESXWuPmragOREGNmmFKtkPHlqeYavGEX6LFp7f0VK3uMX6UYS5mQ==", "dev": true, "requires": { "@hapi/joi": "^15.0.1", @@ -2001,9 +2027,9 @@ "dev": true }, "acorn-jsx": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.2.0.tgz", - "integrity": "sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ==", + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz", + "integrity": "sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==", "dev": true }, "acorn-walk": { @@ -2123,10 +2149,11 @@ } }, "apexcharts": { - "version": "3.22.0", - "resolved": "https://registry.npmjs.org/apexcharts/-/apexcharts-3.22.0.tgz", - "integrity": "sha512-DDh2eXnAEA8GoKU/hdicOaS2jzGehXwv8Bj1djYYudkeQzEdglFoWsVyIxff+Ds7+aUtVAJzd/9ythZuyyIbXQ==", + "version": "3.22.1", + "resolved": "https://registry.npmjs.org/apexcharts/-/apexcharts-3.22.1.tgz", + "integrity": "sha512-wZ/6FT1JMKy9d6ZFbzNt98DLFYnSl19dhD1wav4rh+QTIQSS8qwD79T9ZaSJNXsWv0KfqLu6BIeUI+Z2U9O/eg==", "requires": { + "@rollup/plugin-babel": "^5.2.1", "svg.draggable.js": "^2.2.2", "svg.easing.js": "^2.0.0", "svg.filter.js": "^2.0.2", @@ -4103,9 +4130,9 @@ } }, "dayjs": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.9.3.tgz", - "integrity": "sha512-V+1SyIvkS+HmNbN1G7A9+ERbFTV9KTXu6Oor98v2xHmzzpp52OIJhQuJSTywWuBY5pyAEmlwbCi1Me87n/SLOw==" + "version": "1.9.5", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.9.5.tgz", + "integrity": "sha512-WULIw7UpW/E0y6VywewpbXAMH3d5cZijEhoHLwM+OMVbk/NtchKS/W+57H/0P1rqU7gHrAArjiRLHCUhgMQl6w==" }, "de-indent": { "version": "1.0.2", @@ -4771,13 +4798,13 @@ "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" }, "eslint": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.11.0.tgz", - "integrity": "sha512-G9+qtYVCHaDi1ZuWzBsOWo2wSwd70TXnU6UHA3cTYHp7gCTXZcpggWFoUVAMRarg68qtPoNfFbzPh+VdOgmwmw==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.13.0.tgz", + "integrity": "sha512-uCORMuOO8tUzJmsdRtrvcGq5qposf7Rw0LwkTJkoDbOycVQtQjmnhZSuLQnozLE4TmAzlMVV45eCHmQ1OpDKUQ==", "dev": true, "requires": { "@babel/code-frame": "^7.0.0", - "@eslint/eslintrc": "^0.1.3", + "@eslint/eslintrc": "^0.2.1", "ajv": "^6.10.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", @@ -4815,12 +4842,6 @@ "v8-compile-cache": "^2.0.3" }, "dependencies": { - "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true - }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -4882,25 +4903,6 @@ "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==", "dev": true }, - "espree": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.0.tgz", - "integrity": "sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw==", - "dev": true, - "requires": { - "acorn": "^7.4.0", - "acorn-jsx": "^5.2.0", - "eslint-visitor-keys": "^1.3.0" - }, - "dependencies": { - "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true - } - } - }, "esrecurse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", @@ -4934,9 +4936,9 @@ "dev": true }, "import-fresh": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz", - "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==", + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.2.tgz", + "integrity": "sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw==", "dev": true, "requires": { "parent-module": "^1.0.0", @@ -5002,6 +5004,12 @@ } } }, + "eslint-config-google": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/eslint-config-google/-/eslint-config-google-0.14.0.tgz", + "integrity": "sha512-WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw==", + "dev": true + }, "eslint-config-prettier": { "version": "6.11.0", "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-6.11.0.tgz", @@ -5034,14 +5042,23 @@ } }, "eslint-plugin-vue": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-6.2.2.tgz", - "integrity": "sha512-Nhc+oVAHm0uz/PkJAWscwIT4ijTrK5fqNqz9QB1D35SbbuMG1uB6Yr5AJpvPSWg+WOw7nYNswerYh0kOk64gqQ==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.1.0.tgz", + "integrity": "sha512-9dW7kj8/d2IkDdgNpvIhJdJ3XzU3x4PThXYMzWt49taktYnGyrTY6/bXCYZ/VtQKU9kXPntPrZ41+8Pw0Nxblg==", "dev": true, "requires": { + "eslint-utils": "^2.1.0", "natural-compare": "^1.4.0", - "semver": "^5.6.0", - "vue-eslint-parser": "^7.0.0" + "semver": "^7.3.2", + "vue-eslint-parser": "^7.1.1" + }, + "dependencies": { + "semver": { + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz", + "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==", + "dev": true + } } }, "eslint-scope": { @@ -5070,20 +5087,26 @@ "dev": true }, "espree": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", - "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==", + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.0.tgz", + "integrity": "sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw==", "dev": true, "requires": { - "acorn": "^7.1.1", + "acorn": "^7.4.0", "acorn-jsx": "^5.2.0", - "eslint-visitor-keys": "^1.1.0" + "eslint-visitor-keys": "^1.3.0" }, "dependencies": { "acorn": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.2.0.tgz", - "integrity": "sha512-apwXVmYVpQ34m/i71vrApRrRKCWQnZZF1+npOD0WV5xZFfwWOmKGQ2RWlfdy9vWITsenisM8M0Qeq8agcFHNiQ==", + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", "dev": true } } @@ -5103,9 +5126,9 @@ }, "dependencies": { "estraverse": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.1.0.tgz", - "integrity": "sha512-FyohXK+R0vE+y1nHLoBM7ZTyqRpqAlhdZHCWIWEviFLiGB8b04H6bQs8G+XTthacvT8VuwvteiP7RJSxMs8UEw==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", "dev": true } } @@ -5125,6 +5148,11 @@ "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true }, + "estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" + }, "esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", @@ -5790,9 +5818,9 @@ "dev": true }, "fuse.js": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-6.4.1.tgz", - "integrity": "sha512-+hAS7KYgLXontDh/vqffs7wIBw0ceb9Sx8ywZQhOsiQGcSO5zInGhttWOUYQYlvV/yYMJOacQ129Xs3mP3+oZQ==" + "version": "6.4.3", + "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-6.4.3.tgz", + "integrity": "sha512-JNgngolukIrqwayWnvy6NLH63hmwKPhm63o0uyBg51jPD0j09IvAzlV1rTXfAsgxpghI7khAo6Mv+EmvjDWXig==" }, "gauge": { "version": "2.7.4", @@ -8669,8 +8697,7 @@ "picomatch": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", - "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", - "dev": true + "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==" }, "pify": { "version": "4.0.1", @@ -10119,9 +10146,9 @@ "dev": true }, "sass": { - "version": "1.27.0", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.27.0.tgz", - "integrity": "sha512-0gcrER56OkzotK/GGwgg4fPrKuiFlPNitO7eUJ18Bs+/NBlofJfMxmxqpqJxjae9vu0Wq8TZzrSyxZal00WDig==", + "version": "1.29.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.29.0.tgz", + "integrity": "sha512-ZpwAUFgnvAUCdkjwPREny+17BpUj8nh5Yr6zKPGtLNTLrmtoRYIjm7njP24COhjJldjwW1dcv52Lpf4tNZVVRA==", "dev": true, "requires": { "chokidar": ">=2.0.0 <4.0.0" @@ -10796,9 +10823,9 @@ } }, "sortablejs": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/sortablejs/-/sortablejs-1.12.0.tgz", - "integrity": "sha512-bPn57rCjBRlt2sC24RBsu40wZsmLkSo2XeqG8k6DC1zru5eObQUIPPZAQG7W2SJ8FZQYq+BEJmvuw1Zxb3chqg==" + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/sortablejs/-/sortablejs-1.10.2.tgz", + "integrity": "sha512-YkPGufevysvfwn5rfdlGyrGjt7/CRHwvRPogD/lC+TnvcN29jDpCifKP+rBqf+LRldfXSTh+0CGLcSg0VIxq3A==" }, "source-list-map": { "version": "2.0.1", @@ -11523,8 +11550,7 @@ "to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", - "dev": true + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" }, "to-object-path": { "version": "0.3.0", @@ -11948,9 +11974,9 @@ "integrity": "sha512-FOmRr+FmWEIG8uhZv6C2bTgEVXsHk08kE7mPlrBbEe+c3r9pjceVPgupIfNIhc4yx55H69OXANrUaSuu9eInKg==" }, "v8-compile-cache": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz", - "integrity": "sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz", + "integrity": "sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==", "dev": true }, "validate-npm-package-license": { @@ -12037,9 +12063,9 @@ } }, "vue-eslint-parser": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.1.0.tgz", - "integrity": "sha512-Kr21uPfthDc63nDl27AGQEhtt9VrZ9nkYk/NTftJ2ws9XiJwzJJCnCr3AITQ2jpRMA0XPGDECxYH8E027qMK9Q==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.1.1.tgz", + "integrity": "sha512-8FdXi0gieEwh1IprIBafpiJWcApwrU+l2FEj8c1HtHFdNXMd0+2jUSjBVmcQYohf/E72irwAXEXLga6TQcB3FA==", "dev": true, "requires": { "debug": "^4.1.1", @@ -12050,15 +12076,49 @@ "lodash": "^4.17.15" }, "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + }, "eslint-scope": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.0.0.tgz", - "integrity": "sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "requires": { - "esrecurse": "^4.1.0", + "esrecurse": "^4.3.0", "estraverse": "^4.1.1" } + }, + "espree": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", + "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==", + "dev": true, + "requires": { + "acorn": "^7.1.1", + "acorn-jsx": "^5.2.0", + "eslint-visitor-keys": "^1.1.0" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true + } + } } } }, @@ -12095,9 +12155,9 @@ "integrity": "sha512-xo0CEVdkjSjhJoDdLSvoZoQrw/H2BlzB5jrCBKGZNXN2zdZgMuZ9BKrxXDjNP2AxlcCoKc8OahI3F3r3JGLv2Q==" }, "vue-router": { - "version": "3.4.7", - "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.4.7.tgz", - "integrity": "sha512-CbHXue5BLrDivOk5O4eZ0WT4Yj8XwdXa4kCnsEIOzYUPF/07ZukayA2jGxDCJxLc9SgVQX9QX0OuGOwGlVB4Qg==" + "version": "3.4.9", + "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.4.9.tgz", + "integrity": "sha512-CGAKWN44RqXW06oC+u4mPgHLQQi2t6vLD/JbGRDAXm0YpMv0bgpKuU5bBd7AvMgfTz9kXVRIWKHqRwGEb8xFkA==" }, "vue-style-loader": { "version": "4.1.2", @@ -12149,17 +12209,17 @@ } }, "vuedraggable": { - "version": "2.24.2", - "resolved": "https://registry.npmjs.org/vuedraggable/-/vuedraggable-2.24.2.tgz", - "integrity": "sha512-y1NbVhLFOVHHdJl7qsYOtExiTq4zyxF+PxiF9NC8kHEtI6sAFhUHtHYp+ONa8v4S3bAspzGHOHuOq0pNO4fFtA==", + "version": "2.24.3", + "resolved": "https://registry.npmjs.org/vuedraggable/-/vuedraggable-2.24.3.tgz", + "integrity": "sha512-6/HDXi92GzB+Hcs9fC6PAAozK1RLt1ewPTLjK0anTYguXLAeySDmcnqE8IC0xa7shvSzRjQXq3/+dsZ7ETGF3g==", "requires": { - "sortablejs": "^1.10.1" + "sortablejs": "1.10.2" } }, "vuetify": { - "version": "2.3.14", - "resolved": "https://registry.npmjs.org/vuetify/-/vuetify-2.3.14.tgz", - "integrity": "sha512-1Ys1MreJQOL/Ddp3YotBi1SlC2+1A0/RVkDXX3Azspt8incPdAnNB0JyChHiJ/TM+L+KSA7T4EXF9YDrCWENmg==" + "version": "2.3.16", + "resolved": "https://registry.npmjs.org/vuetify/-/vuetify-2.3.16.tgz", + "integrity": "sha512-LHPqY+Gmyb/75xJscO0a3CuB4ZdpqHLNaGMAbmfTyapI8Q02+hjABEZzitFU/XObD2KhrNWPJzmGZPhbshGUzg==" }, "vuex": { "version": "3.5.1", diff --git a/package.json b/package.json index f586a9f5..2b2f8968 100644 --- a/package.json +++ b/package.json @@ -1,20 +1,20 @@ { "name": "vuetorrent", - "version": "0.4.4", + "version": "0.4.5", "private": true, "scripts": { - "start" : "npm run serve", + "start": "npm run serve", "serve": "vue-cli-service serve", "build": "vue-cli-service build", "lint": "vue-cli-service lint" }, "dependencies": { "@babel/polyfill": "^7.12.1", - "apexcharts": "^3.22.0", + "apexcharts": "^3.22.1", "axios": "^0.19.2", "core-js": "^3.6.4", - "dayjs": "^1.9.3", - "fuse.js": "^6.4.1", + "dayjs": "^1.9.5", + "fuse.js": "^6.4.3", "lodash": "^4.17.20", "register-service-worker": "^1.7.1", "uuid": "^8.3.1", @@ -22,27 +22,28 @@ "vue-apexcharts": "^1.6.0", "vue-context": "^5.2.0", "vue-observe-visibility": "^0.4.6", - "vue-router": "^3.4.7", + "vue-router": "^3.4.9", "vue-toastification": "^1.7.8", "vue2-perfect-scrollbar": "^1.5.0", - "vuedraggable": "^2.24.2", - "vuetify": "^2.3.14", + "vuedraggable": "^2.24.3", + "vuetify": "^2.3.16", "vuex": "^3.5.1", "vuex-persist": "^3.1.3" }, "devDependencies": { "@vue/cli-plugin-babel": "~4.3.0", "@vue/cli-plugin-eslint": "~4.3.0", - "@vue/cli-plugin-pwa": "^4.5.7", + "@vue/cli-plugin-pwa": "^4.5.8", "@vue/cli-service": "~4.3.0", "@vue/eslint-config-prettier": "^6.0.0", "babel-eslint": "^10.1.0", - "eslint": "^7.10.0", + "eslint": "^7.13.0", + "eslint-config-google": "^0.14.0", "eslint-plugin-prettier": "^3.1.4", - "eslint-plugin-vue": "^6.2.2", + "eslint-plugin-vue": "^7.1.0", "fibers": "^5.0.0", "node-sass": "^4.14.1", - "sass": "^1.27.0", + "sass": "^1.29.0", "sass-loader": "^8.0.2", "vue-cli-plugin-vuetify": "^2.0.7", "vue-template-compiler": "^2.6.12" diff --git a/src/App.vue b/src/App.vue index ef08bdba..5850a4a1 100644 --- a/src/App.vue +++ b/src/App.vue @@ -18,10 +18,12 @@ import { mapState, mapGetters } from 'vuex' import Navbar from '@/components/Navbar/Navbar.vue' import { version } from '../package.json' import qbit from '@/services/qbit' +import { General } from '@/mixins' export default { - components: { Navbar }, name: 'App', + components: { Navbar }, + mixins: [General], data() { return {} }, @@ -30,18 +32,15 @@ export default { const res = await qbit.login() const authenticated = res === 'Ok.' this.$store.commit('LOGIN', authenticated) - if (!authenticated && !this.$router.currentRoute.name.includes('login')) this.$router.push('login') + if ( + !authenticated && + !this.$router.currentRoute.name.includes('login') + ) this.$router.push('login') } }, computed: { ...mapState(['rid', 'mainData', 'preferences', 'modals']), - ...mapGetters(['getTheme', 'getAuthenticated']), - theme() { - return this.getTheme() ? 'dark' : 'light' - }, - background() { - return this.$vuetify.theme.themes[this.theme].background - }, + ...mapGetters(['getAuthenticated']), isAuthenticated() { return this.getAuthenticated() } diff --git a/src/components/Modals/AddModal.vue b/src/components/Modals/AddModal.vue index 953b96a2..ada4f193 100644 --- a/src/components/Modals/AddModal.vue +++ b/src/components/Modals/AddModal.vue @@ -121,6 +121,7 @@ import Modal from '@/mixins/Modal' import qbit from '@/services/qbit' export default { name: 'AddModal', + props: ['initialMagnet'], mixins: [Modal], data() { return { @@ -144,14 +145,13 @@ export default { } }, methods: { - addDropFile(e) - { + addDropFile(e) { this.files.push(...Array.from(e.dataTransfer.files)) }, submit() { if (this.files.length || this.urls) { - let torrents = [] - let params = { urls: null, autoTMM: this.autoTMM } + const torrents = [] + const params = { urls: null, autoTMM: this.autoTMM } if (this.files.length) torrents.push(...this.files) if (this.urls) params.urls = this.urls if (this.category) params.category = this.category @@ -188,7 +188,7 @@ export default { let savePath = this.getSettings().save_path if (this.category) { savePath += this.category - let category = this.getCategories()[this.category] + const category = this.getCategories()[this.category] if (category && category.savePath) savePath = category.savePath } return savePath @@ -201,6 +201,7 @@ export default { this.$store.commit('FETCH_SETTINGS') this.$store.commit('FETCH_CATEGORIES') this.directory = this.savepath + this.urls = this.initialMagnet } } diff --git a/src/components/Modals/ConfirmDeleteModal.vue b/src/components/Modals/ConfirmDeleteModal.vue index ed9be531..9487a93d 100644 --- a/src/components/Modals/ConfirmDeleteModal.vue +++ b/src/components/Modals/ConfirmDeleteModal.vue @@ -63,9 +63,9 @@ export default { computed: { ...mapState(['selected_torrents']), ...mapGetters(['getTorrents']), - torrents(){ + torrents() { return this.getTorrents().filter(t => this.selected_torrents.includes(t.hash)) } } } - \ No newline at end of file + diff --git a/src/components/Modals/RenameModal.vue b/src/components/Modals/RenameModal.vue index f4e15b6d..a072afea 100644 --- a/src/components/Modals/RenameModal.vue +++ b/src/components/Modals/RenameModal.vue @@ -77,4 +77,4 @@ export default { this.name = this.torrent.name } } - \ No newline at end of file + diff --git a/src/components/Modals/SearchModal.vue b/src/components/Modals/SearchModal.vue deleted file mode 100644 index 7ea4c393..00000000 --- a/src/components/Modals/SearchModal.vue +++ /dev/null @@ -1,184 +0,0 @@ - - - diff --git a/src/components/Modals/SearchModal/PluginManager.vue b/src/components/Modals/SearchModal/PluginManager.vue new file mode 100644 index 00000000..3f4c90c0 --- /dev/null +++ b/src/components/Modals/SearchModal/PluginManager.vue @@ -0,0 +1,67 @@ + + + diff --git a/src/components/Modals/SearchModal/SearchModal.vue b/src/components/Modals/SearchModal/SearchModal.vue new file mode 100644 index 00000000..0b38d37e --- /dev/null +++ b/src/components/Modals/SearchModal/SearchModal.vue @@ -0,0 +1,166 @@ + + + diff --git a/src/components/Modals/SettingsModal/Tabs/BitTorrent.vue b/src/components/Modals/SettingsModal/Tabs/BitTorrent.vue index 0a626bdf..7e888a47 100644 --- a/src/components/Modals/SettingsModal/Tabs/BitTorrent.vue +++ b/src/components/Modals/SettingsModal/Tabs/BitTorrent.vue @@ -144,7 +144,7 @@ \ No newline at end of file + diff --git a/src/components/Modals/SettingsModal/Tabs/Vuetorrent/Dashboard.vue b/src/components/Modals/SettingsModal/Tabs/Vuetorrent/Dashboard.vue index 5031aff9..c4ec1b93 100644 --- a/src/components/Modals/SettingsModal/Tabs/Vuetorrent/Dashboard.vue +++ b/src/components/Modals/SettingsModal/Tabs/Vuetorrent/Dashboard.vue @@ -65,11 +65,11 @@ export default { components: { draggable }, - computed : { - busyTorrentProperties(){ + computed: { + busyTorrentProperties() { return this.$store.state.webuiSettings.busyTorrentProperties }, - doneTorrentProperties(){ + doneTorrentProperties() { return this.$store.state.webuiSettings.doneTorrentProperties } } @@ -78,4 +78,4 @@ export default { \ No newline at end of file + diff --git a/src/components/Modals/SettingsModal/Tabs/Vuetorrent/General.vue b/src/components/Modals/SettingsModal/Tabs/Vuetorrent/General.vue index 39d81a84..61935d8a 100644 --- a/src/components/Modals/SettingsModal/Tabs/Vuetorrent/General.vue +++ b/src/components/Modals/SettingsModal/Tabs/Vuetorrent/General.vue @@ -172,8 +172,8 @@ export default { return this.getAppVersion() } }, - methods : { - async fetchQbitVersion(){ + methods: { + async fetchQbitVersion() { this.Qbitversion = await qbit.getAppVersion() } }, diff --git a/src/components/Modals/SettingsModal/Tabs/WebUI.vue b/src/components/Modals/SettingsModal/Tabs/WebUI.vue index 1319f59a..be800704 100644 --- a/src/components/Modals/SettingsModal/Tabs/WebUI.vue +++ b/src/components/Modals/SettingsModal/Tabs/WebUI.vue @@ -55,7 +55,7 @@ \ No newline at end of file + diff --git a/src/components/Torrent/DashboardItems/Download.vue b/src/components/Torrent/DashboardItems/Download.vue index adfee29b..b1e18216 100644 --- a/src/components/Torrent/DashboardItems/Download.vue +++ b/src/components/Torrent/DashboardItems/Download.vue @@ -14,4 +14,4 @@ export default { name: 'Download', props: ['torrent'] } - \ No newline at end of file + diff --git a/src/components/Torrent/DashboardItems/ETA.vue b/src/components/Torrent/DashboardItems/ETA.vue index eec600b8..31e19c38 100644 --- a/src/components/Torrent/DashboardItems/ETA.vue +++ b/src/components/Torrent/DashboardItems/ETA.vue @@ -11,4 +11,4 @@ export default { name: 'ETA', props: ['torrent'] } - \ No newline at end of file + diff --git a/src/components/Torrent/DashboardItems/Peers.vue b/src/components/Torrent/DashboardItems/Peers.vue index cb22c44d..f4881bbe 100644 --- a/src/components/Torrent/DashboardItems/Peers.vue +++ b/src/components/Torrent/DashboardItems/Peers.vue @@ -14,4 +14,4 @@ export default { name: 'Peers', props: ['torrent'] } - \ No newline at end of file + diff --git a/src/components/Torrent/DashboardItems/Progress.vue b/src/components/Torrent/DashboardItems/Progress.vue index ce25946b..4feb1350 100644 --- a/src/components/Torrent/DashboardItems/Progress.vue +++ b/src/components/Torrent/DashboardItems/Progress.vue @@ -2,7 +2,7 @@

Done
@@ -15,10 +15,10 @@ \ No newline at end of file + diff --git a/src/components/Torrent/DashboardItems/Ratio.vue b/src/components/Torrent/DashboardItems/Ratio.vue index 5d212e8e..05acb57b 100644 --- a/src/components/Torrent/DashboardItems/Ratio.vue +++ b/src/components/Torrent/DashboardItems/Ratio.vue @@ -9,4 +9,4 @@ export default { name: 'Ratio', props: ['torrent'] } - \ No newline at end of file + diff --git a/src/components/Torrent/DashboardItems/Seeds.vue b/src/components/Torrent/DashboardItems/Seeds.vue index 56224419..1a7bb3cb 100644 --- a/src/components/Torrent/DashboardItems/Seeds.vue +++ b/src/components/Torrent/DashboardItems/Seeds.vue @@ -14,4 +14,4 @@ export default { name: 'Seeds', props: ['torrent'] } - \ No newline at end of file + diff --git a/src/components/Torrent/DashboardItems/Size.vue b/src/components/Torrent/DashboardItems/Size.vue index 10127a95..d2dea4dc 100644 --- a/src/components/Torrent/DashboardItems/Size.vue +++ b/src/components/Torrent/DashboardItems/Size.vue @@ -14,4 +14,4 @@ export default { name: 'Size', props: ['torrent'] } - \ No newline at end of file + diff --git a/src/components/Torrent/DashboardItems/Status.vue b/src/components/Torrent/DashboardItems/Status.vue index 3eeeb7a2..29c3f74f 100644 --- a/src/components/Torrent/DashboardItems/Status.vue +++ b/src/components/Torrent/DashboardItems/Status.vue @@ -13,10 +13,10 @@ \ No newline at end of file + diff --git a/src/components/Torrent/DashboardItems/Tags.vue b/src/components/Torrent/DashboardItems/Tags.vue index 7b6b0876..20fddebe 100644 --- a/src/components/Torrent/DashboardItems/Tags.vue +++ b/src/components/Torrent/DashboardItems/Tags.vue @@ -17,10 +17,10 @@ \ No newline at end of file + diff --git a/src/components/Torrent/DashboardItems/Upload.vue b/src/components/Torrent/DashboardItems/Upload.vue index 18ab6079..c5fb6855 100644 --- a/src/components/Torrent/DashboardItems/Upload.vue +++ b/src/components/Torrent/DashboardItems/Upload.vue @@ -14,4 +14,4 @@ export default { name: 'Upload', props: ['torrent'] } - \ No newline at end of file + diff --git a/src/components/Torrent/DashboardItems/index.js b/src/components/Torrent/DashboardItems/index.js index c2fdda89..ce930752 100644 --- a/src/components/Torrent/DashboardItems/index.js +++ b/src/components/Torrent/DashboardItems/index.js @@ -22,4 +22,4 @@ export { Status, Category, Tags -} \ No newline at end of file +} diff --git a/src/components/Torrent/TorrentRightClickMenu.vue b/src/components/Torrent/TorrentRightClickMenu.vue index 3e7dbc03..af0d43a8 100644 --- a/src/components/Torrent/TorrentRightClickMenu.vue +++ b/src/components/Torrent/TorrentRightClickMenu.vue @@ -68,7 +68,7 @@