summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2020-09-18 10:26:49 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2020-09-18 10:26:49 +0300
commit210d06a75c300593fb8353d48e9a3cb84fdcb4d1 (patch)
tree8cabbb37d50179b5db343a3cf6d7ee462ee3bf60
parent621c5f0c2a57415038ffc8891109919350dc0288 (diff)
Cleanup
-rw-r--r--res/about/version.gmi10
-rw-r--r--src/ui/window.c4
2 files changed, 7 insertions, 7 deletions
diff --git a/res/about/version.gmi b/res/about/version.gmi
index 6c731a89..f9311cb4 100644
--- a/res/about/version.gmi
+++ b/res/about/version.gmi
@@ -1,14 +1,14 @@
1``` 1```
2 __ __ __ ___ 2 __ __ __ ___
3| /\ / _` |__) /\ |\ | / _` |__ 3| /\ / _` |__) /\ |\ | / _` |__
4|___ /~~\ \__> | \ /~~\ | \| \__> |___ 4|___ /~~\ \__> | \ /~~\ | \| \__> |___
5 5
6``` 6```
7# Release notes 7# Release notes
8 8
9## 0.2 9## 0.2
10* Added Downloads folder to Preferences. 10* Added Downloads folder to Preferences.
11* Added "Save Page" menu item (${CTRL+}S) for saving page contents. 11* Added "Save to Downloads" menu item (${CTRL+}S) for saving page contents.
12* Added a download progress indicator in the URL input field. 12* Added a download progress indicator in the URL input field.
13* Added a progress indicator for inline image fetching. 13* Added a progress indicator for inline image fetching.
14* Added `--sw` option to force software rendering. 14* Added `--sw` option to force software rendering.
diff --git a/src/ui/window.c b/src/ui/window.c
index 5e64cf9e..b43e8421 100644
--- a/src/ui/window.c
+++ b/src/ui/window.c
@@ -96,7 +96,7 @@ static const iMenuItem navMenuItems[] = {
96 { "New Tab", 't', KMOD_PRIMARY, "tabs.new" }, 96 { "New Tab", 't', KMOD_PRIMARY, "tabs.new" },
97 { "Open Location...", SDLK_l, KMOD_PRIMARY, "focus.set id:url" }, 97 { "Open Location...", SDLK_l, KMOD_PRIMARY, "focus.set id:url" },
98 { "---", 0, 0, NULL }, 98 { "---", 0, 0, NULL },
99 { "Save Page", SDLK_s, KMOD_PRIMARY, "document.save" }, 99 { "Save to Downloads", SDLK_s, KMOD_PRIMARY, "document.save" },
100 { "---", 0, 0, NULL }, 100 { "---", 0, 0, NULL },
101 { "Copy Source Text", SDLK_c, KMOD_PRIMARY, "copy" }, 101 { "Copy Source Text", SDLK_c, KMOD_PRIMARY, "copy" },
102 { "Bookmark This Page", SDLK_d, KMOD_PRIMARY, "bookmark.add" }, 102 { "Bookmark This Page", SDLK_d, KMOD_PRIMARY, "bookmark.add" },
@@ -120,7 +120,7 @@ static const iMenuItem fileMenuItems[] = {
120 { "New Tab", SDLK_t, KMOD_PRIMARY, "tabs.new" }, 120 { "New Tab", SDLK_t, KMOD_PRIMARY, "tabs.new" },
121 { "Open Location...", SDLK_l, KMOD_PRIMARY, "focus.set id:url" }, 121 { "Open Location...", SDLK_l, KMOD_PRIMARY, "focus.set id:url" },
122 { "---", 0, 0, NULL }, 122 { "---", 0, 0, NULL },
123 { "Save Page", SDLK_s, KMOD_PRIMARY, "document.save" }, 123 { "Save to Downloads", SDLK_s, KMOD_PRIMARY, "document.save" },
124}; 124};
125 125
126static const iMenuItem editMenuItems[] = { 126static const iMenuItem editMenuItems[] = {