From 177d701f5bf426aa0f986e6794a2d58cdb5e5606 Mon Sep 17 00:00:00 2001 From: Tankred Hase Date: Mon, 15 Feb 2016 14:06:31 +0700 Subject: [PATCH] Point to TLS/HSTS secured .com domain --- README.md | 4 ++-- bower.json | 2 +- package.json | 2 +- src/config/config.js | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9896b7a8..32ff2206 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ OpenPGP.js [![Build Status](https://travis-ci.org/openpgpjs/openpgpjs.svg?branch=master)](https://travis-ci.org/openpgpjs/openpgpjs) [![Test Coverage](https://codeclimate.com/github/openpgpjs/openpgpjs/badges/coverage.svg)](https://codeclimate.com/github/openpgpjs/openpgpjs/coverage) [![Code Climate](https://codeclimate.com/github/openpgpjs/openpgpjs/badges/gpa.svg)](https://codeclimate.com/github/openpgpjs/openpgpjs) ========== -[OpenPGP.js](http://openpgpjs.org/) is a Javascript implementation of the OpenPGP protocol. This is defined in [RFC 4880](http://tools.ietf.org/html/rfc4880). +[OpenPGP.js](https://openpgpjs.com) is a Javascript implementation of the OpenPGP protocol. This is defined in [RFC 4880](http://tools.ietf.org/html/rfc4880). [![Saucelabs Test Status](https://saucelabs.com/browser-matrix/openpgpjs.svg)](https://saucelabs.com/u/openpgpjs) @@ -149,7 +149,7 @@ hkp.upload(pubkey).then(function() { ... }); ### Documentation -A jsdoc build of our code comments is available at [doc/index.html](http://openpgpjs.org/openpgpjs/doc/index.html). Public calls should generally be made through the OpenPGP object [doc/openpgp.html](http://openpgpjs.org/openpgpjs/doc/module-openpgp.html). +A jsdoc build of our code comments is available at [doc/index.html](https://openpgpjs.com/openpgpjs/doc/index.html). Public calls should generally be made through the OpenPGP object [doc/openpgp.html](https://openpgpjs.com/openpgpjs/doc/module-openpgp.html). ### Security Audit diff --git a/bower.json b/bower.json index 986b5054..8e433e87 100644 --- a/bower.json +++ b/bower.json @@ -2,7 +2,7 @@ "name": "openpgp", "version": "2.0.0", "license": "LGPL-3.0+", - "homepage": "http://openpgpjs.org/", + "homepage": "https://openpgpjs.com", "authors": [ "OpenPGP Development Team (https://github.com/openpgpjs/openpgpjs/graphs/contributors)" ], diff --git a/package.json b/package.json index 4ebabe49..e3e182a5 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "description": "OpenPGP.js is a Javascript implementation of the OpenPGP protocol. This is defined in RFC 4880.", "version": "2.0.0", "license": "LGPL-3.0+", - "homepage": "http://openpgpjs.org/", + "homepage": "https://openpgpjs.com", "engines": { "node": ">=0.8" }, diff --git a/src/config/config.js b/src/config/config.js index 78c97647..dae170e5 100644 --- a/src/config/config.js +++ b/src/config/config.js @@ -46,7 +46,7 @@ export default { show_version: true, show_comment: true, versionstring: "OpenPGP.js VERSION", - commentstring: "http://openpgpjs.org", + commentstring: "https://openpgpjs.com", keyserver: "https://keyserver.ubuntu.com", node_store: './openpgp.store' };