mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-29 13:16:00 +01:00
Merge branch 'develop' of pwmt.org:zathura into develop
This commit is contained in:
commit
32b25a4114
3 changed files with 20 additions and 3 deletions
12
AUTHORS
Normal file
12
AUTHORS
Normal file
|
@ -0,0 +1,12 @@
|
|||
zathura is written by:
|
||||
|
||||
Moritz Lipp <mlq@pwmt.org>
|
||||
Sebastian Ramacher <s.ramacher@gmx.at>
|
||||
|
||||
Other contributors are (in alphabetical order):
|
||||
|
||||
Pavel Borzenkov <pavel.borzenkov@gmail.com>
|
||||
Ivan Sichmann Freitas <ivansichfreitas@gmail.com>
|
||||
int3 <jezreel@gmail.com>
|
||||
karottenreibe <k@rottenrei.be>
|
||||
Johannes Meng Johannes Meng <j@jmeng.de>
|
9
Makefile
9
Makefile
|
@ -78,14 +78,17 @@ tests: ${OBJECTS}
|
|||
|
||||
dist: clean
|
||||
$(QUIET)mkdir -p ${PROJECT}-${VERSION}
|
||||
$(QUIET)cp -R LICENSE Makefile config.mk common.mk README Doxyfile \
|
||||
${PROJECT}.1.rst ${PROJECT}rc.5.rst ${SOURCE} ${HEADER} ${PROJECT}.pc.in tests \
|
||||
$(QUIET)mkdir -p ${PROJECT}-${VERSION}/tests
|
||||
$(QUIET)cp LICENSE Makefile config.mk common.mk README AUTHORS Doxyfile \
|
||||
${PROJECT}.1.rst ${PROJECT}rc.5.rst ${SOURCE} ${HEADER} ${PROJECT}.pc.in \
|
||||
${PROJECT}-${VERSION}
|
||||
$(QUIET)cp Makefile config.mk tests/*.c \
|
||||
${PROJECT}-${VERSION}/tests
|
||||
$(QUIET)tar -cf ${PROJECT}-${VERSION}.tar ${PROJECT}-${VERSION}
|
||||
$(QUIET)gzip ${PROJECT}-${VERSION}.tar
|
||||
$(QUIET)rm -rf ${PROJECT}-${VERSION}
|
||||
|
||||
doc: clean
|
||||
doc:
|
||||
$(QUIET)doxygen Doxyfile
|
||||
|
||||
gcov: clean
|
||||
|
|
|
@ -224,7 +224,9 @@ cb_file_monitor(GFileMonitor* monitor, GFile* file, GFile* UNUSED(other_file), G
|
|||
switch (event) {
|
||||
case G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT:
|
||||
case G_FILE_MONITOR_EVENT_CREATED:
|
||||
gdk_threads_enter();
|
||||
sc_reload(session, NULL, NULL, 0);
|
||||
gdk_threads_leave();
|
||||
break;
|
||||
default:
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue