Skip to content

Commit

Permalink
2.1.0 - Finalize
Browse files Browse the repository at this point in the history
  • Loading branch information
Lains committed Jan 15, 2020
1 parent 494598a commit 7c3f5d8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions data/com.github.lainsce.quilter.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,15 @@
<content_attribute id="money-gambling">none</content_attribute>
</content_rating>
<releases>
<release version="2.1.0" date="2020-01-17">
<description>
<p>Release: Beautiful Backend</p>
<ul>
<li>Fixed: Minor backend port</li>
<li>Added: Translations</li>
</ul>
</description>
</release>
<release version="2.0.6" date="2020-01-10">
<description>
<p>Release: Fixes Galore</p>
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.quilter', ['vala', 'c'],
version: '2.0.6'
version: '2.1.0'
)

# Import main lib files
Expand Down
2 changes: 1 addition & 1 deletion src/Widgets/SourceView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ namespace Quilter.Widgets {

public static EditView get_instance () {
if (instance == null) {
instance = new Widgets.EditView (Quilter.Application.win);
instance = new Widgets.EditView (Application.win);
}

return instance;
Expand Down
2 changes: 1 addition & 1 deletion src/Widgets/WebView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace Quilter.Widgets {

public static Preview get_instance () {
if (instance == null) {
instance = new Widgets.Preview (Quilter.Application.win, Quilter.Application.win.edit_view_content.buffer);
instance = new Widgets.Preview (Application.win, Application.win.edit_view_content.buffer);
}

return instance;
Expand Down

0 comments on commit 7c3f5d8

Please sign in to comment.