Merge pull request #70 from waweic/master

Added an option to reverse the timeline
This commit is contained in:
Ivan Habunek 2018-07-28 11:13:06 +02:00 committed by GitHub
commit 881872eb04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -24,6 +24,9 @@ def timeline(app, user, args):
else:
items = api.timeline_home(app, user)
if args.reverse:
items = reversed(items)
print_timeline(items)

View File

@ -156,6 +156,11 @@ READ_COMMANDS = [
"default": False,
"help": "Show only statuses from local instance (public and tag timelines only).",
}),
(["-r", "--reverse"], {
"action": "store_true",
"default": False,
"help": "Reverse the order of the shown timeline (to new posts at the bottom)",
}),
],
require_auth=True,
),