diff options
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | content_scripts/vimium_frontend.coffee | 1 | ||||
| -rw-r--r-- | manifest.json | 2 | ||||
| -rw-r--r-- | pages/options.coffee | 5 | ||||
| -rw-r--r-- | pages/options.css | 2 | ||||
| -rw-r--r-- | pages/popup.html | 4 |
6 files changed, 12 insertions, 3 deletions
@@ -193,6 +193,7 @@ map Y Marks.activateGotoMode swap - Other minor versions: - 1.62.2: Fixes [#2868](https://github.com/philc/vimium/issues/2868) (`createTab` with multiple URLs). + - 1.62.4: Fixes bug affecting the enabled state, and really fix `createTab`. 1.61 (2017-10-27) diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee index 432fa7a2..3a9e182d 100644 --- a/content_scripts/vimium_frontend.coffee +++ b/content_scripts/vimium_frontend.coffee @@ -146,6 +146,7 @@ initializePreDomReady = -> linkHintsMessage: (request) -> HintCoordinator[request.messageType] request chrome.runtime.onMessage.addListener (request, sender, sendResponse) -> + request.isTrusted = true # Some requests intended for the background page are delivered to the options page too; ignore them. unless request.handler and not request.name # Some request are handled elsewhere; ignore them too. diff --git a/manifest.json b/manifest.json index ce83256a..fc94482b 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Vimium", - "version": "1.62.3", + "version": "1.62.4", "description": "The Hacker's Browser. Vimium provides keyboard shortcuts for navigation and control in the spirit of Vim.", "icons": { "16": "icons/icon16.png", "48": "icons/icon48.png", diff --git a/pages/options.coffee b/pages/options.coffee index 9e95bcd3..d26154ca 100644 --- a/pages/options.coffee +++ b/pages/options.coffee @@ -335,6 +335,11 @@ initPopupPage = -> updateState() document.addEventListener "keyup", updateState + # Install version number. + manifest = chrome.runtime.getManifest() + $("versionNumber").textContent = manifest.version + + # # Initialization. document.addEventListener "DOMContentLoaded", -> diff --git a/pages/options.css b/pages/options.css index dab342a3..1ebff063 100644 --- a/pages/options.css +++ b/pages/options.css @@ -221,7 +221,7 @@ input.pattern, input.passKeys, .exclusionHeaderText { min-height: 30px; max-height: 30px; } -#helpText { +#helpText, #versionAndOptions { font-size: 12px; } #saveOptionsTableData { diff --git a/pages/popup.html b/pages/popup.html index 03c466d6..971ac04e 100644 --- a/pages/popup.html +++ b/pages/popup.html @@ -69,7 +69,9 @@ <td id="stateLine" style="width: 99%"> <span id="helpText">These are the rules matching this page.</span> <br/> - <a id="optionsLink" target="_blank" tabindex="99999">Options</a> + <span id="versionAndOptions"> + <a id="optionsLink" target="_blank" tabindex="99999">Options</a> (version <span id="versionNumber"></span>). + </span> </td> <td valign="top"> <button id="exclusionAddButton">Add Rule</button> |
