version = $OC_Version; /** @var string $OC_VersionString */ $this->versionString = $OC_VersionString; /** @var string $OC_Build */ $this->build = $OC_Build; /** @var string $OC_Channel */ $this->channel = $OC_Channel; } /** * @since 31.0.0 */ public function getMajorVersion(): int { return $this->version[0]; } /** * @since 31.0.0 */ public function getMinorVersion(): int { return $this->version[1]; } /** * @since 31.0.0 */ public function getPatchVersion(): int { return $this->version[2]; } /** * @since 31.0.0 */ public function getVersion(): array { return $this->version; } /** * @since 31.0.0 */ public function getVersionString(): string { return $this->versionString; } /** * @psalm-return 'beta'|'stable'|'enterprise'|'git' * @since 31.0.0 */ public function getChannel(): string { $updaterChannel = Server::get(IConfig::class)->getSystemValueString('updater.release.channel', $this->channel); if (in_array($updaterChannel, ['beta', 'stable', 'enterprise', 'git'], true)) { return $updaterChannel; } return $this->channel; } /** * @since 31.0.0 */ public function getBuild(): string { return $this->build; } /** * @since 31.0.0 */ public function getHumanVersion(): string { $version = $this->getVersionString(); $build = $this->getBuild(); if (!empty($build) && $this->getChannel() === 'daily') { $version .= ' Build:' . $build; } return $version; } } Apache XML Graphics FOP: https://github.com/apache/xmlgraphics-fopwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/pdf/PDFFontTrueType.java
blob: f8f0657ca464d1ce9d104cce91bbeb97b535fc2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78