gdk_pixbuf2 3.2.4 → 3.2.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/gdk_pixbuf2/pixbuf.rb +7 -7
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9032777e40e1d4652c06f6c7f9a378e33a48f1ec9f7044ef2ff20826455e4471
|
4
|
+
data.tar.gz: c09a368a25f44e05e4cc69b108531790c361ca34ebda69150a9acb4a4e2df54e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36805f5b7ee42f8ac80fe1ed90de1e6958b496b24cda321c061ef5fea74fefac8b9250bab53e66e18f23bd08c7cf49dc7c40735a89408d54b4b06e3bd961dc13
|
7
|
+
data.tar.gz: 25dde1f6023b0d27c3f89acbd0833ee47c35674d5c8833d6bcd5b0fc9daaed6e4e539e712631359169ee94093158922e46cb7197df7dc748f1bd4d5401bbadcb
|
data/lib/gdk_pixbuf2/pixbuf.rb
CHANGED
@@ -62,7 +62,7 @@ module GdkPixbuf
|
|
62
62
|
when 5
|
63
63
|
message = "#{caller[0]}: "
|
64
64
|
message << "#{self.class}.new(colorspace, has_alpha, bits_per_sample, "
|
65
|
-
message << "width, height) is deprecated."
|
65
|
+
message << "width, height) is deprecated. "
|
66
66
|
message << "Use #{self.class}.new(:colorspace => colorspace, "
|
67
67
|
message << ":has_alpha => has_alpha, "
|
68
68
|
message << ":bits_per_sample => bits_per_sample, "
|
@@ -73,7 +73,7 @@ module GdkPixbuf
|
|
73
73
|
when 7
|
74
74
|
message = "#{caller[0]}: "
|
75
75
|
message << "#{self.class}.new(data, colorspace, has_alpha, "
|
76
|
-
message << "bits_per_sample, width, height) is deprecated."
|
76
|
+
message << "bits_per_sample, width, height) is deprecated. "
|
77
77
|
message << "Use #{self.class}.new(:data => data, "
|
78
78
|
message << ":colorspace => colorspace, "
|
79
79
|
message << ":has_alpha => has_alpha, "
|
@@ -308,11 +308,11 @@ module GdkPixbuf
|
|
308
308
|
dest_width = options[:destination_width] || options[:dest_width]
|
309
309
|
dest_height = options[:destination_height] || options[:dest_height]
|
310
310
|
|
311
|
-
destination ||= Pixbuf.new(colorspace,
|
312
|
-
has_alpha?,
|
313
|
-
bits_per_sample,
|
314
|
-
dest_x + dest_width,
|
315
|
-
dest_y + dest_height)
|
311
|
+
destination ||= Pixbuf.new(:colorspace => colorspace,
|
312
|
+
:has_alpha => has_alpha?,
|
313
|
+
:bits_per_sample => bits_per_sample,
|
314
|
+
:width => dest_x + dest_width,
|
315
|
+
:height => dest_y + dest_height)
|
316
316
|
destination.composite!(self, options)
|
317
317
|
destination
|
318
318
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gdk_pixbuf2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.2.
|
4
|
+
version: 3.2.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- The Ruby-GNOME2 Project Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-05-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gio2
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.2.
|
19
|
+
version: 3.2.5
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.2.
|
26
|
+
version: 3.2.5
|
27
27
|
description: Ruby/GdkPixbuf2 is a Ruby binding of GdkPixbuf-2.x.
|
28
28
|
email: ruby-gnome2-devel-en@lists.sourceforge.net
|
29
29
|
executables: []
|