aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* massssssssive merge of the new codebaseRyan Huber2017-04-12149-2209/+4103
|
* Make this fail back to the default for testability0.99.11Ryan Huber2017-01-261-1/+4
|
* messages received during reconnect are missed w/o thisRyan Huber2017-01-261-0/+3
|
* Merge branch 'master' of github.com:rawdigits/wee-slackRyan Huber2017-01-260-0/+0
|\
| * Merge pull request #285 from rawdigits/tfheen/awayRyan Huber2017-01-261-0/+33
| |\ | | | | | | Add support for /away
* | \ Merge commit 'refs/pull/285/head' of github.com:rawdigits/wee-slackRyan Huber2017-01-261-0/+33
|\ \ \ | |/ / |/| / | |/
| * Add support for /awayTollef Fog Heen2016-12-191-0/+33
| | | | | | | | | | | | | | | | | | | | Set localvar which is picked up by weechat and which should be picked up by `screen_away.py` and similar tools. Thanks to Tor Hveem (@torhve) for inspiration. Fixes: #161 This should also make /away D
* | Merge pull request #300 from rawdigits/pull-290-configrefactorRyan Huber2017-01-261-85/+91
|\ \ | | | | | | Refactor the way settings work + fixes
| * | add str function for debuggingRyan Huber2017-01-261-0/+3
| | |
| * | fix some settings that weren't migratedRyan Huber2017-01-261-6/+6
| | |
| * | Merge commit 'refs/pull/290/head' of github.com:rawdigits/wee-slackRyan Huber2017-01-261-79/+82
|/| |
| * | Refactor the way settings workBen Kelly2016-12-231-79/+82
| |/ | | | | | | | | | | | | | | | | | | | | | | | | All the per-setting globals are replaced with a single global object, 'config'; its attrs are the weechat settings. They're automatically updated on config change, and the setting names and defaults are specified as part of a map in the PluginConfig class definition. To add a new setting, add the setting name and default to PluginConfig.settings, and if it's not a boolean, add an appropriate PluginConfig.get_<name> method as well. Signed-off-by: Ben Kelly <bk@ancilla.ca>
* | Merge pull request #295 from jessfraz/add-dockerfileRyan Huber2017-01-261-0/+36
|\ \ | | | | | | add dockerfile
| * | add dockerfileJess Frazelle2017-01-061-0/+36
| | | | | | | | | | | | Signed-off-by: Jess Frazelle <acidburn@google.com>
* | | Merge pull request #296 from lchausmann/masterRyan Huber2017-01-261-0/+2
|\ \ \ | | | | | | | | Handles upload with spaces in filename
| * | | Handles upload with spaces in filenameLars Chr. Duus Hausmann2017-01-091-0/+2
| |/ /
* | | Merge pull request #299 from rawdigits/performance_improvement_testRyan Huber2017-01-261-65/+76
|\ \ \ | | | | | | | | Performance improvement and minor refactor
| * | | restore away/active indicator but still don't update nicklistRyan Huber2017-01-251-11/+12
| | | |
| * | | derpRyan Huber2017-01-241-4/+4
| | | |
| * | | fix the other methods tooRyan Huber2017-01-241-8/+11
| | | |
| * | | fix to not open ever damn user as a channelRyan Huber2017-01-241-1/+2
| | | |
| * | | finally get rid of some of my idiocyRyan Huber2017-01-241-35/+41
| | | |
| * | | don't care about last message anymore. load all historyRyan Huber2017-01-241-4/+1
| | | |
| * | | don't load channel history until opening the channelRyan Huber2017-01-241-2/+9
| | | |
| * | | don't update nicklists with presence anymoreRyan Huber2017-01-241-8/+4
|/ / /
* | | Merge pull request #297 from mattrobenolt/typingTollef Fog Heen2017-01-201-1/+2
|\ \ \ | |/ / |/| | typing: don't trigger typing indicator from weechat commands
| * | typing: don't trigger typing indicator from weechat commandsMatt Robenolt2017-01-191-1/+2
|/ /
* / Format connection-info as unicodeThom Wiggers2017-01-041-6/+6
|/
* Update docs slightlyTollef Fog Heen2016-11-291-1/+7
|
* Make message editing use actual regexesTollef Fog Heen2016-11-281-10/+22
| | | | | | | | | | | | If you use s/foo/bar/, use actual regexes for this, since that's what some of us expect. Also add support for /g to do it globally. Don't add any way to have the old functionality, if too many people complain we can have that behind another syntax or a flag. Based heavily on the code by @terminalmage Fixes #219, #197
* Make it possible to set timeouts on slack URL commsTollef Fog Heen2016-11-281-4/+7
| | | | | | | | | | | | | On very busy slack networks the default timeout of 20000 can be a problem. This timeout can mean that the extension is unable to download all the necesarry data before weechat times out the connection. This patch allows for the timeout to be adjusted so that for larger networks the end user can specify it. Based on #279 by @GregBowyer. Closes: #279
* Merge pull request #282 from rawdigits/update_hashtable_on_closeRyan Huber2016-11-221-1/+7
|\ | | | | Update hashtable on buffer open
| * every time we open a buffer, we clear the hashtableRyan Huber2016-11-221-1/+7
|/
* Merge pull request #215 from terminalmage/issue190Ryan Huber2016-11-181-1/+0
|\ | | | | Remove unnecessary channels.join API request
| * Remove unnecessary channels.join API requestErik Johnson2016-04-121-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are two problems with this API request: 1. According to https://api.slack.com/methods/channels.join, "user" is not a valid argument. 2. The hash table lookup in the removed line of code is destined to fail anyway, because ``self.name`` here refers to the channel name, which is not present in the ``users`` SearchList() instance as it maps usernames to the Slack API user IDs. Indeed, this causes the call to ``users.find(self.name)`` to return ``None``, causing an AttributeError to be raised. Fixes #190.
* | Merge pull request #278 from mattrobenolt/parametrizeTollef Fog Heen2016-11-111-26/+27
|\ \ | | | | | | Leverage pytest.parametrize for test_unfurl
| * | Leverage pytest.parametrize for test_unfurlMatt Robenolt2016-11-071-26/+27
| | | | | | | | | | | | | | | This provides nicer granular test cases rather than one whole test that fails.
* | | Merge pull request #263 from rawdigits/tfheen/performanceTollef Fog Heen2016-11-111-14/+27
|\ \ \ | |/ / |/| | Performance improvements
| * | Speed up User comparisonTollef Fog Heen2016-10-031-1/+3
| | | | | | | | | | | | Avoid creating a full new string and use a string slice instead.
| * | Performance: fetch user object only onceTollef Fog Heen2016-10-031-6/+7
| | | | | | | | | | | | | | | Instead of lookup up the user object a bunch of times in buffer_prnt, just fetch it once.
| * | Performance: pass in item to updateTollef Fog Heen2016-10-031-6/+16
| | | | | | | | | | | | | | | When adding an item to the hash table, pass in the updated item, which saves a bunch of work.
| * | Slight performance optimisationTollef Fog Heen2016-10-031-1/+1
| | | | | | | | | | | | | | | | | | Looking for if something is in a list is slightly faster than counting the number of that item in a list, since if it is in the list, the loop can exit early.
* | | Fix obvious mistake with tagsTor Hveem2016-11-041-5/+5
| | | | | | | | | | | | Tag string is being overwritten instead of appended.
* | | Add support for slash commandsAlex Dills2016-10-202-1/+35
| | | | | | | | | | | | | | | Custom slash commands are handled by doing `/slack slash /foo [args…]` Fixes: #227
* | | Merge pull request #266 from irth/masterTollef Fog Heen2016-10-091-1/+6
|\ \ \ | |/ / |/| | use the correct colors for nick_prefix/nick_suffix
| * | use the correct colors for nick_prefix/nick_suffixWojciech Kwolek2016-10-091-1/+6
|/ /
* | minor tweak to support new identifiersRyan Huber2016-09-291-1/+1
| |
* | Merge pull request #262 from rawdigits/reaction_regex_improvementRyan Huber2016-09-291-1/+1
|\ \ | | | | | | add whitespace and anchors
| * | add whitespace and anchorsRyan Huber2016-09-291-1/+1
| | |
* | | Merge pull request #261 from rawdigits/mpdm_cleanupRyan Huber2016-09-291-3/+15
|\ \ \ | |/ / |/| | consistently open mpdm the same way by handling the process_