diff --git a/README.md b/README.md index 30fb5e18..158e4e8a 100644 --- a/README.md +++ b/README.md @@ -62,11 +62,11 @@ readableStream ### Documentation -Visit [sharp.dimens.io](http://sharp.dimens.io/) for complete -[installation instructions](http://sharp.dimens.io/page/install), -[API documentation](http://sharp.dimens.io/page/api), -[benchmark tests](http://sharp.dimens.io/page/performance) and -[changelog](http://sharp.dimens.io/page/changelog). +Visit [sharp.pixelplumbing.com](http://sharp.pixelplumbing.com/) for complete +[installation instructions](http://sharp.pixelplumbing.com/page/install), +[API documentation](http://sharp.pixelplumbing.com/page/api), +[benchmark tests](http://sharp.pixelplumbing.com/page/performance) and +[changelog](http://sharp.pixelplumbing.com/page/changelog). ### Contributing @@ -75,7 +75,7 @@ covers reporting bugs, requesting features and submitting code changes. ### Licence -Copyright 2013, 2014, 2015, 2016, 2017 Lovell Fuller and contributors. +Copyright 2013, 2014, 2015, 2016, 2017, 2018 Lovell Fuller and contributors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/binding.js b/binding.js index e6bc0baa..7ab62343 100644 --- a/binding.js +++ b/binding.js @@ -56,15 +56,15 @@ module.exports.download_vips = function () { // Ensure Intel 64-bit or ARM const arch = process.env.npm_config_arch || process.arch; if (arch === 'ia32') { - error(`Intel Architecture 32-bit systems require manual installation of libvips >= ${minimumLibvipsVersion} - please see http://sharp.dimens.io/page/install`); + error(`Intel Architecture 32-bit systems require manual installation of libvips >= ${minimumLibvipsVersion} - please see http://sharp.pixelplumbing.com/page/install`); } // Ensure glibc Linux if (detectLibc.isNonGlibcLinux) { - error(`Use with ${detectLibc.family} libc requires manual installation of libvips >= ${minimumLibvipsVersion} - please see http://sharp.dimens.io/page/install`); + error(`Use with ${detectLibc.family} libc requires manual installation of libvips >= ${minimumLibvipsVersion} - please see http://sharp.pixelplumbing.com/page/install`); } // Ensure glibc >= 2.13 if (detectLibc.family === detectLibc.GLIBC && detectLibc.version && semver.lt(`${detectLibc.version}.0`, '2.13.0')) { - error(`Use with glibc version ${detectLibc.version} requires manual installation of libvips >= ${minimumLibvipsVersion} - please see http://sharp.dimens.io/page/install`); + error(`Use with glibc version ${detectLibc.version} requires manual installation of libvips >= ${minimumLibvipsVersion} - please see http://sharp.pixelplumbing.com/page/install`); } // Arch/platform-specific .tar.gz const tarFilename = ['libvips', minimumLibvipsVersion, currentPlatformId].join('-') + '.tar.gz'; diff --git a/docs/index.md b/docs/index.md index d9e8d1b8..c72d4abb 100644 --- a/docs/index.md +++ b/docs/index.md @@ -110,7 +110,7 @@ Thank you! ### Licence -Copyright 2013, 2014, 2015, 2016, 2017 Lovell Fuller and contributors. +Copyright 2013, 2014, 2015, 2016, 2017, 2018 Lovell Fuller and contributors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/docs/install.md b/docs/install.md index 42dd3a91..dc58d4de 100644 --- a/docs/install.md +++ b/docs/install.md @@ -17,7 +17,6 @@ yarn add sharp ### Linux [![Ubuntu 16.04 Build Status](https://travis-ci.org/lovell/sharp.png?branch=master)](https://travis-ci.org/lovell/sharp) -[![Linux Build Status](https://circleci.com/gh/lovell/sharp.svg?style=svg&circle-token=6cb6d1d287a51af83722b19ed8885377fbc85e5c)](https://circleci.com/gh/lovell/sharp) libvips and its dependencies are fetched and stored within `node_modules/sharp/vendor` during `npm install`. This involves an automated HTTPS download of approximately 7MB. diff --git a/src/common.h b/src/common.h index 0dc618e2..907168ee 100644 --- a/src/common.h +++ b/src/common.h @@ -30,12 +30,12 @@ #endif #if ((!defined(__clang__)) && defined(__GNUC__) && (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 6))) -#error GCC version 4.6+ is required for C++11 features - see sharp.dimens.io/page/install#prerequisites +#error GCC version 4.6+ is required for C++11 features - see sharp.pixelplumbing.com/page/install#prerequisites #endif #if (defined(__clang__) && defined(__has_feature)) #if (!__has_feature(cxx_range_for)) -#error clang version 3.0+ is required for C++11 features - see sharp.dimens.io/page/install#prerequisites +#error clang version 3.0+ is required for C++11 features - see sharp.pixelplumbing.com/page/install#prerequisites #endif #endif