Skip to content

Releases: fagu/sauklaue

v1.0.6

25 May 12:09
Compare
Choose a tag to compare

Fixes a crash when unlinking views if the document is empty.

v1.0.5

21 Oct 21:39
Compare
Choose a tag to compare

Fix a build failure

v1.0.4: Use a fresh context for each pdf output page

19 Mar 14:53
Compare
Choose a tag to compare

Fix: When exporting PDF files, if page A comes before B, page B was clipped to the rectangle of page A.

v1.0.3: Fix antialiasing problems when drawing partial strokes

18 Feb 13:19
Compare
Choose a tag to compare
When a line segment is appended to the current stroke, we used
to just draw the new line segment on top of the previous picture.
Due to antialiasing, this is gives a different result than drawing
the entire path at the same time: For example, corners of the path
are drawn twice (and therefore twice as dark) with our method.

To solve this issue and maintain reasonable efficiency, we keep two
pictures for each layer: The first picture (A) contains only the strokes
that have been finished. The second picture (B) also contains the stroke
that is currently being drawn. When a line segment is added, we reset
the contents of (B) inside the bounding box of the line segment to the
corresponding contents of (A). We then draw the entire current stroke
on (B), clipped to this bounding box.

v1.0.2

24 Jan 14:40
Compare
Choose a tag to compare
Update MIME and desktop database

v1.0.1

23 Jan 16:10
b7f65c2
Compare
Choose a tag to compare
Update cmake.yml

v1.0.0

14 Jan 23:33
Compare
Choose a tag to compare
Update README.md