public void ShowNotification(Feed feed) { /*if (Config.ShowNotifications) { var not = new Notify.Notification("New feed items", "Feed \""+feed.name+"\" has new unread items.", "internet-news-reader", null); not.set_urgency(Notify.Urgency.NORMAL); not.show(); }*/ }
private void OnFeedAdded(object obj, AddedEventArgs args) { Feed feed = new Feed(args.Uri); if ( feed.Tags.Contains(SetTag) ) { AddNewFeed(new Feed(args.Uri)); } ShowAll(); }