diff --git a/ChangeLog b/ChangeLog index 21851056..b679f770 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,10 +1,9 @@
-date:
+2007-05-01:
 	* version 0.4
 	* extension GUID was changed to 'vimperator@mozdev.net' -> YOU WILL HAVE
 	  TO UNINSTALL ANY OLD VIMPERATOR INSTALLATION BEFORE INSTALLING THIS VERSION
-	* support for internal search engines was dropped. Now we use Firefox
-	  search engines. Add custom search engines with :qsadd, remove engines with :qsdel
+	* support for internal search engines was dropped. Now we use Firefox search engines
 	* support for 'wildmode' completion setting with support for matching the
 	  longest common substring. Also new 'wildoptions' setting
 	* added 'f' to the 'complete' option to allow listing of filenames in :open prompt
diff --git a/TODO b/TODO
index da898a3f..771fc497 100644
--- a/TODO
+++ b/TODO
@@ -10,13 +10,13 @@ BUGS:
 - multiple windows to not work at all, so :q will close the whole browser session, even when there are other windows which has tabs
 - reload/stop buttons don't update enabled state
 - http://en.wikipedia.org/wiki/Portal:Current_events - 'f' shows more hints than 'F' (on left side of nav bar)
+- gu and gU don't work on local files properly
 
 FEATURES:
 9 marks of a Location, [m a-zA-Z] to set it, [` a-zA-Z] to go there
   [m 0-9] marks a buffer instead [' 0-9] goes there
   also mark bookmarks (with M[a-zA-Z] maybe and use only lowercase marks for inbuffer marks?)
   also support :mark and :marks
-8 :open .. -> Up one directory, :cd goes to top location, [Backspace] command shortcut, use count (:3cd goes 3 levels up)
 8 downloading of links to filesystem (:save )
 8 provide a buffer on the bottom where more than 1 line messages can be shown, preferrable
   with color support (for things like :echo line1\nline2)
diff --git a/chrome/content/vimperator/commands.js b/chrome/content/vimperator/commands.js
index 26635c40..93b7f648 100644
--- a/chrome/content/vimperator/commands.js
+++ b/chrome/content/vimperator/commands.js
@@ -1339,7 +1339,9 @@ function stringToURLs(str)
          * open it with default search engine */
         if (urls[url].match(/\s+/) || urls[url].match(/\.|:|\//) == null)
         {
-            var default_engine = search_service.defaultEngine;
+            // defaultEngine is always the same (Google), therefor let's use the currentEngine
+            var default_engine = search_service.currentEngine;
+            //var default_engine = search_service.defaultEngine;
             if (default_engine)
             {
                 urls[url] = default_engine.getSubmission(urls[url], null).uri.spec;
diff --git a/install.rdf b/install.rdf
index 63b686af..e03149b2 100644
--- a/install.rdf
+++ b/install.rdf
@@ -6,10 +6,10 @@
 	vimperator@mozdev.org
 	Vimperator
 	###VERSION###
-	Make Firefox work like Vim
+	Make Firefox behave like Vim
 	Martin Stubenschrott
 	http://vimperator.mozdev.org
-	http://downloads.mozdev.org/vimperator/update.rdf
+	
 	
 	    
 		content/vimperator/
@@ -20,7 +20,7 @@
 	    
 		{ec8030f7-c20a-464f-9b0e-13a3a9e97384}
 		2.0
-		2.1
+		2.0.0.*