prepare release notes
This commit is contained in:
parent
17849b3514
commit
21303ed4fb
|
|
@ -6,11 +6,13 @@ php:
|
||||||
- 5.5
|
- 5.5
|
||||||
- 5.6
|
- 5.6
|
||||||
- 7.0
|
- 7.0
|
||||||
|
- 7.1
|
||||||
- hhvm
|
- hhvm
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- php: 7.0
|
- php: 7.0
|
||||||
|
- php: 7.1
|
||||||
- php: hhvm
|
- php: hhvm
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
22
CHANGELOG.md
22
CHANGELOG.md
|
|
@ -3,6 +3,28 @@ Change Log
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
v0.14.0 (?? ???? 2017)
|
||||||
|
----------------------
|
||||||
|
This release fixes several bugs and adds some new features
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Possibility to control the footnote numbering - @troosan #1068
|
||||||
|
- Image creation from string - @troosan #937
|
||||||
|
- Introduced the `\PhpOffice\PhpWord\SimpleType\NumberFormat` simple type. - @troosan
|
||||||
|
- Support for ContextualSpacing - @postHawk #1088
|
||||||
|
- Possiblity to hide spelling and/or grammatical errors - @troosan #542
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Images are not being printed when generating PDF - @hubertinio #1074 #431
|
||||||
|
- Fixed some PHP 7 warnings - @ likeuntomurphy #927
|
||||||
|
- Fixed Word 97 reader - @alsofronie @Benpxpx @mario-rivera #912 #920 #892
|
||||||
|
- Fixed image loading over https - @troosan #988
|
||||||
|
- Impossibility to set different even and odd page headers - @troosan #981
|
||||||
|
- Fixed Word2007 reader where unnecessary paragraphs were being created - @donghaobo #1043 #620
|
||||||
|
- Fixed Word2007 reader where margins were not being read correctly - @slowprog #885 #1008
|
||||||
|
- Impossible to add element PreserveText in Section - @rvanlaak #452
|
||||||
|
- Missing options for numbering format - @troosan #1041
|
||||||
|
|
||||||
v0.13.0 (31 July 2016)
|
v0.13.0 (31 July 2016)
|
||||||
-------------------
|
-------------------
|
||||||
This release brings several improvements in `TemplateProcessor`, automatic output escaping feature for OOXML, ODF, HTML, and RTF (turned off, by default).
|
This release brings several improvements in `TemplateProcessor`, automatic output escaping feature for OOXML, ODF, HTML, and RTF (turned off, by default).
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,5 @@
|
||||||
# 
|
# 
|
||||||
|
|
||||||
## :mag_right: PHPWord is looking for a new maintainer :crown: :pencil: ([#948](https://github.com/PHPOffice/PHPWord/issues/948))
|
|
||||||
|
|
||||||
[](https://packagist.org/packages/phpoffice/phpword)
|
[](https://packagist.org/packages/phpoffice/phpword)
|
||||||
[](https://travis-ci.org/PHPOffice/PHPWord)
|
[](https://travis-ci.org/PHPOffice/PHPWord)
|
||||||
[](https://scrutinizer-ci.com/g/PHPOffice/PHPWord/)
|
[](https://scrutinizer-ci.com/g/PHPOffice/PHPWord/)
|
||||||
|
|
@ -14,6 +12,8 @@ PHPWord is a library written in pure PHP that provides a set of classes to write
|
||||||
|
|
||||||
PHPWord is an open source project licensed under the terms of [LGPL version 3](https://github.com/PHPOffice/PHPWord/blob/develop/COPYING.LESSER). PHPWord is aimed to be a high quality software product by incorporating [continuous integration](https://travis-ci.org/PHPOffice/PHPWord) and [unit testing](http://phpoffice.github.io/PHPWord/coverage/develop/). You can learn more about PHPWord by reading the [Developers' Documentation](http://phpword.readthedocs.org/) and the [API Documentation](http://phpoffice.github.io/PHPWord/docs/develop/).
|
PHPWord is an open source project licensed under the terms of [LGPL version 3](https://github.com/PHPOffice/PHPWord/blob/develop/COPYING.LESSER). PHPWord is aimed to be a high quality software product by incorporating [continuous integration](https://travis-ci.org/PHPOffice/PHPWord) and [unit testing](http://phpoffice.github.io/PHPWord/coverage/develop/). You can learn more about PHPWord by reading the [Developers' Documentation](http://phpword.readthedocs.org/) and the [API Documentation](http://phpoffice.github.io/PHPWord/docs/develop/).
|
||||||
|
|
||||||
|
If you have any questions, please ask on [StackOverFlow](https://stackoverflow.com/questions/tagged/phpword)
|
||||||
|
|
||||||
Read more about PHPWord:
|
Read more about PHPWord:
|
||||||
|
|
||||||
- [Features](#features)
|
- [Features](#features)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue