diff --git a/readme.md b/readme.md index 21799e8..dacd2f4 100644 --- a/readme.md +++ b/readme.md @@ -1,11 +1,15 @@ RSSCAR ====== -### *Really Simple Syndication Crawler-Aided Reader* +### *RSS Crawler-Aided Reader* RSSCAR is a new kind of RSS reader. [RSS is fantastic](https://gabe.rocks/tech/rss-love) but a huge problem is that it lacks *discovery*. With relatively simple client-side crawling, it is trivial to find additional publications related to your own interests. In short: **RSSCAR is to be the RSS reader built for the modern independent web!** +### Posts: +- [Trying out iced](https://gabe.rocks/tech/trying-out-iced/) +- [Help me build the best desktop RSS client!](https://gabe.rocks/tech/rss-help) + This project began as my own way to learn [Rust](https://www.rust-lang.org/) & [iced](https://iced.rs) by building a great RSS desktop client. This Project is FAR from complete ⏳ @@ -15,7 +19,3 @@ It's got a long way to go, but progress is ongoing. Currently The best way to stay up to date on this would be to follow my [tech only feed](https://gabe.rocks/tech/index.xml) - -### Posts: -- [Trying out iced](https://gabe.rocks/tech/trying-out-iced/) - diff --git a/src/widgets.rs b/src/widgets.rs index 80a98af..5e88422 100644 --- a/src/widgets.rs +++ b/src/widgets.rs @@ -63,7 +63,7 @@ pub fn content_area(content: &Vec) -> iced::widget::Container } } container( - Column::with_children(children) + Column::with_children(children).spacing(5) ) }