UNPKG

3.42 kBMarkdownView Raw
1# Changelog
2
3## 4.0.0
4- Add --init CLI option #77
5- Add --stdin and --stdin-filename CLI options #76
6
7Before:
8`echo "Hello, world!" | yaspeller`
9
10After:
11`echo "Hello, world!" | yaspeller --stdin`
12or
13`echo "Hello, world!" | yaspeller --stdin --stdin-filename hello.txt`
14
15## 3.3.0
16- Glob patterns for Windows
17- Updated deps in package.json
18
19## 3.2.0
20- File extension with multiple dots #66, #67 @levonet
21
22## 3.1.0
23- Remove acute accent, shy and other symbols #65
24- Updated deps in package.json
25
26Bugs:
27- Can't read options --config #61 @pavelpower
28- Fix the error message in the dictionary.js #60 @vessd
29- Fix(readme): translate 'или' to 'or' #57 @JLHwung
30
31## 3.0.0
32- Added line number in reports
33- Removed support for old format of words in the dictionary
34- A support for old Node version is dropped
35- Updated deps in package.json
36
37## 2.9.1
38- Small fixes in README.md for npmjs.org
39
40## 2.9.0
41- Ability to ignore the text using regular expressions (`--ignore-text` for CLI or `ignoreText` for `.yaspellerrc`)
42- Updated deps in package.json
43
44## 2.8.2
45- Small fix for stdin #48
46- Updated deps in package.json
47
48## 2.8.1
49- Updated deps in package.json
50
51## 2.8.0
52- Added support for stdin
53- Updated deps in package.json
54
55## 2.7.0
56- Separate module for Yandex.Speller API
57- Updated deps in package.json
58
59## 2.6.0
60- Added filter “Show only errors” in HTML report
61- Updated deps in package.json
62
63## 2.5.1
64- Updated deps in package.json
65
66## 2.5.0
67- Replace npm module `eyo` to `eyo-kernel`
68- Output warnings of duplicate words in dictionaries
69- Update deps in package.json
70- Simplified regular expressions in words in the dictionary
71
72Before (<= 2.4.0):
73```js
74[
75 "someword1", // someword1 = someword1
76 "Someword2", // Someword2 = Someword2
77 "/some(w|W)ord[23]/", // some(w|W)ord[23] = some(w|W)ord[23]
78 "/Some(w|W)ord/" // Some(w|W)ord = Some(w|W)ord
79]
80```
81
82After (2.5.0):
83```js
84[
85 "someword1", // someword1 = someword1 and Someword1
86 "Someword2", // Someword2 = Someword2
87 "some(w|W)ord[23]", // some(w|W)ord[23] = some(w|W)ord[23] and Some(w|W)ord[23]
88 "Some(w|W)ord" // Some(w|W)ord = Some(w|W)ord
89]
90```
91
92## 2.4.0
93- Ability to ignore text when checking
94
95### Bug fixes
96- Fix JSON comments in dictionaries and config's
97
98## 2.3.0
99- JSON comments in dictionaries and config's #35
100- Ability to specify multiple dictionaries in option --dictionary #33
101- Markdown report #31
102- Update deps in package.json
103
104## 2.2.0
105- Exit code for error loading in API #29.
106- Update deps in package.json.
107
108## 2.1.0
109- Ability to use an empty parameter `--file-extensions` from CLI.
110
111### Bug fixes
112- Error with an unknown site.
113
114## 2.0.1
115### Bug fixes
116- Load config after args is parsed #27
117
118## 2.0.0
119- Support for checking the letter Ё (`--check-yo` or `checkYo: true`).
120- Dictionary of `.yaspellerrc` and specified on the command line are used together.
121- Setting `fileExtensions` is not used for checking one file (`yaspeller -l ru my_file.txt`).
122- Added report `error_dictionary` for the collection of typos in files.
123
124## 1.1.0
125- Use settings `excludeFiles` and `fileExtensions` for checking one file.
126- Support for regular expressions #18.
127- Fixed detection format #19.
128
129## 1.0.6
130- Update deps in package.json.
131- Added changelog.
132
133## 1.0.5
134### Bug fixes
135- Fix file protocol in html report.
136
137## 1.0.4
138### Bug fixes
139- npm: Fix LF.
140
141## 1.0.3
142### Bug fixes
143- Crash of Yaspeller when try Habrahabr url #22.
144
145## 1.0.2
146Initial public release.
147
\No newline at end of file