]> git.gir.st - VimFx.git/blob - CHANGELOG.md
Merge pull request #639 from comepradz/locale-id
[VimFx.git] / CHANGELOG.md
1 ### 0.9.0 (2015-12-02)
2
3 - Fixed: Links with the `onclick` attribute can now be opened in new tabs again.
4 (Regression since 0.8.0.)
5 - Fixed: The text size in VimFx’s Keyboard Shortcuts dialog is now correctly
6 resized.
7 - Added: The `gH` command. It opens the back/forward button context menu in the
8 middle of the window, allowing you to choose a history entry with the arrow
9 keys and `<enter>`.
10
11 ### 0.8.0 (2015-12-01)
12
13 - Fixed: VimFx now works properly in tabs moved to other windows.
14 - Fixed: An unreliable check for multi-process mode has been eliminated, fixing
15 various problems for some users.
16 - Fixed: VimFx’s toolbar button now changes color correctly when switching
17 between blacklisted and non-blacklisted tabs.
18 - Fixed: Dead keys now work out of the box on Windows.
19 - Improved: Links with the `onclick` attribute (abused as buttons) can no longer
20 get the same hint as another link.
21 - Added: The Keyboard Shortcuts dialog (shown by pressing `?`) is now
22 searchable.
23 - Added: The `g/` command. It’s like `/` but searches links only.
24
25 - Added: [Marks].
26
27 - Use `ma` to mark the current scroll position and `` `a `` to return to it.
28 (You may substitute `a` with any key press.)
29 - Use ``` `` ``` to return to the position before the last `gg`, `G`, `0`,
30 `$`, `/`, `n`, `N` or `` ` ``. (You can change this mark using the
31 [`last_scroll_position_mark`] pref.)
32
33 - Added: Window commands.
34
35 - `w`: Open new window.
36 - `W`: Open new private window.
37 - `gw`: Move tab to new window.
38 - `gF`: Follow link in new window.
39
40 [Marks]: https://github.com/akhodakivskiy/VimFx/blob/47fc699ce8217ee90af4d12e81f102f2bea09d61/documentation/commands.md#marks-m-and-
41 [`last_scroll_position_mark`]: https://github.com/akhodakivskiy/VimFx/blob/47fc699ce8217ee90af4d12e81f102f2bea09d61/documentation/options.md#last_scroll_position_mark
42
43 ### 0.7.3 (2015-11-22)
44
45 - Fixed: Scrolling now works correctly in pages in quirks mode (lacking a
46 doctype), such as Hackernews.
47 - Improved: The largest scrollable element is now detected better in frames.
48 - Fixed: Hints mode now exits correctly when focusing a text input using `af`,
49 or `f` with a count.
50
51 ### 0.7.2 (2015-11-21)
52
53 - Fixed: The blinking text caret now always appears correctly when focusing text
54 inputs.
55
56 ### 0.7.1 (2015-11-21)
57
58 - Fixed: The scrolling commands should now “just work” when using non-default
59 zoom or DPI settings, most notably on Google Groups.
60
61 ### 0.7.0 (2015-11-19)
62
63 - Changed: Instead of using system notifications, which turned out to be a bit
64 too intrusive, [notifications] are now similar to the “URL popup” (shown when
65 hovering or focusing links) but are placed on the opposite side,.
66 - Changed: The “Focus next element” and “Focus previous element” commands have
67 been removed. The reason they existed was to let `<tab>` and `<s-tab>` only
68 cycle between text inputs (as opposed to _all_ focusable elements) after
69 you’ve pressed `gi`. Now, `<tab>` and `<s-tab>` are handled specially instead,
70 and _only_ after pressing `gi`. The reason for this change is that the now
71 removed commands were too intrusive, breaking user habits. One of VimFx’s main
72 goal is _not_ to do that. (You can turn the special handling of `<tab>` and
73 `<s-tab>` off using the the new [`focus_previous_key` and `focus_next_key`]
74 prefs.)
75 - Fixed: The scrolling commands should now “just work” in a lot more situations,
76 most notably on Gmail and Google Groups. More scrollable elements are also
77 recognized by the `f` and `zf` commands.
78 - Improved: The right border of hint markers for scrollable elements is now
79 styled to remind of a scroll bar, making them easier to recognize among hints
80 for links.
81 - Improved/Changed: `J` and `gJ` now allow a count on the first tab.
82 Consequently, `K` and `gK` now allow a count on the _last_ tab.
83 - Changed: `gJ` and `gK` can no longer be used to pin or unpin tabs. They now
84 only wrap around tabs of the same pinned state. Use `gp` to toggle between
85 pinned and non-pinned.
86 - Fixed: Many elements that got a hint before VimFx 0.6.0 now do again.
87 - Improved: Comment fields on Facebook can now be focused using `f` and blurred
88 using `<escape>`.
89 - Improved: VimFx’s toolbar button is no greyed out when you focus a text input.
90 This is to show that your key presses will be passed into the text input
91 rather than activating VimFx commands.
92 - Added: [`g0`, `g^` and `g$` now accept counts][tab-index-counts], allowing you
93 to go to tab number _count._
94 - Improved: `gi` now finds text inputs inside frames.
95 - Fixed: “gi mode” is now exited properly when blurring a text input.
96 - Fixed: `<select>` elements are no longer considered to be text inputs when
97 using `<tab>` and `<s-tab>` in “gi mode.”
98 - Fixed: Using `<force>` or `<late>` in a shortcut no longer applies to _every_
99 shortcut for the command, but only that shortcut.
100 - Fixed: The order of the Previous/Next page patterns is now respected. This
101 caused the wrong link to be picked by the `[` and `]` commands on some pages.
102
103 [`focus_previous_key` and `focus_next_key`]: https://github.com/akhodakivskiy/VimFx/blob/d70b5bb14be89d9ce52138b0e9abdef1b31ad337/documentation/options.md#focus_previous_key-and-focus_next_key
104 [notifications]: https://github.com/akhodakivskiy/VimFx/blob/d70b5bb14be89d9ce52138b0e9abdef1b31ad337/documentation/notifications.md
105 [tab-index-counts]: https://github.com/akhodakivskiy/VimFx/blob/d70b5bb14be89d9ce52138b0e9abdef1b31ad337/documentation/commands.md#g0-g-g
106
107 ### 0.6.2 (2015-11-11)
108
109 - Improved: If the entire page isn’t scrollable, the largest scrollable element
110 is scrolled instead.
111 - Fixed: VimFx’s keyboard shortcuts now works on slowly loading pages.
112 - Fixed: Numbers may now be used as shortcut keys (overriding counts).
113 - Fixed: The toolbar button’s icon is now correctly sized in high DPI.
114 - Fixed: Hint markers are now correctly positioned when zooming using the “Zoom
115 text only” option.
116 - Fixed: The `P` command now works with the InstantFox add-on.
117
118 ### 0.6.1 (2015-11-10)
119
120 - Fixed: If you customized the “esc” command before VimFx 0.6.0 it should now
121 work as expected.
122 - Fixed: `<tab>` now works as expected in the address bar and in the dev tools.
123 - Fixed: Light-weight themes can no longer make VimFx’s Keyboard Shortcuts help
124 dialog and hint markers unreadable.
125 - Added: The [notifications\_enabled] option.
126
127 [notifications\_enabled]: https://github.com/akhodakivskiy/VimFx/blob/56c4b7c514ea8b58d2cdcecf3d2654648c48ca31/documentation/options.md#notifications_enabled
128
129 ### 0.6.0 (2015-11-09)
130
131 ##### Most important (breaking) changes
132
133 - VimFx now works properly with **any keyboard layout.** Users of **multiple
134 layouts** should enable the **[ignore keyboard layout] option.** #249 #259
135
136 - Features related to disabling VimFx, and to the [toolbar button]:
137
138 - **Insert Mode** has been renamed to **_Ignore_ mode.**
139 - **[Blacklisted][blacklist] sites** now **enter Ignore mode automatically,**
140 instead of being specially handled.
141 - The feature to click the toolbar button (or press `<a-V>`) to **disable
142 VimFx** has been **removed.** Use **Ignore mode** (`i`) and the
143 **[blacklist] instead.**
144 - The **toolbar button** is now **red in Ignore mode** (which also means that
145 it is red on blacklisted sites) and green otherwise (never grey anymore).
146 - The toolbar button no longer offers to (un-)blacklist the current domain.
147 (Head into VimFx’s settings page in the Add-ons Manager and add
148 `*currentdomain.com*` to the [blacklist] option yourself instead.)
149
150 (See [commit 3552282] for more information.)
151
152 - **Some default shortcuts have changed,** mostly because they conflicted with
153 standard Firefox shortcuts: #308
154
155 - `<c-J>` → `gJ`
156
157 - `<c-K>` → `gK`
158
159 - `g^` and `gH` → `g0`
160
161 `g^` now selects the first _non pinned_ tab instead, while `g0`
162 selects the first tab regardless of whether it is pinned or not. #317
163
164 - `<c-e>` (alias for `j`) and `<c-y>` (alias for `k`) have been removed.
165
166 - `<c-f>` → `<space>` and `<c-b>` → `<s-space>`
167
168 - `vf` → `zf`
169
170 This frees up `v` for future shortcuts (instead making `z` a
171 “namespace” key, just like in Vim).
172
173 - To **exit Ignore mode:** `<escape>` → `<s-escape>`. This is because Ignore
174 mode has replaced the disable feature, as well as the special blacklist
175 state (see above). Sites are likely to use `<escape>` but not `<s-escape>`.
176 (In a way, this new role of Ignore mode also means that the old (many times
177 broken) shortcut to disable VimFx (`<a-V>`) has been replaced by `i`.) #64
178 \#375 #432
179
180 - VimFx’s Keyboard Shortcuts help dialog is now help only, and more accessible.
181 To **customize keyboard shortcuts,** go to VimFx’s settings page **in the
182 Add-ons Manager,** just like you would to customize other settings. Also,
183 **commas** between every key are **no longer needed:** Type `gJ` instead of
184 `g,J`.
185
186 - For performance reasons, **Hint markers** are now placed vertically **centered
187 instead of at the top** of the element. Don’t be surprised if you see the same
188 hint repeated several times**—links that go to the same place now get the same
189 hint.** The “Smart hints” option has been removed—hints are _always_ smart
190 now, and a lot smarter than before. Finally, hints now also work in the new
191 tab page, the Add-ons Manager and the preferences page. If you want to, you
192 can read more about [the `f` commands]. \#51 #60 #176 #320 #325 #468 #471 #475
193
194 - The **`F`** command now _always_ opens tabs in new **background** tabs, while
195 **`gf`** has been added to open tabs in new **foreground** tabs. #227 #464
196
197 - **Autofocus prevention** is now **off by default.** One of VimFx’s core
198 philosophies is to be nice to your browser habits. Some find autofocus
199 prevention too big a change. Turn it on again if you like it! By the way,
200 autofocus prevention now works much more reliably and should not cause issues
201 with other extensions. #497 #541
202
203 - The **“Scroll step”** option has been **removed**. The scrolling commands that
204 used it now **work like the arrow keys instead,** and are customized just like
205 them. See [scrolling prefs] for more information.
206
207 - Speaking of scrolling, **which elements scrolls** when you use VimFx’s
208 scrolling commands **has changed.** See [scrolling commands] for more
209 information.
210
211 ##### New features
212
213 - New commands:
214
215 - `gp` pins or unpins the current tab. (Also see `g^` and `g0` mentioned
216 above.) #121
217 - `yt` duplicates the current tab. #121
218 - `0` and `^` scroll to the far left, and `$` scrolls to the far right.
219 - [`gi`] has finally been implemented. #47
220 - [Ignore mode `<s-f1>`] let you run a Normal mode command without exiting
221 Ignore mode.
222
223 - In Hints mode you can now hold ctrl and alt to change behavior of the matched
224 marker. Hold shift to temporarily make the hints see-through. See [the `f`
225 commands] for more information. #220 #421 #484
226
227 - Some commands now accept [counts]. #374
228
229 - It is now possible to create shortcuts that work inside text inputs. See the
230 [`<force>`] key for more information. #258
231
232 - It is now possible to create shortcuts that the page can override. See the
233 [`<late>`] key for more information.
234
235 - A number of [advanced options] have been added. Rather than listing everything
236 regarding them here, follow that link if you’re interested. #452 #489
237
238 - You may now, if you want to, configure VimFx through a [config file], using
239 the new [public API]. Customizing VimFx through a config file also gives extra
240 abilities, such as [site-specific options][option-overrides] and [disabling
241 certain commands on certain sites][key-overrides]. It also allows to add
242 [custom commands] \(and other extensions to extend VimFx). #158 #235 #255 #261
243 \#300 #408 #445 #490 #515
244
245 - It is now easier to customize VimFx through custom [styling]. An example is
246 changing the way hint markers look. #220 #233 #424 #432 #465
247
248 - VimFx now has [documentation] and a [wiki].
249
250 - A few new locales were added:
251
252 - fr. Thanks to Mickaël RAYBAUD-ROIG (@m-r-r)!
253 - pt-BR. Thanks to Átila Camurça Alves (@atilacamurca)!
254 - sv-SE. Thanks to Andreas Lindhé (@lindhe)!
255
256 ##### Improvements
257
258 - VimFx is now multi-process/Electrolysis/e10s compatible! This means that you
259 can run VimFx on a version of Firefox with multi-process enabled without
260 issues, and that we’re future proof for the day when Firefox becomes
261 multi-process by default. Best of all, it also made VimFx more reliable in
262 non-multi-process (“regular”) Firefox. #378
263
264 - The `[` and `]` commands are now smarter, recognizing more links to the
265 previous/next page correctly. You may read more about [previous/next page
266 patterns]. #396
267
268 - The `n` and `N` commands now notify you when they wrap around the page, or the
269 phrase you searched for could not be found. #398
270
271 - _All_ shortcuts in _all modes_ can now be customized. For example, this allows
272 you to disable VimFx’s Vim-style `<enter>` behavior in the find bar. #222 #390
273 \#421
274
275 - The `p` and `P` commands are now smarter regarding whether to treat the
276 clipboard contents as a URL or a search, by working exactly like pasting in
277 the address bar. They also now read the selection clipboard, if available.
278 \#353 #382
279
280 - VimFx’s toolbar button is now properly implemented. #303 #349 #383
281
282 - Most locales were updated. Thanks to our awesome [translators]!
283
284 ##### Minor bug fixes
285
286 - VimFx now works correctly in tabs dragged to other windows. #57
287 - The `p` command is no longer broken. #494
288 - Non-ASCII shortcut keys now work properly. #433
289 - The Keyboard Shortcuts help dialog can no longer be covered by page elements.
290 \#477
291 - Hint markers can no longer be covered by page elements.
292 - VimFx no longer causes scripts on icloud.com to get stuck in an infinite loop.
293 \#389
294
295 [advanced options]: https://github.com/akhodakivskiy/VimFx/blob/c790b0fc1127c66bb7b33ccbaf4c0e8090e5530b/documentation/options.md#advanced-options
296 [blacklist]: https://github.com/akhodakivskiy/VimFx/blob/c790b0fc1127c66bb7b33ccbaf4c0e8090e5530b/documentation/options.md#blacklist
297 [ignore keyboard layout]: https://github.com/akhodakivskiy/VimFx/blob/c790b0fc1127c66bb7b33ccbaf4c0e8090e5530b/documentation/options.md#ignore-keyboard-layout
298 [previous/next page patterns]: https://github.com/akhodakivskiy/VimFx/blob/c790b0fc1127c66bb7b33ccbaf4c0e8090e5530b/documentation/options.md#previousnext-page-patterns
299 [scrolling prefs]: https://github.com/akhodakivskiy/VimFx/blob/c790b0fc1127c66bb7b33ccbaf4c0e8090e5530b/documentation/options.md#scrolling-prefs
300 [counts]: https://github.com/akhodakivskiy/VimFx/blob/c790b0fc1127c66bb7b33ccbaf4c0e8090e5530b/documentation/commands.md#counts
301 [`gi`]: https://github.com/akhodakivskiy/VimFx/blob/c790b0fc1127c66bb7b33ccbaf4c0e8090e5530b/documentation/commands.md#gi-1
302 [Ignore mode `<s-f1>`]: https://github.com/akhodakivskiy/VimFx/blob/c790b0fc1127c66bb7b33ccbaf4c0e8090e5530b/documentation/commands.md#ignore-mode-s-f1
303 [scrolling commands]: https://github.com/akhodakivskiy/VimFx/blob/c790b0fc1127c66bb7b33ccbaf4c0e8090e5530b/documentation/commands.md#scrolling-commands-1
304 [the `f` commands]: https://github.com/akhodakivskiy/VimFx/blob/c790b0fc1127c66bb7b33ccbaf4c0e8090e5530b/documentation/commands.md#the-f-commands-1
305 [`<force>`]: https://github.com/akhodakivskiy/VimFx/blob/c790b0fc1127c66bb7b33ccbaf4c0e8090e5530b/documentation/shortcuts.md#force
306 [`<late>`]: https://github.com/akhodakivskiy/VimFx/blob/c790b0fc1127c66bb7b33ccbaf4c0e8090e5530b/documentation/shortcuts.md#late
307 [config file]: https://github.com/akhodakivskiy/VimFx/blob/c790b0fc1127c66bb7b33ccbaf4c0e8090e5530b/documentation/config-file.md
308 [public api]: https://github.com/akhodakivskiy/VimFx/blob/c790b0fc1127c66bb7b33ccbaf4c0e8090e5530b/documentation/api.md
309 [option-overrides]: https://github.com/akhodakivskiy/VimFx/blob/c790b0fc1127c66bb7b33ccbaf4c0e8090e5530b/documentation/api.md#vimfxaddoptionoverridesrules
310 [key-overrides]: https://github.com/akhodakivskiy/VimFx/blob/c790b0fc1127c66bb7b33ccbaf4c0e8090e5530b/documentation/api.md#vimfxaddkeyoverridesrules
311 [styling]: https://github.com/akhodakivskiy/VimFx/blob/c790b0fc1127c66bb7b33ccbaf4c0e8090e5530b/documentation/styling.md
312 [toolbar button]: https://github.com/akhodakivskiy/VimFx/blob/c790b0fc1127c66bb7b33ccbaf4c0e8090e5530b/documentation/styling.md
313 [translators]: https://github.com/akhodakivskiy/VimFx/blob/c790b0fc1127c66bb7b33ccbaf4c0e8090e5530b/PEOPLE.md#translators
314 [documentation]: https://github.com/akhodakivskiy/VimFx/blob/c790b0fc1127c66bb7b33ccbaf4c0e8090e5530b/documentation/
315 [wiki]: https://github.com/akhodakivskiy/VimFx/wiki/
316 [custom commands]: https://github.com/akhodakivskiy/VimFx/wiki/Custom-Commands
317 [commit 3552282]: https://github.com/akhodakivskiy/VimFx/commit/355228217d7e7a61f5e1edbb9efbfb0f3e4ef81c
318
319 ### 0.5.17 (2015-01-23)
320
321 - Fixed: The hints generation no longer crashes on some pages (regression since
322 version 0.5.15).
323
324 ### 0.5.16 (2015-01-22)
325
326 - Fixed: The toolbar button no longer throws errors. (This fix should have been
327 in 0.5.15 but was forgotten. Luckily an AMO reviewer found it.)
328
329 ### 0.5.15 (2015-01-21)
330
331 - Improved: This version is now forwards-compatible with the upcoming version
332 0.6.0. Downgrading from 0.6.0 to 0.5.14 or older might cause VimFx to crash,
333 but downgrading from 0.6.0 to 0.5.15 is safe.
334 - Fixed: Non-hintchars key presses in hints mode are now suppressed. They used
335 to be passed along to the browser, which could confusingly activate site
336 commands.
337 - Fixed: The 'f' command now always opens links in the same tab. Links used to
338 be able to force a new tab or window.
339 - Fixed: Pressing 'Esc' in the location bar now restores the URL, as is the
340 default behaviour of Firefox. You may now also close Firefox dialogs using
341 'Esc'.
342 - Improved: Updated the de locale. Thanks to Alexander Haeussler!
343 - Improved: Updated the pl locale. Thanks to morethanoneanimal!
344
345 ### 0.5.14 (2014-08-16)
346
347 - Fixed: Locales should now work properly.
348 - Improved: Updated the zh-CN locale (@mozillazg).
349 - Improved: Updated the de locale (@Kambfhase).
350 - Added: Japanese locale (@pluser).
351 - Fixed: If you switched to another tab or window while an `<input>` element
352 was focused and then switched back, the `<input>` element got blurred, while
353 it should have stayed focused. This caused the auto-type feature of KeePassX
354 to break.
355
356 ### 0.5.13 (2014-08-02)
357
358 - Fixed: The vote button on StackExchange sites are now markable again.
359 - Improved: Detection of previous/next links. Should work better on gmail now.
360 - Fixed: It is now possible to use Enter/Return in keyboard shortcuts.
361 - Improved: The n/N commands (etc.) now work even if you didn’t open the finbar
362 using the VimFx command (such as the default key binding ctrl+f, or by
363 clicking a menu item).
364 - Improved: It is now possible to blur text inputs without sending Esc to the
365 page, which could cause dialogs etc. to annoyingly close.
366 - Improved: Updated the el-GR locale (@sirodoht).
367 - Fixed: Autofocus prevention sometimes made text inputs impossible to focus
368 until you reloaded the page.
369 - Improved: Autofocus prevention now works on more sites than before.
370 - Improved: Autofocus prevention now prevents _all_ automatic focusing (not
371 just when the page loads). This makes devdocs.io much easier to use.
372 - Added: When viewing images directly and the image has been resized to fit the
373 screen the image is now markable, allowing you to toggle zoom on it using the
374 keyboard.
375 - Fixed: It is no longer possible to add conflicting shortcuts (such as adding
376 'a' when 'af' and 'as' are already present).
377
378 ### 0.5.12 (2014-06-01)
379
380 - Fixed: Autofocus prevention got stuck sometimes, making it impossible to
381 focus inputs.
382
383 ### 0.5.11 (2014-06-01)
384
385 - Fixed: The focus search bar command was broken.
386 - Fixed: Autofocus prevention was broken.
387 - Fixed: The top bar on YouTube could not be accessed by VimFx.
388 - Fixed: You can no longer add blank hotkeys.
389 - Improved: Tab Groups are supported.
390 - Improved: Matching of previous/next links should be more reliable.
391 - Improved: A few minor things.
392
393 ### 0.5.10 (2014-05-07)
394
395 - Fixed yet another bug related to the default preferences
396
397 ### 0.5.9 (2014-05-04)
398
399 - Fixed a bug with default preferences not being set
400 - Fixed gg and G to be faster
401
402 ### 0.5.8 (2014-04-18)
403
404 - AMO Preliminary Review bug fix (sorry for such long delay)
405
406 ### 0.5.7 (2014-03-03)
407
408 - Bug fix
409
410 ### 0.5.6 (2014-02-26)
411
412 - Updated some translations
413 - Updated pagination patterns and logic
414
415 ### 0.5.5 (2014-01-03)
416
417 - Hotfix release to address a bug that has been introduced in 0.5.4
418
419 ### 0.5.4 (2014-01-03)
420
421 - Fix for popup passthrough mode stucking
422 - Make toolbar button click depend on current mode
423 - Higher weight markers should not be overlapped
424 - Refactor find mode to use Firefox native search bar
425 - Bump minimum required Firefox version to 25
426 - Added commands to go in the URL path
427 - Added commands to navigate previous and next links with customizable link
428 patterns
429 - Use Firefox 24+ native console API
430 - Update zh-CN localization
431
432 ### 0.5.3 (2013-10-16)
433
434 - Lots of refactoring
435 - Insert mode (`i` command)
436 - Follow multiple links with `af` command
437 - Hint marker rotation with `space` while in hints mode
438
439 ### 0.5.1 (2013-08-21)
440
441 - Fixed regression with stylesheets
442 - Updated icon
443
444 ### 0.5 (2013-08-19)
445
446 - Added command to focus search bar: `O`
447 - Added commands to stop loading current page and all pages: `s` and `as`
448 - Invisible elements will not get hint markers
449 - Compatibility with Firefox 25
450 - Simple shortcut customization with UI in Help dialog
451 - Use Huffman coding algorithm for hint markers generation which results in
452 shorter links
453 - Implemented Bloom filters to achieve shorter hints for those shortcuts that
454 are used often
455 - Reimplemented scrolling - now works with pages where window is not scrollable
456 - Find disabled on non HTML documents
457 - Find string is now global for all windows.
458 - Fixed logic of locale discovery. Now we rely on general.useragent.locale
459 Firefox preference for current locale
460
461 ### 0.4.8 (2013-06-12)
462
463 - `embed` and `object` tags will now have their own hints
464 - Bug fixes related to custom hint chars (@LordJZ)
465 - Fixed `t` - now it will be nice to other extensions
466 - Updated Chinese translations (@mozillazg)
467 - Reenter Normal mode on page reloads to avoid getting stuck in Hints mode
468 without any hints
469 - Search will focus element that contains matching text
470 - Fixed hint markers for iframes
471 - Marker bug fixes (@LordJZ)
472
473 ### 0.4.6 (2013-03-27)
474
475 - Reimplemented find mode: CJK support, performance boost
476 - `a/` or `a.` to highlight all matches of the search string on the page
477 - Hint markers will now reach into iframes
478 - Key handling is disabled when a popupmenu or panel are shown
479 - `yf` will now also focus links and copy values from text/textarea element
480 - `vf` will show hit markers to focus the underlying element
481
482 ### 0.4.5 (2013-03-12)
483
484 - `:` to open Firefox Developer Toolbar, `Esc` to close it.
485 - Add Hungarian locale (@thenonameguy).
486 - Add Polish locale (@grn).
487 - Don't close pinned tabs when pressing x (@grn).
488 - Switched to Makefile for building the extension release (@carno).
489 - Mrakers CSS tweaks (@helmuthdu)
490
491 ### 0.4.4 (2013-01-30)
492
493 - Thanks to @mozillazg and @mcomella for translation contributions.
494 - Added `gh` command that will navigate to the home page.
495 - Added `o` command to focus address bar.
496 - `p` and `P` will parse the contents of the clipboard. If the string in the
497 clipboard appears to be a URL then it will navigate to this URL. Otherwise it
498 will search for the string in the clipboard using currently selected search
499 provider.
500 - Now hint markers for links will stay on top of all the markers for different
501 kinds of elements.
502 - Esc will now also close the focused default search bar.
503 - Fixed bugs related to keyboard events handling, XUL documents, and some other
504 issues.
505 - Bug fixed where not all the commands could be disabled via the Help dialog.
506
507 ### 0.4.3 (2012-12-27)
508
509 - Toolbar button bugfix
510 - Added an option to disable individual commands via the help dialog
511
512 ### 0.4.1, 0.4.2 (2012-12-12)
513
514 - Small tweaks of the find feature.
515 - Bugfix for keyboard handling on non-english keyboard layouts
516
517 ### 0.4 (2012-12-09)
518
519 - Implemented find with `/` and `n/N`
520 - Added `ar` and `aR` commands to reload pages in all open tabs.
521 - Added a preference that enables blurring from any element that has input focus
522 in the browser on Esc keydown (on by default)
523 - Fixed bug where markers and help dialog would blow up some of the pages.
524 - Marker hints are now sorted with respect to the underlying element area.
525 Elements with larger area get shorter hints
526 - Added *mail.google.com* to the default black list
527 - Various bug fixed and improvements.
528
529 ### 0.3.2, 0.3.2, 0.3.3 (2012-11-20)
530
531 - Hotfixes for the build script to include localization related files and folders
532
533 ### 0.3 (2012-11-19)
534
535 - Fixed [Desktop](https://addons.mozilla.org/en-us/firefox/addon/desktop/)
536 extension compatibility problem
537 - Removed c-b/c-f for now. c-f is a standard search hotkey. Will put c-f back
538 when proper Vim-like search with / is implemented
539 - Scrolling with G will now reach the bottom of the page
540 - Implemented localization, currently there is only Russian localization.
541 Community is welcome [to contribute your localizations](https://github.com/akhodakivskiy/VimFx/tree/master/extension/locale)!
542 - Implemented simple smooth scrolling
543
544 ### 0.2 (2012-11-05)
545
546 - document.designMode='on' is now honored. Will also provide hint markers for
547 iframes on the page.
548 - Bug fixed where it would completely reset the toolbar while installing the
549 toolbar button.
550 - Bug fixed where it's not possible to change the text in the blacklisting
551 textbox
552 - Changed u/d to scroll half a page, added c-f/c-b to scroll full page
553 - Added tab movement commands: c-J and c-K.
554 - Invisible markers bug fixed.
555 - Global hotkey to disable the commands (equal to the toolbar button click):
556 Alt-Shift V
557 - ^u and ^d are removed from the command list. ^u is commonly used to show the
558 page source code
559 - Opening new tab with now focuses the Address Bar
560 - Other small bugs nailed down.
561
562 ### 0.1.1 (2012-10-27)
563
564 - Just to deal with AMO - no changes
565
566 ### 0.1 (2012-10-26)
567
568 - Initial Release
Imprint / Impressum