about summary refs log tree commit diff stats
path: root/src/chat_session.c
Commit message (Collapse)AuthorAgeFilesLines
* Reduced <inactive/> timeoutJames Booth2012-11-011-1/+1
|
* Set state timeouts back to sensible valuesJames Booth2012-11-011-4/+2
|
* Added a seperate option to enable outgoing typing notificationsJames Booth2012-11-011-0/+1
|
* Fixed invalid state transition from <active/> to <paused/>James Booth2012-10-311-29/+50
|
* Handling paused statusJames Booth2012-10-311-2/+39
|
* Added boilerplate code to handle chat statesJames Booth2012-10-311-3/+16
|
* Basic state handlingJames Booth2012-10-311-4/+116
|
* Create chat session on send if none existsJames Booth2012-10-301-0/+12
|
* Merge branch 'master' into chatstatesJames Booth2012-10-301-38/+25
| | | | | Conflicts: Makefile.am
* Using const for chat sessionsJames Booth2012-10-141-13/+14
| | | | Allocating memory for keys and values
* Added sent to chat sessionsJames Booth2012-10-061-0/+16
|
* Basic chat session statesJames Booth2012-10-041-24/+19
|
* Started work on chat session, and chat statesJames Booth2012-10-031-0/+101
ss current window to autocompleters' href='/danisanti/profani-tty/commit/src/command/commands.h?id=cfef64c7677cdf66e2b37aa0aa5728262c3bb2f6'>cfef64c7 ^
2490f5b4 ^

71879a3f ^




2490f5b4 ^





2490f5b4 ^


ce328146 ^


2490f5b4 ^



22db16e6 ^
2490f5b4 ^

9d94ac5c ^
0ff29b3d ^

2490f5b4 ^


0ff29b3d ^
eb105e91 ^

0ff29b3d ^
eb105e91 ^
22db16e6 ^


22db16e6 ^

9bc4dc38 ^
22db16e6 ^


22db16e6 ^
1b0ce852 ^
22db16e6 ^

22db16e6 ^
4cb1d73a ^
22db16e6 ^
22db16e6 ^







22db16e6 ^





22db16e6 ^












ecfa2d0c ^

22db16e6 ^


3983ee1d ^
22db16e6 ^


22db16e6 ^















d3cc5bd7 ^
fc6f2755 ^
d3cc5bd7 ^

0aa758cb ^
22db16e6 ^
fa6a26c6 ^
8f6b37f6 ^
6a8656a0 ^
c9f6a78f ^

a9fab9ed ^
41fe8c22 ^
5f1ba08f ^
a9fab9ed ^
a5a7db9e ^
cd86f5bc ^
a9fab9ed ^




b8c94376 ^
2490f5b4 ^
eb105e91 ^















eb105e91 ^


















eb105e91 ^

eb105e91 ^
2215a379 ^
7a88898a ^
2602cbf7 ^
277e8dc9 ^
306706bd ^
f9216fdd ^
bc541cb8 ^
b3be504e ^
063a5d1c ^
2622c2d2 ^
5f015e32 ^
89830224 ^
4a5b672f ^
658e36a0 ^
5c77b97c ^
b46dbcc3 ^

ddf6ada3 ^
e3538cf7 ^
e57fa163 ^
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228