From 5af3aafb649551115db1c871de0099cbf3d4e8eb Mon Sep 17 00:00:00 2001 From: Jez Ng Date: Sun, 9 Sep 2012 01:01:16 -0400 Subject: Fix default hint styling. --- README.markdown | 3 +++ background_scripts/settings.coffee | 2 +- manifest.json | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.markdown b/README.markdown index 38ae93ff..65e49966 100644 --- a/README.markdown +++ b/README.markdown @@ -155,6 +155,9 @@ don't exceed 110 characters. Release Notes ------------- +1.39 (Unreleased) +- Bugfixes. + 1.38 (09/08/2012) - `O` now opens Vomnibar results in a new tab. `B` does the same for bookmarks only. diff --git a/background_scripts/settings.coffee b/background_scripts/settings.coffee index ec602cc0..5b2e921a 100644 --- a/background_scripts/settings.coffee +++ b/background_scripts/settings.coffee @@ -27,7 +27,7 @@ root.Settings = Settings = """ div > .vimiumHintMarker { /* linkhint boxes */ - background: yellow; + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFF785), color-stop(100%,#FFC542)); border: 1px solid #E3BE23; } diff --git a/manifest.json b/manifest.json index b5eb391e..8ec9d400 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Vimium", - "version": "1.38", + "version": "1.39", "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", -- cgit v1.2.3 From 5567ba2a84e7d5a69223e8ddf4e120dd41daa589 Mon Sep 17 00:00:00 2001 From: Jez Ng Date: Sat, 8 Sep 2012 20:43:21 -0400 Subject: Fix upgrade message. Closes #644. --- content_scripts/vimium_frontend.coffee | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee index ab3b1fbf..fcee51ac 100644 --- a/content_scripts/vimium_frontend.coffee +++ b/content_scripts/vimium_frontend.coffee @@ -104,7 +104,7 @@ initializePreDomReady = -> requestHandlers = hideUpgradeNotification: -> HUD.hideUpgradeNotification() - showUpgradeNotification: -> HUD.showUpgradeNotification() + showUpgradeNotification: (request) -> HUD.showUpgradeNotification(request.version) toggleHelpDialog: (request) -> toggleHelpDialog(request.dialogHtml, request.frameId) focusFrame: (request) -> if (frameId == request.frameId) then focusThisFrame(request.highlight) refreshCompletionKeys: refreshCompletionKeys @@ -118,6 +118,7 @@ initializePreDomReady = -> # in the options page, we will receive requests from both content and background scripts. ignore those # from the former. return unless sender.tab?.url.startsWith 'chrome-extension://' + return unless isEnabledForUrl or request.name == 'getActiveState' sendResponse requestHandlers[request.name](request, sender) # Ensure the sendResponse callback is freed. false -- cgit v1.2.3 From b7a9fbda352a56d549e44a878d71ae12e412f627 Mon Sep 17 00:00:00 2001 From: Ilya Sukhar Date: Sun, 9 Sep 2012 08:29:03 -0700 Subject: bumping readme --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 65e49966..46d28609 100644 --- a/README.markdown +++ b/README.markdown @@ -155,7 +155,7 @@ don't exceed 110 characters. Release Notes ------------- -1.39 (Unreleased) +1.39 (09/09/2012) - Bugfixes. 1.38 (09/08/2012) -- cgit v1.2.3