Skip to content

Commit

Permalink
1.2.1 - New release
Browse files Browse the repository at this point in the history
  • Loading branch information
Lains committed Jul 23, 2019
1 parent 80d9e01 commit 7e26530
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
15 changes: 13 additions & 2 deletions data/com.github.lainsce.dot-matrix.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<li>Quit anytime with the shortcut Ctrl + Q</li>
<li>Undo with the shortcut Ctrl + Z</li>
<li>Change line thickness by +5 or -5 with the respective shortcuts Ctrl + ) and Ctrl + (</li>
<li>Change the UI colors by using the special Ecosystem SVGs</li>
<li>Change the UI colors by using the special Ecosystem SVGs (https://bit.ly/2TNKA5O for info)</li>
</ul>
</description>
<provides>
Expand Down Expand Up @@ -56,7 +56,18 @@
<content_attribute id="money-gambling">none</content_attribute>
</content_rating>
<releases>
<release version="1.2.0" date="2019-03-22">
<release version="1.2.1" date="2019-07-25">
<description>
<p>Release: Graph It Right</p>
<ul>
<li>Fixed: Filling shapes correctly,
squared linecap is now actually square,
and antialias is now on by default</li>
<li>Updated translations</li>
</ul>
</description>
</release>
<release version="1.2.0" date="2019-03-22">
<description>
<p>Release: The Void</p>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Name our project
project('com.github.lainsce.dot-matrix', ['vala', 'c'],
version: '1.2.0'
version: '1.2.1'
)

# Import main lib files
Expand Down
5 changes: 3 additions & 2 deletions src/Widgets/UI.vala
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ namespace DotMatrix {
});

da.draw.connect ((c) => {
c.set_antialias (Cairo.Antialias.SUBPIXEL);
draw_grid (c);
find_mouse (c);
draws (c);
Expand Down Expand Up @@ -444,7 +445,7 @@ namespace DotMatrix {
draw_path (c, path);
if (is_closed == true) {
c.close_path ();
c.fill_preserve ();
c.fill ();
c.stroke ();
} else if (is_closed == false) {
c.stroke ();
Expand Down Expand Up @@ -533,7 +534,7 @@ namespace DotMatrix {
public void set_linecap (Cairo.Context c) {
if (change_linecap == true) {
c.set_line_cap (Cairo.LineCap.SQUARE);
c.set_line_join (Cairo.LineJoin.MITER);
c.set_line_join (Cairo.LineJoin.BEVEL);
} else if (change_linecap == false) {
c.set_line_cap (Cairo.LineCap.ROUND);
c.set_line_join (Cairo.LineJoin.ROUND);
Expand Down

0 comments on commit 7e26530

Please sign in to comment.