summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* Bump version numberPhilipp Erhardt2017-08-23
|
* Add 'version' option to docPhilipp Erhardt2017-06-08
|
* Add option to print the versionPhilipp Erhardt2017-06-05
|
* Fix compile in debug modePhilipp Erhardt2016-11-22
|
* use explicit encoding of char * everywhereJohannes Schilling2016-06-15
| | | | | this also fixes a bug where filenames of parameters were incorrectly interpreted as ascii when actually they were utf8 (main.cpp:95)
* Implement infinite dragging/wrap aroundPhilipp Erhardt2016-05-08
|
* Improve render queue for presenterlayoutPhilipp Erhardt2016-03-22
|
* Implement freezing the projector windowPhilipp Erhardt2016-03-22
|
* Remove unnecessary definesPhilipp Erhardt2016-01-07
|
* Unlock SearchWorker on exitPino Toscano2016-01-07
| | | | | When breaking the forever loop in SearchWorker::run(), unlock the mutex of the SearchBar, otherwise it will stay as locked on shutdown.
* Port to non-deprecated methods of QHeaderViewPino Toscano2016-01-07
| | | | They were just renamed, with the old names left for compatibility.
* qStableSort -> std::stable_sortPino Toscano2016-01-07
| | | | | Qt5 deprecates most of its own algorithms in favour of C++ native ones, so use latter when building with Qt5.
* First support for building with Qt5Pino Toscano2016-01-07
| | | | | | | | | | | | | | When the Qt version is greater than 4 (so 5 at least), require the QtWidgets module as well, which is where QWidget-based stuff lives. Temporarily enable deprecated methods in Qt5, so there are no code changes required. Also pick the right poppler version, poppler-qt4 for Qt4 and poppler-qt5 for Qt5, including the right header depending on the version. These changes allow katarakt to build and link, and it seems to be working fine at a quick glance.
* Canonicalize poppler-qt4 includesPino Toscano2016-01-07
| | | | | | Now that the right include directories of poppler-qt4 are used, use the right way to include its headers, that is without the "poppler/qt4/" prefix.
* Implement cursor auto-hidingPhilipp Erhardt2016-01-01
|
* Implement fancy color inversionPhilipp Erhardt2015-12-31
| | | | Contrast and brightness of inverted rendering can be configured.
* Fix opening empty/no string, minor fixesPhilipp Erhardt2015-10-31
|
* Improve config, update man pagePhilipp Erhardt2015-10-30
|
* Fix opening empty stringPhilipp Erhardt2015-10-28
|
* Increase page overlay marginPhilipp Erhardt2015-10-23
|
* Add "presenter" as possible default_layoutPhilipp Erhardt2015-10-09
|
* Implement stylesheet config optionPhilipp Erhardt2015-10-09
| | | | Thanks to thorsten!
* Implement scroll_page_top_jump, fix bugsPhilipp Erhardt2015-10-09
|
* Fix page count display when changing the filePhilipp Erhardt2015-10-09
|
* Implement configurable overlay textPhilipp Erhardt2015-10-09
|
* Turn page overlay into a widgetPhilipp Erhardt2015-10-09
| | | | This is required to customize it via stylesheet.
* Fix segfault when failing to open a filePhilipp Erhardt2015-10-09
|
* Add progress bar to presenter viewPhilipp Erhardt2015-10-09
|
* Refactor update mechanismPhilipp Erhardt2015-10-08
|
* Add --write-defaults command line switchThorsten Wißmann2015-09-25
|
* Add single instance per file modeThorsten Wißmann2015-09-25
| | | | | This introduces the setting single_instance_per_file and the command line flag --single-instance.
* Add toc header and empty indicatorPhilipp Erhardt2015-09-10
|
* Implement copy to clipboard (Ctrl+C)Philipp Erhardt2015-08-15
|
* Implement toggle mouse buttons, different cursorsPhilipp Erhardt2015-08-14
|
* Adjust coding stylePhilipp Erhardt2015-08-14
|
* Implement viewing/sending precise pos for synctexPhilipp Erhardt2015-08-14
|
* Add basic dbus-API for synctex supportHans-Peter Deifel2015-07-04
| | | | | | | | | | Katarakt now exposes a dbus-API that allows TeX-editors to synchronize the positions in source code and pdf via synctex. TODO: The API allows to specify positions in the PDF as (page,x,y) triple, but the x,y coordinates are currently ignored or set to 0, respectively. We need more katarakt-internal API for this to be implementable.
* viewer: Add API to open a specific fileHans-Peter Deifel2015-07-04
|
* Fix whitespace in viewer.hHans-Peter Deifel2015-07-04
|
* Update usage outputPhilipp Erhardt2015-06-30
|
* Implement saving the current document.Philipp Erhardt2015-06-29
|
* Improve presenterlayout, make space for future GUIPhilipp Erhardt2015-06-19
|
* Implement configurable mouse button (beamerwindow)Philipp Erhardt2015-06-19
|
* Fix flickering window when failing to open the pdfPhilipp Erhardt2015-06-01
|
* Fix memory leak in TOCPhilipp Erhardt2015-06-01
|
* Add padding when jumping to link targetsPhilipp Erhardt2015-05-28
|
* Disable URL detection, turn back on using -u optionPhilipp Erhardt2015-05-28
|
* Improve config file documentationPhilipp Erhardt2015-05-28
|
* Implement configurable mouse buttonsPhilipp Erhardt2015-05-28
|
* Hopefully fix occasional X11 crash when using hlwmPhilipp Erhardt2015-05-05
| | | | Thanks to Thorsten for finding a solution