From 75868a55f362d9bb8e14bc51a03b6b04e72feb1a Mon Sep 17 00:00:00 2001 From: Moritz Lipp Date: Tue, 21 Oct 2014 17:51:20 +0200 Subject: [PATCH 1/2] Pass actual event instead of NULL pointer to sc_scroll --- shortcuts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shortcuts.c b/shortcuts.c index 3e1f792..210852c 100644 --- a/shortcuts.c +++ b/shortcuts.c @@ -286,7 +286,7 @@ sc_mouse_scroll(girara_session_t* session, girara_argument_t* argument, girara_e case GIRARA_EVENT_SCROLL_LEFT: case GIRARA_EVENT_SCROLL_RIGHT: case GIRARA_EVENT_SCROLL_BIDIRECTIONAL: - return sc_scroll(session, argument, NULL, t); + return sc_scroll(session, argument, event, t); /* drag */ case GIRARA_EVENT_BUTTON_PRESS: From a567383e525c5414914f3a6d3b72e858b1778f37 Mon Sep 17 00:00:00 2001 From: Moritz Lipp Date: Wed, 22 Oct 2014 22:08:12 +0200 Subject: [PATCH 2/2] Version 0.3.1 --- config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.mk b/config.mk index d082fc8..aa6a943 100644 --- a/config.mk +++ b/config.mk @@ -6,7 +6,7 @@ PROJECT = zathura ZATHURA_VERSION_MAJOR = 0 ZATHURA_VERSION_MINOR = 3 -ZATHURA_VERSION_REV = 0 +ZATHURA_VERSION_REV = 1 # If the API changes, the API version and the ABI version have to be bumped. ZATHURA_API_VERSION = 2 # If the ABI breaks for any reason, this has to be bumped.