summary refs log tree commit diff stats
path: root/src/common/text.c
AgeCommit message (Expand)Author
2014-05-12Add global option to suppress nick change eventsBerke Viktor
2014-05-11Fix logging incorrect timestamp with server-timeRiamse
2014-04-21Use utf-8 variant of strftime to format log file paths.Arnavion
2014-04-17Fix #928. Fix memory leak, mea culpa.RichardHitt
2014-04-17Fixes #928 again. In scrollback replay, skip every line that starts 0x0d.RichardHitt
2014-04-06Add account to Join eventTingPing
2014-03-29Fix scrollback_load to deal with e.g. the output of /HELPRichardHitt
2014-03-24Improve handling scrollback when gui_tab_server==FALSERichardHitt
2014-02-12Fix some leaksTingPing
2013-11-28Print{,_attr} and server{,_attr} hooks were incorrectly handled when bothDiogo Sousa
2013-11-02Fix invalid timestamps crashing on WindowsTingPing
2013-10-09Fix messages with server-time not showing as new activityDiogo Sousa
2013-09-15Fix logging networks with invalid names on WindowsTingPing
2013-09-07Implement BLOWFISh, AES, and EXTERNAL SASL mechanismsTingPing
2013-08-07Format Channel URLsTingPing
2013-07-12Removed outdated comment.Diogo Sousa
2013-07-12Added hexchat_emit_print_attrs() to plugin interface.Diogo Sousa
2013-07-10Indentation fixes and code cleanup.Diogo Sousa
2013-07-09Now hexchat_hook_server_attrs() and hexchat_hook_print_attrs() is calledDiogo Sousa
2013-06-28A few messages missing regarding server-time.Diogo Sousa
2013-06-28server-time for all numerical messages.Diogo Sousa
2013-06-28First step towards message tags extension supportDiogo Sousa
2013-06-12Don't open libcanberra connection for every eventTingPing
2013-06-06Add chanopt for stripping colorsTingPing
2013-04-28Store just the filename if the sound file comes from the default sound dirBerke Viktor
2013-04-28Fix spacingBerke Viktor
2013-04-27clean up canberra codeTingPing
2013-04-27Use canberra for filesTingPing
2013-04-28Let's just say the wordBerke Viktor
2013-04-27Fix unused variableBerke Viktor
2013-04-27Get rid of bundled beepBerke Viktor
2013-04-27Don't use external players on WindowsBerke Viktor
2013-04-23fix omitting custom soundsTingPing
2013-04-17add paplayTingPing
2013-04-14try play first.TingPing
2013-04-14Use bundled beep file for beep alertsBerke Viktor
2013-04-14Remove sound_dir, it's pointlessBerke Viktor
2013-04-08Closes #290 - opt-out for extra alerts now workingmisdre
2013-04-07Notify away status of friendsTingPing
2013-04-07Add events for quietTingPing
2013-04-02Only include top level includes from GTK+, GLib and GDK-PixBufBerke Viktor
2013-03-24Merge pull request #445 from TingPing/ulistcolorsTingPing
2013-03-23Truncate text if too long. Closes Issue #463RichardHitt
2013-03-15Get rid of Non-BMP filtering, Pango handles this nowBerke Viktor
2013-03-09Add option to color nicknames in the userlist to match the chatTingPing
2013-01-19Correct almost all compiler warning issuesRichardHitt
2012-12-25Merge pull request #336 from TingPing/beepTingPing
2012-12-23fix incorrect FSF addressDan Mashal
2012-12-12Don't beep when window is active.TingPing
2012-12-08fix playing sounds with sound_dirTingPing
Some more rebranding' href='/git-repos/torxchat.git/commit/src/fe-gtk/urlgrab.c?h=fe-web&id=e57659e63f0c4c41fb774cd84ead368bb163b8b3'>e57659e6 ^
4a6ceffb ^
ecdcc992 ^
4a6ceffb ^


















51ae33cb ^
1012be5e ^





4a6ceffb ^
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