about summary refs log tree commit diff stats
path: root/discord
Commit message (Collapse)AuthorAgeFilesLines
* chore(client): Change send method of hearbeat + identifymjk1342022-07-112-3/+5
|
* feat(rest): Added a class with methods to access api, with a single sessionmjk1342022-07-092-30/+23
|
* fix(client): Changed token reference and declaration to _tokenmjk1342022-07-091-5/+4
|
* Merge branch 'master' of https://github.com/mounderfod/discobramjk1342022-07-097-44/+262
|\
| * refactor(client): Use REST for `Client.user`, add enums for flags and ↵Noah2022-07-094-25/+166
| | | | | | | | premium type
| * fix(intents): Fix `Intents` to use addition and not bit-shiftingNoah2022-07-091-23/+33
| |
| * feat(http): Add basic API for sending HTTP requestsNoah2022-07-093-0/+67
| | | | | | | | Also added some new stuff to `User` since it has changed since it was last used.
* | feat: Added poll event loopmjk1342022-07-091-32/+88
|/
* update typings and event logicmjk1342022-07-092-17/+33
|
* Add `EventEmitter` + fix `User` constructor not being able to set key, valuesmjk1342022-07-085-12/+51
|
* feat(gateway): Add ready data to `user` attribute of `Client`Noah2022-07-082-1/+26
|
* chore: Merge branch 'master' of https://github.com/mounderfod/discobraNoah2022-07-081-10/+19
|\ | | | | | | | |  Conflicts:  discord/client.py
| * - Add `run` to `Client` to start async loopmjk1342022-07-081-10/+19
| | | | | | | | - Add event decorator with a `on_ready` event call
| * feat(gateway): Added basic gateway connectionNoah2022-07-081-0/+49
| | | | | | | | Could really use refining, this is just a basic implementation
* | feat(gateway): Added basic gateway connectionNoah2022-07-082-0/+49
|/ | | | Could really use refining, this is just a basic implementation
* fix(gateway): Access the enum value rather than calling itNoah2022-07-081-1/+1
|
* docs: Update README.md, add it to the main docs pageNoah2022-07-081-0/+3
|
* feat(gateway): Add intents classNoah2022-07-081-0/+52
|
* inital folder structure w/ setup.pymjk1342022-07-072-0/+0
8:20:23 +0530 Re-implement octans, move subroutines to respective modules' href='/andinus/octans/commit/README?h=v0.2.2&id=5bb0f224483fbc1d57fd1c5a2f4a22dd7263ecd6'>5bb0f22 ^
015b208 ^
5bb0f22 ^


015b208 ^




147ac7b ^






015b208 ^




147ac7b ^
015b208 ^



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171