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