6 Commits

Author SHA1 Message Date
classabbyamp 74df3ed1f1 Merge pull request #424 from miaowware/273-help-efix
fix issue with help cmd not showing all cmds, bump to 2.7.3
2021-04-12 19:38:27 -04:00
Abigail G e7a1a4e5de fix issue with help cmd not showing all cmds, bump to 2.7.3 2021-04-12 19:36:03 -04:00
classabbyamp 2eb183ff08 Merge pull request #423 from miaowware/272-rel
update changelog/version for 2.7.2
2021-04-12 19:06:03 -04:00
Abigail G 0cb6ccd285 update changelog/version for 2.7.2 2021-04-12 19:04:54 -04:00
classabbyamp f55738a8a2 Merge pull request #422 from miaowware/help-e-fix
fix issue with help command/categories
2021-04-12 19:02:37 -04:00
Abigail G abf79b844e fix issue with help command/categories 2021-04-12 18:58:10 -04:00
3 changed files with 16 additions and 4 deletions
+13 -1
View File
@@ -7,6 +7,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased] ## [Unreleased]
## [2.7.3] - 2021-04-12
### Fixed
- Issue where `?help` might not display all commands.
## [2.7.2] - 2021-04-12
### Fixed
- Issue where `?help` might not work for all people.
## [2.7.1] - 2021-04-12 ## [2.7.1] - 2021-04-12
### Added ### Added
- Helpful LaTeX hints for rendering errors in `?tex`. - Helpful LaTeX hints for rendering errors in `?tex`.
@@ -193,7 +203,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## 1.0.0 - 2019-07-31 [YANKED] ## 1.0.0 - 2019-07-31 [YANKED]
[Unreleased]: https://github.com/miaowware/qrm2/compare/v2.7.1...HEAD [Unreleased]: https://github.com/miaowware/qrm2/compare/v2.7.3...HEAD
[2.7.3]: https://github.com/miaowware/qrm2/releases/tag/v2.7.3
[2.7.2]: https://github.com/miaowware/qrm2/releases/tag/v2.7.2
[2.7.1]: https://github.com/miaowware/qrm2/releases/tag/v2.7.1 [2.7.1]: https://github.com/miaowware/qrm2/releases/tag/v2.7.1
[2.7.0]: https://github.com/miaowware/qrm2/releases/tag/v2.7.0 [2.7.0]: https://github.com/miaowware/qrm2/releases/tag/v2.7.0
[2.6.0]: https://github.com/miaowware/qrm2/releases/tag/v2.6.0 [2.6.0]: https://github.com/miaowware/qrm2/releases/tag/v2.6.0
+2 -2
View File
@@ -43,14 +43,14 @@ class QrmHelpCommand(commands.HelpCommand):
bolt_cmds[cat].append(c) bolt_cmds[cat].append(c)
else: else:
bolt_cmds[cat] = [c] bolt_cmds[cat] = [c]
cmds.remove(c)
else: else:
ret.append(c) ret.append(c)
ret.sort(key=lambda c: c.__original_kwargs__["category"].name) ret.sort(key=lambda c: c.__original_kwargs__["category"].name)
for cat in cmn.BoltCats: for cat in cmn.BoltCats:
ret += sorted(bolt_cmds[cat], key=lambda c: c.name) if cat in bolt_cmds:
ret += sorted(bolt_cmds[cat], key=lambda c: c.name)
return ret return ret
+1 -1
View File
@@ -15,5 +15,5 @@ contributing = """Check out the [source on GitHub](https://github.com/miaowware/
All issues and requests related to resources (including maps, band charts, data) should be added \ All issues and requests related to resources (including maps, band charts, data) should be added \
in [miaowware/qrm-resources](https://github.com/miaowware/qrm-resources).""" in [miaowware/qrm-resources](https://github.com/miaowware/qrm-resources)."""
release = "2.7.1" release = "2.7.3"
bot_server = "https://discord.gg/Ntbg3J4" bot_server = "https://discord.gg/Ntbg3J4"