| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add Permissions.administrator and change Permissions.manage_roles | Rapptz | 2016-05-12 | 1 | -9/+25 |
| | | |||||
| * | Make Permissions an iterable class. | Rapptz | 2016-05-01 | 1 | -0/+15 |
| | | |||||
| * | Make Permissions partially-ordered. | Milo Mirate | 2016-04-30 | 1 | -0/+39 |
| | | | | | | | | | | | Specifically: * P1 <= P2 iff P1 expresses a subset of the permissions expressed by P2. * P1 < P2 iff P1 <= P2 and P1 != P2 * vice versa for P1 >= P2 and P1 > P2 | ||||
| * | Add permissions for changing or managing nicknames. | Rapptz | 2016-04-29 | 1 | -3/+21 |
| | | |||||
| * | Clarify channel-specific permissions documentation. | Khazhismel Kumykov | 2016-04-05 | 1 | -2/+6 |
| | | | | | | | Manage Roles and Manage Channels is renamed to "Manage Permissions" and "Manage Channel" in the discord UI, clarify which fields in the Permission object those map to. | ||||
| * | Documentation fixes for Permissions related code. | Rapptz | 2016-01-14 | 1 | -9/+9 |
| | | |||||
| * | Update license of files to 2016. | Rapptz | 2016-01-04 | 1 | -1/+1 |
| | | |||||
| * | Change permissions to remove the can_ prefix. | Rapptz | 2016-01-03 | 1 | -63/+63 |
| | | |||||
| * | Unflip kick/ban permission bits | abalabahaha | 2015-12-22 | 1 | -8/+8 |
| | | |||||
| * | Add __slots__ where appropriate to data classes. | Rapptz | 2015-12-19 | 1 | -1/+2 |
| | | |||||
| * | Most data classes now support hashing. | Rapptz | 2015-12-17 | 1 | -0/+5 |
| | | |||||
| * | Remove the non-classmethod attributes in Permissions. | Rapptz | 2015-12-16 | 1 | -45/+6 |
| | | |||||
| * | All data classes now support !=, == and str(obj). | Rapptz | 2015-12-13 | 1 | -0/+16 |
| | | |||||
| * | Simplified permissions bit operations. | Rapptz | 2015-12-10 | 1 | -2/+2 |
| | | |||||
| * | Change Permissions constants to be class method factories instead. | Rapptz | 2015-10-22 | 1 | -0/+43 |
| | | |||||
| * | Document Permissions constants and set default permissions to 0. | Rapptz | 2015-10-17 | 1 | -1/+29 |
| | | |||||
| * | Add Channel.permissions_for and PrivateChannel.permissions_for. | Rapptz | 2015-10-17 | 1 | -0/+25 |
| | | | | | | | These functions handle permission resolution for a specific member. Aids with #18. | ||||
| * | Pass kwargs to all constructors for future proofing. | Rapptz | 2015-10-13 | 1 | -1/+1 |
| | | |||||
| * | Permissions are now properties rather than functions. | Rapptz | 2015-09-03 | 1 | -4/+113 |
| | | | | | | This allows you to set or retrieve specific bits through a higher level API to facilitate editing in the future. | ||||
| * | Python3 import fixes. | Rapptz | 2015-08-28 | 1 | -1/+0 |
| | | |||||
| * | Preliminary work on permission parsing. | Rapptz | 2015-08-26 | 1 | -0/+132 |
| Thanks Voltagei. | |||||