Skip to content

Commit a8d6ad3

Browse files
committed
Update appdata.xml
1 parent c9a2e3c commit a8d6ad3

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

data/com.github.allen-b1.news.appdata.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
<metadata_license>CC0</metadata_license>
66
<project_license>GPL-3.0+</project_license>
77
<name>News</name>
8-
<summary>Read RSS feeds</summary>
8+
<summary>Read Atom and RSS feeds</summary>
99
<developer_name>Allen B</developer_name>
1010
<screenshots>
1111
<screenshot type="default">
1212
<image>https://raw.githubusercontent.com/Allen-B1/news/master/screenshot.png</image>
1313
</screenshot>
1414
</screenshots>
1515
<description>
16-
<p>Read the contents of RSS feeds.</p>
17-
<p>Supports RSS 2.0 only</p>
16+
<p>Read the contents of Atom and RSS feeds.</p>
17+
<p>Supports RSS 2.0 and Atom only</p>
1818
</description>
1919
<url type="homepage">https://github.com/allen-b1/news</url>
2020
<url type="bugtracker">https://github.com/allen-b1/news/issues/labels/bug</url>
@@ -25,13 +25,15 @@
2525
</custom>
2626

2727
<releases>
28-
<release version="1.3" date="?">
28+
<release version="1.3" date="2019-04-28">
2929
<description>
3030
<ul>
3131
<li>Allowed opening a feed from the command line</li>
3232
<li>Added the ability to view feed information</li>
3333
<li>Switched to relative date time strings (e.g. now, 5m ago)</li>
3434
<li>Toasts will show up instead of info bars</li>
35+
<li>Sources will stay after closing and reopening the app</li>
36+
<li>Added support for Atom feeds</li>
3537
</ul>
3638
</description>
3739
</release>

src/NewsNotebook.vala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class NewsNotebook : Granite.Widgets.DynamicNotebook {
1515
construct {
1616
this.new_tab_requested.connect(() => {
1717
/* Show 'Add RSS Feed' dialog */
18-
var dialog = new Granite.MessageDialog.with_image_from_icon_name("Add RSS feed", "Enter the RSS feed url", "dialog-question", Gtk.ButtonsType.NONE);
18+
var dialog = new Granite.MessageDialog.with_image_from_icon_name("Add feed", "Enter the Atom or RSS feed url", "dialog-question", Gtk.ButtonsType.NONE);
1919

2020
dialog.add_button("Cancel", Gtk.ResponseType.CANCEL);
2121
dialog.add_button("Add", Gtk.ResponseType.OK).get_style_context().add_class(Gtk.STYLE_CLASS_SUGGESTED_ACTION);
@@ -42,7 +42,7 @@ class NewsNotebook : Granite.Widgets.DynamicNotebook {
4242
add_feed(feed);
4343
this.source_add(feed.source);
4444
} catch(Error err) {
45-
this.error(new NewsNotebookError.ADD_FEED_ERROR("Could not fetch RSS feed"));
45+
this.error(new NewsNotebookError.ADD_FEED_ERROR("Could not fetch feed"));
4646
}
4747
break;
4848
case Gtk.ResponseType.CANCEL:

0 commit comments

Comments
 (0)