Skip to content

Commit 7c0b5e3

Browse files
committed
update links for new home
lua-vips is now in the libvips org
1 parent 7b94748 commit 7c0b5e3

File tree

5 files changed

+14
-50
lines changed

5 files changed

+14
-50
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ All notable changes to `lua-vips` will be documented in this file.
77
- add `vips.leak_set()` [jcupitt]
88
- add `soak.lua` example [jcupitt]
99
- fix five minor memleaks [kleisauke]
10+
- update links for new home [jcupitt]
1011

1112
# 1.1-8 - 2018-07-25
1213

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
# lua-vips
22

3-
[![Build Status](https://travis-ci.org/jcupitt/lua-vips.svg?branch=master)](https://travis-ci.org/jcupitt/lua-vips)
3+
[![Build Status](https://travis-ci.org/libvips/lua-vips.svg?branch=master)](https://travis-ci.org/libvips/lua-vips)
44

55
This is a Lua binding for the [libvips image processing
6-
library](http://jcupitt.github.io/libvips). libvips
6+
library](http://libvips.github.io/libvips). libvips
77
is a [fast image processing library with low memory
88
needs](https://github.com/jcupitt/lua-vips-bench). `lua-vips` uses ffi
99
and needs luajit 2.0 or later.
1010

1111
The libvips documentation includes a
1212
handy searchable table of [every operation in
13-
libvips](http://jcupitt.github.io/libvips/API/current/func-list.html). This
13+
libvips](http://libvips.github.io/libvips/API/current/func-list.html). This
1414
is a good place to check if it supports some feature you need. Read on to
1515
see how to call libvips operations.
1616

1717
# Example
1818

1919
[Install the libvips shared
20-
library](https://jcupitt.github.io/libvips/install.html), then install this rock with:
20+
library](https://libvips.github.io/libvips/install.html), then install this rock with:
2121

2222
luarocks install lua-vips
2323

@@ -88,7 +88,7 @@ up to date.
8888
# Getting more help
8989

9090
The libvips website has a handy table of [all the libvips
91-
operators](http://jcupitt.github.io/libvips/API/current/func-list.html). Each
91+
operators](http://libvips.github.io/libvips/API/current/func-list.html). Each
9292
one links to the main API docs so you can see what you need to pass to it.
9393

9494
A simple way to see the arguments for an operation is to try running it
@@ -176,7 +176,7 @@ local image = vips.Image.jpegload("somefile.jpg", { shrink = 4 })
176176
```
177177

178178
The [loader section in the API
179-
docs](http://jcupitt.github.io/libvips/API/current/VipsForeignSave.html) lists
179+
docs](http://libvips.github.io/libvips/API/current/VipsForeignSave.html) lists
180180
all loaders and their options.
181181

182182
### `image = vips.Image.new_from_buffer(string [, string_options, options])`
@@ -274,7 +274,7 @@ local noise = vips.Image.perlin(256, 256, { cell_size = 128 })
274274

275275
See:
276276

277-
[http://jcupitt.github.io/libvips/API/current/libvips-create.html](http://jcupitt.github.io/libvips/API/current/libvips-create.html)
277+
[http://libvips.github.io/libvips/API/current/libvips-create.html](http://libvips.github.io/libvips/API/current/libvips-create.html)
278278

279279
## Get and set image metadata
280280

@@ -322,7 +322,7 @@ successfully removed, `false` otherwise.
322322
You can call any libvips operation as a member function, for example
323323
`hough_circle`, the circular Hough transform:
324324

325-
[http://jcupitt.github.io/libvips/API/current/libvips-arithmetic.html#vips-hough-circle](http://jcupitt.github.io/libvips/API/current/libvips-arithmetic.html#vips-hough-circle)
325+
[http://libvips.github.io/libvips/API/current/libvips-arithmetic.html#vips-hough-circle](http://libvips.github.io/libvips/API/current/libvips-arithmetic.html#vips-hough-circle)
326326

327327
Can be called from Lua like this:
328328

@@ -360,7 +360,7 @@ max_value = image:max()
360360
```
361361

362362
To get the maximum value from an image. If you look at [the `max`
363-
operator](http://jcupitt.github.io/libvips/API/current/libvips-arithmetic.html#vips-max),
363+
operator](http://libvips.github.io/libvips/API/current/libvips-arithmetic.html#vips-max),
364364
it can actually return a lot more than this. You can write:
365365

366366
```lua
@@ -590,7 +590,7 @@ Run the example script with:
590590

591591
### Update rock
592592

593-
luarocks upload lua-vips-1.1-8.rockspec --api-key=xxxxxxxxxxxxxx
593+
luarocks upload lua-vips-1.1-9.rockspec --api-key=xxxxxxxxxxxxxx
594594

595595
### Links
596596

example/soak.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- a lua version of
2-
-- https://github.com/jcupitt/pyvips/blob/master/examples/soak-test.py
2+
-- https://github.com/libvips/pyvips/blob/master/examples/soak-test.py
33
-- this should run in a steady amount of memory
44

55
local vips = require "vips"

lua-vips-1.1-8.rockspec

-37
This file was deleted.

lua-vips-1.1-9.rockspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package = "lua-vips"
22
version = "1.1-9"
33

44
source = {
5-
url = "git://github.com/jcupitt/lua-vips.git"
5+
url = "git://github.com/libvips/lua-vips.git"
66
}
77

88
description = {
@@ -12,7 +12,7 @@ description = {
1212
processing library. It is usually faster and needs less memory than
1313
similar libraries.
1414
]],
15-
homepage = "https://github.com/jcupitt/lua-vips",
15+
homepage = "https://github.com/libvips/lua-vips",
1616
license = "MIT"
1717
}
1818

0 commit comments

Comments
 (0)