From fd1c57996b7ebe5c14501215487a926cbf9551fb Mon Sep 17 00:00:00 2001 From: wanhose Date: Tue, 15 Oct 2024 11:51:07 +0200 Subject: [PATCH] refactor: move licenses up --- packages/api/LICENSE => LICENSE | 0 README.md | 8 ++++++++ package.json | 3 ++- packages/api/README.md | 8 -------- packages/api/package.json | 3 +-- packages/browser-extension/LICENSE | 21 --------------------- packages/browser-extension/README.md | 20 ++++++-------------- packages/browser-extension/package.json | 3 +-- packages/web/package.json | 3 +-- 9 files changed, 19 insertions(+), 50 deletions(-) rename packages/api/LICENSE => LICENSE (100%) delete mode 100644 packages/browser-extension/LICENSE diff --git a/packages/api/LICENSE b/LICENSE similarity index 100% rename from packages/api/LICENSE rename to LICENSE diff --git a/README.md b/README.md index 0bc66bd..bb8a96d 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,14 @@ Cookie Dialog Monster is a browser extension that hides cookie consent dialogs without changing user preferences. By default, we do NOT accept cookies (except in [a few cases](https://git.wanhose.dev/wanhose/cookie-dialog-monster/src/branch/main/database.json#L248) where the pages do not function without accepting them). You can report broken sites with a single click, which will create an issue in this repository to be fixed promptly. +## Contributing + +Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. + +## License + +[MIT](https://choosealicense.com/licenses/mit/) + ## Repositories - [API](/wanhose/cookie-dialog-monster/src/branch/main/packages/api) diff --git a/package.json b/package.json index 00ed033..1ff6397 100644 --- a/package.json +++ b/package.json @@ -20,5 +20,6 @@ "engines": { "node": "20.x" }, - "packageManager": "yarn@4.2.1" + "packageManager": "yarn@4.2.1", + "license": "MIT" } diff --git a/packages/api/README.md b/packages/api/README.md index 26fc638..3077a5a 100644 --- a/packages/api/README.md +++ b/packages/api/README.md @@ -25,11 +25,3 @@ Lints the codebase using ESLint. ### `yarn start` Starts the API server instance in production mode. - -## Contributing - -Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. - -## License - -[MIT](https://choosealicense.com/licenses/mit/) diff --git a/packages/api/package.json b/packages/api/package.json index a9d3823..5bafc54 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -34,6 +34,5 @@ "engines": { "node": "20.x" }, - "packageManager": "yarn@4.1.0", - "license": "MIT" + "packageManager": "yarn@4.2.1" } diff --git a/packages/browser-extension/LICENSE b/packages/browser-extension/LICENSE deleted file mode 100644 index 619d225..0000000 --- a/packages/browser-extension/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License Copyright (c) 2022 wanhose - -Permission is hereby -granted, free of charge, to any person obtaining a copy of this software and -associated documentation files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, copy, modify, merge, -publish, distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice -(including the next paragraph) shall be included in all copies or substantial -portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO -EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/packages/browser-extension/README.md b/packages/browser-extension/README.md index f1f4afa..464c296 100644 --- a/packages/browser-extension/README.md +++ b/packages/browser-extension/README.md @@ -1,11 +1,5 @@ # Cookie Dialog Monster Browser Extension -## Downloads - -- [Chrome Web Store](https://chrome.google.com/webstore/detail/djcbfpkdhdkaflcigibkbpboflaplabg) -- [Edge Add-ons](https://microsoftedge.microsoft.com/addons/detail/hbogodfciblakeneadpcolhmfckmjcii) -- [Mozilla Firefox (.xpi)](https://www.cookie-dialog-monster.com/releases/latest.xpi) - ## Compatibility - All browsers based on Chromium 127+ (Blisk, Brave, Colibri, Epic Browser, Iron Browser, Vivaldi and many more) @@ -14,14 +8,12 @@ - Mozilla Firefox 126+ - Mozilla Firefox Mobile 126+ +## Downloads + +- [Chrome Web Store](https://chrome.google.com/webstore/detail/djcbfpkdhdkaflcigibkbpboflaplabg) +- [Edge Add-ons](https://microsoftedge.microsoft.com/addons/detail/hbogodfciblakeneadpcolhmfckmjcii) +- [Mozilla Firefox (.xpi)](https://www.cookie-dialog-monster.com/releases/latest.xpi) + ## Installation Follow one of [these guides](https://git.wanhose.dev/wanhose/cookie-dialog-monster/wiki/Welcome#guides). - -## Contributing - -Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. - -## License - -[MIT](https://choosealicense.com/licenses/mit/) diff --git a/packages/browser-extension/package.json b/packages/browser-extension/package.json index 76381d9..7d6293d 100644 --- a/packages/browser-extension/package.json +++ b/packages/browser-extension/package.json @@ -16,6 +16,5 @@ "engines": { "node": "20.x" }, - "packageManager": "yarn@4.1.0", - "license": "MIT" + "packageManager": "yarn@4.2.1" } diff --git a/packages/web/package.json b/packages/web/package.json index 20c293d..78c3808 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -15,6 +15,5 @@ "engines": { "node": "20.x" }, - "packageManager": "yarn@4.1.0", - "license": "MIT" + "packageManager": "yarn@4.2.1" }