Skip to content

Commit

Permalink
version 7
Browse files Browse the repository at this point in the history
  • Loading branch information
tontof committed Apr 18, 2013
1 parent 884dba6 commit c13cfb5
Show file tree
Hide file tree
Showing 4 changed files with 2,469 additions and 560 deletions.
7 changes: 6 additions & 1 deletion README.md
@@ -1,4 +1,4 @@
kriss_feed (version 6)
kriss_feed (version 7)
======================

A simple and smart (or stupid) feed reader.
Expand Down Expand Up @@ -53,6 +53,11 @@ Features
* security is increased
* more functionnalities (thanks to your feedback)

* version 7
* starred items
* order list of feeds
* list of feeds are updated with javascript

Licence
=======
kriss_feed simple and smart (or stupid) feed reader
Expand Down
3,018 changes: 2,461 additions & 557 deletions index.php

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/index.php
Expand Up @@ -18,7 +18,7 @@
// Updates check frequency. 86400 seconds = 24 hours
define('UPDATECHECK_INTERVAL', 86400);

define('FEED_VERSION', 6);
define('FEED_VERSION', 7);

define('PHPPREFIX', '<?php /* '); // Prefix to encapsulate data in php code.
define('PHPSUFFIX', ' */ ?>'); // Suffix to encapsulate data in php code.
Expand Down
2 changes: 1 addition & 1 deletion src/kriss_feed.php
Expand Up @@ -18,7 +18,7 @@
// Updates check frequency. 86400 seconds = 24 hours
define('UPDATECHECK_INTERVAL', 86400);

define('FEED_VERSION', 6);
define('FEED_VERSION', 7);

define('PHPPREFIX', '<?php /* '); // Prefix to encapsulate data in php code.
define('PHPSUFFIX', ' */ ?>'); // Suffix to encapsulate data in php code.
Expand Down

0 comments on commit c13cfb5

Please sign in to comment.