aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2015-04-26Update version to 1.501.50Phil Crosby
2015-04-26Update release notes for 1.50Phil Crosby
2015-04-26Disable frame flash after Vomnibar closes.Stephen Blott
The UX around this is not quite right yet. It's better to disable it for now.
2015-04-26Remove (overlooked) debugging code.Stephen Blott
2015-04-25Merge pull request #1581 from smblott-github/fetch-settingsStephen Blott
Simplify front-end settings logic.
2015-04-25Guard against there being no load handler.Stephen Blott
2015-04-25Minor tweak of front-end settings.Stephen Blott
2015-04-25Simplify front-end settings logic.Stephen Blott
- Simplify the settings logic. - Send a single request for all required settings (instead of 12 inidividual requests for the 12 settings values we need in the front end).
2015-04-25Remove unused code.Stephen Blott
2015-04-25Track tab URL even if frame's URL changes.Stephen Blott
We track the URL of the active frame in each tab so that we can correctly populate the rules in the page popup. Previously, we tracked URL changes only on focus events. This commit moves that to isEnabledForURL, which is also called when the URL changes as a result of web navigation.
2015-04-25Add notes for next release.Stephen Blott
2015-04-25Merge pull request #1580 from ↵Stephen Blott
smblott-github/mrmr1993-exclusion-rules-pushState-and-hash Update exclusion rules when the URL is changed by history.pushState/popState or its hash changes (v2)
2015-04-25Remove requirement for Chrome 41.Stephen Blott
2015-04-25Merge branch 'exclusion-rules-pushState-and-hash' of ↵Stephen Blott
https://github.com/mrmr1993/vimium into mrmr1993-exclusion-rules-pushState-and-hash Conflicts: content_scripts/vimium_frontend.coffee
2015-04-25Merge remote-tracking branch 'origin/focus-main-frame' into ↵Stephen Blott
focus-main-frame-merge Conflicts: content_scripts/vimium_frontend.coffee Also rework to remove dependency on Chrome 41+ sendMessage API (specifically, relating to optional target frameId argument).
2015-04-25Activate vomnibar in window.top; do not register framesets.Stephen Blott
When the vomnibar closes, it focuses its enclosing window. If that is a frameset, then we do not want to inadvertently register it.
2015-04-25Merge branch 'vomnibar-in-main-window' into vomnibar-in-main-window-mergeStephen Blott
Conflicts: background_scripts/main.coffee content_scripts/vimium_frontend.coffee
2015-04-24Always initialise event listeners earlymrmr1993
The event listeners were registered late, potentially allowing the page to get priority over us for key events, etc., when: * the original URL was disabled by an exclusion rule * the URL was changed - without a page load (by history.pushState or modifying location.hash), and - the new URL isn't (completely) disabled by any exclusion rules. This forces the event listeners to be registered even when the current URL is disabled, to avoid this problem.
2015-04-24Add chrome.webNavigation stubs to fix testsmrmr1993
2015-04-24Update minimum_chrome_version to reflect the availability of some APIsmrmr1993
Specifically, the chrome.tabs.sendMessage(tabId, message, options, callback) API doesn't exist before Chrome 41, instead taking the form chrome.tabs.sendMessage(tabId, message, callback).
2015-04-24Re-check enabled state after history.pushState/location.hash is changedmrmr1993
This uses the chrome.webRequest API to detect changes to page URL which *do not* cause the content script to refresh.
2015-04-24Get incognto state directly from chrome.extensions.inIncognitoContextmrmr1993
2015-04-23Activate vomnibar in window.top; no flicker and tidy up.Stephen Blott
1. Rework event handling to eliminate frame flicker (a la #1485). 2. Tidy up logic. Which should make this more robust.
2015-04-22Tidy up.Stephen Blott
Remove reference to unused setting "vomnibarInTopFrame".
2015-04-22Remove redundant line.Stephen Blott
This lines was never needed.
2015-04-22Merge pull request #1577 from smblott-github/show-yanked-URL-in-HUDStephen Blott
Show yanked text in HUD for "yf"
2015-04-22Also filter for HREF in incognito mode.Stephen Blott
2015-04-22Filter out non-HREF elements for "yf".Stephen Blott
If the element does not have an HREF, then we shouldn't be offering to copy it's link.
2015-04-22For "yf", handle case where link.href isn't defined.Stephen Blott
Note: We probably shouldn't be offering these links at all.
2015-04-22Show yanked text in HUD for "yf".Stephen Blott
2015-04-22Update README for focusMainFrame.Stephen Blott
2015-04-21mainFrame; simplify logic.Stephen Blott
2015-04-21Implement mainFrame command.Stephen Blott
Fixes #426.
2015-04-19Remove logging code accidentally committed.Stephen Blott
2015-04-19Fix merge oversight.Stephen Blott
2015-04-19Merge branch 'remove-badges'Stephen Blott
Conflicts: content_scripts/vimium_frontend.coffee
2015-04-19Activate vomnibar in window.top; fix logic error.Stephen Blott
2015-04-19Activate vomnibar in window.top; strip (now) unnecessary setting.Stephen Blott
2015-04-19Activate vomnibar in window.top; strip Vimium Labs.Stephen Blott
Since the vomnibar now always is initialised and opened the top window (see d67347461da5a0468547e4c807a54bb40746faf4), there's no longer a need for this to be a Vimium Labs feature.
2015-04-19Activate vomnibar in window.top; handle Vomnibar even if disabled.Stephen Blott
Vomnibar commands are handled in a frame even is isEnabledForUrl is false.
2015-04-18Mode indicator: fix insert mode within edit mode.Stephen Blott
2015-04-18Activate vomnibar in window.top; add "labs" option.Stephen Blott
2015-04-18Mode indicator: more fix HUD messages for caret mode.Stephen Blott
2015-04-18Merge pull request #1572 from smblott-github/return-to-viewportStephen Blott
Return to the original viewport (when no find matches)
2015-04-18Merge pull request #1571 from ↵Stephen Blott
smblott-github/selection-handling-on-exit-from-visual-mode Tweak selection handling on exiting visual mode.
2015-04-18Merge pull request #1556 from smblott-github/what-is-newStephen Blott
Add a "What's New?" link on help page.
2015-04-18Mode indicator: more fix for link hints.Stephen Blott
2015-04-18Mode indicator: fix for link hints.Stephen Blott
2015-04-18Only return to viewport from visual mode.Stephen Blott
When there is no find-mode match, return to the original viewport. This is a better UX in visual mode, because the text the user is searching for is often on within the viewport. (This is also more vim like. We could consider *always* working this way.)
2015-04-18Selection handling on exiting visual mode.Stephen Blott
Previously, we removed the selection on exiting visual mode. This collapses the selection instead. My own experience with visual mode suggests that this is better. In particular, if we remove the selection, then when the user re-enters visual mode, they're dropped into caret mode. It is unlikely that the default caret position selected by caret mode is better than the last text selected by the user in either caret mode or visual mode.