Minor refactoring.
This commit is contained in:
parent
4eefb60362
commit
f902549614
11
CHANGELOG.md
11
CHANGELOG.md
|
|
@ -10,6 +10,7 @@ Place announcement text here.
|
|||
|
||||
- It was discovered that ``alignment`` option value doesn't affect paragraph alignment at all. This was fixed. Note: ``getAlign()`` and ``setAlign()`` methods of ``Paragraph`` style are renamed. - @RomanSyroeshko
|
||||
|
||||
|
||||
## 0.12.0 - 3 January 2015
|
||||
|
||||
This release added form fields (textinput, checkbox, and dropdown), drawing shapes (arc, curve, line, polyline, rect, oval), and basic 2D chart (pie, doughnut, bar, line, area, scatter, radar) elements along with some new styles. Basic MsDoc reader is introduced.
|
||||
|
|
@ -71,12 +72,14 @@ This release added form fields (textinput, checkbox, and dropdown), drawing shap
|
|||
- Renamed `Template` into `TemplateProcessor` - @RomanSyroeshko #216
|
||||
- Reverted #51. All text escaping must be performed out of the library - @RomanSyroeshko #51
|
||||
|
||||
|
||||
## 0.11.1 - 2 June 2014
|
||||
|
||||
This is an immediate bugfix release for HTML reader.
|
||||
|
||||
- HTML Reader: `<p>` and header tags puts no output - @canyildiz @ivanlanin #257
|
||||
|
||||
|
||||
## 0.11.0 - 1 June 2014
|
||||
|
||||
This release marked the change of PHPWord license from LGPL 2.1 to LGPL 3. Four new elements were added: TextBox, ListItemRun, Field, and Line. Relative and absolute positioning for images and textboxes were added. Writer classes were refactored into parts, elements, and styles. ODT and RTF features were enhanced. Ability to add elements to PHPWord object via HTML were implemented. RTF and HTML reader were initiated.
|
||||
|
|
@ -150,6 +153,7 @@ This is a bugfix release for `php-zip` requirement in Composer.
|
|||
|
||||
- Change Composer requirements for php-zip from `require` to `suggest` - @bskrtich #246
|
||||
|
||||
|
||||
## 0.10.0 - 4 May 2014
|
||||
|
||||
This release marked heavy refactorings on internal code structure with the creation of some abstract classes to reduce code duplication. `Element` subnamespace is introduced in this release to replace `Section`. Word2007 reader capability is greatly enhanced. Endnote is introduced. List numbering is now customizable. Basic HTML and PDF writing support is enabled. Basic ODText reader is introduced.
|
||||
|
|
@ -236,12 +240,14 @@ This release marked heavy refactorings on internal code structure with the creat
|
|||
- Refactor: Split `AbstractContainer` from `AbstractElement` - @ivanlanin
|
||||
- Refactor: Apply composite pattern for Word2007 reader - @ivanlanin
|
||||
|
||||
|
||||
## 0.9.1 - 27 Mar 2014
|
||||
|
||||
This is a bugfix release for PSR-4 compatibility.
|
||||
|
||||
- Fixed PSR-4 composer autoloader - @AntonTyutin
|
||||
|
||||
|
||||
## 0.9.0 - 26 Mar 2014
|
||||
|
||||
This release marked the transformation to namespaces (PHP 5.3+).
|
||||
|
|
@ -265,12 +271,14 @@ This release marked the transformation to namespaces (PHP 5.3+).
|
|||
- Merge Style\TableFull into Style\Table. Style\TableFull is deprecated - @ivanlanin #160
|
||||
- Merge Section\MemoryImage into Section\Image. Section\Image is deprecated - @ivanlanin #160
|
||||
|
||||
|
||||
## 0.8.1 - 17 Mar 2014
|
||||
|
||||
This is a bugfix release for image detection functionality.
|
||||
|
||||
- Added fallback for computers that do not have exif_imagetype - @bskrtich, @gabrielbull
|
||||
|
||||
|
||||
## 0.8.0 - 15 Mar 2014
|
||||
|
||||
This release merged a lot of improvements from the community. Unit tests introduced in this release and has reached 90% code coverage.
|
||||
|
|
@ -320,6 +328,7 @@ This release merged a lot of improvements from the community. Unit tests introdu
|
|||
|
||||
- UnitTests - @Progi1984
|
||||
|
||||
|
||||
## 0.7.0 - 28 Jan 2014
|
||||
|
||||
This is the first release after a long development hiatus in [CodePlex](https://phpword.codeplex.com/). This release initialized ODT and RTF Writer, along with some other new features for the existing Word2007 Writer, e.g. tab, multiple header, rowspan and colspan. [Composer](https://packagist.org/packages/phpoffice/phpword) and [Travis](https://travis-ci.org/PHPOffice/PHPWord) were added.
|
||||
|
|
@ -348,4 +357,4 @@ This is the first release after a long development hiatus in [CodePlex](https://
|
|||
- Basic CI with Travis - @Progi1984
|
||||
- Added PHPWord_Exception and exception when could not copy the template - @Progi1984
|
||||
- IMPROVED: Moved examples out of Classes directory - @Progi1984
|
||||
- IMPROVED: Advanced string replace in setValue for Template - @Esmeraldo [#49](http://phpword.codeplex.com/workitem/49)
|
||||
- IMPROVED: Advanced string replace in setValue for Template - @Esmeraldo [#49](http://phpword.codeplex.com/workitem/49)
|
||||
Loading…
Reference in New Issue