Maxence Groine [Mon, 12 Mar 2018 14:07:28 +0000 (15:07 +0100)]
Refactor: add `add_tweetmode_parameter` function/calls
Maxence Groine [Tue, 30 Jan 2018 16:05:17 +0000 (17:05 +0100)]
Add `DISABLE_EXTENDED_TWEETS` config option to disable extended tweets support
Maxence Groine [Fri, 17 Nov 2017 08:20:21 +0000 (09:20 +0100)]
Fixed typo that broke the `quote` command
Maxence Groine [Wed, 15 Nov 2017 11:20:56 +0000 (12:20 +0100)]
Add `tweet_mode='extended'` to `search` call
Maxence Groine [Wed, 15 Nov 2017 10:36:33 +0000 (11:36 +0100)]
Added `tweet_mode='extended'` option to `t.statuses` calls
Maxence Groine [Tue, 14 Nov 2017 10:12:16 +0000 (11:12 +0100)]
Add support for extended tweets in streams & quotes
Maxence Groine [Fri, 10 Nov 2017 11:40:51 +0000 (12:40 +0100)]
Add support for extended tweets in twitter.statuses calls
Conflicts:
rainbowstream/rainbow.py
orakaro [Sun, 10 Sep 2017 05:59:07 +0000 (14:59 +0900)]
Update README.rst
Orakaro [Mon, 27 Feb 2017 02:50:54 +0000 (11:50 +0900)]
Merge pull request #218 from execjosh/improve-readability-of-readme
Improve readability of README
execjosh [Fri, 3 Feb 2017 16:46:25 +0000 (01:46 +0900)]
Improve readability of README
Orakaro [Sun, 11 Dec 2016 13:37:40 +0000 (22:37 +0900)]
Bumped version 1.3.7
Orakaro [Sun, 11 Dec 2016 13:24:02 +0000 (22:24 +0900)]
Exit While loop instead of hangup all application.
Orakaro [Sun, 11 Dec 2016 13:25:58 +0000 (22:25 +0900)]
Merge pull request #209 from Lertsenem/pr-lsratelimit
Avoid 'Rate limit exceeded' error on 'ls' command
Orakaro [Sun, 11 Dec 2016 13:04:58 +0000 (22:04 +0900)]
Merge pull request #207 from b3yond/patch-1
enabled tweet chains. see issue #163
Lertsenem [Sun, 11 Dec 2016 08:54:52 +0000 (09:54 +0100)]
Avoid 'Rate limit exceeded' error on 'ls' command
When listing friends or followers, the Twitter API sends them back to
you by batches of 20 users. If there are more, you then have to make
another request.
With more than 300 friends (or followers), this leads you to make more
than 15 calls. Unfortunately, the rate limit for this call is set at 15
calls per 15 mn.
This patch makes two modifications.
First, the users are printed out as they are received, and not once they
are all received.
Second, once you made 15 API requests, the program will wait for 16mn
before pursuing, in order to avoid the 'Rate limit exceeded' error.
This is not ideal (the stream is effectiveley in pause for 16mn...), but
still better that the old way, when, with 400 friends, all I could get
from 'ls fr' was 'Rate limit exceeded'. :)
b3yond [Thu, 8 Dec 2016 09:47:13 +0000 (10:47 +0100)]
enabled tweet chains. see issue #163
If the user wants to reply themself, their @handle is not included in the tweet string.
Orakaro [Mon, 17 Oct 2016 02:45:02 +0000 (11:45 +0900)]
Merge pull request #197 from Lertsenem/pr-modernquotes
Make use of modern-style quotes
Lertsenem [Wed, 12 Oct 2016 21:54:04 +0000 (23:54 +0200)]
Correction on comment-detection regexp
During the config parse, comments are removed using a complex regexp,
matching (among other things) '//'. A problem arises when your
configuration contains a link of some sort (such as 'http://' ...). The
regexp then consider the '//' and what follows as a comment (and your
configuration is consequently considered corrupt).
Escapinf the '/' works for a time, but it fails as soon as you use the
'config' command at runtime, because the configuration is then
rewritten.
Therefore I changed the regexp used to match comments. It's a fairly
complex regexp though, and I'm not 100% positive my change is perfect.
Fell free to review it.
Lertsenem [Wed, 12 Oct 2016 21:52:50 +0000 (23:52 +0200)]
Removing superfluous str() functions
To avoid messing up unicode non-latin characters.
This was a requested change.
Lertsenem [Sun, 9 Oct 2016 00:34:06 +0000 (02:34 +0200)]
Make use of modern-style quotes
(See issue https://github.com/DTVD/rainbowstream/issues/134)
Twitter introduced a new way of quoting, by simply putting the tweet url
as a quote. The web interface (and most clients) will then display a
preview of the quoted tweet, leaving more characters available for your
quote.
This patch change the default quote format from the old mode ("#comment
RT #owner #text") to the new one, introducing a new #tid keyword holding
the tweet id (needed to find the tweet URL). It's still possible to go
back to the old mode, by changing the QUOTE_FORMAT config parameter
back to "#comment RT @#owner #text".
vunhat_minh [Fri, 7 Oct 2016 08:57:38 +0000 (17:57 +0900)]
Bumped version 1.3.6
vunhat_minh [Fri, 7 Oct 2016 08:44:12 +0000 (17:44 +0900)]
Fix bug can not quote in Python 2, Fix #195
vunhat_minh [Wed, 31 Aug 2016 02:15:34 +0000 (11:15 +0900)]
Fix a bug of not being able to specify filter nick in Python 3
Orakaro [Wed, 31 Aug 2016 01:45:39 +0000 (10:45 +0900)]
Merge pull request #193 from ericsagnes/fix/build-setup
fix build for clean build environments
Eric Sagnes [Wed, 31 Aug 2016 00:13:37 +0000 (09:13 +0900)]
fix build for clean build environments
Orakaro [Tue, 16 Aug 2016 14:59:32 +0000 (23:59 +0900)]
Bumped version 1.3.5
Orakaro [Tue, 16 Aug 2016 14:37:19 +0000 (23:37 +0900)]
Merge pull request #123 from lnalex/master
Add Pocket support
Orakaro [Tue, 16 Aug 2016 14:22:05 +0000 (23:22 +0900)]
Merge pull request #185 from Jorick/master
base16 colorscheme
Jorick [Tue, 16 Aug 2016 13:00:53 +0000 (15:00 +0200)]
base16 colorscheme
Orakaro [Thu, 4 Aug 2016 15:01:40 +0000 (00:01 +0900)]
Bumped version
vunhat_minh [Thu, 4 Aug 2016 10:55:56 +0000 (19:55 +0900)]
New Retweet sign
Orakaro [Thu, 4 Aug 2016 10:39:02 +0000 (19:39 +0900)]
Merge pull request #165 from roskoff/master
Set configuration file ownership
Orakaro [Thu, 4 Aug 2016 10:32:01 +0000 (19:32 +0900)]
Merge pull request #170 from roskoff/preserve_line_breaks
Preserve line breaks on displayed tweets
Orakaro [Thu, 4 Aug 2016 10:18:54 +0000 (19:18 +0900)]
Merge pull request #162 from Tak-MK/patch-1
Update README.rst
Orakaro [Thu, 4 Aug 2016 10:17:55 +0000 (19:17 +0900)]
Merge pull request #176 from elopio/patch-1
Fix typo: remove extra comma
Orakaro [Thu, 4 Aug 2016 10:17:33 +0000 (19:17 +0900)]
Merge pull request #183 from koobs/patch-1
Add LICENSE.txt to MANIFEST.in
Orakaro [Thu, 4 Aug 2016 10:16:33 +0000 (19:16 +0900)]
Merge pull request #184 from koobs/patch-2
Add Python 3.5 to Trove Classifiers
Kubilay Kocak [Thu, 4 Aug 2016 08:17:49 +0000 (18:17 +1000)]
Add Python 3.5 to Trove Classifiers
README.rst currently states "can run on Python 2.7.x and 3.x ."
Python 3.5 is the latest minor release, and we like PEP20 so explicitly
add Python 3.5 to the list of Trove Classifiers so it's clear to users
(and downstream OS packagers) that 3.5 is OK.
Kubilay Kocak [Thu, 4 Aug 2016 08:12:01 +0000 (18:12 +1000)]
Add LICENSE.txt to MANIFEST.in
Add LICENSE.txt to MANIFEST.in so the file is included in the source
distribution created for releases on PyPI.
This enables downstream users and packagers to confirm the licensing of
the project, and include the license file (along with any Copyright
header the text also includes) into packages for distribution for users.
Leo Arias [Thu, 16 Jun 2016 05:19:45 +0000 (23:19 -0600)]
Fix typo: remove extra comma
Eliseo Ocampos [Wed, 30 Mar 2016 20:00:56 +0000 (16:00 -0400)]
Preserve line breaks on displayed tweets
Preserve line breaks on received tweet so we can display it with
original format
Signed-off-by: Eliseo Ocampos <roskoff@gmail.com>
Eliseo Ocampos [Thu, 10 Mar 2016 16:24:31 +0000 (13:24 -0300)]
Set configuration file ownership
Set the proper file ownership if installed with sudo. This avoids
constants error messages when trying to change/delete configuration
values (chmod: changing permissions of ...: Operation not permitted)
Signed-off-by: Eliseo Ocampos <roskoff@gmail.com>
Sergio Navarro Fernández [Tue, 1 Mar 2016 16:33:50 +0000 (17:33 +0100)]
Update README.rst
Orakaro [Thu, 11 Feb 2016 14:50:40 +0000 (23:50 +0900)]
version command fixed
vunhat_minh [Tue, 9 Feb 2016 04:53:47 +0000 (13:53 +0900)]
Fix some bugs by pull requests
Orakaro [Tue, 9 Feb 2016 02:03:42 +0000 (11:03 +0900)]
Merge pull request #148 from Azy8BsKXVko/view_own_posts
Added command to view one's own statuses
Orakaro [Tue, 9 Feb 2016 02:00:10 +0000 (11:00 +0900)]
Merge pull request #156 from Azy8BsKXVko/fix_muting
Fixed muting bug
Orakaro [Tue, 9 Feb 2016 01:58:33 +0000 (10:58 +0900)]
Merge pull request #151 from Azy8BsKXVko/new_tweet_comm_fix
Fixed issue #149, stream hangup bug
Morgan Kalvin Nrykkxyyyn [Tue, 9 Feb 2016 00:47:54 +0000 (16:47 -0800)]
Minor change added to make it more like how it was before
Morgan Kalvin Nrykkxyyyn [Tue, 9 Feb 2016 00:45:12 +0000 (16:45 -0800)]
Fixed problem
It appears that there was a typo.
Morgan Kalvin Nrykkxyyyn [Tue, 9 Feb 2016 00:34:35 +0000 (16:34 -0800)]
Possibly fixed muting problem
Morgan Kalvin Nrykkxyyyn [Tue, 5 Jan 2016 03:00:22 +0000 (19:00 -0800)]
Changed command to 'me', moved help text
Morgan Kalvin Nrykkxyyyn [Tue, 5 Jan 2016 02:46:27 +0000 (18:46 -0800)]
Fixed stream hangup bug
Morgan N [Wed, 30 Dec 2015 23:56:28 +0000 (15:56 -0800)]
Added help text
Morgan N [Wed, 30 Dec 2015 23:53:12 +0000 (15:53 -0800)]
Fixed view_my_tweets input
Morgan N [Wed, 30 Dec 2015 23:47:54 +0000 (15:47 -0800)]
Added element to listen matrix thing
Morgan N [Wed, 30 Dec 2015 23:43:52 +0000 (15:43 -0800)]
Used the wrong method :)
Morgan N [Wed, 30 Dec 2015 23:36:44 +0000 (15:36 -0800)]
Added feature to easily view one's own tweets
Orakaro [Wed, 2 Sep 2015 01:28:14 +0000 (10:28 +0900)]
Merge pull request #131 from moehabib/patch-1
fix 'localtion' typo in readme file
Mohamed [Tue, 1 Sep 2015 15:44:13 +0000 (16:44 +0100)]
fix 'loclation' typo in readme file
vunhat_minh [Thu, 6 Aug 2015 03:43:55 +0000 (12:43 +0900)]
Add config document for IMAGE_RESIZE_TO_FIT and bump to version 1.3.1
vunhat_minh [Thu, 6 Aug 2015 03:35:00 +0000 (12:35 +0900)]
Merge branch 'master' of github.com:DTVD/rainbowstream
Orakaro [Thu, 6 Aug 2015 03:34:49 +0000 (12:34 +0900)]
Merge pull request #124 from bogwonch/dynamic-image-sizes
Image resizing for tall images.
vunhat_minh [Thu, 6 Aug 2015 03:31:38 +0000 (12:31 +0900)]
Update TwitterException handling
Joseph Hallett [Tue, 4 Aug 2015 21:44:33 +0000 (22:44 +0100)]
Implemented image resizing if image won't fit in window
LnAlex [Mon, 3 Aug 2015 19:59:22 +0000 (21:59 +0200)]
Merge branch 'master' of github.com:LnAlex/rainbowstream
LnAlex [Mon, 3 Aug 2015 19:54:16 +0000 (21:54 +0200)]
Add Pocket support
- You can now link your Pocket account to add a tweet in your "read for later" list.
- By default, Pocket support is disabled. You need to enable it with : config POCKET_SUPPORT = true .
Alexandre Lion [Sat, 1 Aug 2015 12:19:40 +0000 (14:19 +0200)]
Merge pull request #1 from DTVD/master
1.3.0
vunhat_minh [Fri, 31 Jul 2015 07:43:03 +0000 (16:43 +0900)]
Display detail error when over 140 character limit
vunhat_minh [Fri, 31 Jul 2015 06:19:42 +0000 (15:19 +0900)]
autopep8
vunhat_minh [Fri, 31 Jul 2015 06:10:39 +0000 (15:10 +0900)]
Use entities/urls in open command
Orakaro [Fri, 31 Jul 2015 02:10:59 +0000 (11:10 +0900)]
Merge branch 'master' of github.com:DTVD/rainbowstream
Orakaro [Fri, 31 Jul 2015 02:10:36 +0000 (11:10 +0900)]
bumped version
Orakaro [Fri, 31 Jul 2015 01:40:53 +0000 (10:40 +0900)]
Merge pull request #101 from bketelsen/master
Add Dockerfile for self-contained runtime
Orakaro [Fri, 31 Jul 2015 01:40:33 +0000 (10:40 +0900)]
Merge pull request #100 from bradleyjones/check-tweet-length
Check tweet length
Orakaro [Fri, 31 Jul 2015 01:33:57 +0000 (10:33 +0900)]
Set -hr as default and drop the config
Orakaro [Fri, 31 Jul 2015 01:32:04 +0000 (10:32 +0900)]
Let -hr work with Python2
Orakaro [Fri, 31 Jul 2015 01:38:01 +0000 (10:38 +0900)]
Merge pull request #122 from bogwonch/better-images
Better images
Joseph Hallett [Thu, 30 Jul 2015 22:37:43 +0000 (23:37 +0100)]
Added 24bit color for pixel printing
Joseph Hallett [Thu, 30 Jul 2015 22:28:23 +0000 (23:28 +0100)]
Added flag to enable higher resolution printing
Restores the default behavior if no flags are added
Joseph Hallett [Thu, 30 Jul 2015 21:44:47 +0000 (22:44 +0100)]
Added a flag to enable 24bit color output in images.
Joseph Hallett [Thu, 30 Jul 2015 12:18:57 +0000 (13:18 +0100)]
Stopped images having their height halved when using blocky printing
Joseph Hallett [Wed, 29 Jul 2015 23:36:29 +0000 (00:36 +0100)]
doubled the resolution of images
Brian Ketelsen [Tue, 14 Apr 2015 12:55:53 +0000 (08:55 -0400)]
Add Dockerfile for self-contained runtime
Orakaro [Tue, 14 Apr 2015 08:48:16 +0000 (17:48 +0900)]
Update README.rst
Bradley Jones [Wed, 8 Apr 2015 15:46:35 +0000 (16:46 +0100)]
Check tweet length
Check the length of a tweet before sending to twitter and display error message
so user can change the message without having to wait for the twitter exception.
Orakaro [Sun, 8 Mar 2015 05:26:14 +0000 (14:26 +0900)]
Delete unused Error
Orakaro [Sun, 8 Mar 2015 05:20:14 +0000 (14:20 +0900)]
Merge pull request #90 from Tenzer/better-repall
Better nick handling in 'repall'
Jeppe Toustrup [Wed, 4 Mar 2015 12:17:21 +0000 (13:17 +0100)]
Iterate over the original_tweet variable, not the tweet module
Jeppe Toustrup [Fri, 27 Feb 2015 06:53:11 +0000 (07:53 +0100)]
Be sure to always include nick of person replied to with repall even if it's the user
Jeppe Toustrup [Thu, 26 Feb 2015 18:48:24 +0000 (19:48 +0100)]
Improvements to nicks handling in 'repall' command:
- Always have the owner of the tweet responding to first in the response
- Never include the user's nick in the list
- Make sure we don't have duplicate nicks
All with the added bonus of avoiding regexing due to Twitter's entities list
Orakaro [Sat, 14 Feb 2015 05:44:54 +0000 (14:44 +0900)]
minor fix
vunhat_minh [Mon, 22 Dec 2014 10:51:42 +0000 (19:51 +0900)]
Fix bug when start with public stream
vunhat_minh [Mon, 22 Dec 2014 10:17:49 +0000 (19:17 +0900)]
* Fix #74
* Add ability to switch to no-keyword public stream
Orakaro [Mon, 22 Dec 2014 08:40:19 +0000 (17:40 +0900)]
Merge pull request #77 from nwtti/master
stream argument and switch list argument
Orakaro [Mon, 22 Dec 2014 02:29:02 +0000 (11:29 +0900)]
Merge pull request #78 from QuadPiece/patch-1
Small grammar correction
Dominik V. Salonen [Fri, 12 Dec 2014 16:01:01 +0000 (17:01 +0100)]
Small grammar correction
witti96 [Sat, 29 Nov 2014 16:26:11 +0000 (17:26 +0100)]
ability to give lists name as switch argument
witti96 [Sat, 29 Nov 2014 16:11:25 +0000 (17:11 +0100)]
mini cleanup
witti96 [Sat, 29 Nov 2014 16:01:29 +0000 (17:01 +0100)]
Added --stream argument to change the stream on program start.