Mathias Kresin
360fc9076e
improve sub navigation on config page
...
Don't hide the active element, it annoying to use the navigation if the
menu items changing there position with every click. Indicate the active
menu item instead, similar to the header navigation.
May I've worked to long with windows systems, but help and about have to
be the last menu items :-). I've reorderd the menu items to what I think
user need more often.
A sub-navigation should not change its parent heading. Changed that as
well.
2015-01-13 22:50:59 +01:00
Frederic Guillot
6a1515c0cc
Fix english typo
2015-01-12 18:07:09 -05:00
Frederic Guillot
0da3a8dfa3
Fix bug proxy (bad url encoding) + update depencies
2015-01-06 19:08:10 -05:00
Mathias Kresin
71275eac2c
display & update the number of unread items on every page with an "unread items" menu
2015-01-04 18:48:01 +01:00
Mathias Kresin
f3f0881758
Move token regeneration to the advanced config section
...
And make clear which services get a new token.
2015-01-03 23:43:49 +01:00
Mathias Kresin
b4a1d7782c
Fix config page after invalid values
2015-01-03 23:17:13 +01:00
Frédéric Guillot
c43d9dd773
Fix a bug for image proxy and update dependencies
2014-12-29 16:52:36 -05:00
Frédéric Guillot
3f5cbcb3c9
Fix broken bookmarks feed
2014-12-26 10:43:59 -05:00
Frédéric Guillot
feb25c7552
Add favicons on the feeds page
2014-12-24 18:12:41 -05:00
Frédéric Guillot
c1d74b8332
Add favicon support
2014-12-24 17:54:27 -05:00
Frédéric Guillot
7d4d4e0193
Add image proxy to avoid https mixed content warnings
2014-12-24 15:58:24 -05:00
Frédéric Guillot
b2e3116350
Add Instapaper support
2014-12-24 13:50:20 -05:00
Frédéric Guillot
635e3bb813
Add Pinboard bookmark sync
2014-12-24 10:47:24 -05:00
Frédéric Guillot
4313909052
Add option to flush all unread items after X days, default 45 days (avoid very large database)
2014-12-15 20:38:35 -05:00
Frédéric Guillot
5e0e079afa
Add refresh link to the feed page items
2014-12-10 21:26:07 -05:00
Frédéric Guillot
04749a4aba
Replace mark as read link by an icon
2014-12-10 21:12:42 -05:00
Mathias Kresin
87deca2c54
Fix PHP Notice: Undefined variable: menu
2014-12-10 16:51:00 +01:00
Frédéric Guillot
fa5bda49db
Add a database page
2014-11-18 19:16:14 -05:00
Frédéric Guillot
e9685cf6d5
Check if the session username and database username are the same
2014-11-18 19:00:53 -05:00
Frédéric Guillot
d17b418328
Add confirmation box for auto-update
2014-11-08 10:07:24 -05:00
Frédéric Guillot
e5947db7f1
Add CSRF protections
2014-11-07 21:44:20 -05:00
Frédéric Guillot
f4efaadad1
Remove Google auth (openid is deprecated) and Persona auth (useless)
2014-11-07 20:53:50 -05:00
Frédéric Guillot
1ac40097ed
Split settings page into mutliple pages
2014-11-07 20:37:12 -05:00
Frédéric Guillot
5801258ace
Add Fever API support
2014-10-29 21:28:23 -04:00
Frédéric Guillot
53b94d8f7b
Add option to force RTL mode per feed and improve feed modification
2014-10-19 19:14:33 -04:00
Frédéric Guillot
e1b22f2d35
Redirect to the feed page after adding a subscription
2014-10-19 09:52:59 -04:00
Frédéric Guillot
8d93fbc48c
Remove items via ajax requests (merge pull-request #227 )
2014-07-26 08:01:25 -04:00
silvus
655e8fda68
Add option to select display mode on lists (summaries or full contents)
2014-05-29 16:57:23 +02:00
Frédéric Guillot
3e1229a4d1
Add token for the bookmarklet
2014-05-28 16:44:25 -04:00
Frédéric Guillot
7e553f72fd
Add RememberMe authentication
2014-05-26 20:47:40 -04:00
Frédéric Guillot
3840a87128
Update to the last version of PicoFeed
2014-05-20 14:20:27 -04:00
Frédéric Guillot
04d0e76d8a
Improve behaviour when multiple databases are disabled
2014-04-15 18:31:59 -04:00
Frédéric Guillot
eab942537f
Add support for multiple users/databases
2014-04-05 20:24:13 -04:00
Frédéric Guillot
c1221de62c
Add Miniflux auto-update feature
2014-03-30 15:59:26 -04:00
Frédéric Guillot
400b4272b0
Items can be bookmarked only if they have the status read or unread
2014-03-29 21:03:05 -04:00
Frédéric Guillot
b74b8dd784
Remove PicoTools
2014-03-16 21:56:43 -04:00
Frédéric Guillot
3bc7f019c5
Add timezone configuration option
2014-02-25 19:03:46 -05:00
Frédéric Guillot
754dcdd274
Improve pull-request for unread count for each feed
2014-02-22 19:45:02 -05:00
Philip Walden
8422e62abc
Fulfills enhnacement request fguillot/miniflux #155
...
Inserts a (unread/total)" items count in front of each subcription
on the feeds page.
models/feed.php adds two functions: get_feed_unread_counts(), get_all_w_counts().
get_feed_unread_counts - returns either an array of (unread/total) counts indexed
by feed id or a singl (unread/total) for a specific id.
get_all_w_counts() returns the same as get_all() but appends items_unread and
items_total columns.
controller/feed.php modifies Router\post_action('refresh-feed',function() to
retrun the (unread/total) count in the retruned ajax json array.
Router\get_action('feeds',function() was modified to call get_all_w_counts().
templates/feeds.php was modified to insert the (unread/total) count into the
span id="loading-feed-" such that is can be updated after a refresh.
assets/js/feed.js was modified to to have the Update and hideRefreshIcon
update the returned (unread/total) amounts in the "loading-feed" span.
2014-02-22 11:00:49 -08:00
Frédéric Guillot
49583f381f
Improve files organization
2014-02-08 14:13:14 -05:00
Frédéric Guillot
4a17f614fe
Improve mobile layout
2014-02-04 21:47:59 -05:00
Frédéric Guillot
9a021ba43e
Add an option to choose where to be redirected when there is nothing to read
2013-12-23 13:33:16 -05:00
Frédéric Guillot
7648191239
Fix Mozilla Persona login
2013-12-22 21:43:29 -05:00
Frédéric Guillot
387600ca10
Add autoflush value 'immediately' and improve gitignore
2013-12-22 21:25:54 -05:00
Frédéric Guillot
4fb68b9b80
Split models and controllers in different files
2013-12-22 20:55:53 -05:00