[zathura] g_param_spec_int64 commit segfaults on my machine

2013-04-01 Thread Abdó Roig-Maranges
Hi, The last commit in zathura's develop branch (1a145c5166cd834, Use the 64-bit variants of g_param_spec_int ...) segfaults on my machine. I'm running Arch with gcc 4.7.2 and gtk 2.24.17. By the way, I posted some new issues (patches) on your bug tracker. Only after posting there I realized

[zathura] [PATCH] Fix zathura's bisect

2013-07-01 Thread Abdó Roig-Maranges
with ^j and ^k) is not modified. Abdó Roig-Maranges From dac4e9de439673ca5513c575c212c616160049d7 Mon Sep 17 00:00:00 2001 From: Abdo Roig-Maranges abdo.r...@gmail.com Date: Mon, 1 Jul 2013 23:53:53 +0200 Subject: [PATCH] Adapts bisect functionality to changes in the jumplist This recovers the old

Re: [zathura] [PATCH] Fix zathura's bisect

2013-07-02 Thread Abdó Roig-Maranges
patches: girara-list-insert.patch adds insert functionality to girara lists zathura-fix-bisect-v2.patch adds zathura_jumplist_insert + fixes bisect Abdó Roig-Maranges. From 74c5c4f11f07059d5fb1f79332ae7a7da31bd45b Mon Sep 17 00:00:00 2001 From: Abdo Roig-Maranges abdo.r...@gmail.com Date

[zathura] [PATCH] Girara statusbar and inputbar fixes for GTK3

2013-07-07 Thread Abdó Roig-Maranges
Hi again, I've done some changes on girara statusbar, inputbar and friends. It all started because on GTK3, notification and inputbar had different heights. I attach a patch with three commits: 1. reorganize widgets from statusbar inputbar and friends. Just put them all under a common

Re: [zathura] [PATCH] Girara statusbar and inputbar fixes for GTK3

2013-08-22 Thread Abdó Roig-Maranges
Oops, sorry about that... One of the bugs caused by the changes is http://bugs.pwmt.org/issue338. I attach a patch fixing the :info thing. A bit of a hack remains to set the statusbar height the same as the inputbar (session.c lines 284-291). Do you know of a better solution? The notification

Re: [zathura] [PATCH] Girara statusbar and inputbar fixes for GTK3

2013-08-23 Thread Abdó Roig-Maranges
Hi, I've attached two screenshots of zathura 0.2.4 running with girara 0.1.6 and girara 0.1.7 plus the patch. With girara 0.1.6 there is a lot more padding around the text in the statusbar and it's readable (maybe the status bar is just too small in 0.1.7 and it's not the padding after all,

[zathura] Don't let links chose the zoom for you

2013-10-21 Thread Abdó Roig-Maranges
Hi, I encountered a weird pdf that wants to zoom out every time I follow a link from the index. I attach a patch that makes this feature configurable. Also I attach an other small patch that gets rid of a GTK deprecation warning. Abdó. From d0c58face294de46915dc5de9fe553f0e31386ad Mon Sep 17

[zathura] Making page refreshes less prone to breaking

2013-10-22 Thread Abdó Roig-Maranges
Hi, Tinkering with zathura I've been annoyed several times by the fragility of the page updates. They are prone to race conditions, due to the asynchronous nature of GTK. For instance, since the last GTK3 update zathura does not always refresh the page correctly when coming out of index mode. I

Re: [zathura] [PATCH] Don't let links chose the zoom for you

2013-10-26 Thread Abdó Roig-Maranges
Hi, After setting the scale, we need a render_all. Abdó. From cb4fa03186794cb729a5adea14b853650db7584f Mon Sep 17 00:00:00 2001 From: Abdo Roig-Maranges abdo.r...@gmail.com Date: Sat, 26 Oct 2013 19:36:42 +0200 Subject: [PATCH] after a set_scale we need a render_all --- links.c | 1 + 1 file

Re: [zathura] Making page refreshes less prone to breaking

2013-10-30 Thread Abdó Roig-Maranges
Hi, Maybe that's a bug that I haven't noticed so far or is introduced by these changes: using the index to jump to some page, I always see the first page. Moving around a little bit or zooming in/out displays the correct page again. hmm... I can't reproduce this on the redo-page-refresh

Re: [zathura] [PATCH] Making page refreshes less prone to breaking

2013-10-30 Thread Abdó Roig-Maranges
Hi, So far I didn't find any issues, except for the one I reported on the bug tracker regarding scale on the first page for a new document on gtk3. And right after that I found a little problem with link evaluation for some pdf's (the ones without page coordinates for the target). I attach a

[zathura] some fixes for the new synctex forward search

2014-01-17 Thread Abdó Roig-Maranges
Hi, I attach some small fixes for the new synctex forward search functionality. Abdó. From 922361bab36aef469766806cca12974e442ce99a Mon Sep 17 00:00:00 2001 From: Abdo Roig-Maranges abdo.r...@gmail.com Date: Fri, 17 Jan 2014 12:52:05 +0100 Subject: [PATCH 1/4] fix page range check In those

Re: [zathura] some fixes for the new synctex forward search

2014-01-17 Thread Abdó Roig-Maranges
abdo.r...@gmail.com writes: Hi, Thanks for the patches. Unfortunately, they do not apply (starting with patch 2). Oops, sorry about that. I missed the first commit in the series. I attach the missing piece, which now should apply on top of current develop branch. And now I attach a

Re: [zathura] jumplist-size option generates critical warning

2014-05-03 Thread Abdó Roig-Maranges
Hi, There is a separator that appears in 2 places: around the input buffer in the statusbar, and between commands and descriptions in the completion menu. [...] This should be fixed in 8009f7e in girara's develop branch. I attach a patch removing the padding for the statusbar, which