Hello community,

here is the log from the commit of package conkeror for openSUSE:Factory 
checked in at 2016-10-10 16:24:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/conkeror (Old)
 and      /work/SRC/openSUSE:Factory/.conkeror.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "conkeror"

Changes:
--------
--- /work/SRC/openSUSE:Factory/conkeror/conkeror.changes        2016-09-30 
15:35:19.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.conkeror.new/conkeror.changes   2016-10-10 
16:24:05.000000000 +0200
@@ -1,0 +2,6 @@
+Thu Sep 29 11:22:01 UTC 2016 - [email protected]
+
+- add ctrl-click.patch (allow to configure ctrl+click to open in new
+  buffe)
+
+-------------------------------------------------------------------

New:
----
  ctrl-click.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ conkeror.spec ++++++
--- /var/tmp/diff_new_pack.7kLKwT/_old  2016-10-10 16:24:11.000000000 +0200
+++ /var/tmp/diff_new_pack.7kLKwT/_new  2016-10-10 16:24:11.000000000 +0200
@@ -31,6 +31,8 @@
 Patch1:         0001-modules-download-manager.js-Fix-bug-preventing-compl.patch
 # PATCH-FIX-UPSTREAM
 Patch2:         0001-application.ini-Fix-Goanna-version-number.patch
+# PATCH-FEATURE-OPENSUSE
+Patch3:         ctrl-click.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  hicolor-icon-theme
 %if 0%{?suse_version}
@@ -53,6 +55,7 @@
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 
 %build
 make


++++++ ctrl-click.patch ++++++
--- a/modules/clicks-in-new-buffer.js   2016-06-07 23:11:29.000000000 +0200
+++ b/modules/clicks-in-new-buffer.js   2016-09-29 11:35:58.195467344 +0200
@@ -9,6 +9,10 @@
                 "Which mouse button should open links in a new buffer. " +
                 "0 = left, 1 = middle, 2 = right. Default is 1.");
 
+define_variable('clicks_in_new_buffer_require_control', false,
+                'Whether control must be held to open in new buffer.  ' +
+                'Default is false.');
+
 define_variable("clicks_in_new_buffer_target", OPEN_NEW_BUFFER,
                 "How to open links in a new buffer, in the foreground or " +
                 "the background. Set to one the constants OPEN_NEW_BUFFER " +
@@ -32,7 +36,8 @@
 }
 
 function open_link_in_new_buffer (event) {
-    if (event.button != clicks_in_new_buffer_button)
+    if (event.button != clicks_in_new_buffer_button ||
+        event.ctrlKey != clicks_in_new_buffer_require_control)
         return;
     let element = event.target;
     let anchor = null;

Reply via email to