kangalio
kangalio
Great! Yeah, feel free to fiddle with it, make it light up a little. If you end up improving this library in the process, a PR would be very nice
Cc @belak who contributed Launchpad Mini support in #3 Yeah 128 = 0x80 is the status code for a MIDI note off message. In the code it explained there is...
The bot framework actually sets [Allowed Mentions](https://discord.com/developers/docs/resources/channel#allowed-mentions-object). By default, role pings and everyone pings [are filtered](https://github.com/kangalioo/poise/blob/471a2c2ed8ed3792593dd97c313968266de3183e/src/structs/framework_options.rs#L104) (so even if the bot were given role/everyone ping permissions, those pings wouldn't have...
The Py_LIMITED_API cfg is generated [in pyo3's build.rs](https://github.com/PyO3/pyo3/blob/4a68273b173ef86dac059106cc0b5b3c2c9830e2/pyo3-build-config/src/impl_.rs#L175-L177) and doesn't apply to dependent crates like pyo3-chrono. And we can't check the abi3 feature either because crates can only gate on...
Folks on the Rust community server said the following ([link](https://discord.com/channels/273534239310479360/818964227783262209/1025025859276521543)): > there is this you might be able to parse something out of > > "DEP_PYTHON_PYO3_CONFIG", "696d706c656d656e746174696f6e3d43507974686f6e0a76657273696f6e3d332e31300a7368617265643d747275650a616269333d747275650a6c69625f6e616d653d707974686f6e332e31300a6c69625f6469723d2f7573722f6c69620a657865637574 61626c653d2f7573722f62696e2f707974686f6e0a706f696e7465725f77696474683d36340a6275696c645f666c6167733d0a73757070726573735f6275696c645f7363726970745f6c696e6b5f6c696e65733d66616c73650a", > you...
Thanks for the PR! I will not merge the PR, but probably keep it open for others to see... By the way, a better base to build upon would probably...
Most of the finicky backtracking business can be implemented in declarative macros, which is very nice for code conciseness. In an experimental alternative framework I made [such a macro](https://github.com/kangalioo/poise/blob/f49535f054116518560c19f5c6aea04b7cdde3a9/src/argument/mod.rs#L116-L238) that...
That sounds sensible. I'm interested in which circumstances FrameworkContext appears outside of commands?
Yeah I can see why it happens. I can't quite interpret what you think of the proposal though - do you agree that this behavior is confusing and a designated...
I see your concern about error handling being more difficult with the Error enum variants merged. I think there is a misconception here. My idea was not to merge the...