Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Specify minimum python version for tools in pyproject.toml | Trygve Aaberge | 2024-02-21 | 1 | -1/+1 |
| | |||||
* | Switch to ruff in CI and docs | Trygve Aaberge | 2024-02-18 | 1 | -2/+2 |
| | |||||
* | Update documentation after commit 7a27eff | Trygve Aaberge | 2023-07-30 | 1 | -1/+2 |
| | |||||
* | Note that slack_api_token is evaluated in description | Trygve Aaberge | 2023-06-23 | 1 | -1/+1 |
| | |||||
* | Capitalize WeeChat correctly in the docs | Trygve Aaberge | 2023-01-12 | 1 | -4/+4 |
| | |||||
* | Add missing space in auto_open_threads option description | Trygve Aaberge | 2023-01-12 | 1 | -1/+1 |
| | |||||
* | Update Options.md | Trygve Aaberge | 2022-09-20 | 1 | -0/+6 |
| | |||||
* | Document how to format and lint the code | Trygve Aaberge | 2021-06-23 | 1 | -2/+20 |
| | | | | Fixes #842 | ||||
* | Update Options.md after last commits | Trygve Aaberge | 2021-02-24 | 1 | -0/+6 |
| | |||||
* | lookup message via hash with fallback to count | Ashish Kulkarni | 2021-02-20 | 1 | -1/+1 |
| | |||||
* | Remove section about adding dependencies from contributing docs | Trygve Aaberge | 2020-10-04 | 1 | -28/+0 |
| | | | | | | | Since people install this either just by copying the script, or by installing it from WeeChats repo, and neither of these methods install dependencies automatically, I really want to keep dependencies to a minimum. So I don't think it's useful to document how to add new ones. | ||||
* | feat: use pipenv to manage the development environment (#784) | Ben Denhartog | 2020-10-04 | 1 | -0/+84 |
| | | | | | | | | | | | | | | | | | | | | [Pipenv][0] makes it easier to maintain a consistent development environment for projects using Python. You no longer need to manage `pip` and `virtualenv` separately, nor deal with the drift and other issues requirements.txt brings. It enables gaining insights into your dependency graph, but most importantly - it enables deterministic builds, which prevents the entire class of "it works on my machine" problems. [Pipenv][0] is similar to package managers from other ecosystems, such as Node.js' `npm` or Rust's `cargo`. Additionally, [Pipenv][0] is an [officially recommended package manager][1] by the Python project. This patch brings [Pipenv][0] to the wee-slack project to simplify the development and contribution experience. Additionally, this patch brings basic contributing documentation to help onboarding. [0]: https://github.com/pypa/pipenv [1]: https://packaging.python.org/tutorials/managing-dependencies/#managing-dependencies | ||||
* | Support creating channels | Trygve Aaberge | 2020-07-09 | 1 | -0/+8 |
| | | | | | | | | Add command /slack create to create a channel. Currently doesn't switch to the channel after it's created, even when switch_buffer_on_join is true, that is a todo for later. Fixes #415 | ||||
* | Support renaming buffer with /buffer set name and /label -full | Trygve Aaberge | 2020-06-20 | 1 | -4/+7 |
| | |||||
* | Support colorizing attachment prefix or line | Trygve Aaberge | 2020-06-16 | 2 | -1/+7 |
| | | | | | | | | | Thanks to @Informatic for the initial implementation of this in PR #426. I have seen that most attachment colors are without the leading #, but a few does include it, so we have to handle it. Fixes #424, closes #426 | ||||
* | Support /label for channels | Trygve Aaberge | 2020-06-11 | 1 | -2/+3 |
| | | | | Relates to #563 | ||||
* | Make history fetch count configurable | Trygve Aaberge | 2020-06-04 | 1 | -0/+6 |
| | | | | Fixes #376 | ||||
* | Default background_load_all_history to true | Trygve Aaberge | 2020-05-30 | 1 | -2/+2 |
| | |||||
* | Support only reprinting the buffer with /rehistory | Trygve Aaberge | 2020-05-30 | 1 | -1/+2 |
| | | | | | | Without any arguments, /rehistory will now just clear the buffer and print the history again. With -remote, the history will be downloaded from Slack and processed again. | ||||
* | Improve description for (un)subscribe commands | Trygve Aaberge | 2020-05-06 | 1 | -2/+2 |
| | |||||
* | Document usage of session tokens | Trygve Aaberge | 2020-05-05 | 1 | -2/+6 |
| | | | | Fixes #764 | ||||
* | Fix /slack register not working after API change | Trygve Aaberge | 2020-05-05 | 2 | -4/+8 |
| | | | | | | | | | | | | | | Slack now disallows # in OAuth redirect uris, so we can't use it to prevent GitHub Pages from seeing the OAuth code anymore. Since the OAuth code is only valid once and expire after 10 minutes, I don't think it's a problem that they are exposed to GitHub Pages, so this is the new default so the same registration process can be kept. However, for people worried about this, there's a new -nothirdparty option to /slack register which can be used which doesn't expose the code. Fixes #766 | ||||
* | Update generated docs | Trygve Aaberge | 2020-05-05 | 2 | -1/+26 |
| | |||||
* | Add note about files_download_location requiring WeeChat >= 2.2 | Trygve Aaberge | 2020-04-24 | 1 | -1/+1 |
| | | | | Relates to #767 | ||||
* | Allow using /slack register with an existing token | Trygve Aaberge | 2020-03-21 | 1 | -2/+4 |
| | |||||
* | Improve help text for /reply and update Commands.md | Trygve Aaberge | 2020-03-03 | 1 | -3/+13 |
| | |||||
* | Update docs/Options.md after commit f084200 | Trygve Aaberge | 2020-02-23 | 1 | -1/+1 |
| | |||||
* | Show reactions you have added in a different color | Trygve Aaberge | 2020-02-23 | 1 | -0/+6 |
| | | | | Fixes #713 | ||||
* | Add options for hard coded colors | Trygve Aaberge | 2020-02-01 | 1 | -0/+12 |
| | | | | Fixes #681 | ||||
* | Render emojis as emoji characters | Trygve Aaberge | 2020-02-01 | 1 | -0/+6 |
| | | | | Fixes #465 | ||||
* | Support using a different color for each thread suffix/prefix | Trygve Aaberge | 2020-01-22 | 1 | -1/+1 |
| | | | | Fixes #716 | ||||
* | Use GitHub Pages for the OAuth redirect page | Trygve Aaberge | 2020-01-22 | 1 | -0/+68 |
| | | | | | | This adds a page which shows the OAuth code, and sets the redirect_uri for the OAuth link to this page. This url includes # at the end so the OAuth code is only seen by the browser, and not sent to the server. | ||||
* | Release v2.4.0v2.4.0 | Trygve Aaberge | 2020-01-16 | 2 | -0/+14 |
| | |||||
* | Update generated docs | Trygve Aaberge | 2019-06-02 | 2 | -4/+5 |
| | |||||
* | Allow %h (weechat home) replacement in download_location (#690) | Daniel Lublin | 2019-06-01 | 1 | -1/+1 |
| | |||||
* | Update commands and options docs files | Trygve Aaberge | 2019-05-07 | 2 | -0/+15 |
| | |||||
* | Sort options when generating Options.md | Trygve Aaberge | 2019-04-02 | 2 | -83/+90 |
| | |||||
* | Generate documentation for commands and options | Trygve Aaberge | 2019-01-26 | 2 | -0/+385 |
| | |||||
* | add gif back in | Ryan Huber | 2016-08-24 | 1 | -0/+0 |