Re: [zathura] [issue273] [PATCH] Fix the "n=" shortcut to zoom to size n

2012-12-06 Thread Benoît Knecht
Sebastian Ramacher wrote: > On 2012-12-06 20:32:21, Sebastian Ramacher wrote: > > Thanks for the patch. Applied > > Also thanks for the other patches. I've applied them too. Great, thanks a lot! Cheers, -- Benoît Knecht ___ zathura mailing list zathu

Re: [zathura] [issue273] [PATCH] Fix the "n=" shortcut to zoom to size n

2012-12-06 Thread Sebastian Ramacher
On 2012-12-06 20:32:21, Sebastian Ramacher wrote: > Thanks for the patch. Applied Also thanks for the other patches. I've applied them too. Regards -- Sebastian Ramacher ___ zathura mailing list zathura@lists.pwmt.org http://lists.pwmt.org/mailman/list

Re: [zathura] [issue273] [PATCH] Fix the "n=" shortcut to zoom to size n

2012-12-06 Thread Sebastian Ramacher
Hi Benoît, On 2012-12-06 09:46:24, Benoît Knecht wrote: > No matter what the value of n was, the "n=" shortcut would set the zoom > value to 100%. It is now set to n% instead. Thanks for the patch. Applied Cheers -- Sebastian Ramacher ___ zathura mail

[zathura] [PATCH] Correct misspellings of the word "synctex"

2012-12-06 Thread Benoît Knecht
Both in the documentation and in function names, "synctex" was sometimes spelled "syntex" or "syntec". --- main.c|2 +- zathura.1.rst |6 +++--- zathura.c |2 +- zathura.h |4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/main.c b/main.c index

[zathura] [PATCH] Update and correct French translation

2012-12-06 Thread Benoît Knecht
--- po/fr.po | 79 +++--- 1 file changed, 40 insertions(+), 39 deletions(-) diff --git a/po/fr.po b/po/fr.po index fb3ad20..ece7dc0 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,13 +4,14 @@ # Translators: # Quentin Stiévenart , 2012. # Sté

[zathura] [PATCH] Also wrap when scrolling with 'j' and 'k'

2012-12-06 Thread Benoît Knecht
The scroll-wrap option used to only change the behavior of 'J' and 'K' (i.e. moving one page forward/backward). Now, if scroll-wrap is true and the top of the first page is shown, pressing 'k' will show the bottom of the last page; conversely, when at the bottom of the last page, pressing 'j' wil

[zathura] [PATCH] Reverse scroll-wrap's logic

2012-12-06 Thread Benoît Knecht
When set to true, it used to _not_ wrap around the begining/end. Now it wraps if set to true, and it doesn't if set to false. --- shortcuts.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shortcuts.c b/shortcuts.c index d13f625..130f18f 100644 --- a/shortcuts.c +++ b

[zathura] [issue273] [PATCH] Fix the "n=" shortcut to zoom to size n

2012-12-06 Thread Benoît Knecht
No matter what the value of n was, the "n=" shortcut would set the zoom value to 100%. It is now set to n% instead. See issue #273 . Reported-by: Kamil Smardzewski --- config.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.c b/c