From 580ff1c276a54962ba73fb6c81f993a8e06e7e39 Mon Sep 17 00:00:00 2001 From: martinrotter Date: Sun, 15 Dec 2013 16:29:59 +0100 Subject: [PATCH 01/14] Update README --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index 1f5ce6362..afc4b0821 100644 --- a/README +++ b/README @@ -1 +1 @@ -Welcome to RSS Guard source code. +RSS Guard is simple (yet powerful) feed reader. It deals with all generally used feed formats, including RSS/RDF and ATOM. RSS Guard is developed on top of the mighty [Qt framework](http://qt-project.org/). From 1f523b598934ffafdf6e724d676d8cc6de317f83 Mon Sep 17 00:00:00 2001 From: martinrotter Date: Sun, 15 Dec 2013 16:31:50 +0100 Subject: [PATCH 02/14] Update README --- README | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README b/README index afc4b0821..7204c70eb 100644 --- a/README +++ b/README @@ -1 +1,4 @@ -RSS Guard is simple (yet powerful) feed reader. It deals with all generally used feed formats, including RSS/RDF and ATOM. RSS Guard is developed on top of the mighty [Qt framework](http://qt-project.org/). +RSS Guard is simple (yet powerful) feed reader. It deals with all generally used feed formats, including RSS/RDF and ATOM. RSS Guard is developed on top of the mighty [Qt framework][qt-framework]. + + +[qt-framework]: http://qt-project.org From c4d604865a91f243a0556f826edd757d8832d4af Mon Sep 17 00:00:00 2001 From: martinrotter Date: Sun, 15 Dec 2013 16:33:13 +0100 Subject: [PATCH 03/14] Update README --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index 7204c70eb..82a914a51 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ RSS Guard is simple (yet powerful) feed reader. It deals with all generally used feed formats, including RSS/RDF and ATOM. RSS Guard is developed on top of the mighty [Qt framework][qt-framework]. - +[Explore projects to help](http://24pullrequests.com/projects) [qt-framework]: http://qt-project.org From 839e269683014c6321d0cdf910e0e2e7d19c75b3 Mon Sep 17 00:00:00 2001 From: martinrotter Date: Sun, 15 Dec 2013 16:34:18 +0100 Subject: [PATCH 04/14] Update README --- README | 108 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 105 insertions(+), 3 deletions(-) diff --git a/README b/README index 82a914a51..668e4048f 100644 --- a/README +++ b/README @@ -1,4 +1,106 @@ -RSS Guard is simple (yet powerful) feed reader. It deals with all generally used feed formats, including RSS/RDF and ATOM. RSS Guard is developed on top of the mighty [Qt framework][qt-framework]. -[Explore projects to help](http://24pullrequests.com/projects) +# 24 Pull Requests -[qt-framework]: http://qt-project.org +[![Build Status](https://secure.travis-ci.org/andrew/24pullrequests.png?branch=master)](https://travis-ci.org/andrew/24pullrequests) [![Dependency Status](https://gemnasium.com/andrew/24pullrequests.png)](https://gemnasium.com/andrew/24pullrequests) [![Code Climate](https://codeclimate.com/github/andrew/24pullrequests.png)](https://codeclimate.com/github/andrew/24pullrequests) [![Coverage Status](https://coveralls.io/repos/andrew/24pullrequests/badge.png)](https://coveralls.io/r/andrew/24pullrequests) + +“Giving back little gifts of code” + +24 Pull Requests is a yearly initiative to encourage developers around the world to send a pull request every day in December up to Christmas. + +This is the site to help promote the project, highlighting why, how and where to send your pull requests. + +## Get started! + +* [Explore projects to help](http://24pullrequests.com/projects) +* [Submit your project to get help](http://24pullrequests.com/projects/new) + +## Authors + +* Andrew Nesbitt +* Chris Lowder +* Baris Balic + +## Development + +Source hosted at [GitHub](http://github.com/andrew/24pullrequests). +Report issues/feature requests on [GitHub Issues](http://github.com/andrew/24pullrequests/issues). Follow us on Twitter [@24pullrequests](https://twitter.com/24pullrequests). + +### Getting Started + +New to Ruby? No worries! + +First things first, you'll need to install Ruby 2.0. I recommend using the excellent [rbenv](https://github.com/sstephenson/rbenv), +and [ruby-build](https://github.com/sstephenson/ruby-build) + +```bash +rbenv install 2.0.0-p353 +rbenv global 2.0.0-p353 +``` + +Next, you'll need to make sure that you have postgres installed. This can be +done easily using [Homebrew](http://mxcl.github.com/homebrew/) or by using [http://postgresapp.com](http://postgresapp.com). + +```bash +brew install postgres phantomjs +``` + +Please see these [further instructions for installing postgres via homebrew](http://www.mikeball.us/blog/setting-up-postgres-with-homebrew/). + +Now, let's install the gems from the `Gemfile` ("Gems" are synonymous with libraries in other +languages). + +```bash +gem install bundler && rbenv rehash +bundle install +``` + +Once all the gems are installed, we'll need to create the databases and +tables. Rails makes this easy through the use of "Rake" tasks. + +```bash +bundle exec rake db:create:all +bundle exec rake db:migrate +``` + +And we can also add some sample data with the **seed** task + +```bash +bundle exec rake db:seed +``` + +If you are working on anything related to the email-generation code, you can use [mailcatcher](https://github.com/sj26/mailcatcher) +Since we use bundler, please read the [following](https://github.com/sj26/mailcatcher#bundler) before using mailcatcher + +Almost there! Now all we have to do is start up the Rails server and point +our browser to + +```bash +bundle exec rails s +``` + +### Tests + +Standard RSpec/Capybara tests are used for testing the application. The +tests can be run with `bundle exec rake`. + +Mocha/Konacha is used for unit testing any JavaScript. JavaScript specs +should be placed in `spec/javascripts`. Run the JavaScript specs with +`bundle exec rake konacha:serve`. + +If you are using the omniauth environment variables +(GITHUB_KEY, GITHUB_SECRET, TWITTER_KEY, TWITTER_SECRET) +for **another** project, you will need to either + * unset them before running your tests or + * reset the omniauth environment variables after creating a Github (omniauth) application for this project + +as it will use it to learn more about the developers and for pull requests. + +### Note on Patches/Pull Requests + + * Fork the project. + * Make your feature addition or bug fix. + * Add tests for it. This is important so I don't break it in a future version unintentionally. + * Send a pull request. Bonus points for topic branches. + +## Copyright + +Copyright (c) 2013 Andrew Nesbitt. See [LICENSE](https://github.com/andrew/24pullrequests/blob/master/LICENSE) for details. From ff198fa6c623d454bcf1fa154e2450e2b6dc66cb Mon Sep 17 00:00:00 2001 From: martinrotter Date: Sun, 15 Dec 2013 16:34:35 +0100 Subject: [PATCH 05/14] Delete README --- README | 106 --------------------------------------------------------- 1 file changed, 106 deletions(-) delete mode 100644 README diff --git a/README b/README deleted file mode 100644 index 668e4048f..000000000 --- a/README +++ /dev/null @@ -1,106 +0,0 @@ -# 24 Pull Requests - -[![Build Status](https://secure.travis-ci.org/andrew/24pullrequests.png?branch=master)](https://travis-ci.org/andrew/24pullrequests) [![Dependency Status](https://gemnasium.com/andrew/24pullrequests.png)](https://gemnasium.com/andrew/24pullrequests) [![Code Climate](https://codeclimate.com/github/andrew/24pullrequests.png)](https://codeclimate.com/github/andrew/24pullrequests) [![Coverage Status](https://coveralls.io/repos/andrew/24pullrequests/badge.png)](https://coveralls.io/r/andrew/24pullrequests) - -“Giving back little gifts of code” - -24 Pull Requests is a yearly initiative to encourage developers around the world to send a pull request every day in December up to Christmas. - -This is the site to help promote the project, highlighting why, how and where to send your pull requests. - -## Get started! - -* [Explore projects to help](http://24pullrequests.com/projects) -* [Submit your project to get help](http://24pullrequests.com/projects/new) - -## Authors - -* Andrew Nesbitt -* Chris Lowder -* Baris Balic - -## Development - -Source hosted at [GitHub](http://github.com/andrew/24pullrequests). -Report issues/feature requests on [GitHub Issues](http://github.com/andrew/24pullrequests/issues). Follow us on Twitter [@24pullrequests](https://twitter.com/24pullrequests). - -### Getting Started - -New to Ruby? No worries! - -First things first, you'll need to install Ruby 2.0. I recommend using the excellent [rbenv](https://github.com/sstephenson/rbenv), -and [ruby-build](https://github.com/sstephenson/ruby-build) - -```bash -rbenv install 2.0.0-p353 -rbenv global 2.0.0-p353 -``` - -Next, you'll need to make sure that you have postgres installed. This can be -done easily using [Homebrew](http://mxcl.github.com/homebrew/) or by using [http://postgresapp.com](http://postgresapp.com). - -```bash -brew install postgres phantomjs -``` - -Please see these [further instructions for installing postgres via homebrew](http://www.mikeball.us/blog/setting-up-postgres-with-homebrew/). - -Now, let's install the gems from the `Gemfile` ("Gems" are synonymous with libraries in other -languages). - -```bash -gem install bundler && rbenv rehash -bundle install -``` - -Once all the gems are installed, we'll need to create the databases and -tables. Rails makes this easy through the use of "Rake" tasks. - -```bash -bundle exec rake db:create:all -bundle exec rake db:migrate -``` - -And we can also add some sample data with the **seed** task - -```bash -bundle exec rake db:seed -``` - -If you are working on anything related to the email-generation code, you can use [mailcatcher](https://github.com/sj26/mailcatcher) -Since we use bundler, please read the [following](https://github.com/sj26/mailcatcher#bundler) before using mailcatcher - -Almost there! Now all we have to do is start up the Rails server and point -our browser to - -```bash -bundle exec rails s -``` - -### Tests - -Standard RSpec/Capybara tests are used for testing the application. The -tests can be run with `bundle exec rake`. - -Mocha/Konacha is used for unit testing any JavaScript. JavaScript specs -should be placed in `spec/javascripts`. Run the JavaScript specs with -`bundle exec rake konacha:serve`. - -If you are using the omniauth environment variables -(GITHUB_KEY, GITHUB_SECRET, TWITTER_KEY, TWITTER_SECRET) -for **another** project, you will need to either - * unset them before running your tests or - * reset the omniauth environment variables after creating a Github (omniauth) application for this project - -as it will use it to learn more about the developers and for pull requests. - -### Note on Patches/Pull Requests - - * Fork the project. - * Make your feature addition or bug fix. - * Add tests for it. This is important so I don't break it in a future version unintentionally. - * Send a pull request. Bonus points for topic branches. - -## Copyright - -Copyright (c) 2013 Andrew Nesbitt. See [LICENSE](https://github.com/andrew/24pullrequests/blob/master/LICENSE) for details. From 4c2a872eed74043b4aa7745ff96e194d269d51cb Mon Sep 17 00:00:00 2001 From: martinrotter Date: Sun, 15 Dec 2013 16:34:54 +0100 Subject: [PATCH 06/14] Create README.md --- README.md | 106 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 000000000..668e4048f --- /dev/null +++ b/README.md @@ -0,0 +1,106 @@ +# 24 Pull Requests + +[![Build Status](https://secure.travis-ci.org/andrew/24pullrequests.png?branch=master)](https://travis-ci.org/andrew/24pullrequests) [![Dependency Status](https://gemnasium.com/andrew/24pullrequests.png)](https://gemnasium.com/andrew/24pullrequests) [![Code Climate](https://codeclimate.com/github/andrew/24pullrequests.png)](https://codeclimate.com/github/andrew/24pullrequests) [![Coverage Status](https://coveralls.io/repos/andrew/24pullrequests/badge.png)](https://coveralls.io/r/andrew/24pullrequests) + +“Giving back little gifts of code” + +24 Pull Requests is a yearly initiative to encourage developers around the world to send a pull request every day in December up to Christmas. + +This is the site to help promote the project, highlighting why, how and where to send your pull requests. + +## Get started! + +* [Explore projects to help](http://24pullrequests.com/projects) +* [Submit your project to get help](http://24pullrequests.com/projects/new) + +## Authors + +* Andrew Nesbitt +* Chris Lowder +* Baris Balic + +## Development + +Source hosted at [GitHub](http://github.com/andrew/24pullrequests). +Report issues/feature requests on [GitHub Issues](http://github.com/andrew/24pullrequests/issues). Follow us on Twitter [@24pullrequests](https://twitter.com/24pullrequests). + +### Getting Started + +New to Ruby? No worries! + +First things first, you'll need to install Ruby 2.0. I recommend using the excellent [rbenv](https://github.com/sstephenson/rbenv), +and [ruby-build](https://github.com/sstephenson/ruby-build) + +```bash +rbenv install 2.0.0-p353 +rbenv global 2.0.0-p353 +``` + +Next, you'll need to make sure that you have postgres installed. This can be +done easily using [Homebrew](http://mxcl.github.com/homebrew/) or by using [http://postgresapp.com](http://postgresapp.com). + +```bash +brew install postgres phantomjs +``` + +Please see these [further instructions for installing postgres via homebrew](http://www.mikeball.us/blog/setting-up-postgres-with-homebrew/). + +Now, let's install the gems from the `Gemfile` ("Gems" are synonymous with libraries in other +languages). + +```bash +gem install bundler && rbenv rehash +bundle install +``` + +Once all the gems are installed, we'll need to create the databases and +tables. Rails makes this easy through the use of "Rake" tasks. + +```bash +bundle exec rake db:create:all +bundle exec rake db:migrate +``` + +And we can also add some sample data with the **seed** task + +```bash +bundle exec rake db:seed +``` + +If you are working on anything related to the email-generation code, you can use [mailcatcher](https://github.com/sj26/mailcatcher) +Since we use bundler, please read the [following](https://github.com/sj26/mailcatcher#bundler) before using mailcatcher + +Almost there! Now all we have to do is start up the Rails server and point +our browser to + +```bash +bundle exec rails s +``` + +### Tests + +Standard RSpec/Capybara tests are used for testing the application. The +tests can be run with `bundle exec rake`. + +Mocha/Konacha is used for unit testing any JavaScript. JavaScript specs +should be placed in `spec/javascripts`. Run the JavaScript specs with +`bundle exec rake konacha:serve`. + +If you are using the omniauth environment variables +(GITHUB_KEY, GITHUB_SECRET, TWITTER_KEY, TWITTER_SECRET) +for **another** project, you will need to either + * unset them before running your tests or + * reset the omniauth environment variables after creating a Github (omniauth) application for this project + +as it will use it to learn more about the developers and for pull requests. + +### Note on Patches/Pull Requests + + * Fork the project. + * Make your feature addition or bug fix. + * Add tests for it. This is important so I don't break it in a future version unintentionally. + * Send a pull request. Bonus points for topic branches. + +## Copyright + +Copyright (c) 2013 Andrew Nesbitt. See [LICENSE](https://github.com/andrew/24pullrequests/blob/master/LICENSE) for details. From b66cc20f7afb221f8e4c6f3543a8efbce922fce9 Mon Sep 17 00:00:00 2001 From: martinrotter Date: Sun, 15 Dec 2013 16:37:32 +0100 Subject: [PATCH 07/14] Update README.md --- README.md | 110 +++--------------------------------------------------- 1 file changed, 6 insertions(+), 104 deletions(-) diff --git a/README.md b/README.md index 668e4048f..eb72ce0e1 100644 --- a/README.md +++ b/README.md @@ -1,106 +1,8 @@ -# 24 Pull Requests +RSS Guard +========= -[![Build Status](https://secure.travis-ci.org/andrew/24pullrequests.png?branch=master)](https://travis-ci.org/andrew/24pullrequests) [![Dependency Status](https://gemnasium.com/andrew/24pullrequests.png)](https://gemnasium.com/andrew/24pullrequests) [![Code Climate](https://codeclimate.com/github/andrew/24pullrequests.png)](https://codeclimate.com/github/andrew/24pullrequests) [![Coverage Status](https://coveralls.io/repos/andrew/24pullrequests/badge.png)](https://coveralls.io/r/andrew/24pullrequests) +RSS Guard is simple (yet powerful) feed reader. It is able to fetch the most known feed formats, including RSS/RDF ant ATOM. RSS Guard is developed on top of the [Qt library](http://qt-project.org/). RSS Guard supports these operating systems: -“Giving back little gifts of code” - -24 Pull Requests is a yearly initiative to encourage developers around the world to send a pull request every day in December up to Christmas. - -This is the site to help promote the project, highlighting why, how and where to send your pull requests. - -## Get started! - -* [Explore projects to help](http://24pullrequests.com/projects) -* [Submit your project to get help](http://24pullrequests.com/projects/new) - -## Authors - -* Andrew Nesbitt -* Chris Lowder -* Baris Balic - -## Development - -Source hosted at [GitHub](http://github.com/andrew/24pullrequests). -Report issues/feature requests on [GitHub Issues](http://github.com/andrew/24pullrequests/issues). Follow us on Twitter [@24pullrequests](https://twitter.com/24pullrequests). - -### Getting Started - -New to Ruby? No worries! - -First things first, you'll need to install Ruby 2.0. I recommend using the excellent [rbenv](https://github.com/sstephenson/rbenv), -and [ruby-build](https://github.com/sstephenson/ruby-build) - -```bash -rbenv install 2.0.0-p353 -rbenv global 2.0.0-p353 -``` - -Next, you'll need to make sure that you have postgres installed. This can be -done easily using [Homebrew](http://mxcl.github.com/homebrew/) or by using [http://postgresapp.com](http://postgresapp.com). - -```bash -brew install postgres phantomjs -``` - -Please see these [further instructions for installing postgres via homebrew](http://www.mikeball.us/blog/setting-up-postgres-with-homebrew/). - -Now, let's install the gems from the `Gemfile` ("Gems" are synonymous with libraries in other -languages). - -```bash -gem install bundler && rbenv rehash -bundle install -``` - -Once all the gems are installed, we'll need to create the databases and -tables. Rails makes this easy through the use of "Rake" tasks. - -```bash -bundle exec rake db:create:all -bundle exec rake db:migrate -``` - -And we can also add some sample data with the **seed** task - -```bash -bundle exec rake db:seed -``` - -If you are working on anything related to the email-generation code, you can use [mailcatcher](https://github.com/sj26/mailcatcher) -Since we use bundler, please read the [following](https://github.com/sj26/mailcatcher#bundler) before using mailcatcher - -Almost there! Now all we have to do is start up the Rails server and point -our browser to - -```bash -bundle exec rails s -``` - -### Tests - -Standard RSpec/Capybara tests are used for testing the application. The -tests can be run with `bundle exec rake`. - -Mocha/Konacha is used for unit testing any JavaScript. JavaScript specs -should be placed in `spec/javascripts`. Run the JavaScript specs with -`bundle exec rake konacha:serve`. - -If you are using the omniauth environment variables -(GITHUB_KEY, GITHUB_SECRET, TWITTER_KEY, TWITTER_SECRET) -for **another** project, you will need to either - * unset them before running your tests or - * reset the omniauth environment variables after creating a Github (omniauth) application for this project - -as it will use it to learn more about the developers and for pull requests. - -### Note on Patches/Pull Requests - - * Fork the project. - * Make your feature addition or bug fix. - * Add tests for it. This is important so I don't break it in a future version unintentionally. - * Send a pull request. Bonus points for topic branches. - -## Copyright - -Copyright (c) 2013 Andrew Nesbitt. See [LICENSE](https://github.com/andrew/24pullrequests/blob/master/LICENSE) for details. + * Windows XP and newer, + * GNU/Linux, + * OS/2 (eComStation). From f31325eed431c974dfec8b64e17f5a4d15ae7398 Mon Sep 17 00:00:00 2001 From: martinrotter Date: Sun, 15 Dec 2013 16:52:33 +0100 Subject: [PATCH 08/14] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eb72ce0e1..709cb57b5 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -RSS Guard +RSS Guard ![RSS Guard](https://github.com/martinrotter/rssguard/blob/master/resources/graphics/rssguard_22.png "RSS Guard") ========= RSS Guard is simple (yet powerful) feed reader. It is able to fetch the most known feed formats, including RSS/RDF ant ATOM. RSS Guard is developed on top of the [Qt library](http://qt-project.org/). RSS Guard supports these operating systems: From fdbff0d2075faf8cc35ec7f0f4fa475df87d6ac8 Mon Sep 17 00:00:00 2001 From: martinrotter Date: Sun, 15 Dec 2013 16:53:20 +0100 Subject: [PATCH 09/14] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 709cb57b5..8dd6ca42c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -RSS Guard ![RSS Guard](https://github.com/martinrotter/rssguard/blob/master/resources/graphics/rssguard_22.png "RSS Guard") +RSS Guard ![RSS Guard](https://raw.github.com/martinrotter/rssguard/master/resources/graphics/rssguard_22.png "RSS Guard") ========= RSS Guard is simple (yet powerful) feed reader. It is able to fetch the most known feed formats, including RSS/RDF ant ATOM. RSS Guard is developed on top of the [Qt library](http://qt-project.org/). RSS Guard supports these operating systems: From 98b9e263f6eed66f72c9331fec1766001990da11 Mon Sep 17 00:00:00 2001 From: martinrotter Date: Sun, 15 Dec 2013 16:55:49 +0100 Subject: [PATCH 10/14] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8dd6ca42c..e1b8b6201 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -RSS Guard ![RSS Guard](https://raw.github.com/martinrotter/rssguard/master/resources/graphics/rssguard_22.png "RSS Guard") +RSS Guard RSS Guard ========= RSS Guard is simple (yet powerful) feed reader. It is able to fetch the most known feed formats, including RSS/RDF ant ATOM. RSS Guard is developed on top of the [Qt library](http://qt-project.org/). RSS Guard supports these operating systems: From 767ebd5dde93901b9393006f39b3e49352e75407 Mon Sep 17 00:00:00 2001 From: martinrotter Date: Sun, 15 Dec 2013 17:12:04 +0100 Subject: [PATCH 11/14] Update README.md --- README.md | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e1b8b6201..4db187a31 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,25 @@ -RSS Guard RSS Guard +RSS Guard ========= RSS Guard is simple (yet powerful) feed reader. It is able to fetch the most known feed formats, including RSS/RDF ant ATOM. RSS Guard is developed on top of the [Qt library](http://qt-project.org/). RSS Guard supports these operating systems: - * Windows XP and newer, * GNU/Linux, * OS/2 (eComStation). + +RSS Guard is written in C++. It is pretty fast even with tons of messages loaded. The core features are: + * multiplatformity, + * support for all feed formats, + * simplicity, + * sweet look & feel, + * open-source development model based on GNU GPL license, version 3, + * tabbed interface, + * integrated web browser + external browser supported. + +Installation +============ +You need to compile and install RSS Guard before you can use it. Basic steps are really simple +``` +cmake -DCMAKE_BUILD_TYPE=release -DCMAKE_INSTALL_PREFIX="C:\Program Files\rssguard" -DUSE_QT_5=ON +make install +``` +This compiles and installs RSS Guard using Qt 5 on Windows machines. From fbf34dff8904de3116d5afbbec87a37cde59ab36 Mon Sep 17 00:00:00 2001 From: martinrotter Date: Sun, 15 Dec 2013 18:38:10 +0100 Subject: [PATCH 12/14] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4db187a31..0466d4fd3 100644 --- a/README.md +++ b/README.md @@ -22,4 +22,4 @@ You need to compile and install RSS Guard before you can use it. Basic steps are cmake -DCMAKE_BUILD_TYPE=release -DCMAKE_INSTALL_PREFIX="C:\Program Files\rssguard" -DUSE_QT_5=ON make install ``` -This compiles and installs RSS Guard using Qt 5 on Windows machines. +This compiles and installs RSS Guard using Qt 5 on Windows machines. For further information head to CMakeLists.txt file. From 41ba3c224f00888f5ce767f9be6d6d2542ba1483 Mon Sep 17 00:00:00 2001 From: martinrotter Date: Sun, 15 Dec 2013 18:43:27 +0100 Subject: [PATCH 13/14] Update README.md --- README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0466d4fd3..d73ce17dd 100644 --- a/README.md +++ b/README.md @@ -16,10 +16,19 @@ RSS Guard is written in C++. It is pretty fast even with tons of messages loaded * integrated web browser + external browser supported. Installation -============ +------------ You need to compile and install RSS Guard before you can use it. Basic steps are really simple ``` cmake -DCMAKE_BUILD_TYPE=release -DCMAKE_INSTALL_PREFIX="C:\Program Files\rssguard" -DUSE_QT_5=ON make install ``` -This compiles and installs RSS Guard using Qt 5 on Windows machines. For further information head to CMakeLists.txt file. +This compiles and installs RSS Guard using Qt 5 on Windows machines. For further information head to [CMakeLists.txt](https://github.com/martinrotter/rssguard/blob/master/CMakeLists.txt) file. + +Other information +----------------- + * If you want to have some feature/ehancement implemented in RSS Guard, then **file an issue request**. + * If you want to translate RSS Guard, then contact me or **file an issue request** too. + * Make sure to read the Wiki. + + +I appreciate any constructive actions. From 16aed54dd77bffbfca9ea86d17e218b419224720 Mon Sep 17 00:00:00 2001 From: martinrotter Date: Sun, 15 Dec 2013 18:52:32 +0100 Subject: [PATCH 14/14] Update README.md --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d73ce17dd..460e04cb3 100644 --- a/README.md +++ b/README.md @@ -19,13 +19,14 @@ Installation ------------ You need to compile and install RSS Guard before you can use it. Basic steps are really simple ``` -cmake -DCMAKE_BUILD_TYPE=release -DCMAKE_INSTALL_PREFIX="C:\Program Files\rssguard" -DUSE_QT_5=ON +cmake -DCMAKE_BUILD_TYPE=release -DCMAKE_INSTALL_PREFIX="C:\Program Files\rssguard" make install ``` -This compiles and installs RSS Guard using Qt 5 on Windows machines. For further information head to [CMakeLists.txt](https://github.com/martinrotter/rssguard/blob/master/CMakeLists.txt) file. +This compiles and installs RSS Guard using Qt 4 on Windows machines. Qt 5 can be used too. For further information head to [CMakeLists.txt](https://github.com/martinrotter/rssguard/blob/master/CMakeLists.txt) file. Other information ----------------- + * Binaries will be builded for Windows platform. If you want to build binaries for your platform by yourself, I can support you. **File an issue request in that case. * If you want to have some feature/ehancement implemented in RSS Guard, then **file an issue request**. * If you want to translate RSS Guard, then contact me or **file an issue request** too. * Make sure to read the Wiki.