Document viewer
Go to file
Pavel Borzenkov 721d566881 Fix warnings reported by Clang Analyzer
Clang Analyzer reports:

shortcuts.c:238:11: warning: Value stored to 'new_value' during its initialization is never read
  gdouble new_value   = value;
          ^             ~~~~~

completion.c:163:50: warning: Null pointer passed as an argument to a 'nonnull' parameter
    if (input_length <= strlen(bookmark->id) && !strncmp(input, bookmark->id, input_length)) {
                                                 ^       ~~~~~

Signed-off-by: Pavel Borzenkov <pavel.borzenkov@gmail.com>
Signed-off-by: Sebastian Ramacher <s.ramacher@gmx.at>
2011-10-19 09:44:51 +02:00
.gitignore Add zathura.pc to .gitignore 2011-09-21 09:22:10 +02:00
bookmarks.c adopt to girara changes 2011-10-17 11:16:14 +02:00
bookmarks.h use the correct sorting function 2011-10-15 18:42:30 +02:00
callbacks.c call gtk_main_quit in cb_destroy 2011-10-16 20:59:25 +02:00
callbacks.h Implemented sc_navigate_index 2011-09-29 18:17:03 +02:00
commands.c Some style updates 2011-10-12 16:18:40 +02:00
commands.h
common.mk
completion.c Fix warnings reported by Clang Analyzer 2011-10-19 09:44:51 +02:00
completion.h make input of completion callbacks const 2011-10-08 23:23:56 +02:00
config.c completion for bookmarks 2011-09-29 17:05:20 +02:00
config.h
config.mk database-plain: File locking with unix sockets 2011-10-11 22:39:55 +02:00
database-plain.c stupid me, I really did want to copy the string here 2011-10-17 09:37:22 +02:00
database-sqlite.c fix 'path may be used unitialized' 2011-10-16 23:01:25 +02:00
database.h Added structure for plain database 2011-10-10 23:46:50 +02:00
document.c adopt to girara changes 2011-10-17 11:16:14 +02:00
document.h Show document information 2011-10-01 23:29:40 +02:00
LICENSE
Makefile Added structure for plain database 2011-10-10 23:46:50 +02:00
print.c g_object_ref the print settings (as seen in the GTK+ documentation) 2011-10-10 19:58:48 +02:00
print.h Show printing status in statusbar 2011-09-29 18:05:15 +02:00
README Format README 2011-10-10 15:02:15 +02:00
render.c no need to check for < 0 2011-10-09 00:35:52 +02:00
render.h Use cairo to render page 2011-09-29 12:35:52 +02:00
shortcuts.c Fix warnings reported by Clang Analyzer 2011-10-19 09:44:51 +02:00
shortcuts.h
utils.c adopt to girara changes 2011-10-17 11:16:14 +02:00
utils.h Show document information 2011-10-01 23:29:40 +02:00
zathura.1
zathura.c fix 'zathura may be used uninittialized' 2011-10-16 23:10:20 +02:00
zathura.desktop update deskopt file 2011-10-03 19:56:02 +02:00
zathura.h load file info on start and jump to last seen page 2011-10-06 17:48:17 +02:00
zathura.pc.in
zathurarc.5.rst

zathura - a document viewer
--------------------
zathura is a highly customizable and functional document viewer based on the
girara user interface library and several document libraries.

Requirements
------------
gtk2 (>= 2.18.6)
girara
sqlite3

Please note that you need to have a working pkg-config installation and that the
Makefile is only compatible with GNU make. If you don't have a working
pkg-config installation please set the GTK_INC, GTK_LIB, GIRARA_INC, GIRARA_LIB,
SQLITE_INC and SQLITE_LIB variables accordingly.

And also note that rst2man from python-docutils is needed to build zathurarc.5.
If it is not installed, zathurarc.5 won't be built.

Installation
------------
To build and install zathura:

  make install

Uninstall:
----------
To delete zathura from your system, just type:

  make uninstall