Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use <@123ABC> rather than <@123ABC|foo> for outgoing nicks | Tollef Fog Heen | 2015-12-21 | 1 | -1/+1 |
| | | | | | | | | The web client doesn't handle nicks on the form <@123ABC|foo.bar> correctly, they're just treated as text. <@123ABC> is handled correctly. Fixes: #119 | ||||
* | Allow . in nicks | Tollef Fog Heen | 2015-12-21 | 1 | -1/+1 |
| | |||||
* | Fix up pytest | Tollef Fog Heen | 2015-12-21 | 1 | -0/+1 |
| | |||||
* | bump version | Ryan Huber | 2015-12-04 | 1 | -1/+1 |
| | |||||
* | always update the channels hashtable when we attach or detach a buffer | Ryan Huber | 2015-12-04 | 1 | -0/+4 |
| | |||||
* | Format fix for file upload and similar | Tollef Fog Heen | 2015-12-02 | 1 | -1/+1 |
| | | | | | File uploads have bot_id in the json structure, but it's null (translated into None). Handle that as if it's not there. | ||||
* | Fix up formatting of messages with attachments | Tollef Fog Heen | 2015-11-27 | 1 | -7/+13 |
| | | | | | Previously, all messages would have "---" as the start, even if there was no leading text. Make it so the dashes are only added if necessary. | ||||
* | Make sure the returned message is utf-8 | Tollef Fog Heen | 2015-11-27 | 1 | -0/+2 |
| | | | | | | This prevents a backtrace in the case where you would do "@foo, what's up with a – b"? in a message, i.e, where there was both something to be unfurled as well as a non-ASCII character in the string. | ||||
* | Check for bot_id earlier | Tollef Fog Heen | 2015-11-27 | 1 | -3/+3 |
| | | | | | | | | | | Some bots have 'username' set for them, which could lead to an inconsistent experience where some bots would have the robot smiley, while others did not. Check for bot_id earlier and use the formatted_name of the given bot. Also add a space in front of the robot smiley to make it easier to see. | ||||
* | Add colouring to bots as well | Tollef Fog Heen | 2015-11-27 | 1 | -0/+16 |
| | | | | | This adds a .formatted_name for bots too, making it so they are coloured appropriately, just like humans. | ||||
* | Fix display of user name on topic change | Tollef Fog Heen | 2015-11-27 | 1 | -1/+2 |
| | | | | | Make sure to call unfurl_refs so we get the right display name for the user who changed the topic. | ||||
* | Merge pull request #128 from rawdigits/58_change_topics | Ryan Huber | 2015-11-23 | 1 | -0/+35 |
|\ | | | | | add code to do changes of topic. | ||||
| * | handle delete | Ryan Huber | 2015-11-20 | 1 | -1/+4 |
| | | |||||
| * | add code to do changes of topic. | Ryan Huber | 2015-11-20 | 1 | -0/+32 |
| | | |||||
* | | check that channel has a buffer before sending typing notif | Ryan Huber | 2015-11-23 | 1 | -9/+11 |
|/ | |||||
* | check for minimum weechat version + error | Ryan Huber | 2015-11-19 | 1 | -101/+98 |
| | |||||
* | more debugging info for failed curl requests | Ryan Huber | 2015-11-19 | 1 | -1/+1 |
| | |||||
* | we use this to override join and query so don't print an error anymore | Ryan Huber | 2015-11-19 | 1 | -1/+0 |
| | |||||
* | version bump | Ryan Huber | 2015-11-19 | 1 | -1/+1 |
| | |||||
* | don't eat query and join! | Ryan Huber | 2015-11-19 | 1 | -12/+18 |
| | |||||
* | dm channel creation fix + remove duplication in join_command_cb | Ryan Huber | 2015-11-18 | 1 | -9/+16 |
| | |||||
* | version bump and readme update | Ryan Huber | 2015-11-18 | 1 | -1/+1 |
| | |||||
* | better handling of exception | Ryan Huber | 2015-11-18 | 1 | -2/+5 |
| | |||||
* | Merge branch '114_better_buffer_mod' of github.com:rawdigits/wee-slack into ↵ | Ryan Huber | 2015-11-18 | 1 | -1/+0 |
|\ | | | | | | | 114_better_buffer_mod | ||||
| * | remove untrue comment | Ryan Huber | 2015-11-17 | 1 | -1/+0 |
| | | |||||
* | | close websocket to prevent race + fix broken comparison | Ryan Huber | 2015-11-18 | 1 | -1/+2 |
|/ | |||||
* | open im chats if they have unread messages | Ryan Huber | 2015-11-17 | 1 | -0/+2 |
| | |||||
* | Merge branch 'master' into 114_better_buffer_mod | Ryan Huber | 2015-11-17 | 1 | -3/+11 |
|\ | |||||
| * | Merge branch 'master' into respect-prefix-same-nick | Ryan Huber | 2015-11-17 | 1 | -86/+214 |
| |\ | | | | | | | | | | | | | Conflicts: wee_slack.py | ||||
| * | | Respect weechat.look.prefix_same_nick setting | Tollef Fog Heen | 2015-08-01 | 1 | -3/+11 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | When that is set, use it for repeated nick lines. Doesn't handle bots properly yet, will be easier to do once https://github.com/rawdigits/wee-slack/pull/49 is merged. Fixes: #56 | ||||
* | | | Merge branch 'master' into 114_better_buffer_mod | Ryan Huber | 2015-11-17 | 1 | -31/+70 |
|\ \ \ | | |/ | |/| | | | | | | | Conflicts: wee_slack.py | ||||
| * | | Merge pull request #105 from rawdigits/tfheen/me-action-render | Ryan Huber | 2015-11-17 | 1 | -0/+5 |
| |\ \ | | | | | | | | | Render _foo bar baz_ as action messages | ||||
| | * | | Render _foo bar baz_ as action messages | Tollef Fog Heen | 2015-08-29 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The slack client (and we) change `/me foo bar baz` into a `_foo bar baz_` message. Translate those messages back into actions when displaying them. Fixes: #61 | ||||
| * | | | clean up server aliasing | Ryan Huber | 2015-11-17 | 1 | -11/+12 |
| | | | | |||||
| * | | | Merge pull request #107 from justone/server_aliases | Ryan Huber | 2015-11-17 | 1 | -5/+12 |
| |\ \ \ | | | | | | | | | | | support server aliases, so buffer names are shorter | ||||
| | * | | | support server aliases, so buffer names are shorter | Nate Jones | 2015-08-29 | 1 | -5/+12 |
| | |/ / | |||||
| * | | | Merge pull request #108 from kenyonj/jk-add-upload-option | Ryan Huber | 2015-11-17 | 1 | -0/+29 |
| |\ \ \ | | | | | | | | | | | Add upload capability to slack buffer | ||||
| | * | | | Add upload capability to slack buffer | Justin Kenyon | 2015-11-03 | 1 | -0/+29 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit: - Adds the ability to upload a file to the current slack buffer using the `/slack upload [file_path]` command Why? - This is a very useful feature for people that are trying to fully replace the slack web app | ||||
| * | | | | Merge pull request #110 from rawdigits/avoid-colouring-channels | Ryan Huber | 2015-11-17 | 1 | -21/+14 |
| |\ \ \ \ | | | | | | | | | | | | | Stop colouring channels and dmchannels | ||||
| | * | | | | Avoid putting colors in private chat names | Tollef Fog Heen | 2015-09-25 | 1 | -21/+14 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Channel names in weechat are simple strings that should not have colors embedded, so don't do that (unless overridden by a configuration setting). In addition, remove channels_not_on_current_server_color support. Fixes #73 | ||||
* | | | | | | remove unused function | Ryan Huber | 2015-11-17 | 1 | -19/+1 |
| | | | | | | |||||
* | | | | | | go back to using dm channels only as channels | Ryan Huber | 2015-11-17 | 1 | -22/+11 |
| | | | | | | |||||
* | | | | | | open channels or users | Ryan Huber | 2015-11-17 | 1 | -4/+6 |
| | | | | | | |||||
* | | | | | | did this ever work ?! | Ryan Huber | 2015-11-17 | 1 | -0/+2 |
| | | | | | | |||||
* | | | | | | fix colon | Ryan Huber | 2015-11-17 | 1 | -1/+1 |
| | | | | | | |||||
* | | | | | | version bump - initial nicklist state | Ryan Huber | 2015-11-17 | 1 | -8/+5 |
| | | | | | | |||||
* | | | | | | new smart nicklist updating | Ryan Huber | 2015-11-17 | 1 | -11/+27 |
| | | | | | | |||||
* | | | | | | use way better model for cache + versioning of cache data | Ryan Huber | 2015-11-16 | 1 | -13/+13 |
| | | | | | | |||||
* | | | | | | show edited messages differently than unfurls | Ryan Huber | 2015-11-16 | 1 | -1/+4 |
| | | | | | | |||||
* | | | | | | turn on exceptions again. reaction fix | Ryan Huber | 2015-11-16 | 1 | -16/+18 |
| | | | | | |