diff --git a/README.md b/README.md index 3f4728e..a2e7101 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,9 @@ -# instances +# instances Instances of TXTDot proxies -| Name | Base URL | Secure | -| ---- | -------- | ------ | -| Official TXTDot instance | | true | -| Official TXTDot instance by artegoser | | true | +| Name | Base URL | HTTPS | +| ------------------------------------- | -------------------------- | ----- | +| Official TXTDot instance | | true | +| Official TXTDot instance by artegoser | | true | +| Instance by bloatcat | | true | diff --git a/index.js b/index.js index 256cf83..7315613 100644 --- a/index.js +++ b/index.js @@ -8,12 +8,12 @@ fs.writeFileSync( Instances of TXTDot proxies -| Name | Base URL | Secure | +| Name | Base URL | HTTPS | | ---- | -------- | ------ | ${instances .map( (instance) => - `| ${instance.name} | <${instance.baseUrl}> | ${instance.secure} |` + `| ${instance.name} | <${instance.baseUrl}> | ${instance.HTTPS} |` ) .join("\n")} ` diff --git a/instances.json b/instances.json index 14466fe..389da36 100644 --- a/instances.json +++ b/instances.json @@ -2,11 +2,16 @@ { "name": "Official TXTDot instance", "baseUrl": "https://txt.dc09.ru", - "secure": true + "HTTPS": true }, { "name": "Official TXTDot instance by artegoser", "baseUrl": "https://txt.artegoser.ru", - "secure": true + "HTTPS": true + }, + { + "name": "Instance by bloatcat", + "baseUrl": "https://txt.bloat.cat", + "HTTPS": true } ]