├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── feature_request.md └── workflows │ └── build.yml ├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL.md ├── NEWS ├── README.md ├── backend ├── backend.symbols ├── comics │ ├── comics-document.c │ ├── comics-document.h │ ├── comicsdocument.xreader-backend.in │ ├── ev-archive.c │ ├── ev-archive.h │ ├── meson.build │ └── test-ev-archive.c ├── djvu │ ├── djvu-document-private.h │ ├── djvu-document.c │ ├── djvu-document.h │ ├── djvu-links.c │ ├── djvu-links.h │ ├── djvu-text-page.c │ ├── djvu-text-page.h │ ├── djvudocument.xreader-backend.in │ └── meson.build ├── dvi │ ├── cairo-device.c │ ├── cairo-device.h │ ├── dvi-document.c │ ├── dvi-document.h │ ├── dvidocument.xreader-backend.in │ ├── fonts.c │ ├── fonts.h │ ├── mdvi-lib │ │ ├── afmparse.c │ │ ├── afmparse.h │ │ ├── bitmap.c │ │ ├── bitmap.h │ │ ├── color.c │ │ ├── color.h │ │ ├── common.c │ │ ├── common.h │ │ ├── defaults.h │ │ ├── dviopcodes.h │ │ ├── dviread.c │ │ ├── files.c │ │ ├── font.c │ │ ├── fontmap.c │ │ ├── fontmap.h │ │ ├── fontsrch.c │ │ ├── gf.c │ │ ├── hash.c │ │ ├── hash.h │ │ ├── list.c │ │ ├── mdvi.h │ │ ├── meson.build │ │ ├── pagesel.c │ │ ├── paper.c │ │ ├── paper.h │ │ ├── pk.c │ │ ├── private.h │ │ ├── setup.c │ │ ├── sp-epsf.c │ │ ├── special.c │ │ ├── sysdeps.h │ │ ├── t1.c │ │ ├── tfm.c │ │ ├── tfmfile.c │ │ ├── tt.c │ │ ├── util.c │ │ └── vf.c │ └── meson.build ├── epub │ ├── epub-document.c │ ├── epub-document.h │ ├── epubdocument.xreader-backend.in │ ├── meson.build │ └── minizip │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── meson.build │ │ ├── unzip.c │ │ └── unzip.h ├── meson.build ├── pdf │ ├── ev-poppler.cc │ ├── ev-poppler.h │ ├── meson.build │ └── pdfdocument.xreader-backend.in ├── pixbuf │ ├── meson.build │ ├── pixbuf-document.c │ ├── pixbuf-document.h │ └── pixbufdocument.xreader-backend.in ├── ps │ ├── ev-spectre.c │ ├── ev-spectre.h │ ├── meson.build │ └── psdocument.xreader-backend.in ├── tiff │ ├── meson.build │ ├── tiff-document.c │ ├── tiff-document.h │ ├── tiff2ps.c │ ├── tiff2ps.h │ └── tiffdocument.xreader-backend.in └── xps │ ├── meson.build │ ├── xps-document.c │ ├── xps-document.h │ └── xpsdocument.xreader-backend.in ├── cut-n-paste ├── meson.build ├── smclient │ ├── eggdesktopfile.c │ ├── eggdesktopfile.h │ ├── eggsmclient-private.h │ ├── eggsmclient-xsmp.c │ ├── eggsmclient.c │ ├── eggsmclient.h │ └── meson.build ├── synctex │ ├── meson.build │ ├── synctex_parser.c │ ├── synctex_parser.h │ ├── synctex_parser_local.h │ ├── synctex_parser_utils.c │ ├── synctex_parser_utils.h │ ├── synctex_parser_version.txt │ └── update-synctex-from-TL.sh ├── totem-screensaver │ ├── README │ ├── meson.build │ ├── totem-scrsaver.c │ └── totem-scrsaver.h └── zoom-control │ ├── ephy-zoom-action.c │ ├── ephy-zoom-action.h │ ├── ephy-zoom-control.c │ ├── ephy-zoom-control.h │ ├── ephy-zoom.c │ ├── ephy-zoom.h │ └── meson.build ├── data ├── hand-open.png ├── icons │ ├── 16x16 │ │ ├── actions │ │ │ ├── object-rotate-left.png │ │ │ ├── object-rotate-right.png │ │ │ ├── view-page-continuous.png │ │ │ ├── view-page-continuous.xcf │ │ │ ├── view-page-facing.png │ │ │ ├── view-page-facing.xcf │ │ │ ├── zoom-fit-height.png │ │ │ ├── zoom-fit-page.svg │ │ │ ├── zoom-fit-width.png │ │ │ ├── zoom-fit-width.svg │ │ │ ├── zoom.png │ │ │ └── zoom.svg │ │ ├── apps │ │ │ └── xreader.png │ │ └── mimetypes │ │ │ └── x-office-presentation.png │ ├── 22x22 │ │ ├── actions │ │ │ ├── eye.png │ │ │ ├── object-rotate-left.png │ │ │ ├── object-rotate-right.png │ │ │ ├── view-page-continuous.png │ │ │ ├── view-page-continuous.xcf │ │ │ ├── view-page-facing.png │ │ │ ├── view-page-facing.xcf │ │ │ ├── zoom-fit-page.png │ │ │ ├── zoom-fit-page.svg │ │ │ ├── zoom-fit-width.png │ │ │ ├── zoom-fit-width.svg │ │ │ ├── zoom.png │ │ │ └── zoom.svg │ │ ├── apps │ │ │ └── xreader.png │ │ └── mimetypes │ │ │ └── x-office-presentation.png │ ├── 24x24 │ │ ├── actions │ │ │ ├── object-rotate-left.png │ │ │ ├── object-rotate-right.png │ │ │ ├── stock_filters-invert.png │ │ │ ├── view-page-continuous.png │ │ │ ├── view-page-facing.png │ │ │ ├── zoom-fit-height.png │ │ │ ├── zoom-fit-width.png │ │ │ └── zoom.png │ │ ├── apps │ │ │ └── xreader.png │ │ └── mimetypes │ │ │ └── x-office-presentation.png │ ├── 32x32 │ │ ├── actions │ │ │ ├── object-rotate-left.png │ │ │ ├── object-rotate-right.png │ │ │ ├── view-page-continuous.png │ │ │ └── view-page-facing.png │ │ └── mimetypes │ │ │ └── x-office-presentation.png │ ├── 48x48 │ │ ├── actions │ │ │ ├── close.png │ │ │ ├── resize-se.png │ │ │ ├── resize-sw.png │ │ │ ├── view-page-continuous.png │ │ │ └── view-page-facing.png │ │ └── apps │ │ │ └── xreader.png │ ├── meson.build │ └── scalable │ │ ├── actions │ │ ├── object-rotate-left.svg │ │ └── object-rotate-right.svg │ │ ├── apps │ │ └── xreader.svg │ │ └── mimetypes │ │ └── x-office-presentation.svg ├── meson.build ├── org.x.reader.Daemon.service.in ├── org.x.reader.gschema.xml ├── thumbnail-frame.png ├── xreader.1 ├── xreader.appdata.xml.in └── xreader.desktop.in.in ├── debian ├── changelog ├── control ├── copyright ├── gir1.2-xreader.install.in ├── libxreaderdocument-dev.install ├── libxreaderdocument3.install ├── libxreaderview-dev.install ├── libxreaderview3.install ├── rules ├── source │ └── format ├── xreader-common.install ├── xreader.install ├── xreader.postinst └── xreader.prerm ├── help ├── C │ ├── figures │ │ └── xreader_start_window.png │ ├── index.docbook │ ├── legal.xml │ ├── readme.txt │ ├── xreader.html │ └── xreader.md ├── ChangeLog ├── LINGUAS ├── bg │ └── bg.po ├── ca │ └── ca.po ├── cs │ └── cs.po ├── de │ └── de.po ├── el │ └── el.po ├── en_GB │ └── en_GB.po ├── es │ └── es.po ├── eu │ └── eu.po ├── fi │ └── fi.po ├── fr │ └── fr.po ├── it │ └── it.po ├── ja │ └── ja.po ├── meson.build ├── nl │ └── nl.po ├── oc │ └── oc.po ├── pt_BR │ └── pt_BR.po ├── reference │ ├── libdocument │ │ ├── libxreaderdocument-docs.xml │ │ ├── libxreaderdocument-overrides.txt │ │ ├── libxreaderdocument-sections.txt │ │ ├── libxreaderdocument.types │ │ ├── meson.build │ │ └── version.xml.in │ ├── libview │ │ ├── libxreaderview-docs.xml │ │ ├── libxreaderview-overrides.txt │ │ ├── libxreaderview-sections.txt │ │ ├── libxreaderview.types │ │ ├── meson.build │ │ └── version.xml.in │ └── shell │ │ ├── meson.build │ │ ├── version.xml.in │ │ ├── xreader-docs.xml │ │ ├── xreader-overrides.txt │ │ ├── xreader-sections.txt │ │ └── xreader.types ├── ru │ └── ru.po ├── sl │ └── sl.po ├── sr │ └── sr.po ├── sv │ └── sv.po ├── uk │ └── uk.po ├── vi │ └── vi.po ├── xreader.omf.in └── zh_CN │ └── zh_CN.po ├── install-scripts ├── meson.build ├── meson_install_schemas.py ├── meson_update_icon_cache.py └── meson_update_mime_database.py ├── libdocument ├── ev-annotation.c ├── ev-annotation.h ├── ev-async-renderer.c ├── ev-async-renderer.h ├── ev-attachment.c ├── ev-attachment.h ├── ev-backends-manager.c ├── ev-backends-manager.h ├── ev-debug.c ├── ev-debug.h ├── ev-document-annotations.c ├── ev-document-annotations.h ├── ev-document-attachments.c ├── ev-document-attachments.h ├── ev-document-factory.c ├── ev-document-factory.h ├── ev-document-find.c ├── ev-document-find.h ├── ev-document-fonts.c ├── ev-document-fonts.h ├── ev-document-forms.c ├── ev-document-forms.h ├── ev-document-images.c ├── ev-document-images.h ├── ev-document-info.h ├── ev-document-layers.c ├── ev-document-layers.h ├── ev-document-links.c ├── ev-document-links.h ├── ev-document-misc.c ├── ev-document-misc.h ├── ev-document-print.c ├── ev-document-print.h ├── ev-document-security.c ├── ev-document-security.h ├── ev-document-text.c ├── ev-document-text.h ├── ev-document-thumbnails.c ├── ev-document-thumbnails.h ├── ev-document-transition.c ├── ev-document-transition.h ├── ev-document-type-builtins.c.template ├── ev-document-type-builtins.h.template ├── ev-document.c ├── ev-document.h ├── ev-file-exporter.c ├── ev-file-exporter.h ├── ev-file-helpers.c ├── ev-file-helpers.h ├── ev-form-field.c ├── ev-form-field.h ├── ev-image.c ├── ev-image.h ├── ev-init.c ├── ev-init.h ├── ev-layer.c ├── ev-layer.h ├── ev-link-action.c ├── ev-link-action.h ├── ev-link-dest.c ├── ev-link-dest.h ├── ev-link.c ├── ev-link.h ├── ev-macros.h ├── ev-mapping-list.c ├── ev-mapping-list.h ├── ev-module.c ├── ev-module.h ├── ev-page.c ├── ev-page.h ├── ev-render-context.c ├── ev-render-context.h ├── ev-selection.c ├── ev-selection.h ├── ev-transition-effect.c ├── ev-transition-effect.h ├── ev-version.h.in └── meson.build ├── libmisc ├── ev-page-action-widget.c ├── ev-page-action-widget.h ├── ev-page-action.c ├── ev-page-action.h └── meson.build ├── libview ├── ev-annotation-window.c ├── ev-annotation-window.h ├── ev-document-model.c ├── ev-document-model.h ├── ev-job-scheduler.c ├── ev-job-scheduler.h ├── ev-jobs.c ├── ev-jobs.h ├── ev-link-accessible.c ├── ev-link-accessible.h ├── ev-loading-window.c ├── ev-loading-window.h ├── ev-page-cache.c ├── ev-page-cache.h ├── ev-pixbuf-cache.c ├── ev-pixbuf-cache.h ├── ev-print-operation.c ├── ev-print-operation.h ├── ev-stock-icons.c ├── ev-stock-icons.h ├── ev-timeline.c ├── ev-timeline.h ├── ev-transition-animation.c ├── ev-transition-animation.h ├── ev-view-accessible.c ├── ev-view-accessible.h ├── ev-view-cursor.c ├── ev-view-cursor.h ├── ev-view-marshal.list ├── ev-view-presentation.c ├── ev-view-presentation.h ├── ev-view-private.h ├── ev-view-type-builtins.c.template ├── ev-view-type-builtins.h.template ├── ev-view.c ├── ev-view.h ├── ev-web-view.c ├── ev-web-view.h └── meson.build ├── makepot ├── meson.build ├── meson_options.txt ├── po ├── ChangeLog ├── LINGUAS ├── POTFILES.in ├── POTFILES.skip ├── ab.po ├── af.po ├── am.po ├── ar.po ├── as.po ├── ast.po ├── az.po ├── be.po ├── be@latin.po ├── ber.po ├── bg.po ├── bn.po ├── bn_IN.po ├── br.po ├── ca.po ├── ca@valencia.po ├── cmn.po ├── cs.po ├── cy.po ├── da.po ├── de.po ├── dz.po ├── el.po ├── en@shaw.po ├── en_AU.po ├── en_CA.po ├── en_GB.po ├── eo.po ├── es.po ├── es_CO.po ├── es_VE.po ├── et.po ├── eu.po ├── fa.po ├── fi.po ├── fr.po ├── fr_CA.po ├── ga.po ├── gl.po ├── gnome-copyrights.txt ├── gu.po ├── he.po ├── hi.po ├── hr.po ├── hu.po ├── hy.po ├── ia.po ├── id.po ├── ie.po ├── is.po ├── it.po ├── ja.po ├── jv.po ├── ka.po ├── kab.po ├── kk.po ├── kn.po ├── ko.po ├── ks.po ├── ku.po ├── ky.po ├── la.po ├── lt.po ├── lv.po ├── mai.po ├── meson.build ├── mg.po ├── mk.po ├── ml.po ├── mn.po ├── mr.po ├── ms.po ├── nb.po ├── nds.po ├── ne.po ├── nl.po ├── nn.po ├── oc.po ├── or.po ├── pa.po ├── pl.po ├── ps.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── rw.po ├── sc.po ├── si.po ├── sk.po ├── sl.po ├── sq.po ├── sr.po ├── sr@latin.po ├── sv.po ├── ta.po ├── te.po ├── th.po ├── tr.po ├── tt.po ├── uk.po ├── ur.po ├── uz.po ├── vi.po ├── wa.po ├── zgh.po ├── zh_CN.po ├── zh_HK.po └── zh_TW.po ├── previewer ├── ev-previewer-window.c ├── ev-previewer-window.h ├── ev-previewer.c ├── meson.build ├── previewer-ui.xml ├── previewer.gresource.xml ├── xreader-previewer.1 └── xreader-previewer.css ├── shell ├── eggfindbar.c ├── eggfindbar.h ├── ev-annotation-properties-dialog.c ├── ev-annotation-properties-dialog.h ├── ev-annotations-toolbar.c ├── ev-annotations-toolbar.h ├── ev-application.c ├── ev-application.h ├── ev-bookmark-action.c ├── ev-bookmark-action.h ├── ev-bookmarks.c ├── ev-bookmarks.h ├── ev-daemon-gdbus.xml ├── ev-daemon.c ├── ev-file-monitor.c ├── ev-file-monitor.h ├── ev-gdbus.xml ├── ev-history-action-widget.c ├── ev-history-action-widget.h ├── ev-history-action.c ├── ev-history-action.h ├── ev-history.c ├── ev-history.h ├── ev-keyring.c ├── ev-keyring.h ├── ev-marshal.list ├── ev-message-area.c ├── ev-message-area.h ├── ev-metadata.c ├── ev-metadata.h ├── ev-open-recent-action.c ├── ev-open-recent-action.h ├── ev-password-view.c ├── ev-password-view.h ├── ev-preferences-dialog.c ├── ev-preferences-dialog.h ├── ev-preferences-dialog.ui ├── ev-progress-message-area.c ├── ev-progress-message-area.h ├── ev-properties-dialog.c ├── ev-properties-dialog.h ├── ev-properties-fonts.c ├── ev-properties-fonts.h ├── ev-properties-license.c ├── ev-properties-license.h ├── ev-properties-view.c ├── ev-properties-view.h ├── ev-sidebar-annotations.c ├── ev-sidebar-annotations.h ├── ev-sidebar-attachments.c ├── ev-sidebar-attachments.h ├── ev-sidebar-bookmarks.c ├── ev-sidebar-bookmarks.h ├── ev-sidebar-layers.c ├── ev-sidebar-layers.h ├── ev-sidebar-links.c ├── ev-sidebar-links.h ├── ev-sidebar-page.c ├── ev-sidebar-page.h ├── ev-sidebar-thumbnails.c ├── ev-sidebar-thumbnails.h ├── ev-sidebar.c ├── ev-sidebar.h ├── ev-toolbar.c ├── ev-toolbar.h ├── ev-utils.c ├── ev-utils.h ├── ev-window-title.c ├── ev-window-title.h ├── ev-window.c ├── ev-window.h ├── ev-zoom-action.c ├── ev-zoom-action.h ├── main.c ├── meson.build ├── xreader-ui.xml ├── xreader.css └── xreader.gresource.xml ├── test ├── meson.build ├── test-encrypt.pdf ├── test-links.pdf ├── test-mime.bin ├── test-page-labels.pdf ├── testBookmarksMenu.py ├── testCommon.py ├── testEditMenu.py ├── testEncryptedFile.py ├── testFileMenu.py ├── testFileReloading.py ├── testGoMenu.py ├── testHelpMenu.py ├── testWrongFileExtension.py └── testZoom.py ├── thumbnailer ├── meson.build ├── xreader-thumbnailer.1 ├── xreader-thumbnailer.c └── xreader.thumbnailer.in ├── xreader-document.h ├── xreader-document.pc.in ├── xreader-view.h ├── xreader-view.pc.in └── xreader.pot /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | https://github.com/linuxmint/xreader/graphs/contributors 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/INSTALL.md -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/README.md -------------------------------------------------------------------------------- /backend/backend.symbols: -------------------------------------------------------------------------------- 1 | register_xreader_backend 2 | -------------------------------------------------------------------------------- /backend/comics/comics-document.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/comics/comics-document.c -------------------------------------------------------------------------------- /backend/comics/comics-document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/comics/comics-document.h -------------------------------------------------------------------------------- /backend/comics/comicsdocument.xreader-backend.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/comics/comicsdocument.xreader-backend.in -------------------------------------------------------------------------------- /backend/comics/ev-archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/comics/ev-archive.c -------------------------------------------------------------------------------- /backend/comics/ev-archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/comics/ev-archive.h -------------------------------------------------------------------------------- /backend/comics/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/comics/meson.build -------------------------------------------------------------------------------- /backend/comics/test-ev-archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/comics/test-ev-archive.c -------------------------------------------------------------------------------- /backend/djvu/djvu-document-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/djvu/djvu-document-private.h -------------------------------------------------------------------------------- /backend/djvu/djvu-document.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/djvu/djvu-document.c -------------------------------------------------------------------------------- /backend/djvu/djvu-document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/djvu/djvu-document.h -------------------------------------------------------------------------------- /backend/djvu/djvu-links.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/djvu/djvu-links.c -------------------------------------------------------------------------------- /backend/djvu/djvu-links.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/djvu/djvu-links.h -------------------------------------------------------------------------------- /backend/djvu/djvu-text-page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/djvu/djvu-text-page.c -------------------------------------------------------------------------------- /backend/djvu/djvu-text-page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/djvu/djvu-text-page.h -------------------------------------------------------------------------------- /backend/djvu/djvudocument.xreader-backend.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/djvu/djvudocument.xreader-backend.in -------------------------------------------------------------------------------- /backend/djvu/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/djvu/meson.build -------------------------------------------------------------------------------- /backend/dvi/cairo-device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/cairo-device.c -------------------------------------------------------------------------------- /backend/dvi/cairo-device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/cairo-device.h -------------------------------------------------------------------------------- /backend/dvi/dvi-document.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/dvi-document.c -------------------------------------------------------------------------------- /backend/dvi/dvi-document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/dvi-document.h -------------------------------------------------------------------------------- /backend/dvi/dvidocument.xreader-backend.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/dvidocument.xreader-backend.in -------------------------------------------------------------------------------- /backend/dvi/fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/fonts.c -------------------------------------------------------------------------------- /backend/dvi/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/fonts.h -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/afmparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/afmparse.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/afmparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/afmparse.h -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/bitmap.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/bitmap.h -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/color.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/color.h -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/common.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/common.h -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/defaults.h -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/dviopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/dviopcodes.h -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/dviread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/dviread.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/files.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/font.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/fontmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/fontmap.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/fontmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/fontmap.h -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/fontsrch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/fontsrch.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/gf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/gf.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/hash.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/hash.h -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/list.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/mdvi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/mdvi.h -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/meson.build -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/pagesel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/pagesel.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/paper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/paper.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/paper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/paper.h -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/pk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/pk.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/private.h -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/setup.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/sp-epsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/sp-epsf.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/special.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/special.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/sysdeps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/sysdeps.h -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/t1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/t1.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/tfm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/tfm.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/tfmfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/tfmfile.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/tt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/tt.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/util.c -------------------------------------------------------------------------------- /backend/dvi/mdvi-lib/vf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/mdvi-lib/vf.c -------------------------------------------------------------------------------- /backend/dvi/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/dvi/meson.build -------------------------------------------------------------------------------- /backend/epub/epub-document.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/epub/epub-document.c -------------------------------------------------------------------------------- /backend/epub/epub-document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/epub/epub-document.h -------------------------------------------------------------------------------- /backend/epub/epubdocument.xreader-backend.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/epub/epubdocument.xreader-backend.in -------------------------------------------------------------------------------- /backend/epub/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/epub/meson.build -------------------------------------------------------------------------------- /backend/epub/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/epub/minizip/ioapi.c -------------------------------------------------------------------------------- /backend/epub/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/epub/minizip/ioapi.h -------------------------------------------------------------------------------- /backend/epub/minizip/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/epub/minizip/meson.build -------------------------------------------------------------------------------- /backend/epub/minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/epub/minizip/unzip.c -------------------------------------------------------------------------------- /backend/epub/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/epub/minizip/unzip.h -------------------------------------------------------------------------------- /backend/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/meson.build -------------------------------------------------------------------------------- /backend/pdf/ev-poppler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/pdf/ev-poppler.cc -------------------------------------------------------------------------------- /backend/pdf/ev-poppler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/pdf/ev-poppler.h -------------------------------------------------------------------------------- /backend/pdf/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/pdf/meson.build -------------------------------------------------------------------------------- /backend/pdf/pdfdocument.xreader-backend.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/pdf/pdfdocument.xreader-backend.in -------------------------------------------------------------------------------- /backend/pixbuf/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/pixbuf/meson.build -------------------------------------------------------------------------------- /backend/pixbuf/pixbuf-document.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/pixbuf/pixbuf-document.c -------------------------------------------------------------------------------- /backend/pixbuf/pixbuf-document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/pixbuf/pixbuf-document.h -------------------------------------------------------------------------------- /backend/pixbuf/pixbufdocument.xreader-backend.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/pixbuf/pixbufdocument.xreader-backend.in -------------------------------------------------------------------------------- /backend/ps/ev-spectre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/ps/ev-spectre.c -------------------------------------------------------------------------------- /backend/ps/ev-spectre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/ps/ev-spectre.h -------------------------------------------------------------------------------- /backend/ps/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/ps/meson.build -------------------------------------------------------------------------------- /backend/ps/psdocument.xreader-backend.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/ps/psdocument.xreader-backend.in -------------------------------------------------------------------------------- /backend/tiff/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/tiff/meson.build -------------------------------------------------------------------------------- /backend/tiff/tiff-document.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/tiff/tiff-document.c -------------------------------------------------------------------------------- /backend/tiff/tiff-document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/tiff/tiff-document.h -------------------------------------------------------------------------------- /backend/tiff/tiff2ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/tiff/tiff2ps.c -------------------------------------------------------------------------------- /backend/tiff/tiff2ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/tiff/tiff2ps.h -------------------------------------------------------------------------------- /backend/tiff/tiffdocument.xreader-backend.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/tiff/tiffdocument.xreader-backend.in -------------------------------------------------------------------------------- /backend/xps/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/xps/meson.build -------------------------------------------------------------------------------- /backend/xps/xps-document.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/xps/xps-document.c -------------------------------------------------------------------------------- /backend/xps/xps-document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/xps/xps-document.h -------------------------------------------------------------------------------- /backend/xps/xpsdocument.xreader-backend.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/backend/xps/xpsdocument.xreader-backend.in -------------------------------------------------------------------------------- /cut-n-paste/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/meson.build -------------------------------------------------------------------------------- /cut-n-paste/smclient/eggdesktopfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/smclient/eggdesktopfile.c -------------------------------------------------------------------------------- /cut-n-paste/smclient/eggdesktopfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/smclient/eggdesktopfile.h -------------------------------------------------------------------------------- /cut-n-paste/smclient/eggsmclient-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/smclient/eggsmclient-private.h -------------------------------------------------------------------------------- /cut-n-paste/smclient/eggsmclient-xsmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/smclient/eggsmclient-xsmp.c -------------------------------------------------------------------------------- /cut-n-paste/smclient/eggsmclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/smclient/eggsmclient.c -------------------------------------------------------------------------------- /cut-n-paste/smclient/eggsmclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/smclient/eggsmclient.h -------------------------------------------------------------------------------- /cut-n-paste/smclient/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/smclient/meson.build -------------------------------------------------------------------------------- /cut-n-paste/synctex/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/synctex/meson.build -------------------------------------------------------------------------------- /cut-n-paste/synctex/synctex_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/synctex/synctex_parser.c -------------------------------------------------------------------------------- /cut-n-paste/synctex/synctex_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/synctex/synctex_parser.h -------------------------------------------------------------------------------- /cut-n-paste/synctex/synctex_parser_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/synctex/synctex_parser_local.h -------------------------------------------------------------------------------- /cut-n-paste/synctex/synctex_parser_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/synctex/synctex_parser_utils.c -------------------------------------------------------------------------------- /cut-n-paste/synctex/synctex_parser_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/synctex/synctex_parser_utils.h -------------------------------------------------------------------------------- /cut-n-paste/synctex/synctex_parser_version.txt: -------------------------------------------------------------------------------- 1 | 1.18 -------------------------------------------------------------------------------- /cut-n-paste/synctex/update-synctex-from-TL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/synctex/update-synctex-from-TL.sh -------------------------------------------------------------------------------- /cut-n-paste/totem-screensaver/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/totem-screensaver/README -------------------------------------------------------------------------------- /cut-n-paste/totem-screensaver/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/totem-screensaver/meson.build -------------------------------------------------------------------------------- /cut-n-paste/totem-screensaver/totem-scrsaver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/totem-screensaver/totem-scrsaver.c -------------------------------------------------------------------------------- /cut-n-paste/totem-screensaver/totem-scrsaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/totem-screensaver/totem-scrsaver.h -------------------------------------------------------------------------------- /cut-n-paste/zoom-control/ephy-zoom-action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/zoom-control/ephy-zoom-action.c -------------------------------------------------------------------------------- /cut-n-paste/zoom-control/ephy-zoom-action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/zoom-control/ephy-zoom-action.h -------------------------------------------------------------------------------- /cut-n-paste/zoom-control/ephy-zoom-control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/zoom-control/ephy-zoom-control.c -------------------------------------------------------------------------------- /cut-n-paste/zoom-control/ephy-zoom-control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/zoom-control/ephy-zoom-control.h -------------------------------------------------------------------------------- /cut-n-paste/zoom-control/ephy-zoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/zoom-control/ephy-zoom.c -------------------------------------------------------------------------------- /cut-n-paste/zoom-control/ephy-zoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/zoom-control/ephy-zoom.h -------------------------------------------------------------------------------- /cut-n-paste/zoom-control/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/cut-n-paste/zoom-control/meson.build -------------------------------------------------------------------------------- /data/hand-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/hand-open.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/object-rotate-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/16x16/actions/object-rotate-left.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/object-rotate-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/16x16/actions/object-rotate-right.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/view-page-continuous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/16x16/actions/view-page-continuous.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/view-page-continuous.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/16x16/actions/view-page-continuous.xcf -------------------------------------------------------------------------------- /data/icons/16x16/actions/view-page-facing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/16x16/actions/view-page-facing.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/view-page-facing.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/16x16/actions/view-page-facing.xcf -------------------------------------------------------------------------------- /data/icons/16x16/actions/zoom-fit-height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/16x16/actions/zoom-fit-height.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/zoom-fit-page.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/16x16/actions/zoom-fit-page.svg -------------------------------------------------------------------------------- /data/icons/16x16/actions/zoom-fit-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/16x16/actions/zoom-fit-width.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/zoom-fit-width.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/16x16/actions/zoom-fit-width.svg -------------------------------------------------------------------------------- /data/icons/16x16/actions/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/16x16/actions/zoom.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/zoom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/16x16/actions/zoom.svg -------------------------------------------------------------------------------- /data/icons/16x16/apps/xreader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/16x16/apps/xreader.png -------------------------------------------------------------------------------- /data/icons/16x16/mimetypes/x-office-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/16x16/mimetypes/x-office-presentation.png -------------------------------------------------------------------------------- /data/icons/22x22/actions/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/22x22/actions/eye.png -------------------------------------------------------------------------------- /data/icons/22x22/actions/object-rotate-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/22x22/actions/object-rotate-left.png -------------------------------------------------------------------------------- /data/icons/22x22/actions/object-rotate-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/22x22/actions/object-rotate-right.png -------------------------------------------------------------------------------- /data/icons/22x22/actions/view-page-continuous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/22x22/actions/view-page-continuous.png -------------------------------------------------------------------------------- /data/icons/22x22/actions/view-page-continuous.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/22x22/actions/view-page-continuous.xcf -------------------------------------------------------------------------------- /data/icons/22x22/actions/view-page-facing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/22x22/actions/view-page-facing.png -------------------------------------------------------------------------------- /data/icons/22x22/actions/view-page-facing.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/22x22/actions/view-page-facing.xcf -------------------------------------------------------------------------------- /data/icons/22x22/actions/zoom-fit-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/22x22/actions/zoom-fit-page.png -------------------------------------------------------------------------------- /data/icons/22x22/actions/zoom-fit-page.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/22x22/actions/zoom-fit-page.svg -------------------------------------------------------------------------------- /data/icons/22x22/actions/zoom-fit-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/22x22/actions/zoom-fit-width.png -------------------------------------------------------------------------------- /data/icons/22x22/actions/zoom-fit-width.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/22x22/actions/zoom-fit-width.svg -------------------------------------------------------------------------------- /data/icons/22x22/actions/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/22x22/actions/zoom.png -------------------------------------------------------------------------------- /data/icons/22x22/actions/zoom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/22x22/actions/zoom.svg -------------------------------------------------------------------------------- /data/icons/22x22/apps/xreader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/22x22/apps/xreader.png -------------------------------------------------------------------------------- /data/icons/22x22/mimetypes/x-office-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/22x22/mimetypes/x-office-presentation.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/object-rotate-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/24x24/actions/object-rotate-left.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/object-rotate-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/24x24/actions/object-rotate-right.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/stock_filters-invert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/24x24/actions/stock_filters-invert.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/view-page-continuous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/24x24/actions/view-page-continuous.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/view-page-facing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/24x24/actions/view-page-facing.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/zoom-fit-height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/24x24/actions/zoom-fit-height.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/zoom-fit-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/24x24/actions/zoom-fit-width.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/24x24/actions/zoom.png -------------------------------------------------------------------------------- /data/icons/24x24/apps/xreader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/24x24/apps/xreader.png -------------------------------------------------------------------------------- /data/icons/24x24/mimetypes/x-office-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/24x24/mimetypes/x-office-presentation.png -------------------------------------------------------------------------------- /data/icons/32x32/actions/object-rotate-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/32x32/actions/object-rotate-left.png -------------------------------------------------------------------------------- /data/icons/32x32/actions/object-rotate-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/32x32/actions/object-rotate-right.png -------------------------------------------------------------------------------- /data/icons/32x32/actions/view-page-continuous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/32x32/actions/view-page-continuous.png -------------------------------------------------------------------------------- /data/icons/32x32/actions/view-page-facing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/32x32/actions/view-page-facing.png -------------------------------------------------------------------------------- /data/icons/32x32/mimetypes/x-office-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/32x32/mimetypes/x-office-presentation.png -------------------------------------------------------------------------------- /data/icons/48x48/actions/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/48x48/actions/close.png -------------------------------------------------------------------------------- /data/icons/48x48/actions/resize-se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/48x48/actions/resize-se.png -------------------------------------------------------------------------------- /data/icons/48x48/actions/resize-sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/48x48/actions/resize-sw.png -------------------------------------------------------------------------------- /data/icons/48x48/actions/view-page-continuous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/48x48/actions/view-page-continuous.png -------------------------------------------------------------------------------- /data/icons/48x48/actions/view-page-facing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/48x48/actions/view-page-facing.png -------------------------------------------------------------------------------- /data/icons/48x48/apps/xreader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/48x48/apps/xreader.png -------------------------------------------------------------------------------- /data/icons/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/meson.build -------------------------------------------------------------------------------- /data/icons/scalable/actions/object-rotate-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/scalable/actions/object-rotate-left.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/object-rotate-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/scalable/actions/object-rotate-right.svg -------------------------------------------------------------------------------- /data/icons/scalable/apps/xreader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/scalable/apps/xreader.svg -------------------------------------------------------------------------------- /data/icons/scalable/mimetypes/x-office-presentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/icons/scalable/mimetypes/x-office-presentation.svg -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/org.x.reader.Daemon.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/org.x.reader.Daemon.service.in -------------------------------------------------------------------------------- /data/org.x.reader.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/org.x.reader.gschema.xml -------------------------------------------------------------------------------- /data/thumbnail-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/thumbnail-frame.png -------------------------------------------------------------------------------- /data/xreader.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/xreader.1 -------------------------------------------------------------------------------- /data/xreader.appdata.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/xreader.appdata.xml.in -------------------------------------------------------------------------------- /data/xreader.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/data/xreader.desktop.in.in -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/gir1.2-xreader.install.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/debian/gir1.2-xreader.install.in -------------------------------------------------------------------------------- /debian/libxreaderdocument-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/debian/libxreaderdocument-dev.install -------------------------------------------------------------------------------- /debian/libxreaderdocument3.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/debian/libxreaderdocument3.install -------------------------------------------------------------------------------- /debian/libxreaderview-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/debian/libxreaderview-dev.install -------------------------------------------------------------------------------- /debian/libxreaderview3.install: -------------------------------------------------------------------------------- 1 | usr/lib/*/*view*.so.* 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian/xreader-common.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/debian/xreader-common.install -------------------------------------------------------------------------------- /debian/xreader.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/debian/xreader.install -------------------------------------------------------------------------------- /debian/xreader.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/debian/xreader.postinst -------------------------------------------------------------------------------- /debian/xreader.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/debian/xreader.prerm -------------------------------------------------------------------------------- /help/C/figures/xreader_start_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/C/figures/xreader_start_window.png -------------------------------------------------------------------------------- /help/C/index.docbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/C/index.docbook -------------------------------------------------------------------------------- /help/C/legal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/C/legal.xml -------------------------------------------------------------------------------- /help/C/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/C/readme.txt -------------------------------------------------------------------------------- /help/C/xreader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/C/xreader.html -------------------------------------------------------------------------------- /help/C/xreader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/C/xreader.md -------------------------------------------------------------------------------- /help/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/ChangeLog -------------------------------------------------------------------------------- /help/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/LINGUAS -------------------------------------------------------------------------------- /help/bg/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/bg/bg.po -------------------------------------------------------------------------------- /help/ca/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/ca/ca.po -------------------------------------------------------------------------------- /help/cs/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/cs/cs.po -------------------------------------------------------------------------------- /help/de/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/de/de.po -------------------------------------------------------------------------------- /help/el/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/el/el.po -------------------------------------------------------------------------------- /help/en_GB/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/en_GB/en_GB.po -------------------------------------------------------------------------------- /help/es/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/es/es.po -------------------------------------------------------------------------------- /help/eu/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/eu/eu.po -------------------------------------------------------------------------------- /help/fi/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/fi/fi.po -------------------------------------------------------------------------------- /help/fr/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/fr/fr.po -------------------------------------------------------------------------------- /help/it/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/it/it.po -------------------------------------------------------------------------------- /help/ja/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/ja/ja.po -------------------------------------------------------------------------------- /help/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/meson.build -------------------------------------------------------------------------------- /help/nl/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/nl/nl.po -------------------------------------------------------------------------------- /help/oc/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/oc/oc.po -------------------------------------------------------------------------------- /help/pt_BR/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/pt_BR/pt_BR.po -------------------------------------------------------------------------------- /help/reference/libdocument/libxreaderdocument-docs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/reference/libdocument/libxreaderdocument-docs.xml -------------------------------------------------------------------------------- /help/reference/libdocument/libxreaderdocument-overrides.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /help/reference/libdocument/libxreaderdocument-sections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/reference/libdocument/libxreaderdocument-sections.txt -------------------------------------------------------------------------------- /help/reference/libdocument/libxreaderdocument.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/reference/libdocument/libxreaderdocument.types -------------------------------------------------------------------------------- /help/reference/libdocument/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/reference/libdocument/meson.build -------------------------------------------------------------------------------- /help/reference/libdocument/version.xml.in: -------------------------------------------------------------------------------- 1 | @VERSION@ -------------------------------------------------------------------------------- /help/reference/libview/libxreaderview-docs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/reference/libview/libxreaderview-docs.xml -------------------------------------------------------------------------------- /help/reference/libview/libxreaderview-overrides.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /help/reference/libview/libxreaderview-sections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/reference/libview/libxreaderview-sections.txt -------------------------------------------------------------------------------- /help/reference/libview/libxreaderview.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/reference/libview/libxreaderview.types -------------------------------------------------------------------------------- /help/reference/libview/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/reference/libview/meson.build -------------------------------------------------------------------------------- /help/reference/libview/version.xml.in: -------------------------------------------------------------------------------- 1 | @VERSION@ -------------------------------------------------------------------------------- /help/reference/shell/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/reference/shell/meson.build -------------------------------------------------------------------------------- /help/reference/shell/version.xml.in: -------------------------------------------------------------------------------- 1 | @VERSION@ -------------------------------------------------------------------------------- /help/reference/shell/xreader-docs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/reference/shell/xreader-docs.xml -------------------------------------------------------------------------------- /help/reference/shell/xreader-overrides.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /help/reference/shell/xreader-sections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/reference/shell/xreader-sections.txt -------------------------------------------------------------------------------- /help/reference/shell/xreader.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/reference/shell/xreader.types -------------------------------------------------------------------------------- /help/ru/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/ru/ru.po -------------------------------------------------------------------------------- /help/sl/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/sl/sl.po -------------------------------------------------------------------------------- /help/sr/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/sr/sr.po -------------------------------------------------------------------------------- /help/sv/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/sv/sv.po -------------------------------------------------------------------------------- /help/uk/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/uk/uk.po -------------------------------------------------------------------------------- /help/vi/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/vi/vi.po -------------------------------------------------------------------------------- /help/xreader.omf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/xreader.omf.in -------------------------------------------------------------------------------- /help/zh_CN/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/help/zh_CN/zh_CN.po -------------------------------------------------------------------------------- /install-scripts/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/install-scripts/meson.build -------------------------------------------------------------------------------- /install-scripts/meson_install_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/install-scripts/meson_install_schemas.py -------------------------------------------------------------------------------- /install-scripts/meson_update_icon_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/install-scripts/meson_update_icon_cache.py -------------------------------------------------------------------------------- /install-scripts/meson_update_mime_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/install-scripts/meson_update_mime_database.py -------------------------------------------------------------------------------- /libdocument/ev-annotation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-annotation.c -------------------------------------------------------------------------------- /libdocument/ev-annotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-annotation.h -------------------------------------------------------------------------------- /libdocument/ev-async-renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-async-renderer.c -------------------------------------------------------------------------------- /libdocument/ev-async-renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-async-renderer.h -------------------------------------------------------------------------------- /libdocument/ev-attachment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-attachment.c -------------------------------------------------------------------------------- /libdocument/ev-attachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-attachment.h -------------------------------------------------------------------------------- /libdocument/ev-backends-manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-backends-manager.c -------------------------------------------------------------------------------- /libdocument/ev-backends-manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-backends-manager.h -------------------------------------------------------------------------------- /libdocument/ev-debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-debug.c -------------------------------------------------------------------------------- /libdocument/ev-debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-debug.h -------------------------------------------------------------------------------- /libdocument/ev-document-annotations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-annotations.c -------------------------------------------------------------------------------- /libdocument/ev-document-annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-annotations.h -------------------------------------------------------------------------------- /libdocument/ev-document-attachments.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-attachments.c -------------------------------------------------------------------------------- /libdocument/ev-document-attachments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-attachments.h -------------------------------------------------------------------------------- /libdocument/ev-document-factory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-factory.c -------------------------------------------------------------------------------- /libdocument/ev-document-factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-factory.h -------------------------------------------------------------------------------- /libdocument/ev-document-find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-find.c -------------------------------------------------------------------------------- /libdocument/ev-document-find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-find.h -------------------------------------------------------------------------------- /libdocument/ev-document-fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-fonts.c -------------------------------------------------------------------------------- /libdocument/ev-document-fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-fonts.h -------------------------------------------------------------------------------- /libdocument/ev-document-forms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-forms.c -------------------------------------------------------------------------------- /libdocument/ev-document-forms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-forms.h -------------------------------------------------------------------------------- /libdocument/ev-document-images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-images.c -------------------------------------------------------------------------------- /libdocument/ev-document-images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-images.h -------------------------------------------------------------------------------- /libdocument/ev-document-info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-info.h -------------------------------------------------------------------------------- /libdocument/ev-document-layers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-layers.c -------------------------------------------------------------------------------- /libdocument/ev-document-layers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-layers.h -------------------------------------------------------------------------------- /libdocument/ev-document-links.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-links.c -------------------------------------------------------------------------------- /libdocument/ev-document-links.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-links.h -------------------------------------------------------------------------------- /libdocument/ev-document-misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-misc.c -------------------------------------------------------------------------------- /libdocument/ev-document-misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-misc.h -------------------------------------------------------------------------------- /libdocument/ev-document-print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-print.c -------------------------------------------------------------------------------- /libdocument/ev-document-print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-print.h -------------------------------------------------------------------------------- /libdocument/ev-document-security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-security.c -------------------------------------------------------------------------------- /libdocument/ev-document-security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-security.h -------------------------------------------------------------------------------- /libdocument/ev-document-text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-text.c -------------------------------------------------------------------------------- /libdocument/ev-document-text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-text.h -------------------------------------------------------------------------------- /libdocument/ev-document-thumbnails.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-thumbnails.c -------------------------------------------------------------------------------- /libdocument/ev-document-thumbnails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-thumbnails.h -------------------------------------------------------------------------------- /libdocument/ev-document-transition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-transition.c -------------------------------------------------------------------------------- /libdocument/ev-document-transition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-transition.h -------------------------------------------------------------------------------- /libdocument/ev-document-type-builtins.c.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-type-builtins.c.template -------------------------------------------------------------------------------- /libdocument/ev-document-type-builtins.h.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document-type-builtins.h.template -------------------------------------------------------------------------------- /libdocument/ev-document.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document.c -------------------------------------------------------------------------------- /libdocument/ev-document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-document.h -------------------------------------------------------------------------------- /libdocument/ev-file-exporter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-file-exporter.c -------------------------------------------------------------------------------- /libdocument/ev-file-exporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-file-exporter.h -------------------------------------------------------------------------------- /libdocument/ev-file-helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-file-helpers.c -------------------------------------------------------------------------------- /libdocument/ev-file-helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-file-helpers.h -------------------------------------------------------------------------------- /libdocument/ev-form-field.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-form-field.c -------------------------------------------------------------------------------- /libdocument/ev-form-field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-form-field.h -------------------------------------------------------------------------------- /libdocument/ev-image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-image.c -------------------------------------------------------------------------------- /libdocument/ev-image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-image.h -------------------------------------------------------------------------------- /libdocument/ev-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-init.c -------------------------------------------------------------------------------- /libdocument/ev-init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-init.h -------------------------------------------------------------------------------- /libdocument/ev-layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-layer.c -------------------------------------------------------------------------------- /libdocument/ev-layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-layer.h -------------------------------------------------------------------------------- /libdocument/ev-link-action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-link-action.c -------------------------------------------------------------------------------- /libdocument/ev-link-action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-link-action.h -------------------------------------------------------------------------------- /libdocument/ev-link-dest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-link-dest.c -------------------------------------------------------------------------------- /libdocument/ev-link-dest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-link-dest.h -------------------------------------------------------------------------------- /libdocument/ev-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-link.c -------------------------------------------------------------------------------- /libdocument/ev-link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-link.h -------------------------------------------------------------------------------- /libdocument/ev-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-macros.h -------------------------------------------------------------------------------- /libdocument/ev-mapping-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-mapping-list.c -------------------------------------------------------------------------------- /libdocument/ev-mapping-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-mapping-list.h -------------------------------------------------------------------------------- /libdocument/ev-module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-module.c -------------------------------------------------------------------------------- /libdocument/ev-module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-module.h -------------------------------------------------------------------------------- /libdocument/ev-page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-page.c -------------------------------------------------------------------------------- /libdocument/ev-page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-page.h -------------------------------------------------------------------------------- /libdocument/ev-render-context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-render-context.c -------------------------------------------------------------------------------- /libdocument/ev-render-context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-render-context.h -------------------------------------------------------------------------------- /libdocument/ev-selection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-selection.c -------------------------------------------------------------------------------- /libdocument/ev-selection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-selection.h -------------------------------------------------------------------------------- /libdocument/ev-transition-effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-transition-effect.c -------------------------------------------------------------------------------- /libdocument/ev-transition-effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-transition-effect.h -------------------------------------------------------------------------------- /libdocument/ev-version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/ev-version.h.in -------------------------------------------------------------------------------- /libdocument/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libdocument/meson.build -------------------------------------------------------------------------------- /libmisc/ev-page-action-widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libmisc/ev-page-action-widget.c -------------------------------------------------------------------------------- /libmisc/ev-page-action-widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libmisc/ev-page-action-widget.h -------------------------------------------------------------------------------- /libmisc/ev-page-action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libmisc/ev-page-action.c -------------------------------------------------------------------------------- /libmisc/ev-page-action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libmisc/ev-page-action.h -------------------------------------------------------------------------------- /libmisc/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libmisc/meson.build -------------------------------------------------------------------------------- /libview/ev-annotation-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-annotation-window.c -------------------------------------------------------------------------------- /libview/ev-annotation-window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-annotation-window.h -------------------------------------------------------------------------------- /libview/ev-document-model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-document-model.c -------------------------------------------------------------------------------- /libview/ev-document-model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-document-model.h -------------------------------------------------------------------------------- /libview/ev-job-scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-job-scheduler.c -------------------------------------------------------------------------------- /libview/ev-job-scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-job-scheduler.h -------------------------------------------------------------------------------- /libview/ev-jobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-jobs.c -------------------------------------------------------------------------------- /libview/ev-jobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-jobs.h -------------------------------------------------------------------------------- /libview/ev-link-accessible.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-link-accessible.c -------------------------------------------------------------------------------- /libview/ev-link-accessible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-link-accessible.h -------------------------------------------------------------------------------- /libview/ev-loading-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-loading-window.c -------------------------------------------------------------------------------- /libview/ev-loading-window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-loading-window.h -------------------------------------------------------------------------------- /libview/ev-page-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-page-cache.c -------------------------------------------------------------------------------- /libview/ev-page-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-page-cache.h -------------------------------------------------------------------------------- /libview/ev-pixbuf-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-pixbuf-cache.c -------------------------------------------------------------------------------- /libview/ev-pixbuf-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-pixbuf-cache.h -------------------------------------------------------------------------------- /libview/ev-print-operation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-print-operation.c -------------------------------------------------------------------------------- /libview/ev-print-operation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-print-operation.h -------------------------------------------------------------------------------- /libview/ev-stock-icons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-stock-icons.c -------------------------------------------------------------------------------- /libview/ev-stock-icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-stock-icons.h -------------------------------------------------------------------------------- /libview/ev-timeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-timeline.c -------------------------------------------------------------------------------- /libview/ev-timeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-timeline.h -------------------------------------------------------------------------------- /libview/ev-transition-animation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-transition-animation.c -------------------------------------------------------------------------------- /libview/ev-transition-animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-transition-animation.h -------------------------------------------------------------------------------- /libview/ev-view-accessible.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-view-accessible.c -------------------------------------------------------------------------------- /libview/ev-view-accessible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-view-accessible.h -------------------------------------------------------------------------------- /libview/ev-view-cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-view-cursor.c -------------------------------------------------------------------------------- /libview/ev-view-cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-view-cursor.h -------------------------------------------------------------------------------- /libview/ev-view-marshal.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-view-marshal.list -------------------------------------------------------------------------------- /libview/ev-view-presentation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-view-presentation.c -------------------------------------------------------------------------------- /libview/ev-view-presentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-view-presentation.h -------------------------------------------------------------------------------- /libview/ev-view-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-view-private.h -------------------------------------------------------------------------------- /libview/ev-view-type-builtins.c.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-view-type-builtins.c.template -------------------------------------------------------------------------------- /libview/ev-view-type-builtins.h.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-view-type-builtins.h.template -------------------------------------------------------------------------------- /libview/ev-view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-view.c -------------------------------------------------------------------------------- /libview/ev-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-view.h -------------------------------------------------------------------------------- /libview/ev-web-view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-web-view.c -------------------------------------------------------------------------------- /libview/ev-web-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/ev-web-view.h -------------------------------------------------------------------------------- /libview/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/libview/meson.build -------------------------------------------------------------------------------- /makepot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/makepot -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/meson_options.txt -------------------------------------------------------------------------------- /po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ChangeLog -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/POTFILES.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/POTFILES.skip -------------------------------------------------------------------------------- /po/ab.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ab.po -------------------------------------------------------------------------------- /po/af.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/af.po -------------------------------------------------------------------------------- /po/am.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/am.po -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/as.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/as.po -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ast.po -------------------------------------------------------------------------------- /po/az.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/az.po -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/be.po -------------------------------------------------------------------------------- /po/be@latin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/be@latin.po -------------------------------------------------------------------------------- /po/ber.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ber.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/bn.po -------------------------------------------------------------------------------- /po/bn_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/bn_IN.po -------------------------------------------------------------------------------- /po/br.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/br.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/ca@valencia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ca@valencia.po -------------------------------------------------------------------------------- /po/cmn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/cmn.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/cy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/cy.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/de.po -------------------------------------------------------------------------------- /po/dz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/dz.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en@shaw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/en@shaw.po -------------------------------------------------------------------------------- /po/en_AU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/en_AU.po -------------------------------------------------------------------------------- /po/en_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/en_CA.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/eo.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/es.po -------------------------------------------------------------------------------- /po/es_CO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/es_CO.po -------------------------------------------------------------------------------- /po/es_VE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/es_VE.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/et.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/fa.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/fr_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/fr_CA.po -------------------------------------------------------------------------------- /po/ga.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ga.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/gnome-copyrights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/gnome-copyrights.txt -------------------------------------------------------------------------------- /po/gu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/gu.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/hy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/hy.po -------------------------------------------------------------------------------- /po/ia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ia.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/id.po -------------------------------------------------------------------------------- /po/ie.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ie.po -------------------------------------------------------------------------------- /po/is.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/is.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/jv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/jv.po -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/kab.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/kab.po -------------------------------------------------------------------------------- /po/kk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/kk.po -------------------------------------------------------------------------------- /po/kn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/kn.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/ks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ks.po -------------------------------------------------------------------------------- /po/ku.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ku.po -------------------------------------------------------------------------------- /po/ky.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ky.po -------------------------------------------------------------------------------- /po/la.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/la.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/lv.po -------------------------------------------------------------------------------- /po/mai.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/mai.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(meson.project_name(), 2 | preset: 'glib' 3 | ) 4 | -------------------------------------------------------------------------------- /po/mg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/mg.po -------------------------------------------------------------------------------- /po/mk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/mk.po -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ml.po -------------------------------------------------------------------------------- /po/mn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/mn.po -------------------------------------------------------------------------------- /po/mr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/mr.po -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ms.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/nds.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/nds.po -------------------------------------------------------------------------------- /po/ne.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ne.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/nn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/nn.po -------------------------------------------------------------------------------- /po/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/oc.po -------------------------------------------------------------------------------- /po/or.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/or.po -------------------------------------------------------------------------------- /po/pa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/pa.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/ps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ps.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/rw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/rw.po -------------------------------------------------------------------------------- /po/sc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/sc.po -------------------------------------------------------------------------------- /po/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/si.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/sq.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sr@latin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/sr@latin.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ta.po -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/te.po -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/th.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/tt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/tt.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/ur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/ur.po -------------------------------------------------------------------------------- /po/uz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/uz.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/wa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/wa.po -------------------------------------------------------------------------------- /po/zgh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/zgh.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_HK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/zh_HK.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /previewer/ev-previewer-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/previewer/ev-previewer-window.c -------------------------------------------------------------------------------- /previewer/ev-previewer-window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/previewer/ev-previewer-window.h -------------------------------------------------------------------------------- /previewer/ev-previewer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/previewer/ev-previewer.c -------------------------------------------------------------------------------- /previewer/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/previewer/meson.build -------------------------------------------------------------------------------- /previewer/previewer-ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/previewer/previewer-ui.xml -------------------------------------------------------------------------------- /previewer/previewer.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/previewer/previewer.gresource.xml -------------------------------------------------------------------------------- /previewer/xreader-previewer.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/previewer/xreader-previewer.1 -------------------------------------------------------------------------------- /previewer/xreader-previewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/previewer/xreader-previewer.css -------------------------------------------------------------------------------- /shell/eggfindbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/eggfindbar.c -------------------------------------------------------------------------------- /shell/eggfindbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/eggfindbar.h -------------------------------------------------------------------------------- /shell/ev-annotation-properties-dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-annotation-properties-dialog.c -------------------------------------------------------------------------------- /shell/ev-annotation-properties-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-annotation-properties-dialog.h -------------------------------------------------------------------------------- /shell/ev-annotations-toolbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-annotations-toolbar.c -------------------------------------------------------------------------------- /shell/ev-annotations-toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-annotations-toolbar.h -------------------------------------------------------------------------------- /shell/ev-application.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-application.c -------------------------------------------------------------------------------- /shell/ev-application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-application.h -------------------------------------------------------------------------------- /shell/ev-bookmark-action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-bookmark-action.c -------------------------------------------------------------------------------- /shell/ev-bookmark-action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-bookmark-action.h -------------------------------------------------------------------------------- /shell/ev-bookmarks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-bookmarks.c -------------------------------------------------------------------------------- /shell/ev-bookmarks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-bookmarks.h -------------------------------------------------------------------------------- /shell/ev-daemon-gdbus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-daemon-gdbus.xml -------------------------------------------------------------------------------- /shell/ev-daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-daemon.c -------------------------------------------------------------------------------- /shell/ev-file-monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-file-monitor.c -------------------------------------------------------------------------------- /shell/ev-file-monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-file-monitor.h -------------------------------------------------------------------------------- /shell/ev-gdbus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-gdbus.xml -------------------------------------------------------------------------------- /shell/ev-history-action-widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-history-action-widget.c -------------------------------------------------------------------------------- /shell/ev-history-action-widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-history-action-widget.h -------------------------------------------------------------------------------- /shell/ev-history-action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-history-action.c -------------------------------------------------------------------------------- /shell/ev-history-action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-history-action.h -------------------------------------------------------------------------------- /shell/ev-history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-history.c -------------------------------------------------------------------------------- /shell/ev-history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-history.h -------------------------------------------------------------------------------- /shell/ev-keyring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-keyring.c -------------------------------------------------------------------------------- /shell/ev-keyring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-keyring.h -------------------------------------------------------------------------------- /shell/ev-marshal.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-marshal.list -------------------------------------------------------------------------------- /shell/ev-message-area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-message-area.c -------------------------------------------------------------------------------- /shell/ev-message-area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-message-area.h -------------------------------------------------------------------------------- /shell/ev-metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-metadata.c -------------------------------------------------------------------------------- /shell/ev-metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-metadata.h -------------------------------------------------------------------------------- /shell/ev-open-recent-action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-open-recent-action.c -------------------------------------------------------------------------------- /shell/ev-open-recent-action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-open-recent-action.h -------------------------------------------------------------------------------- /shell/ev-password-view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-password-view.c -------------------------------------------------------------------------------- /shell/ev-password-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-password-view.h -------------------------------------------------------------------------------- /shell/ev-preferences-dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-preferences-dialog.c -------------------------------------------------------------------------------- /shell/ev-preferences-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-preferences-dialog.h -------------------------------------------------------------------------------- /shell/ev-preferences-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-preferences-dialog.ui -------------------------------------------------------------------------------- /shell/ev-progress-message-area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-progress-message-area.c -------------------------------------------------------------------------------- /shell/ev-progress-message-area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-progress-message-area.h -------------------------------------------------------------------------------- /shell/ev-properties-dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-properties-dialog.c -------------------------------------------------------------------------------- /shell/ev-properties-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-properties-dialog.h -------------------------------------------------------------------------------- /shell/ev-properties-fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-properties-fonts.c -------------------------------------------------------------------------------- /shell/ev-properties-fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-properties-fonts.h -------------------------------------------------------------------------------- /shell/ev-properties-license.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-properties-license.c -------------------------------------------------------------------------------- /shell/ev-properties-license.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-properties-license.h -------------------------------------------------------------------------------- /shell/ev-properties-view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-properties-view.c -------------------------------------------------------------------------------- /shell/ev-properties-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-properties-view.h -------------------------------------------------------------------------------- /shell/ev-sidebar-annotations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-sidebar-annotations.c -------------------------------------------------------------------------------- /shell/ev-sidebar-annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-sidebar-annotations.h -------------------------------------------------------------------------------- /shell/ev-sidebar-attachments.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-sidebar-attachments.c -------------------------------------------------------------------------------- /shell/ev-sidebar-attachments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-sidebar-attachments.h -------------------------------------------------------------------------------- /shell/ev-sidebar-bookmarks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-sidebar-bookmarks.c -------------------------------------------------------------------------------- /shell/ev-sidebar-bookmarks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-sidebar-bookmarks.h -------------------------------------------------------------------------------- /shell/ev-sidebar-layers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-sidebar-layers.c -------------------------------------------------------------------------------- /shell/ev-sidebar-layers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-sidebar-layers.h -------------------------------------------------------------------------------- /shell/ev-sidebar-links.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-sidebar-links.c -------------------------------------------------------------------------------- /shell/ev-sidebar-links.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-sidebar-links.h -------------------------------------------------------------------------------- /shell/ev-sidebar-page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-sidebar-page.c -------------------------------------------------------------------------------- /shell/ev-sidebar-page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-sidebar-page.h -------------------------------------------------------------------------------- /shell/ev-sidebar-thumbnails.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-sidebar-thumbnails.c -------------------------------------------------------------------------------- /shell/ev-sidebar-thumbnails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-sidebar-thumbnails.h -------------------------------------------------------------------------------- /shell/ev-sidebar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-sidebar.c -------------------------------------------------------------------------------- /shell/ev-sidebar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-sidebar.h -------------------------------------------------------------------------------- /shell/ev-toolbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-toolbar.c -------------------------------------------------------------------------------- /shell/ev-toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-toolbar.h -------------------------------------------------------------------------------- /shell/ev-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-utils.c -------------------------------------------------------------------------------- /shell/ev-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-utils.h -------------------------------------------------------------------------------- /shell/ev-window-title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-window-title.c -------------------------------------------------------------------------------- /shell/ev-window-title.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-window-title.h -------------------------------------------------------------------------------- /shell/ev-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-window.c -------------------------------------------------------------------------------- /shell/ev-window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-window.h -------------------------------------------------------------------------------- /shell/ev-zoom-action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-zoom-action.c -------------------------------------------------------------------------------- /shell/ev-zoom-action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/ev-zoom-action.h -------------------------------------------------------------------------------- /shell/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/main.c -------------------------------------------------------------------------------- /shell/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/meson.build -------------------------------------------------------------------------------- /shell/xreader-ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/xreader-ui.xml -------------------------------------------------------------------------------- /shell/xreader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/xreader.css -------------------------------------------------------------------------------- /shell/xreader.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/shell/xreader.gresource.xml -------------------------------------------------------------------------------- /test/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/test/meson.build -------------------------------------------------------------------------------- /test/test-encrypt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/test/test-encrypt.pdf -------------------------------------------------------------------------------- /test/test-links.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/test/test-links.pdf -------------------------------------------------------------------------------- /test/test-mime.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/test/test-mime.bin -------------------------------------------------------------------------------- /test/test-page-labels.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/test/test-page-labels.pdf -------------------------------------------------------------------------------- /test/testBookmarksMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/test/testBookmarksMenu.py -------------------------------------------------------------------------------- /test/testCommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/test/testCommon.py -------------------------------------------------------------------------------- /test/testEditMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/test/testEditMenu.py -------------------------------------------------------------------------------- /test/testEncryptedFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/test/testEncryptedFile.py -------------------------------------------------------------------------------- /test/testFileMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/test/testFileMenu.py -------------------------------------------------------------------------------- /test/testFileReloading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/test/testFileReloading.py -------------------------------------------------------------------------------- /test/testGoMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/test/testGoMenu.py -------------------------------------------------------------------------------- /test/testHelpMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/test/testHelpMenu.py -------------------------------------------------------------------------------- /test/testWrongFileExtension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/test/testWrongFileExtension.py -------------------------------------------------------------------------------- /test/testZoom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/test/testZoom.py -------------------------------------------------------------------------------- /thumbnailer/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/thumbnailer/meson.build -------------------------------------------------------------------------------- /thumbnailer/xreader-thumbnailer.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/thumbnailer/xreader-thumbnailer.1 -------------------------------------------------------------------------------- /thumbnailer/xreader-thumbnailer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/thumbnailer/xreader-thumbnailer.c -------------------------------------------------------------------------------- /thumbnailer/xreader.thumbnailer.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/thumbnailer/xreader.thumbnailer.in -------------------------------------------------------------------------------- /xreader-document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/xreader-document.h -------------------------------------------------------------------------------- /xreader-document.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/xreader-document.pc.in -------------------------------------------------------------------------------- /xreader-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/xreader-view.h -------------------------------------------------------------------------------- /xreader-view.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/xreader-view.pc.in -------------------------------------------------------------------------------- /xreader.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/xreader/HEAD/xreader.pot --------------------------------------------------------------------------------