3 All notable changes to this project will be documented in this file.
5 This project adheres to [Semantic Versioning](http://semver.org/) by version 1.0.0.
7 This change log adheres to [keepachangelog.com](http://keepachangelog.com).
11 ## [1.3.4] - 2016-04-20
13 - Fix endless loop when RTL ([#247](https://github.com/yuku-t/jquery-textcomplete/pull/247))
15 ## [1.3.3] - 2016-04-04
17 - Fix uncaught TypeError.
19 ## [1.3.2] - 2016-03-27
21 - Fix dropdown position problem with `line-height: normal`.
23 ## [1.3.1] - 2016-03-23
25 - Fix `input[type=search]` support.
27 ## [1.3.0] - 2016-03-20
29 - Add optional "id" strategy parameter.
31 ## [1.2.2] - 2016-03-19
33 - Remove dropdown element after `textcomplete('destroy')`.
34 - Skip search after pressing tab.
35 - Fix dropdown-menu positioning problem using textarea-caret package.
37 ## [1.2.1] - 2016-03-14
41 ## [1.2.0] - 2016-03-14
43 - Support `input[type=search]` ([#236](https://github.com/yuku-t/jquery-textcomplete/pull/236))
45 ## [1.1.0] - 2016-03-10
47 - Add the ability to insert HTML into a "contenteditable" field. ([#217](https://github.com/yuku-t/jquery-textcomplete/pull/217))
50 - Position relative to appendTo element. ([#234](https://github.com/yuku-t/jquery-textcomplete/pull/234))
51 - Avoid dropdown bumping into right edge of window. ([#235](https://github.com/yuku-t/jquery-textcomplete/pull/235))
52 - Fix top position issue when window is scrolled up and parents has fix position. ([#229](https://github.com/yuku-t/jquery-textcomplete/pull/229))
54 ## [1.0.0] - 2016-02-29
56 - Adheres keepachangelog.com.
58 ## [0.8.2] - 2016-02-29
60 - Add deactivate method to Completer. ([#233](https://github.com/yuku-t/jquery-textcomplete/pull/233))
62 ## [0.8.1] - 2015-10-22
64 - Add condition to ignore skipUnchangedTerm for empty text. ([#210](https://github.com/yuku-t/jquery-textcomplete/pull/210))
66 ## [0.8.0] - 2015-08-31
68 - If undefined is returned from a replace callback dont replace the text. ([#204](https://github.com/yuku-t/jquery-textcomplete/pull/204))
70 ## [0.7.3] - 2015-08-27
72 - Add `Strategy#el` and `Strategy#$el` which returns current input/textarea element and corresponding jquery object respectively.
74 ## [0.7.2] - 2015-08-26
76 - Reset \_term after selected ([#170](https://github.com/yuku-t/jquery-textcomplete/pull/170))
78 ## [0.7.1] - 2015-08-19
80 - Remove RTL support because of some bugs.
82 ## [0.7.0] - 2015-07-02
84 - Add support for a "no results" message like the header/footer. ([#179](https://github.com/yuku-t/jquery-textcomplete/pull/179))
85 - Yield the search term to the template function. ([#177](https://github.com/yuku-t/jquery-textcomplete/pull/177))
86 - Add amd wrapper. ([#167](https://github.com/yuku-t/jquery-textcomplete/pull/167))
87 - Add touch devices support. ([#163](https://github.com/yuku-t/jquery-textcomplete/pull/163))
90 - Stop sharing a dropdown element.
92 ## [0.6.1] - 2015-06-30
94 - Fix bug that Dropdown.\_fitToBottom does not consider window scroll
96 ## [0.6.0] - 2015-06-30
98 - Now dropdown elements have "textcomplete-dropdown" class.
100 ## [0.5.2] - 2015-06-29
102 - Keep dropdown list in browser window. ([#172](https://github.com/yuku-t/jquery-textcomplete/pull/172))
104 ## [0.5.1] - 2015-06-08
106 - Now a replace function is invoked with a user event.
108 ## [0.5.0] - 2015-06-08
110 - Support `onKeydown` option.
112 ## [0.4.0] - 2015-03-10
114 - Publish to [npmjs](https://www.npmjs.com/package/jquery-textcomplete).
115 - Support giving a function which returns a regexp to `match` option for dynamic matching.
117 ## [0.3.9] - 2015-03-03
119 - Deactivate dropdown on escape. ([#155](https://github.com/yuku-t/jquery-textcomplete/pull/155))
121 ## [0.3.8] - 2015-02-26
123 - Fix completion with enter key. ([#154](https://github.com/yuku-t/jquery-textcomplete/pull/154))
124 - Fix empty span node is inserted. ([#153](https://github.com/yuku-t/jquery-textcomplete/pull/153))
126 ## [0.3.7] - 2015-01-21
128 - Support input([type=text]. [#149](https://github.com/yuku-t/jquery-textcomplete/pull/149))
130 ## [0.3.6] - 2014-12-11
132 - Support element.contentEditable compatibility check. ([#147](https://github.com/yuku-t/jquery-textcomplete/pull/147))
135 - Fixes the fire function for events with additional parameters. ([#145](https://github.com/yuku-t/jquery-textcomplete/pull/145))
137 ## [0.3.5] - 2014-12-11
139 - Adds functionality to complete selection on space key. ([#141](https://github.com/yuku-t/jquery-textcomplete/pull/141))
142 - Loading script in head and destroy method bugfixes. ([#143](https://github.com/yuku-t/jquery-textcomplete/pull/143))
144 ## [0.3.4] - 2014-12-03
146 - Fix error when destroy is called before the field is focused. ([#138](https://github.com/yuku-t/jquery-textcomplete/pull/138))
147 - Fix IE bug where it would only trigger when tha carrot was at the end of the line. ([#133](https://github.com/yuku-t/jquery-textcomplete/pull/133))
149 ## [0.3.3] - 2014-09-25
151 - Add `className` option.
152 - Add `match` as the third argument of a search function.
155 - Ignore `.textcomplete('destory')` on non-initialized elements. ([#118](https://github.com/yuku-t/jquery-textcomplete/pull/118))
156 - Trigger completer with the current text by default. ([#119](https://github.com/yuku-t/jquery-textcomplete/pull/119))
157 - Hide dropdown before destroying it. ([#120](https://github.com/yuku-t/jquery-textcomplete/pull/120))
158 - Don't throw an exception even if a jquery click event is manually triggered. ([#121](https://github.com/yuku-t/jquery-textcomplete/pull/121))
160 ## [0.3.2] - 2014-09-16
162 - Add `IETextarea` adapter which supports IE8
163 - Add `idProperty` option.
164 - Add `adapter` option.
167 - Rename `Input` as `Adapter`.
169 ## [0.3.1] - 2014-09-10
171 - Add `context` strategy option.
172 - Add `debounce` option.
175 - Recycle `.dropdown-menu` element if available.
177 ## [0.3.0] - 2014-09-10
179 - Consider the `tab-size` of textarea.
180 - Add `zIndex` option.
183 - Revive `header` and `footer` options.
184 - Revive `height` option.
186 ## [0.3.0-beta2] - 2014-09-09
188 - Make sure that all demos work fine.
190 ## [0.3.0-beta1] - 2014-08-31
194 ## [0.2.6] - 2014-08-16
196 - Repair contenteditable.
198 ## [0.2.5] - 2014-08-07
200 - Enhance contenteditable support. ([#98](https://github.com/yuku-t/jquery-textcomplete/pull/98))
201 - Support absolute left/right placement. ([#96](https://github.com/yuku-t/jquery-textcomplete/pull/96))
202 - Support absolute height, scrollbar, pageup and pagedown. ([#87](https://github.com/yuku-t/jquery-textcomplete/pull/87))
204 ## [0.2.4] - 2014-07-02
206 - Fix horizonal position on contentEditable elements. ([#92](https://github.com/yuku-t/jquery-textcomplete/pull/92))
208 ## [0.2.3] - 2014-06-24
210 - Option to supply list view position function. ([#88](https://github.com/yuku-t/jquery-textcomplete/pull/88))
212 ## [0.2.2] - 2014-06-08
214 - Append dropdown element to body element by default.
215 - Tiny refactoring. [#84]
216 - Ignore tab key when modifier keys are being pushed. ([#85](https://github.com/yuku-t/jquery-textcomplete/pull/85))
219 ## [0.2.1] - 2014-05-15
221 - Support `appendTo` option.
222 - `header` and `footer` supports a function.
225 - Remove textcomplate-wrapper element.
227 ## [0.2.0] - 2014-05-02
229 - Contenteditable support.
231 - Support `header` and `footer` setting.
233 ## [0.1.4.1] - 2014-04-04
235 - Support placement option.
236 - Emacs-style prev/next keybindings.
237 - Replay searchFunc for the last term on slow network env.
242 ## [0.1.3] - 2014-04-07
244 - Support RTL positioning.
249 ## [0.1.2] - 2014-02-08
251 - Enable to append strategies on the fly.
252 - Enable to stop autocompleting.
253 - Enable to apply multiple textareas at once.
254 - Don't show popup on pressing arrow up and down keys.
255 - Hide dropdown by pressing ESC key.
256 - Prevent showing a dropdown when it just autocompleted.
258 ## [0.1.1] - 2014-02-02
260 - Introduce `textComplete:show`, `textComplete:hide` and `textComplete:select` events.
262 ## [0.1.0] - 2013-10-28
264 - Now strategies argument is an Array of strategy objects.
266 ## [0.0.4] - 2013-10-28
268 - Up and Down arrows cycle instead of exit.
270 - Support jQuery.overlay.
275 ## [0.0.3] - 2013-09-11
277 - Some performance improvement.
278 - Implement lazy callbacking on search function.
280 ## [0.0.2] - 2013-09-08
283 - Some performance improvement.
284 - Implement cache option.
286 ## 0.0.1 - 2013-09-02
290 [Unreleased]: https://github.com/yuku-t/jquery-textcomplete/compare/v1.3.4...HEAD
291 [1.3.4]: https://github.com/yuku-t/jquery-textcomplete/compare/v1.3.3...v1.3.4
292 [1.3.3]: https://github.com/yuku-t/jquery-textcomplete/compare/v1.3.2...v1.3.3
293 [1.3.2]: https://github.com/yuku-t/jquery-textcomplete/compare/v1.3.1...v1.3.2
294 [1.3.1]: https://github.com/yuku-t/jquery-textcomplete/compare/v1.3.0...v1.3.1
295 [1.3.0]: https://github.com/yuku-t/jquery-textcomplete/compare/v1.2.2...v1.3.0
296 [1.2.2]: https://github.com/yuku-t/jquery-textcomplete/compare/v1.2.1...v1.2.2
297 [1.2.1]: https://github.com/yuku-t/jquery-textcomplete/compare/v1.2.0...v1.2.1
298 [1.2.0]: https://github.com/yuku-t/jquery-textcomplete/compare/v1.1.0...v1.2.0
299 [1.1.0]: https://github.com/yuku-t/jquery-textcomplete/compare/v1.0.0...v1.1.0
300 [1.0.0]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.8.2...v1.0.0
301 [0.8.2]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.8.1...v0.8.2
302 [0.8.1]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.8.0...v0.8.1
303 [0.8.0]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.7.3...v0.8.0
304 [0.7.3]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.7.2...v0.7.3
305 [0.7.2]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.7.1...v0.7.2
306 [0.7.1]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.7.0...v0.7.1
307 [0.7.0]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.6.1...v0.7.0
308 [0.6.1]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.6.0...v0.6.1
309 [0.6.0]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.5.2...v0.6.0
310 [0.5.2]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.5.1...v0.5.2
311 [0.5.1]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.5.0...v0.5.1
312 [0.5.0]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.4.0...v0.5.0
313 [0.4.0]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.3.9...v0.4.0
314 [0.3.9]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.3.8...v0.3.9
315 [0.3.8]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.3.7...v0.3.8
316 [0.3.7]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.3.6...v0.3.7
317 [0.3.6]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.3.5...v0.3.6
318 [0.3.5]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.3.4...v0.3.5
319 [0.3.4]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.3.3...v0.3.4
320 [0.3.3]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.3.2...v0.3.3
321 [0.3.2]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.3.1...v0.3.2
322 [0.3.1]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.3.0...v0.3.1
323 [0.3.0]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.3.0-beta2...v0.3.0
324 [0.3.0-beta2]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.3.0-beta1...v0.3.0-beta2
325 [0.3.0-beta1]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.2.6...v0.3.0-beta1
326 [0.2.6]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.2.5...v0.2.6
327 [0.2.5]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.2.4...v0.2.5
328 [0.2.4]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.2.3...v0.2.4
329 [0.2.3]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.2.2...v0.2.3
330 [0.2.2]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.2.1...v0.2.2
331 [0.2.1]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.2.0...v0.2.1
332 [0.2.0]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.1.4.1...v0.2.0
333 [0.1.4.1]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.1.3...v0.1.4.1
334 [0.1.3]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.1.2...v0.1.3
335 [0.1.2]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.1.1...v0.1.2
336 [0.1.1]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.1.0...v0.1.1
337 [0.1.0]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.0.4...v0.1.0
338 [0.0.4]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.0.3...v0.0.4
339 [0.0.3]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.0.2...v0.0.3
340 [0.0.2]: https://github.com/yuku-t/jquery-textcomplete/compare/v0.0.1...v0.0.2