1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-05 15:14:12 +01:00

bug fix release

This commit is contained in:
Martin Stubenschrott
2007-05-02 12:55:19 +00:00
parent 06bf4d63d4
commit 80f7dd633f
3 changed files with 4 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
<pre>
date:
* version 0.5
* version 0.4.1
* Fixed bug that :open google.com/mail opened ".com/mail" in google search
* made <tab> <up> <down> etc. perform the default action, so menus kinda
work, and it doesn't beep anymore on tab.
* added 'defsearch' setting for setting default search engine

View File

@@ -2,7 +2,7 @@
TOP = $(shell pwd)
VERSION = 0.4
VERSION = 0.4.1
OS = $(shell uname -s)
BUILD_DATE = $(shell date "+%Y/%m/%d %H:%M:%S")

View File

@@ -160,7 +160,7 @@ function getSearchEngines()
var firefox_engines = nsSS.getVisibleEngines({ });
for(var i in firefox_engines)
{
if (!firefox_engines[i].alias || !firefox_engines[i].alias.match(/^\w+$/))
if (!firefox_engines[i].alias || !firefox_engines[i].alias.match(/^[a-z0-9_]+$/))
{
var alias = firefox_engines[i].name.replace(/^\W*(\w+).*/, "$1").toLowerCase();
firefox_engines[i].alias = alias;