aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2010-01-31Recognize elements with "onclick" attributes in link hints.Phil Crosby
Fixes #72, although it makes Reddit look pretty messy since each link now has 3 letters.
2010-01-30Add the link hint markers to the DOM all at once instead of piecemeal. This ↵Phil Crosby
avoids invaliding Chrome's getBoundingClientRect calls. This should sufficiently close #71.
2010-01-30Exclude links which are scrolled horizontally off the page when hinting.Phil Crosby
2010-01-30When hinting, exclude links which have just a few pixels on screen.Phil Crosby
The link hints won't show for them anyway.
2010-01-30Avoid calling document.elementFromPoint for very small links. This helps ↵Phil Crosby
link hinting performance. Helps address #71.
2010-01-30Merge branch 'master' of github.com:philc/vimiumPhil Crosby
2010-01-30Some experimentation with the "vimium has been upgraded" UI.Phil Crosby
2010-01-30Save the current version to localStorage, and when an update arrives, show a ↵Phil Crosby
user notification. This closes #64. Note that updates won't trigger until we've saved the user's version to their localStorage, which means this change will go into effect for our users the version *after* the next release (so 1.16).
2010-01-30Fix a reference error over the default settings in the background page.Phil Crosby
2010-01-30Tweak the CSS so you can use link hints to close the "vimium has been ↵Phil Crosby
upgraded" message.
2010-01-30Add the abililty to show a "vimium has been upgraded" message to the HUD. ↵Phil Crosby
Also refactor styles into CSS.
2010-01-30Fix minor typo.Phil Crosby
2010-01-30Make the options page in sync with the readme.Phil Crosby
2010-01-30Update the readme to include customizable linkhints css.Phil Crosby
2010-01-30Cut 1.14 releaseilya
2010-01-22Update the readme to include customizable linkhints css.Phil Crosby
2010-01-22Merge branch 'master' of github.com:philc/vimiumPhil Crosby
2010-01-22Add a UI on the options page for entering custom CSS for link hints.Phil Crosby
2010-01-22Move the link hints CSS to the background page, and create a setting for ↵Phil Crosby
user-definable CSS.
2010-01-22Make the enabling of the save button on the Options page based on textfield ↵Phil Crosby
content, not keystrokes.
2010-01-21Cut 1.14 releaseilya
2010-01-21Fix a bug in the options page which would prevent excluded URLs from being savedPhil Crosby
2010-01-21Cut the 1.13 releaseilya
2010-01-18Remove a vestige from zoomOut(). Fixes #67.Phil Crosby
2010-01-18Update the release notes.Phil Crosby
2010-01-18Make the comparison between text values and integer default settings less ↵Phil Crosby
confusing. There's no bug here, but this needed a readability improvement.
2010-01-18Merge branch 'master' of github.com:philc/vimiumPhil Crosby
Conflicts: settings.html
2010-01-18Don't enable the save button when tabbing through fields on the Options page.Phil Crosby
2010-01-18Make clicking "advanced options" toggle all advanced options on and off.Phil Crosby
2010-01-18Clean up how defaults are restored, and avoid persisting preferences which ↵Phil Crosby
are equal to the defaults to localStorage.
2010-01-18Typo on the settings page. Thanks DFectuoso.ilya
2010-01-18Have the Options page use the default settings hash defined in ↵Phil Crosby
background_page.html
2010-01-18Make the characters used in link hints a user-configurable option. Fixes #66.Phil Crosby
I'll clean up the way we store and handle default options shortly.
2010-01-18A work in progress of having an advanced options section, and adding link ↵Phil Crosby
hints chars as an option.
2010-01-18<c-e>, <c-y> in release notes.ilya
2010-01-18Update command listing with <c-e>, <c-y>.ilya
2010-01-18add scroll keys <c-e> and <c-y>Clemens Buchacher
2010-01-17Fix up the c-[ patch a bit.ilya
2010-01-17Bring the CREDITS file up to date.ilya
2010-01-17A couple of minor visual touchups on the options screen.Phil Crosby
2010-01-17Bring the README fully up to date.ilya
2010-01-17Make the save button disabled, enable it when a change is made, and then ↵Phil Crosby
disable it again upon saving.
2010-01-17Add a 'restore to defaults' button on the options pagePhil Crosby
2010-01-17Rename settings.html to options.html, to match Chrome's nomenclaturePhil Crosby
2010-01-17Update release notes in readmePhil Crosby
2010-01-17Use document.activeElement instead of focusNode when detecting focus.Phil Crosby
This should be equivalent and simplify the implementation.
2010-01-17When detecting whether an element is an embed, include OBJECT as well as ↵Phil Crosby
EMBED tags. Fixes #54.
2010-01-17Check for "not null" instead of false (which incorrectly includes 0) when ↵Phil Crosby
focusing an element. Fixes #63.
2010-01-17Enter insert mode when focusing rich text editors (nodes with ↵Phil Crosby
contentEditable=true). Fixes #62.
2010-01-18map <c-[> to EscapeClemens Buchacher