pango 3.5.0 → 3.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/pango/rb-pango-attr-iterator.c +7 -5
- data/ext/pango/rb-pango-attribute.c +1 -9
- data/ext/pango/rb-pango-private.h +9 -1
- data/ext/pango/rb-pango.c +15 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: be28139580135340befb1427090197a0310f50f220991fa27221d616017faaa2
|
4
|
+
data.tar.gz: 389b6d52f9849b2595cbdb3035b5c44444d24fcd4fc0e7602b94546ea752ec24
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25e0f41c2c2665b39d34eccfbd6ac276e21379aae031cf08c1a1294dddcb39a4bc1e2355268feb07271d8fd18a389343e563c2d1d3cf474d1d0a29bf4c2729a2
|
7
|
+
data.tar.gz: dd1e6c4860451ded190eaea7798f93c7bf71f7815c74086437d21e300e5b5af22614c21cd6ca5d541a90a73722cddecf596aaca4de6456b9c224702ac168dc97
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
2
|
/*
|
3
|
-
* Copyright (C) 2017 Ruby-
|
3
|
+
* Copyright (C) 2017-2022 Ruby-GNOME Project Team
|
4
4
|
*
|
5
5
|
* This library is free software; you can redistribute it and/or
|
6
6
|
* modify it under the terms of the GNU Lesser General Public
|
@@ -23,10 +23,12 @@
|
|
23
23
|
#define RG_TARGET_NAMESPACE cAttrIterator
|
24
24
|
#define _SELF(self) (RVAL2PANGOATTRITERATOR(self))
|
25
25
|
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
26
|
+
#if !PANGO_CHECK_VERSION(1, 44, 0)
|
27
|
+
G_DEFINE_BOXED_TYPE(PangoAttrIterator,
|
28
|
+
pango_attr_iterator,
|
29
|
+
pango_attr_iterator_copy,
|
30
|
+
pango_attr_iterator_destroy);
|
31
|
+
#endif
|
30
32
|
|
31
33
|
static VALUE
|
32
34
|
rg_attrs(VALUE self)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
2
|
/*
|
3
|
-
* Copyright (C) 2017-
|
3
|
+
* Copyright (C) 2017-2022 Ruby-GNOME Project Team
|
4
4
|
*
|
5
5
|
* This library is free software; you can redistribute it and/or
|
6
6
|
* modify it under the terms of the GNU Lesser General Public
|
@@ -20,14 +20,6 @@
|
|
20
20
|
|
21
21
|
#include "rb-pango-private.h"
|
22
22
|
|
23
|
-
#ifndef PANGO_CHECK_VERSION
|
24
|
-
# define PANGO_CHECK_VERSION(major, minor, micro) \
|
25
|
-
(PANGO_VERSION_MAJOR > (major) || \
|
26
|
-
(PANGO_VERSION_MAJOR == (major) && PANGO_VERSION_MINOR > (minor)) || \
|
27
|
-
(PANGO_VERSION_MAJOR == (major) && PANGO_VERSION_MINOR == (minor) && \
|
28
|
-
PANGO_VERSION_MICRO >= (micro)))
|
29
|
-
#endif
|
30
|
-
|
31
23
|
#if !PANGO_CHECK_VERSION(1, 44, 0)
|
32
24
|
static GType
|
33
25
|
pango_attribute_get_type(void)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
2
|
/*
|
3
|
-
* Copyright (C) 2017 Ruby-
|
3
|
+
* Copyright (C) 2017-2022 Ruby-GNOME Project Team
|
4
4
|
*
|
5
5
|
* This library is free software; you can redistribute it and/or
|
6
6
|
* modify it under the terms of the GNU Lesser General Public
|
@@ -22,6 +22,14 @@
|
|
22
22
|
|
23
23
|
#include "rb-pango.h"
|
24
24
|
|
25
|
+
#ifndef PANGO_CHECK_VERSION
|
26
|
+
# define PANGO_CHECK_VERSION(major, minor, micro) \
|
27
|
+
(PANGO_VERSION_MAJOR > (major) || \
|
28
|
+
(PANGO_VERSION_MAJOR == (major) && PANGO_VERSION_MINOR > (minor)) || \
|
29
|
+
(PANGO_VERSION_MAJOR == (major) && PANGO_VERSION_MINOR == (minor) && \
|
30
|
+
PANGO_VERSION_MICRO >= (micro)))
|
31
|
+
#endif
|
32
|
+
|
25
33
|
G_GNUC_INTERNAL void rbpango_attribute_init(VALUE mPango);
|
26
34
|
G_GNUC_INTERNAL void rbpango_attr_iterator_init(VALUE mPango);
|
27
35
|
G_GNUC_INTERNAL void rbpango_attr_list_init(VALUE mPango);
|
data/ext/pango/rb-pango.c
CHANGED
@@ -28,6 +28,21 @@ rg_s_pixels(G_GNUC_UNUSED VALUE self, VALUE pixels)
|
|
28
28
|
return rb_float_new(PANGO_PIXELS(NUM2DBL(pixels)));
|
29
29
|
}
|
30
30
|
|
31
|
+
#ifdef _WIN32
|
32
|
+
/* Workaround: See glib2/ext/glib2/rbglib.c for details. */
|
33
|
+
BOOL WINAPI
|
34
|
+
DllMain(G_GNUC_UNUSED HINSTANCE hinstDLL,
|
35
|
+
G_GNUC_UNUSED DWORD fdwReason,
|
36
|
+
G_GNUC_UNUSED LPVOID lpvReserved);
|
37
|
+
BOOL WINAPI
|
38
|
+
DllMain(G_GNUC_UNUSED HINSTANCE hinstDLL,
|
39
|
+
G_GNUC_UNUSED DWORD fdwReason,
|
40
|
+
G_GNUC_UNUSED LPVOID lpvReserved)
|
41
|
+
{
|
42
|
+
return TRUE;
|
43
|
+
}
|
44
|
+
#endif
|
45
|
+
|
31
46
|
void
|
32
47
|
Init_pango(void)
|
33
48
|
{
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pango
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.5.
|
4
|
+
version: 3.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- The Ruby-GNOME Project Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-01-
|
11
|
+
date: 2022-01-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cairo-gobject
|
@@ -16,28 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.5.
|
19
|
+
version: 3.5.1
|
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.5.
|
26
|
+
version: 3.5.1
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: gobject-introspection
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 3.5.
|
33
|
+
version: 3.5.1
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 3.5.
|
40
|
+
version: 3.5.1
|
41
41
|
description: Ruby/Pango is a Ruby binding of pango-1.x based on GObject-Introspection.
|
42
42
|
email: ruby-gnome2-devel-en@lists.sourceforge.net
|
43
43
|
executables: []
|