From cb34463e49ca24625bf6c21683e60911d914d210 Mon Sep 17 00:00:00 2001 From: Josef Slezak <32373099+MysterieDev@users.noreply.github.com> Date: Mon, 6 Sep 2021 11:09:17 +0200 Subject: [PATCH 1/8] Update readme.md (#1) update readme --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index a62b665..9dde070 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,13 @@ # Your Cookiebanner Solution for the Typemill CMS +With this Plugin, you get a markdown based solution for a up to date cookiebanner integrated into the typemill CMS System. + +You can whitelist certain pages to not require consent in order to view them with query parameters. You can also control the version of the cookiebanner, the user will see. + +The Banner is based on PHP and SolidJS. SolidJS is a blazing fast solution for little reactive Applications. That way, the user does not experience any content shift. + +Questions? Feel free to open an Issue! + **DISCLAIMER:** As the author of the plugin, i tried to be considerate about the regulations and laws regarding data privacy. Even though, this banner is definitely suitable for the current standard, there is **NO** legal warranty, neither technical, nor regarding the law, for the implementation of the Plugin on your typemill installation! From 38b6f0378580f787a3c33cd7aa4df81754c7b1a9 Mon Sep 17 00:00:00 2001 From: Josef Slezak <32373099+MysterieDev@users.noreply.github.com> Date: Mon, 6 Sep 2021 11:15:53 +0200 Subject: [PATCH 2/8] Create LICENSE --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..3db6866 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Josef Slezak + +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 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. From 39b2256caf77ffef0e49c497e6b45563f8abbaf9 Mon Sep 17 00:00:00 2001 From: Josef Slezak <32373099+MysterieDev@users.noreply.github.com> Date: Mon, 6 Sep 2021 11:43:59 +0200 Subject: [PATCH 3/8] yaml (#2) --- cookiebanner.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cookiebanner.yaml b/cookiebanner.yaml index 32ad717..76867f8 100644 --- a/cookiebanner.yaml +++ b/cookiebanner.yaml @@ -1,8 +1,10 @@ name: Cookie Banner -version: 1.1.0 +version: 1.0.0 description: Enables a cookie banner for websites author: Josef Slezak licence: MIT +paypal: https://ko-fi.com/slezakit/?hidefeed=true&widget=true&embed=true +amount: 5 settings: forms: From 88db09518f7902bbceacad77863fab7b6235f42e Mon Sep 17 00:00:00 2001 From: Josef Slezak <32373099+MysterieDev@users.noreply.github.com> Date: Mon, 6 Sep 2021 20:42:11 +0200 Subject: [PATCH 4/8] u readme (#3) --- README.md | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9dde070..9c83ea4 100644 --- a/README.md +++ b/README.md @@ -1,23 +1,22 @@ # Your Cookiebanner Solution for the Typemill CMS -With this Plugin, you get a markdown based solution for a up to date cookiebanner integrated into the typemill CMS System. +Welcome to the ultimate-cookiebanner Plugin. The one stop for a user-respecting Cookie-Banner Listing! + +With this Plugin, you get a markdown based solution for a up to date cookiebanner integrated into the typemill CM-System. -You can whitelist certain pages to not require consent in order to view them with query parameters. You can also control the version of the cookiebanner, the user will see. +You can whitelist certain pages to not require consent in order to view them with query parameters. You can also control the version of the cookiebanner, to redisplay the latest cookie settings. -The Banner is based on PHP and SolidJS. SolidJS is a blazing fast solution for little reactive Applications. That way, the user does not experience any content shift. +The Banner is based on PHP and SolidJS. SolidJS is a blazing fast solution for little reactive Applications. It's blazing fast and suits this usecase well. -Questions? Feel free to open an Issue! +Questions? Problems? Feel free to open an Issue! -**DISCLAIMER:** As the author of the plugin, i tried to be considerate about the regulations and laws regarding data privacy. -Even though, this banner is definitely suitable for the current standard, there is **NO** legal warranty, neither technical, nor regarding the law, for the implementation of the Plugin on your typemill installation! +**DISCLAIMER:** there is **NO** legal warranty, neither technical, nor regarding the law, for the implementation of the Plugin on your typemill installation! ## Support -Do you want to support the plugin and the ongoing development of it? The best way is with a donation towards the maintenance. +Do you want to support the plugin and the ongoing development of it? The best way is with a donation towards the maintenance of this plugin. [Here is the link to my Ko-Fi site](https://ko-fi.com/slezakit/?hidefeed=true&widget=true&embed=true). -Welcome to the ultimate-cookiebanner Plugin. The one stop for a user-respecting Cookie-Banner Listing! - ## Installation Just download the plugin and put it in Typemills Plugin folder, then go into the plugins admin area and activate it! @@ -75,7 +74,7 @@ these can be set in typemill as follows: - This will create three figures - each one of these is for one category. They follow the same automation rules! -On these figures, the plugin will install the ui for the corresponding cookie category +On these figures, the plugin will install the ui for the corresponding cookie category. Be noticed that this is a solution as a pseudo shortcode. Typemill in its current version will generate a figure element with the corresponding id, and we completely replace that element with our listing. ### Reset the consent / Update the consent From f1f79ebe005f17d4b8d5849ae8d1c6292f9157ae Mon Sep 17 00:00:00 2001 From: Josef Slezak <32373099+MysterieDev@users.noreply.github.com> Date: Mon, 6 Sep 2021 20:44:24 +0200 Subject: [PATCH 5/8] yaml (#4) From 8260a13804e1964280d8debf3f1786661d00890a Mon Sep 17 00:00:00 2001 From: Josef Slezak <32373099+MysterieDev@users.noreply.github.com> Date: Mon, 6 Sep 2021 20:45:04 +0200 Subject: [PATCH 6/8] u readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9c83ea4..cd4de17 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ With this Plugin, you get a markdown based solution for a up to date cookiebanne You can whitelist certain pages to not require consent in order to view them with query parameters. You can also control the version of the cookiebanner, to redisplay the latest cookie settings. -The Banner is based on PHP and SolidJS. SolidJS is a blazing fast solution for little reactive Applications. It's blazing fast and suits this usecase well. +The Banner is based on PHP and SolidJS. SolidJS is a blazing fast solution for little reactive Applications. Questions? Problems? Feel free to open an Issue! From 3f78bd1b1c458412555c2a491f78950112427388 Mon Sep 17 00:00:00 2001 From: Josef Slezak <32373099+MysterieDev@users.noreply.github.com> Date: Mon, 6 Sep 2021 20:46:46 +0200 Subject: [PATCH 7/8] u readme --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cd4de17..ea635c6 100644 --- a/README.md +++ b/README.md @@ -17,11 +17,14 @@ Questions? Problems? Feel free to open an Issue! Do you want to support the plugin and the ongoing development of it? The best way is with a donation towards the maintenance of this plugin. [Here is the link to my Ko-Fi site](https://ko-fi.com/slezakit/?hidefeed=true&widget=true&embed=true). + ## Installation Just download the plugin and put it in Typemills Plugin folder, then go into the plugins admin area and activate it! -You have to fill out some settings like your texts, headlines and introduction to your cookie-listing to take the full power of the plugin +You have to fill out some settings like your texts, headlines and introduction to your cookie-listing to take the full power of the plugin. + +IE is not supported with this plugin due to template literal strings. ## Usage From 982fac0eabc612263d3d6b64d661853c566318d2 Mon Sep 17 00:00:00 2001 From: Josef Slezak <32373099+MysterieDev@users.noreply.github.com> Date: Mon, 6 Sep 2021 20:54:42 +0200 Subject: [PATCH 8/8] u readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ea635c6..d9c1fcb 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Your Cookiebanner Solution for the Typemill CMS -Welcome to the ultimate-cookiebanner Plugin. The one stop for a user-respecting Cookie-Banner Listing! +Welcome to the ultimate-cookiebanner Plugin. With this Plugin, you get a markdown based solution for a up to date cookiebanner integrated into the typemill CM-System.