Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
Description of TCPDF library import
2
===================================
3
* download library from https://github.com/tecnickcom/TCPDF/tags
4
* delete examples/, tools/ VERSION and tcpdf_import.php
5
* remove tcpdf_import.php from composer.json
6
* remove all fonts that were not already present
7
* visit http://127.0.0.1/lib/tests/other/pdflibtestpage.php and view the pdf
8
* modify getTCPDFProducer lib/tcpdf/include/tcpdf_static.php to remove the version number
9
 
10
Important
11
---------
12
A new version of the libray is being developed @ https://github.com/tecnickcom/tc-lib-pdf . Check periodically when it's ready
13
and if it's a drop-in replacement for the legacy tcpdf one.
14
 
1441 ariadna 15
2025/02/04
16
----------
17
Upgrade to tcpdf TCPDF 6.8.2 (MDL-84354)
18
by Stevani Andolo <stevani@hotmail.com.au>
19
 
20
2024/06/16
21
----------
22
Upgrade to tcpdf TCPDF 6.7.5 (MDL-81658)
23
by Daniel Ziegenbergg <daniel.ziegenberg@tuwien.ac.at>
24
 
25
2023/10/23
26
----------
27
Upgrade to tcpdf TCPDF 6.6.5 (MDL-79665)
28
by Paul Holden <paulh@moodle.com>
29
 
30
2023/03/02
31
----------
32
Upgrade to tcpdf TCPDF 6.6.2 (MDL-76910)
33
by Paul Holden <paulh@moodle.com>
34
 
1 efrain 35
2022/09/27
36
----------
37
Upgrade to tcpdf TCPDF 6.5.0 (MDL-75468)
38
by Paul Holden <paulh@moodle.com>
39
 
40
2021/04/20
41
----------
42
Upgrade to tcpdf TCPDF 6.4.1 (MDL-70902)
43
by David Matamoros <davidmc@moodle.com>
44
 
45
2021/02/11
46
----------
47
Reduce PDF metadata disclosure (MDL-70735)
48
by Brendan Heywood <brendan@catalyst-au.net>
49
 
50
2020/12/15
51
----------
52
Upgrade to tcpdf TCPDF 6.3.5 (MDL-70294)
53
by Paul Holden <paulh@moodle.com>
54
 
55
2019/10/20
56
----------
57
Upgrade to tcpdf TCPDF 6.3.2 (MDL-66966)
58
by Eloy Lafuente <stronk7@moodle.org>
59
 
60
2019/05/06
61
----------
62
Upgrade to tcpdf TCPDF 6.2.26 (MDL-64794)
63
by Eloy Lafuente <stronk7@moodle.org>
64
 
65
- https://github.com/tecnickcom/TCPDF/pull/74 has been already merged upstream (6.2.16 and up), so we don't need to apply it.
66
- https://github.com/tecnickcom/TCPDF/pull/91 has been already merged upstream (6.2.19 and up), so we don't need to apply it.
67
 
68
2017/10/02
69
----------
70
Upgrade to tcpdf_php5 TCPDF 6.2.13 (MDL-60237)
71
by Marina Glancy <marina@moodle.com>
72
 
73
* replaced the calls to function each() deprecated in PHP7.2
74
 
75
2015/09/29
76
----------
77
Upgrade to tcpdf_php5 TCPDF 6.2.12 (MDL-51534)
78
by Jun Pataleta <jun@moodle.com>
79
 
80
2015/03/23
81
----------
82
Upgrade to tcpdf_php5 TCPDF 6.2.6 (MDL-49522)
83
by Adrian Greeve <adrian@moodle.com>
84
 
85
2011/10/29
86
----------
87
Upgrade to tcpdf_php5 TCPDF 5.9.133 (MDL-29283)
88
by Petr Skoda
89
 
90
2009/11/19
91
----------
92
Upgrade to tcpdf_php5 TCPDF 4.8.014 (MDL-20888)
93
by David Mudrak <david.mudrak@gmail.com>
94
 
95
2009/07/20
96
----------
97
Upgrade to tcpdf_php5 TCPDF 4.6.020 (MDL-19876)
98
by David Mudrak <david.mudrak@gmail.com>
99
 
100
* deleted cache/ doc/ examples/ config/tcpdf_config_alt.php config/lang/ images/
101
* removed all fonts but the core ones (courier.php, helveticabi.php,
102
    helveticab.php, helveticai.php, helvetica.php, symbol.php, timesbi.php,
103
    timesb.php, timesi.php, times.php, zapfdingbats.php) and FreeFont
104
* FreeFont chosen as a default utf8 font distributed by default, all others will
105
    be downloadable from moodle.org via new UI
106
* removed font/utils/
107
* moving configuration to the lib/pdflib.php wrapper so we do not need to modify
108
    TCPDF at all. Credit to Chardelle Busch for this solution in MDL-17179
109
 
110
2008/07/29
111
----------
112
Upgrade to tcpdf_php5 TCPDF 4.0.015 (MDL-15055)
113
by David Mudrak <david.mudrak@gmail.com>
114
 
115
* deleted cache/ doc/ examples/
116
* modified config/tcpdf_config.php
117
    Default values for K_PATH_MAIN and K_PATH_URL are automatically set for
118
    the Moodle installation. K_PATH_CACHE set to Moodle datadir cache.
119
    K_PATH_URL_CACHE can't be mapped in Moodle as datadir should not be
120
    accessible directly. However, it doesn't seem to be used within the
121
    library code.