diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d7c5cf..38fc25c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,16 @@ # Changelog +## 1.3.15 (2023-04-19) +* added meta: setTitle, setSubject, setAuthor, setCompany, setManager, setKeywords, setDescription, setCategory, setApplication, setLastModifiedBy. Thx [Oleg Kosarev](https://github.com/DevOlegKosarev) + ## 1.3.14 (2023-04-18) * fixed "This action doesn't work on multiple selection" error ## 1.3.13 (2023-04-11) -* ```$xlsx->rightToLeft()``` - RTL mode. Column A is on the far right, Column B is one column left of Column A, and so on. Also, information in cells is displayed in the Right to Left format. - +* ```$xlsx->rightToLeft()``` - RTL mode. Column A is on the far right, Column B is one column left of Column A, and so on. Also, information in cells is displayed in the Right to Left format. ## 1.3.12 (2023-03-31) -* `````` - font size in cells, thx [Andrew Robinson](https://github.com/mrjemson) - +* `````` - font size in cells, thx [Andrew Robinson](https://github.com/mrjemson) ## 1.3.11 (2023-03-28) * freezePanes( corner_cell ) - freezePanes to keep an area of a worksheet visible while you scroll, corner_cell is not included, thx [Javier](https://github.com/xaviermdq) diff --git a/src/SimpleXLSXGen.php b/src/SimpleXLSXGen.php index 57b097a..89c2b8f 100644 --- a/src/SimpleXLSXGen.php +++ b/src/SimpleXLSXGen.php @@ -1078,12 +1078,6 @@ class SimpleXLSXGen return $this; } - public function setLastModifiedBy($lastModifiedBy) - { - $this->lastModifiedBy = $lastModifiedBy; - return $this; - } - public function autoFilter($range) { $this->sheets[$this->curSheet]['autofilter'] = $range;