summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--res/about/version.gmi2
-rw-r--r--src/app.c1
2 files changed, 3 insertions, 0 deletions
diff --git a/res/about/version.gmi b/res/about/version.gmi
index 1dd66344..38602f50 100644
--- a/res/about/version.gmi
+++ b/res/about/version.gmi
@@ -7,6 +7,8 @@
7# Release notes 7# Release notes
8 8
9## 0.2 9## 0.2
10* Added "Save Page" (${CTRL+}S) menu item for saving page contents.
11* Added Downloads folder to the Preferences.
10* Fixed behavior of images on single-image pages; cannot be hidden like inline images. 12* Fixed behavior of images on single-image pages; cannot be hidden like inline images.
11* Recognize and handle "mailto:" links. 13* Recognize and handle "mailto:" links.
12* Fall back to software rendering automatically if accelerated graphics are not available. 14* Fall back to software rendering automatically if accelerated graphics are not available.
diff --git a/src/app.c b/src/app.c
index 0d0f66de..15eb96a9 100644
--- a/src/app.c
+++ b/src/app.c
@@ -904,6 +904,7 @@ iBool handleCommand_App(const char *cmd) {
904 setText_InputWidget(findChild_Widget(dlg, "prefs.proxy.gopher"), 904 setText_InputWidget(findChild_Widget(dlg, "prefs.proxy.gopher"),
905 schemeProxy_App(range_CStr("gopher"))); 905 schemeProxy_App(range_CStr("gopher")));
906 setCommandHandler_Widget(dlg, handlePrefsCommands_); 906 setCommandHandler_Widget(dlg, handlePrefsCommands_);
907 postCommand_App("focus.set id:prefs.downloads");
907 } 908 }
908 else if (equal_Command(cmd, "navigate.home")) { 909 else if (equal_Command(cmd, "navigate.home")) {
909 /* TODO: Look for bookmarks tagged homepage, or use the URL set in Preferences. */ 910 /* TODO: Look for bookmarks tagged homepage, or use the URL set in Preferences. */