Skip to content

Commit 8fca89e

Browse files
committed
Update documentation hostname
1 parent d5295a2 commit 8fca89e

5 files changed

Lines changed: 12 additions & 13 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ readableStream
6262

6363
### Documentation
6464

65-
Visit [sharp.dimens.io](http://sharp.dimens.io/) for complete
66-
[installation instructions](http://sharp.dimens.io/page/install),
67-
[API documentation](http://sharp.dimens.io/page/api),
68-
[benchmark tests](http://sharp.dimens.io/page/performance) and
69-
[changelog](http://sharp.dimens.io/page/changelog).
65+
Visit [sharp.pixelplumbing.com](http://sharp.pixelplumbing.com/) for complete
66+
[installation instructions](http://sharp.pixelplumbing.com/page/install),
67+
[API documentation](http://sharp.pixelplumbing.com/page/api),
68+
[benchmark tests](http://sharp.pixelplumbing.com/page/performance) and
69+
[changelog](http://sharp.pixelplumbing.com/page/changelog).
7070

7171
### Contributing
7272

@@ -75,7 +75,7 @@ covers reporting bugs, requesting features and submitting code changes.
7575

7676
### Licence
7777

78-
Copyright 2013, 2014, 2015, 2016, 2017 Lovell Fuller and contributors.
78+
Copyright 2013, 2014, 2015, 2016, 2017, 2018 Lovell Fuller and contributors.
7979

8080
Licensed under the Apache License, Version 2.0 (the "License");
8181
you may not use this file except in compliance with the License.

binding.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@ module.exports.download_vips = function () {
5656
// Ensure Intel 64-bit or ARM
5757
const arch = process.env.npm_config_arch || process.arch;
5858
if (arch === 'ia32') {
59-
error(`Intel Architecture 32-bit systems require manual installation of libvips >= ${minimumLibvipsVersion} - please see http://sharp.dimens.io/page/install`);
59+
error(`Intel Architecture 32-bit systems require manual installation of libvips >= ${minimumLibvipsVersion} - please see http://sharp.pixelplumbing.com/page/install`);
6060
}
6161
// Ensure glibc Linux
6262
if (detectLibc.isNonGlibcLinux) {
63-
error(`Use with ${detectLibc.family} libc requires manual installation of libvips >= ${minimumLibvipsVersion} - please see http://sharp.dimens.io/page/install`);
63+
error(`Use with ${detectLibc.family} libc requires manual installation of libvips >= ${minimumLibvipsVersion} - please see http://sharp.pixelplumbing.com/page/install`);
6464
}
6565
// Ensure glibc >= 2.13
6666
if (detectLibc.family === detectLibc.GLIBC && detectLibc.version && semver.lt(`${detectLibc.version}.0`, '2.13.0')) {
67-
error(`Use with glibc version ${detectLibc.version} requires manual installation of libvips >= ${minimumLibvipsVersion} - please see http://sharp.dimens.io/page/install`);
67+
error(`Use with glibc version ${detectLibc.version} requires manual installation of libvips >= ${minimumLibvipsVersion} - please see http://sharp.pixelplumbing.com/page/install`);
6868
}
6969
// Arch/platform-specific .tar.gz
7070
const tarFilename = ['libvips', minimumLibvipsVersion, currentPlatformId].join('-') + '.tar.gz';

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Thank you!
110110

111111
### Licence
112112

113-
Copyright 2013, 2014, 2015, 2016, 2017 Lovell Fuller and contributors.
113+
Copyright 2013, 2014, 2015, 2016, 2017, 2018 Lovell Fuller and contributors.
114114

115115
Licensed under the Apache License, Version 2.0 (the "License");
116116
you may not use this file except in compliance with the License.

docs/install.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ yarn add sharp
1717
### Linux
1818

1919
[![Ubuntu 16.04 Build Status](https://travis-ci.org/lovell/sharp.png?branch=master)](https://travis-ci.org/lovell/sharp)
20-
[![Linux Build Status](https://circleci.com/gh/lovell/sharp.svg?style=svg&circle-token=6cb6d1d287a51af83722b19ed8885377fbc85e5c)](https://circleci.com/gh/lovell/sharp)
2120

2221
libvips and its dependencies are fetched and stored within `node_modules/sharp/vendor` during `npm install`.
2322
This involves an automated HTTPS download of approximately 7MB.

src/common.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@
3030
#endif
3131

3232
#if ((!defined(__clang__)) && defined(__GNUC__) && (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 6)))
33-
#error GCC version 4.6+ is required for C++11 features - see sharp.dimens.io/page/install#prerequisites
33+
#error GCC version 4.6+ is required for C++11 features - see sharp.pixelplumbing.com/page/install#prerequisites
3434
#endif
3535

3636
#if (defined(__clang__) && defined(__has_feature))
3737
#if (!__has_feature(cxx_range_for))
38-
#error clang version 3.0+ is required for C++11 features - see sharp.dimens.io/page/install#prerequisites
38+
#error clang version 3.0+ is required for C++11 features - see sharp.pixelplumbing.com/page/install#prerequisites
3939
#endif
4040
#endif
4141

0 commit comments

Comments
 (0)