Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
670d573
(routine): Update `cmdClient` pointer.
Intery Mar 11, 2021
bb300e3
(routine): Add gitignore.
Intery Mar 12, 2021
9634af1
rewrite: Full rewrite.
Intery Jun 9, 2021
b6ff869
fix (settings): Don't run non-existent `write_ward`.
Intery Jun 9, 2021
5ed8259
fix (user_config): Repair typo in `notify` cmd.
Intery Jun 9, 2021
68ae1b9
fix (cmd_newgroup): Repair typo in manual.
Intery Jun 9, 2021
94a12ce
fix (tconfig): Properly handle quoted timer names.
Intery Jun 9, 2021
1b23f07
tweak (Timer): Don't update vc for empty timers.
Intery Jun 9, 2021
28887e0
style (pagingtor): Ensure space after number.
Intery Jun 9, 2021
5af8d90
fix (setting cmds): Repair typo in check error.
Intery Jun 9, 2021
207fbf9
fix (forcekick): Handle empty args.
Intery Jun 9, 2021
fd80ae2
fix (core): Repair typo in tchannel error logic.
Intery Jun 10, 2021
a0bf6d2
fix (timer cmds): Repair admin lock check.
Intery Jun 10, 2021
3cf937c
fix (tconfig): Repair write ward check.
Intery Jun 10, 2021
7a42625
fix (TimerChannel): Repair pinned error handling.
Intery Jun 10, 2021
5c03f9c
fix (settings): Repair attr name collision.
Intery Jun 10, 2021
6a07d38
fix (notify_cmd): Change `none` to `never`.
Intery Jun 10, 2021
d1e19cc
fix (timer): Refresh timer data when reloading.
Intery Jun 11, 2021
1c3dbbc
tweak (voice): Use timer settings instead of data.
Intery Jun 11, 2021
3b8051e
fix (tconfig): Repair channel configuration.
Intery Jun 11, 2021
3df39a8
(subscription): Handle role permission errors.
Intery Jun 11, 2021
348269e
(interface): Cleaner shutdown method.
Intery Jun 11, 2021
12c7cec
docs (history): Add timezone setting tip.
Intery Jun 12, 2021
a6633e9
(pager util): Improve permission error responses.
Intery Jun 12, 2021
455d749
tweak (history): Truncate displayed patterns.
Intery Jun 13, 2021
b63a93f
(patterns): Search presets before parsing.
Intery Jun 13, 2021
8476252
(history): Add current session to `hist`.
Intery Jun 13, 2021
866b384
fix (newgroup): Typo in voice hint.
Intery Jun 27, 2021
889571d
fix (Timer load): Clear timer vc when needed.
Intery Jun 27, 2021
52c56d9
fix (stats): Fix streak calculation.
Intery Jun 27, 2021
aa53570
docs (data): Add sample `v0-v1` migration config.
Intery Jun 27, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
121 changes: 121 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
# Data files
*.db
*.pickle
*.json

# Conf files
*.conf

# Development cruft
*.swo
*.swp
RCS
tags

# ContextBot contents
contextBot/*

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# dotenv
.env

# virtualenv
.venv
venv/
ENV/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/

# vscode config files
**/.vscode
Binary file added assets/guide-gifs/pattern-guide.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/sounds/slow-spring-board.wav
Binary file not shown.
156 changes: 0 additions & 156 deletions bot/BotData.py

This file was deleted.

Loading