From 9139d8914358b52f98bd1af6a0172a3b56435591 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sat, 19 Oct 2019 06:07:16 -0600 Subject: [PATCH] v1.8.6: Notify of upcoming ACME.js v3 --- README.md | 11 +++----- package-lock.json | 2 +- package.json | 2 +- scripts/postinstall | 67 +++------------------------------------------ 4 files changed, 10 insertions(+), 72 deletions(-) diff --git a/README.md b/README.md index 000024c..f450bbd 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,9 @@ -# Do you rely on ACME.js? +# ACME.js v3 on its way (Nov 1st, 2019) -Hey! Let's Encrypt will **STOP WORKING** with Greenlock and ACME.js at the end of Oct 2019. -**WITHOUT YOUR HELP** we won't get the next release out in time. +ACME.js v3 is in private beta and will be available by Nov 1st. -If Greenlock (or ACME.js) has saved you time and money, and taken stress out of your life, -or you just love it, please reach out to return the favor today: - -[**SAVE GREENLOCK / ACME.js**](https://indiegogo.com/at/greenlock): +Follow the updates on the [campaign page](https://indiegogo.com/at/greenlock), +and contribute to support the project and get beta access now. | **acme-v2.js** ([npm](https://www.npmjs.com/package/acme-v2)) | [acme-v2-cli.js](https://git.coolaj86.com/coolaj86/acme-v2-cli.js) diff --git a/package-lock.json b/package-lock.json index 3437ee4..9d0a412 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "acme-v2", - "version": "1.8.4", + "version": "1.8.6", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 98a07fc..a28d431 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "acme-v2", - "version": "1.8.5", + "version": "1.8.6", "description": "A lightweight library for getting Free SSL certifications through Let's Encrypt, using the ACME protocol.", "homepage": "https://git.coolaj86.com/coolaj86/acme-v2.js", "main": "index.js", diff --git a/scripts/postinstall b/scripts/postinstall index 888b371..c4d6d8b 100755 --- a/scripts/postinstall +++ b/scripts/postinstall @@ -7,72 +7,13 @@ // GREEN \u001b[32m // RESET \u001b[0m -var grabbers = [ - [ - '', - '================================================================================', - '', - ' 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥', - '🔥 🔥', - '🔥 Do you rely on Greenlock? 🔥', - '🔥 (or ACME.js) 🔥', - '🔥 🔥', - ' 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥' - ], - - [ - '', - '================================================================================', - '', - ' 🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒', - '🍒 🍒', - '🍒 Do you rely on Greenlock? 🍒', - '🍒 (or ACME.js) 🍒', - '🍒 🍒', - ' 🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒' - ], - - [ - '', - '================================================================================', - '', - ' 👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇', - '👉 👈', - '👉 Do you rely on Greenlock? 👈', - '👉 (or ACME.js) 👈', - '👉 👈', - ' 👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆 ' - ], - - [ - '', - '================================================================================', - '', - ' 👀 👀 👀 👀 👀 👀 👀 👀 👀 👀 👀 ', - '👀 👀', - '👀 Do you rely on Greenlock? 👀', - '👀 (or ACME.js) 👀', - '👀 👀', - ' 👀 👀 👀 👀 👀 👀 👀 👀 👀 👀 👀 ' - ] -]; - setTimeout(function() { - grabbers[Math.floor(Math.random() * grabbers.length)] - .concat([ + [ '', - "Hey! Let's Encrypt will \u001b[31mSTOP WORKING\u001b[0m with Greenlock and ACME.js at the end of Oct 2019.", - "\u001b[31mWITHOUT YOUR HELP\u001b[0m we won't get the next release out in time.", - '', - 'If Greenlock (or ACME.js) has saved you time and money, and taken stress out of your life,', - 'or you just love it, please reach out to return the favor today:', - '', - '\u001b[31mSAVE GREENLOCK / ACME.js:\u001b[0m', - 'https://indiegogo.com/at/greenlock', - '', - '================================================================================', + '\u001b[31mGreenlock and ACME.js v3 are on the way!\u001b[0m', + 'Watch for updates at https://indiegogo.com/at/greenlock', '' - ]) + ] .forEach(function(line) { console.info(line); });