Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/70825a5ee24ead041bc33...
...commit
http://git.netsurf-browser.org/netsurf.git/commit/70825a5ee24ead041bc331b...
...tree
http://git.netsurf-browser.org/netsurf.git/tree/70825a5ee24ead041bc331b13...
The branch, master has been updated
via 70825a5ee24ead041bc331b13e00ae5f86f458c0 (commit)
via 083cf492f59529192b1a683fa9064ee2c2300c48 (commit)
from c8b3fbbfdd64e23632d414ab0b2986a855960f26 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/netsurf.git/commitdiff/70825a5ee24ead041bc...
commit 70825a5ee24ead041bc331b13e00ae5f86f458c0
Author: Chris Young <chris(a)unsatisfactorysoftware.co.uk>
Commit: Chris Young <chris(a)unsatisfactorysoftware.co.uk>
Set the file comment for the included ARexx scripts as part of the install, as these
tend to get lost and don't exist at all in Git.
diff --git a/amiga/dist/Install b/amiga/dist/Install
index 7b8c5fe..bb8f737 100755
--- a/amiga/dist/Install
+++ b/amiga/dist/Install
@@ -474,6 +474,10 @@
(rename (tackon @default-dest "Resources/SearchEngines") (tackon @default-dest
"Resources/SearchEngines.backup"))
)
+(run "c:filenote Rexx/CloseTabs.nsrx \"Close other tabs\")
+(run "c:filenote Rexx/ViewSource.nsrx \"View source\")
+(run "c:filenote Rexx/GetVideo.nsrx \"Get video\")
+
(copyfiles
(prompt "Copying files")
(source "")
commitdiff
http://git.netsurf-browser.org/netsurf.git/commitdiff/083cf492f59529192b1...
commit 083cf492f59529192b1a683fa9064ee2c2300c48
Author: Chris Young <chris(a)unsatisfactorysoftware.co.uk>
Commit: Chris Young <chris(a)unsatisfactorysoftware.co.uk>
Allow ctrl-click on hotlist toolbar to open in a new tab
diff --git a/amiga/gui.c b/amiga/gui.c
index 1d523e6..522f66a 100755
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -4339,7 +4339,13 @@ void ami_scroller_hook(struct Hook *hook,Object *object,struct
IntuiMessage *msg
case GID_HOTLIST:
if(node = (struct Node *)GetTagData(SPEEDBAR_SelectedNode, 0, msg->IAddress)) {
GetSpeedButtonNodeAttrs(node, SBNA_UserData, (ULONG *)&url, TAG_DONE);
- browser_window_go(gwin->bw, url, NULL, true);
+
+ ami_update_quals(gwin);
+ if(gwin->key_state & BROWSER_MOUSE_MOD_2) {
+ browser_window_create(url, gwin->bw, NULL, false, true);
+ } else {
+ browser_window_go(gwin->bw, url, NULL, true);
+ }
}
break;
}
-----------------------------------------------------------------------
Summary of changes:
amiga/dist/Install | 4 ++++
amiga/gui.c | 8 +++++++-
2 files changed, 11 insertions(+), 1 deletions(-)
diff --git a/amiga/dist/Install b/amiga/dist/Install
index 7b8c5fe..bb8f737 100755
--- a/amiga/dist/Install
+++ b/amiga/dist/Install
@@ -474,6 +474,10 @@
(rename (tackon @default-dest "Resources/SearchEngines") (tackon @default-dest
"Resources/SearchEngines.backup"))
)
+(run "c:filenote Rexx/CloseTabs.nsrx \"Close other tabs\")
+(run "c:filenote Rexx/ViewSource.nsrx \"View source\")
+(run "c:filenote Rexx/GetVideo.nsrx \"Get video\")
+
(copyfiles
(prompt "Copying files")
(source "")
diff --git a/amiga/gui.c b/amiga/gui.c
index 1d523e6..522f66a 100755
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -4339,7 +4339,13 @@ void ami_scroller_hook(struct Hook *hook,Object *object,struct
IntuiMessage *msg
case GID_HOTLIST:
if(node = (struct Node *)GetTagData(SPEEDBAR_SelectedNode, 0, msg->IAddress)) {
GetSpeedButtonNodeAttrs(node, SBNA_UserData, (ULONG *)&url, TAG_DONE);
- browser_window_go(gwin->bw, url, NULL, true);
+
+ ami_update_quals(gwin);
+ if(gwin->key_state & BROWSER_MOUSE_MOD_2) {
+ browser_window_create(url, gwin->bw, NULL, false, true);
+ } else {
+ browser_window_go(gwin->bw, url, NULL, true);
+ }
}
break;
}
--
NetSurf Browser