Skip to content

Commit 0379a09

Browse files
authored
Update outdated links (#424)
1 parent 6def9e8 commit 0379a09

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
## Version 2.2.1 (2024-02-21)
2424

25-
* add `Vips.block_untrusted` method to block all untrusted operations. Only for libvips >= 8.13. [Docs](https://www.libvips.org/API/current/libvips-vips.html#vips-block-untrusted-set). [#382](https://github.com/libvips/ruby-vips/pull/382) [aglushkov](https://github.com/aglushkov)
26-
* add `Vips.block` method to block specific operation. Only for libvips >= 8.13. [Docs](https://www.libvips.org/API/current/VipsOperation.html#vips-operation-block-set). [#382](https://github.com/libvips/ruby-vips/pull/382) [aglushkov](https://github.com/aglushkov)
25+
* add `Vips.block_untrusted` method to block all untrusted operations. Only for libvips >= 8.13. [Docs](https://www.libvips.org/API/current/func.block_untrusted_set.html). [#382](https://github.com/libvips/ruby-vips/pull/382) [aglushkov](https://github.com/aglushkov)
26+
* add `Vips.block` method to block specific operation. Only for libvips >= 8.13. [Docs](https://www.libvips.org/API/current/type_func.Operation.block_set.html). [#382](https://github.com/libvips/ruby-vips/pull/382) [aglushkov](https://github.com/aglushkov)
2727
* `new_from_source` keeps a ref to the source object [taylorthurlow]
2828
* some fixes to object references system
2929

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ im = Vips::Image.new_from_file filename
5252
# put im at position (100, 100) in a 3000 x 3000 pixel image,
5353
# make the other pixels in the image by mirroring im up / down /
5454
# left / right, see
55-
# https://libvips.github.io/libvips/API/current/libvips-conversion.html#vips-embed
55+
# https://www.libvips.org/API/current/method.Image.embed.html
5656
im = im.embed 100, 100, 3000, 3000, extend: :mirror
5757

5858
# multiply the green (middle) band by 2, leave the other two alone
@@ -80,7 +80,7 @@ should always work.
8080
See the `Vips` section in the docs for a [tutorial introduction with
8181
examples](https://www.rubydoc.info/gems/ruby-vips/Vips).
8282

83-
The [libvips reference manual](https://libvips.github.io/libvips/API/current/)
83+
The [libvips reference manual](https://www.libvips.org/API/current/)
8484
has a complete explanation of every method.
8585

8686
The [`example/`](https://github.com/libvips/ruby-vips/tree/master/example)

lib/vips.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ module GObject
443443
# It examines libvips and writes a summary of each operation and the arguments
444444
# and options that that operation expects.
445445
#
446-
# Use the [C API # docs](https://libvips.github.io/libvips/API/current)
446+
# Use the [C API docs](https://www.libvips.org/API/current/)
447447
# for more detail.
448448
#
449449
# # Enums

0 commit comments

Comments
 (0)