This commit is contained in:
parent
fb863cdf21
commit
54013a6164
|
|
@ -26,6 +26,7 @@ Place announcement text here.
|
||||||
Use the correspondent `getAlignment` and `setAlignment` methods instead. - @RomanSyroeshko
|
Use the correspondent `getAlignment` and `setAlignment` methods instead. - @RomanSyroeshko
|
||||||
- `left`, `right`, and `justify` alignment options for paragraphs (now are mapped to `Jc::START`, `Jc::END`, and `Jc::BOTH`). - @RomanSyroeshko
|
- `left`, `right`, and `justify` alignment options for paragraphs (now are mapped to `Jc::START`, `Jc::END`, and `Jc::BOTH`). - @RomanSyroeshko
|
||||||
- `left`, `right`, and `justify` alignment options for tables (now are mapped to `Jc::START`, `Jc::END`, and `Jc::CENTER`). - @RomanSyroeshko
|
- `left`, `right`, and `justify` alignment options for tables (now are mapped to `Jc::START`, `Jc::END`, and `Jc::CENTER`). - @RomanSyroeshko
|
||||||
|
- `TCPDF` due to its limited HTML support. Use `DomPDF` or `MPDF` renderer instead. - @RomanSyroeshko #399
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
- `\PhpOffice\PhpWord\Style\Alignment`. Style properties, which previously stored instances of this class, now deal with strings.
|
- `\PhpOffice\PhpWord\Style\Alignment`. Style properties, which previously stored instances of this class, now deal with strings.
|
||||||
|
|
|
||||||
|
|
@ -434,7 +434,7 @@ class TemplateProcessor
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Note: we do not use ``rename`` function here, because it looses file ownership data on Windows platform.
|
* Note: we do not use `rename` function here, because it looses file ownership data on Windows platform.
|
||||||
* As a result, user cannot open the file directly getting "Access denied" message.
|
* As a result, user cannot open the file directly getting "Access denied" message.
|
||||||
*
|
*
|
||||||
* @see https://github.com/PHPOffice/PHPWord/issues/532
|
* @see https://github.com/PHPOffice/PHPWord/issues/532
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,8 @@ use PhpOffice\PhpWord\Writer\WriterInterface;
|
||||||
/**
|
/**
|
||||||
* TCPDF writer
|
* TCPDF writer
|
||||||
*
|
*
|
||||||
|
* @deprecated 0.13.0 Use `DomPDF` or `MPDF` instead.
|
||||||
|
*
|
||||||
* @link http://www.tcpdf.org/
|
* @link http://www.tcpdf.org/
|
||||||
* @since 0.11.0
|
* @since 0.11.0
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue