v1.8.6: Notify of upcoming ACME.js v3
This commit is contained in:
parent
e214f5e639
commit
9139d89143
11
README.md
11
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): <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)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "acme-v2",
|
||||
"version": "1.8.4",
|
||||
"version": "1.8.6",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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);
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue