<feed xmlns='http://www.w3.org/2005/Atom'>
<title>atril/backend/pdf, branch master</title>
<subtitle>MATE document viewer</subtitle>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/atril/'/>
<entry>
<title>pdf: adding annotation squiggly.</title>
<updated>2026-05-19T20:21:12+00:00</updated>
<author>
<name>Victor Kareh</name>
<email>vkareh@redhat.com</email>
</author>
<published>2026-05-13T19:43:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/atril/commit/?id=02c9b1bbaca9a2938068d5919cae637b321ac842'/>
<id>02c9b1bbaca9a2938068d5919cae637b321ac842</id>
<content type='text'>
This adds support to the pdf backend for loading and saving
text markup annotations of subtype Squiggly.

Backported from https://gitlab.gnome.org/GNOME/evince/-/commit/5702e401
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds support to the pdf backend for loading and saving
text markup annotations of subtype Squiggly.

Backported from https://gitlab.gnome.org/GNOME/evince/-/commit/5702e401
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for reading underline text markup annotations</title>
<updated>2026-05-19T20:21:12+00:00</updated>
<author>
<name>Victor Kareh</name>
<email>vkareh@redhat.com</email>
</author>
<published>2026-05-13T19:24:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/atril/commit/?id=7fd4984cce7e900224cc49b94c7d277341bf4289'/>
<id>7fd4984cce7e900224cc49b94c7d277341bf4289</id>
<content type='text'>
Backported from https://gitlab.gnome.org/GNOME/evince/-/commit/4bd88ed0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Backported from https://gitlab.gnome.org/GNOME/evince/-/commit/4bd88ed0
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for reading strike out text markup annotations</title>
<updated>2026-05-19T20:21:12+00:00</updated>
<author>
<name>Victor Kareh</name>
<email>vkareh@redhat.com</email>
</author>
<published>2026-05-13T18:50:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/atril/commit/?id=e25add583912902b179a16431c8feeeb1e09babc'/>
<id>e25add583912902b179a16431c8feeeb1e09babc</id>
<content type='text'>
Backported from https://gitlab.gnome.org/GNOME/evince/-/commit/9b71d67e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Backported from https://gitlab.gnome.org/GNOME/evince/-/commit/9b71d67e
</pre>
</div>
</content>
</entry>
<entry>
<title>pdf: Create highlight annotations for existing annotations in document</title>
<updated>2026-05-19T20:21:12+00:00</updated>
<author>
<name>Victor Kareh</name>
<email>vkareh@redhat.com</email>
</author>
<published>2026-05-13T18:18:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/atril/commit/?id=42b326d629b18a582e2115bbf40d5488c73c8541'/>
<id>42b326d629b18a582e2115bbf40d5488c73c8541</id>
<content type='text'>
Implementing the type and a method to create
highlight annotations.

Backported from https://gitlab.gnome.org/GNOME/evince/-/commit/53c349e8
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Implementing the type and a method to create
highlight annotations.

Backported from https://gitlab.gnome.org/GNOME/evince/-/commit/53c349e8
</pre>
</div>
</content>
</entry>
<entry>
<title>pdf: Always use poppler_document_save to avoid data loss</title>
<updated>2026-03-11T18:58:19+00:00</updated>
<author>
<name>Germán Poo-Caamaño</name>
<email>gpoo@gnome.org</email>
</author>
<published>2017-10-03T11:59:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/atril/commit/?id=d83ac7788e1ee6375a646269e9e83019164aef81'/>
<id>d83ac7788e1ee6375a646269e9e83019164aef81</id>
<content type='text'>
We used to use two methods to save a document: poppler_document_save
and poppler_document_save_a_copy. The latter only saves a copy of
the original document, discarding any change done (e.g. forms and
annotations). However, after a document has been modified and saved,
if there is no new change and the user saves the document, it will
discard even the previous saved changes to preserve a copy of the
original document.

By only using poppler_document_save to save the content of the
current document opened in Atril, to avoid data loss made between
saves.

https://bugzilla.gnome.org/show_bug.cgi?id=770012

Adapted from the original commit at:
https://gitlab.gnome.org/GNOME/evince/-/commit/26dc2f52

Co-authored-by: Eric Park &lt;me@ericswpark.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We used to use two methods to save a document: poppler_document_save
and poppler_document_save_a_copy. The latter only saves a copy of
the original document, discarding any change done (e.g. forms and
annotations). However, after a document has been modified and saved,
if there is no new change and the user saves the document, it will
discard even the previous saved changes to preserve a copy of the
original document.

By only using poppler_document_save to save the content of the
current document opened in Atril, to avoid data loss made between
saves.

https://bugzilla.gnome.org/show_bug.cgi?id=770012

Adapted from the original commit at:
https://gitlab.gnome.org/GNOME/evince/-/commit/26dc2f52

Co-authored-by: Eric Park &lt;me@ericswpark.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>fix: rename all backend files</title>
<updated>2025-04-04T22:19:13+00:00</updated>
<author>
<name>Oz Tiram</name>
<email>oz.tiram@gmail.com</email>
</author>
<published>2025-04-04T14:00:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/atril/commit/?id=e2469c07f6842bd8b57768f32ddeb55c260c1e7b'/>
<id>e2469c07f6842bd8b57768f32ddeb55c260c1e7b</id>
<content type='text'>
Signed-off-by: Oz Tiram &lt;oz.tiram@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Oz Tiram &lt;oz.tiram@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: remove unused intltool</title>
<updated>2025-04-04T22:19:13+00:00</updated>
<author>
<name>Oz Tiram</name>
<email>oz.tiram@gmail.com</email>
</author>
<published>2025-04-01T07:46:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/atril/commit/?id=2085c6c8e734ec64081b08be6df13b1ebdf6adb8'/>
<id>2085c6c8e734ec64081b08be6df13b1ebdf6adb8</id>
<content type='text'>
Signed-off-by: Oz Tiram &lt;oz.tiram@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Oz Tiram &lt;oz.tiram@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Initial support for meson</title>
<updated>2025-04-04T22:19:13+00:00</updated>
<author>
<name>Oz Tiram</name>
<email>oz.tiram@gmail.com</email>
</author>
<published>2025-03-30T13:20:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/atril/commit/?id=b1f21edcec82c25cbd6b59b521a841f86fb1f327'/>
<id>b1f21edcec82c25cbd6b59b521a841f86fb1f327</id>
<content type='text'>
Mostly copy and paste from linuxmint/xreader

Signed-off-by: Oz Tiram &lt;oz.tiram@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Mostly copy and paste from linuxmint/xreader

Signed-off-by: Oz Tiram &lt;oz.tiram@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Use a blank line at most</title>
<updated>2021-11-20T17:31:11+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2021-10-27T15:30:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/atril/commit/?id=816d2dc8226f8d271aa1a6cd30549614769d5267'/>
<id>816d2dc8226f8d271aa1a6cd30549614769d5267</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>build: allow users to disable gettext support (--disable-nls)</title>
<updated>2021-02-10T22:58:25+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2021-02-08T12:36:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/atril/commit/?id=66de6ed56647df275f2844eb6106349932991579'/>
<id>66de6ed56647df275f2844eb6106349932991579</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
