Skip to content

Commit 5938385

Browse files
committed
changelog
1 parent e5e6366 commit 5938385

1 file changed

Lines changed: 26 additions & 38 deletions

File tree

CHANGELOG.md

Lines changed: 26 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -7,32 +7,31 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
Previous releases are documented in [github releases](https://github.com/oscarotero/Gettext/releases)
99

10-
## [4.6.1] - 2018-08-27
10+
## [4.6.2] - 2019-01-12
11+
### Added
12+
- New option `facade` in blade extractor to use a facade instead create a blade compiler [#197], [#198]
1113

1214
### Fixed
15+
- Added VueJS extractor method docblocks for IDEs [#191]
1316

17+
## [4.6.1] - 2018-08-27
18+
### Fixed
1419
- VueJS DOM parsing [#188]
1520
- Javascript parser was unable to extract some functions [#187]
1621

1722
## [4.6.0] - 2018-06-26
18-
1923
### Added
20-
2124
- New extractor for VueJs [#178]
2225

2326
### Fixed
24-
2527
- Do not include empty translations containing the headers in the translator [#182]
2628
- Test enhancement [#177]
2729

2830
## [4.5.0] - 2018-04-23
29-
3031
### Added
31-
3232
- Support for disabled translations
3333

3434
### Fixed
35-
3635
- Added php-7.2 to travis
3736
- Fixed po tests on bigendian [#159]
3837
- Improved comment estraction [#166]
@@ -41,54 +40,40 @@ Previous releases are documented in [github releases](https://github.com/oscarot
4140
- Improved `@method` docs in `Translations` [#175]
4241

4342
## [4.4.4] - 2018-02-21
44-
4543
### Fixed
46-
4744
- Changed the comment extraction to be compatible with gettext behaviour: the comment must be placed in the line preceding the function [#161]
4845

4946
### Security
50-
5147
- Validate eval input from plural forms [#156]
5248

5349
## [4.4.3] - 2017-08-09
54-
5550
### Fixed
56-
5751
- Handle `NULL` arguments on extract entries in php. For example `dn__(null, 'singular', 'plural')`.
5852
- Fixed the `PhpCode` and `JsCode` extractors that didn't extract `dn__` and `dngettext` entries [#155].
5953
- Fixed the `PhpCode` and `JsCode` extractors that didn't extract `dnpgettext` correctly.
6054

6155
## [4.4.2] - 2017-07-27
62-
6356
### Fixed
64-
6557
- Clone the translations in `Translations::mergeWith` to prevent that the translation is referenced in both places. [#152]
6658
- Fixed escaped quotes in the javascript extractor [#154]
6759

6860
## [4.4.1] - 2017-05-20
69-
7061
### Fixed
71-
7262
- Fixed a bug where the options was not passed correctly to the merging Translations object [#147]
7363
- Unified the plural behaviours between PHP gettext and Translator when the plural translation is unknown [#148]
7464
- Removed the deprecated function `create_function()` and use `eval()` instead
7565

7666
## [4.4.0] - 2017-05-10
77-
7867
### Added
79-
8068
- New option `noLocation` to po generator, to omit the references [#143]
8169
- New options `delimiter`, `enclosure` and `escape_char` to Csv and CsvDictionary extractors and generators [#145]
8270
- Added the missing `dn__()` function [#146]
8371

8472
### Fixed
85-
8673
- Improved the code style including php_codesniffer in development
8774

8875
## 4.3.0 - 2017-03-04
89-
9076
### Added
91-
9277
- Added support for named placeholders (using `strtr`). For example:
9378
```php
9479
__('Hello :name', [':name' => 'World']);
@@ -97,30 +82,33 @@ Previous releases are documented in [github releases](https://github.com/oscarot
9782
- New function `BaseTranslator::includeFunctions()` to include the functions file without register any translator
9883

9984
### Fixed
100-
10185
- Fixed a bug related with the javascript source extraction with single quotes
10286

103-
[#188]: https://github.com/oscarotero/Gettext/issues/188
104-
[#187]: https://github.com/oscarotero/Gettext/issues/187
105-
[#178]: https://github.com/oscarotero/Gettext/issues/178
106-
[#182]: https://github.com/oscarotero/Gettext/issues/182
107-
[#177]: https://github.com/oscarotero/Gettext/issues/177
87+
[#143]: https://github.com/oscarotero/Gettext/issues/143
88+
[#145]: https://github.com/oscarotero/Gettext/issues/145
89+
[#146]: https://github.com/oscarotero/Gettext/issues/146
90+
[#147]: https://github.com/oscarotero/Gettext/issues/147
91+
[#148]: https://github.com/oscarotero/Gettext/issues/148
92+
[#152]: https://github.com/oscarotero/Gettext/issues/152
93+
[#154]: https://github.com/oscarotero/Gettext/issues/154
94+
[#155]: https://github.com/oscarotero/Gettext/issues/155
95+
[#156]: https://github.com/oscarotero/Gettext/issues/156
10896
[#159]: https://github.com/oscarotero/Gettext/issues/159
97+
[#161]: https://github.com/oscarotero/Gettext/issues/161
10998
[#166]: https://github.com/oscarotero/Gettext/issues/166
110-
[#170]: https://github.com/oscarotero/Gettext/issues/170
11199
[#168]: https://github.com/oscarotero/Gettext/issues/168
100+
[#170]: https://github.com/oscarotero/Gettext/issues/170
112101
[#175]: https://github.com/oscarotero/Gettext/issues/175
113-
[#161]: https://github.com/oscarotero/Gettext/issues/161
114-
[#156]: https://github.com/oscarotero/Gettext/issues/156
115-
[#155]: https://github.com/oscarotero/Gettext/issues/155
116-
[#152]: https://github.com/oscarotero/Gettext/issues/152
117-
[#154]: https://github.com/oscarotero/Gettext/issues/154
118-
[#147]: https://github.com/oscarotero/Gettext/issues/147
119-
[#148]: https://github.com/oscarotero/Gettext/issues/148
120-
[#143]: https://github.com/oscarotero/Gettext/issues/143
121-
[#145]: https://github.com/oscarotero/Gettext/issues/145
122-
[#146]: https://github.com/oscarotero/Gettext/issues/146
102+
[#177]: https://github.com/oscarotero/Gettext/issues/177
103+
[#178]: https://github.com/oscarotero/Gettext/issues/178
104+
[#182]: https://github.com/oscarotero/Gettext/issues/182
105+
[#187]: https://github.com/oscarotero/Gettext/issues/187
106+
[#188]: https://github.com/oscarotero/Gettext/issues/188
107+
[#191]: https://github.com/oscarotero/Gettext/issues/191
108+
[#197]: https://github.com/oscarotero/Gettext/issues/197
109+
[#198]: https://github.com/oscarotero/Gettext/issues/198
123110

111+
[4.6.2]: https://github.com/oscarotero/Gettext/compare/v4.6.1...v4.6.2
124112
[4.6.1]: https://github.com/oscarotero/Gettext/compare/v4.6.0...v4.6.1
125113
[4.6.0]: https://github.com/oscarotero/Gettext/compare/v4.5.0...v4.6.0
126114
[4.5.0]: https://github.com/oscarotero/Gettext/compare/v4.4.4...v4.5.0

0 commit comments

Comments
 (0)