codespicuous 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +7 -0
  3. data/LICENSE +29 -0
  4. data/README.md +2 -0
  5. data/Rakefile +6 -0
  6. data/bin/codespicuous +4 -0
  7. data/bin/filezilla/codespicuous.yaml +23 -0
  8. data/bin/filezilla/committers.csv +4 -0
  9. data/bin/filezilla/svnlog/filezilla.log +3939 -0
  10. data/bin/filezilla/svnlog/python.log +3 -0
  11. data/bin/filezilla/svnlog/xiph.log +265 -0
  12. data/codespicuous.gemspec +22 -0
  13. data/lib/codespicuous.rb +38 -0
  14. data/lib/codespicuous/codespicuous.rb +55 -0
  15. data/lib/codespicuous/codespicuous_config.rb +35 -0
  16. data/lib/codespicuous/codespicuousconfigurator.rb +136 -0
  17. data/lib/codespicuous/commandrunner.rb +13 -0
  18. data/lib/codespicuous/commithistory.rb +71 -0
  19. data/lib/codespicuous/commithistory_builder.rb +49 -0
  20. data/lib/codespicuous/commits.rb +147 -0
  21. data/lib/codespicuous/commitstatistics.rb +245 -0
  22. data/lib/codespicuous/committer.rb +105 -0
  23. data/lib/codespicuous/danielparser.rb +31 -0
  24. data/lib/codespicuous/dateutil.rb +18 -0
  25. data/lib/codespicuous/metrics_generator.rb +22 -0
  26. data/lib/codespicuous/metrics_generator_csv.rb +67 -0
  27. data/lib/codespicuous/metrics_generator_daniel.rb +13 -0
  28. data/lib/codespicuous/participantsparser_from_csv.rb +37 -0
  29. data/lib/codespicuous/repositories.rb +80 -0
  30. data/lib/codespicuous/repository_lister.rb +8 -0
  31. data/lib/codespicuous/svn_client.rb +14 -0
  32. data/lib/codespicuous/svn_data_collector.rb +50 -0
  33. data/lib/codespicuous/svn_log_parser.rb +100 -0
  34. data/lib/codespicuous/teams.rb +99 -0
  35. data/lib/codespicuous/version.rb +4 -0
  36. data/spec/codespicuous_spec.rb +81 -0
  37. data/spec/codespicuousconfigurator_spec.rb +202 -0
  38. data/spec/commithistories_data.rb +46 -0
  39. data/spec/commithistory_spec.rb +57 -0
  40. data/spec/commits_spec.rb +93 -0
  41. data/spec/committers_spec.rb +66 -0
  42. data/spec/danielparser_spec.rb +12 -0
  43. data/spec/integration_filezilla_spec.rb +41 -0
  44. data/spec/metrics_generator_csv_spec.rb +91 -0
  45. data/spec/metrics_generator_daniel_spec.rb +10 -0
  46. data/spec/metrics_generator_spec.rb +35 -0
  47. data/spec/repositories_spec.rb +29 -0
  48. data/spec/svn_client_spec.rb +16 -0
  49. data/spec/svn_data_collector_spec.rb +93 -0
  50. data/spec/svn_log_parser_spec.rb +141 -0
  51. data/spec/teams_spec.rb +16 -0
  52. metadata +142 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 0c9e7658c0084a439e6c7a6762410a263eafef15
4
+ data.tar.gz: 2153cbf4df876dc4ddf7f697b6f67b9f396517ce
5
+ SHA512:
6
+ metadata.gz: 29678e91eb3a64c31c28fd764eb8c4c27a6dfd4ab3cbf3a2697255671e4823bc3ce13e7c9615fadedb546f8e655593eca3ff961f130a6a9f7f659a6e84e70bb0
7
+ data.tar.gz: 01c4e1d04c671d7059f300339a264400525da87d51fbd9932e3f07d9db398cbda80495ea316e17d430ea6236a04b28260d44c5c8df5bc3f7a555b987d997e902
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
4
+
5
+ group :test do
6
+ gem 'rspec', '~> 3.1'
7
+ end
data/LICENSE ADDED
@@ -0,0 +1,29 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2017, Bas Vodde
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions are met:
8
+
9
+ * Redistributions of source code must retain the above copyright notice, this
10
+ list of conditions and the following disclaimer.
11
+
12
+ * Redistributions in binary form must reproduce the above copyright notice,
13
+ this list of conditions and the following disclaimer in the documentation
14
+ and/or other materials provided with the distribution.
15
+
16
+ * Neither the name of the copyright holder nor the names of its
17
+ contributors may be used to endorse or promote products derived from
18
+ this software without specific prior written permission.
19
+
20
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
data/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # codespicuous
2
+ Tools for analyzing team behaviour in code
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env rake
2
+ require 'rspec/core/rake_task'
3
+
4
+ task :default => :all
5
+
6
+ RSpec::Core::RakeTask.new(:all)
data/bin/codespicuous ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require_relative '../lib/codespicuous.rb'
3
+
4
+ Codespicuous.new.run(ARGV)
@@ -0,0 +1,23 @@
1
+
2
+ offline: true
3
+
4
+ repositories:
5
+ filezilla: https://svn.filezilla-project.org/svn/FileZilla3/trunk
6
+ xiph: https://svn.xiph.org/
7
+
8
+ teams:
9
+ wine:
10
+ - First Name: Code
11
+ Last Name: Squid
12
+ Email: basv@wow.com
13
+ Login: codesquid
14
+ - First Name: B
15
+ Last Name: tog
16
+ Email: basv@wow.com
17
+ Login: botg
18
+ cheese:
19
+ - First Name: No
20
+ Last Name: Idea
21
+ Login: noidea
22
+ Email: No@idea.com
23
+
@@ -0,0 +1,4 @@
1
+ #,First Name,Last Name,Email,Login,Team,Specialization,Manager,day1,day2,day3,Comments,Present,Questionaire send,Answered,Pretest,Dietary,Commits,Blamed lines,Average LOC/Commit
2
+ 1,Code,Squid,basv@wow.com,codesquid,Wine
3
+ 2,B,tog,basv@wow.com,botg,Wine
4
+
@@ -0,0 +1,3939 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <log>
3
+ <logentry
4
+ revision="7685">
5
+ <author>codesquid</author>
6
+ <date>2016-07-26T10:21:29.372494Z</date>
7
+ <msg>Check if local path exists in search dialog.</msg>
8
+ </logentry>
9
+ <logentry
10
+ revision="7686">
11
+ <author>codesquid</author>
12
+ <date>2016-07-27T10:40:04.753255Z</date>
13
+ <msg>Simpler footer initialization,.</msg>
14
+ </logentry>
15
+ <logentry
16
+ revision="7687">
17
+ <author>codesquid</author>
18
+ <date>2016-07-27T10:41:33.127803Z</date>
19
+ <msg>Revert accidental commit.</msg>
20
+ </logentry>
21
+ <logentry
22
+ revision="7690">
23
+ <author>codesquid</author>
24
+ <date>2016-07-27T14:05:35.800522Z</date>
25
+ <msg>Updated translations</msg>
26
+ </logentry>
27
+ <logentry
28
+ revision="7691">
29
+ <author>codesquid</author>
30
+ <date>2016-07-27T14:09:02.590058Z</date>
31
+ <msg>Bump to 3.20.0</msg>
32
+ </logentry>
33
+ <logentry
34
+ revision="7694">
35
+ <author>codesquid</author>
36
+ <date>2016-07-27T14:45:50.568275Z</date>
37
+ <msg>Fix typo
38
+ </msg>
39
+ </logentry>
40
+ <logentry
41
+ revision="7695">
42
+ <author>codesquid</author>
43
+ <date>2016-07-27T21:50:38.184708Z</date>
44
+ <msg>Clarification of error message if gnutls_x509_trust_list_add_cas fails.</msg>
45
+ </logentry>
46
+ <logentry
47
+ revision="7696">
48
+ <author>codesquid</author>
49
+ <date>2016-07-29T09:52:58.137180Z</date>
50
+ <msg>Correctly document minimum required lfz version.</msg>
51
+ </logentry>
52
+ <logentry
53
+ revision="7697">
54
+ <author>codesquid</author>
55
+ <date>2016-07-29T17:24:06.507024Z</date>
56
+ <msg>Fix a locking violation affecting non-MSW.</msg>
57
+ </logentry>
58
+ <logentry
59
+ revision="7698">
60
+ <author>codesquid</author>
61
+ <date>2016-07-29T17:29:00.650036Z</date>
62
+ <msg>Fix compile error on some configurations.</msg>
63
+ </logentry>
64
+ <logentry
65
+ revision="7699">
66
+ <author>codesquid</author>
67
+ <date>2016-08-02T11:52:12.298262Z</date>
68
+ <msg>Actually use the new file name if renaming on download.</msg>
69
+ </logentry>
70
+ <logentry
71
+ revision="7700">
72
+ <author>codesquid</author>
73
+ <date>2016-08-03T09:29:55.553828Z</date>
74
+ <msg>Print an error message if server sends a malformed chain.</msg>
75
+ </logentry>
76
+ <logentry
77
+ revision="7701">
78
+ <author>codesquid</author>
79
+ <date>2016-08-03T14:40:03.208595Z</date>
80
+ <msg>Updated translations</msg>
81
+ </logentry>
82
+ <logentry
83
+ revision="7702">
84
+ <author>codesquid</author>
85
+ <date>2016-08-03T15:00:10.163392Z</date>
86
+ <msg>Bump to 3.20.1</msg>
87
+ </logentry>
88
+ <logentry
89
+ revision="7703">
90
+ <author>codesquid</author>
91
+ <date>2016-08-07T08:18:24.425344Z</date>
92
+ <msg>Merge changes from upstream PuTTY </msg>
93
+ </logentry>
94
+ <logentry
95
+ revision="7704">
96
+ <author>codesquid</author>
97
+ <date>2016-08-07T18:21:04.966887Z</date>
98
+ <msg>Implement AES256-GCM as cipher.</msg>
99
+ </logentry>
100
+ <logentry
101
+ revision="7705">
102
+ <author>codesquid</author>
103
+ <date>2016-08-07T18:35:47.146514Z</date>
104
+ <msg>Remove unused flag.</msg>
105
+ </logentry>
106
+ <logentry
107
+ revision="7706">
108
+ <author>codesquid</author>
109
+ <date>2016-08-08T09:34:41.553019Z</date>
110
+ <msg>Also add AES128-GCM.</msg>
111
+ </logentry>
112
+ <logentry
113
+ revision="7716">
114
+ <author>codesquid</author>
115
+ <date>2016-08-11T09:30:25.779538Z</date>
116
+ <msg>Fix saving of attributes filter. #10927</msg>
117
+ </logentry>
118
+ <logentry
119
+ revision="7720">
120
+ <author>codesquid</author>
121
+ <date>2016-08-15T09:56:50.109475Z</date>
122
+ <msg>Cleanup recursive operation modes.</msg>
123
+ </logentry>
124
+ <logentry
125
+ revision="7721">
126
+ <author>codesquid</author>
127
+ <date>2016-08-15T12:37:59.959686Z</date>
128
+ <msg>Keep both local and remote active filters in recursive operation.</msg>
129
+ </logentry>
130
+ <logentry
131
+ revision="7722">
132
+ <author>codesquid</author>
133
+ <date>2016-08-16T09:25:06.041178Z</date>
134
+ <msg>Implement basic download synchronization</msg>
135
+ </logentry>
136
+ <logentry
137
+ revision="7723">
138
+ <author>codesquid</author>
139
+ <date>2016-08-17T07:43:56.990537Z</date>
140
+ <msg>Use std::wstring instead of wxString in a couple of places.</msg>
141
+ </logentry>
142
+ <logentry
143
+ revision="7724">
144
+ <author>codesquid</author>
145
+ <date>2016-08-17T07:55:04.469568Z</date>
146
+ <msg>Fix compile errors.
147
+ </msg>
148
+ </logentry>
149
+ <logentry
150
+ revision="7725">
151
+ <author>codesquid</author>
152
+ <date>2016-08-17T07:57:15.404649Z</date>
153
+ <msg>Go via $top_srcdir to locate builtin libpugixml.a
154
+ </msg>
155
+ </logentry>
156
+ <logentry
157
+ revision="7726">
158
+ <author>codesquid</author>
159
+ <date>2016-08-17T08:06:35.818481Z</date>
160
+ <msg>Actually use the top_builddir to locate libpugixml.a
161
+ </msg>
162
+ </logentry>
163
+ <logentry
164
+ revision="7727">
165
+ <author>codesquid</author>
166
+ <date>2016-08-17T08:13:41.710554Z</date>
167
+ <msg>Fix a warning.</msg>
168
+ </logentry>
169
+ <logentry
170
+ revision="7728">
171
+ <author>codesquid</author>
172
+ <date>2016-08-17T14:43:11.254194Z</date>
173
+ <msg>Add option to configure TCP keep alive interval.</msg>
174
+ </logentry>
175
+ <logentry
176
+ revision="7729">
177
+ <author>codesquid</author>
178
+ <date>2016-08-22T08:08:30.258550Z</date>
179
+ <msg>Further restrict allowed values for keep-alive interval so that it fits into an int.</msg>
180
+ </logentry>
181
+ <logentry
182
+ revision="7730">
183
+ <author>codesquid</author>
184
+ <date>2016-08-22T08:09:02.239803Z</date>
185
+ <msg>Add option name for TCP keepalive interval.</msg>
186
+ </logentry>
187
+ <logentry
188
+ revision="7731">
189
+ <author>codesquid</author>
190
+ <date>2016-08-22T17:06:58.324836Z</date>
191
+ <msg>Fix compile error.</msg>
192
+ </logentry>
193
+ <logentry
194
+ revision="7732">
195
+ <author>codesquid</author>
196
+ <date>2016-08-23T06:46:06.463371Z</date>
197
+ <msg>Fixed typo.</msg>
198
+ </logentry>
199
+ <logentry
200
+ revision="7733">
201
+ <author>codesquid</author>
202
+ <date>2016-08-23T06:46:48.033433Z</date>
203
+ <msg>Fixed another spelling mistake</msg>
204
+ </logentry>
205
+ <logentry
206
+ revision="7734">
207
+ <author>codesquid</author>
208
+ <date>2016-08-23T08:56:53.994393Z</date>
209
+ <msg>On OS X, add Ctrl+(Shift+)Tab as shortcut to switch to the next tab. #10851
210
+ </msg>
211
+ </logentry>
212
+ <logentry
213
+ revision="7735">
214
+ <author>codesquid</author>
215
+ <date>2016-08-23T11:58:44.481426Z</date>
216
+ <msg>Explicitly block queue completion action during certain recursive operations.</msg>
217
+ </logentry>
218
+ <logentry
219
+ revision="7736">
220
+ <author>codesquid</author>
221
+ <date>2016-08-23T12:23:27.906741Z</date>
222
+ <msg>Updated translations</msg>
223
+ </logentry>
224
+ <logentry
225
+ revision="7737">
226
+ <author>codesquid</author>
227
+ <date>2016-08-23T12:41:22.167058Z</date>
228
+ <msg>Fix a potential crash if using mismatched resource files from an old version of FileZilla.</msg>
229
+ </logentry>
230
+ <logentry
231
+ revision="7738">
232
+ <author>codesquid</author>
233
+ <date>2016-08-23T12:58:32.287071Z</date>
234
+ <msg>Fix compile error on non-MSW.
235
+ </msg>
236
+ </logentry>
237
+ <logentry
238
+ revision="7739">
239
+ <author>codesquid</author>
240
+ <date>2016-08-23T13:33:12.093722Z</date>
241
+ <msg>Do not pass listing entry as format string.
242
+ </msg>
243
+ </logentry>
244
+ <logentry
245
+ revision="7740">
246
+ <author>codesquid</author>
247
+ <date>2016-08-23T13:33:29.112804Z</date>
248
+ <msg>Bump to 3.21.0
249
+ </msg>
250
+ </logentry>
251
+ <logentry
252
+ revision="7741">
253
+ <author>codesquid</author>
254
+ <date>2016-08-26T06:59:56.771461Z</date>
255
+ <msg>#8928: Rename CVS/SVN filter to "Source control directories" and add .git, .hg and .bzr</msg>
256
+ </logentry>
257
+ <logentry
258
+ revision="7742">
259
+ <author>codesquid</author>
260
+ <date>2016-08-30T07:50:06.252646Z</date>
261
+ <msg>Remove unused variable.</msg>
262
+ </logentry>
263
+ <logentry
264
+ revision="7743">
265
+ <author>codesquid</author>
266
+ <date>2016-08-31T08:11:27.523833Z</date>
267
+ <msg>Handle long paths during drag&amp;drop on Windows 10.</msg>
268
+ </logentry>
269
+ <logentry
270
+ revision="7744">
271
+ <author>codesquid</author>
272
+ <date>2016-08-31T08:32:04.541790Z</date>
273
+ <msg>Fix redirection to https:// servers.</msg>
274
+ </logentry>
275
+ <logentry
276
+ revision="7750">
277
+ <author>codesquid</author>
278
+ <date>2016-09-02T13:59:46.858254Z</date>
279
+ <msg>Use fz::thread_pool for socket and file i/o threads.</msg>
280
+ </logentry>
281
+ <logentry
282
+ revision="7752">
283
+ <author>codesquid</author>
284
+ <date>2016-09-05T07:22:53.344928Z</date>
285
+ <msg>Simplify getting of keyfiles.</msg>
286
+ </logentry>
287
+ <logentry
288
+ revision="7754">
289
+ <author>codesquid</author>
290
+ <date>2016-09-05T08:30:20.500229Z</date>
291
+ <msg>Use fz::strtok instead of wxStringTokenizer</msg>
292
+ </logentry>
293
+ <logentry
294
+ revision="7755">
295
+ <author>codesquid</author>
296
+ <date>2016-09-05T09:50:12.417537Z</date>
297
+ <msg>Try password based login if a password-protected keyfile is rejected instead of failing with a cryptic message about multiple login prompts.</msg>
298
+ </logentry>
299
+ <logentry
300
+ revision="7758">
301
+ <author>codesquid</author>
302
+ <date>2016-09-06T15:26:05.908196Z</date>
303
+ <msg>Replace invalid characters in filenames when editing remote files.</msg>
304
+ </logentry>
305
+ <logentry
306
+ revision="7760">
307
+ <author>codesquid</author>
308
+ <date>2016-09-07T15:13:28.612343Z</date>
309
+ <msg>Use fz::base64_encode and some related code cleanup.</msg>
310
+ </logentry>
311
+ <logentry
312
+ revision="7761">
313
+ <author>codesquid</author>
314
+ <date>2016-09-07T15:21:27.571527Z</date>
315
+ <msg>Use fz::base64_encode and some related code cleanup.</msg>
316
+ </logentry>
317
+ <logentry
318
+ revision="7764">
319
+ <author>codesquid</author>
320
+ <date>2016-09-08T08:35:08.558237Z</date>
321
+ <msg>Use fz::base64_decode instead of wxBase64Decode.</msg>
322
+ </logentry>
323
+ <logentry
324
+ revision="7766">
325
+ <author>codesquid</author>
326
+ <date>2016-09-08T14:20:20.047432Z</date>
327
+ <msg>Require GnuTLS 3.4.15 or higher as it includes the fix for gnutls_x509_crt_list_import2 not honoring the passed flags.</msg>
328
+ </logentry>
329
+ <logentry
330
+ revision="7767">
331
+ <author>codesquid</author>
332
+ <date>2016-09-09T14:45:24.570024Z</date>
333
+ <msg>Handle base64 encoded blobs.</msg>
334
+ </logentry>
335
+ <logentry
336
+ revision="7768">
337
+ <author>codesquid</author>
338
+ <date>2016-09-09T15:34:02.997058Z</date>
339
+ <msg>Fix implicit conversion when creating transfer socket proxy backend.</msg>
340
+ </logentry>
341
+ <logentry
342
+ revision="7769">
343
+ <author>codesquid</author>
344
+ <date>2016-09-10T10:38:29.223363Z</date>
345
+ <msg>Fix loading hex blobs.</msg>
346
+ </logentry>
347
+ <logentry
348
+ revision="7770">
349
+ <author>codesquid</author>
350
+ <date>2016-09-10T10:39:05.043278Z</date>
351
+ <msg>Cleanup external ip address resolver.</msg>
352
+ </logentry>
353
+ <logentry
354
+ revision="7773">
355
+ <author>codesquid</author>
356
+ <date>2016-09-12T11:50:07.470602Z</date>
357
+ <msg>Reduce wxString usage.</msg>
358
+ </logentry>
359
+ <logentry
360
+ revision="7774">
361
+ <author>codesquid</author>
362
+ <date>2016-09-13T08:05:33.735754Z</date>
363
+ <msg>Fix parsing proxy command sequence, patch by Paolo Zambotti. #10972</msg>
364
+ </logentry>
365
+ <logentry
366
+ revision="7775">
367
+ <author>codesquid</author>
368
+ <date>2016-09-13T08:49:52.834202Z</date>
369
+ <msg>Make COptions(Base) use std::wstring</msg>
370
+ </logentry>
371
+ <logentry
372
+ revision="7776">
373
+ <author>codesquid</author>
374
+ <date>2016-09-13T11:14:02.114880Z</date>
375
+ <msg>Fix a bunch of warnings.
376
+ </msg>
377
+ </logentry>
378
+ <logentry
379
+ revision="7778">
380
+ <author>codesquid</author>
381
+ <date>2016-09-16T13:08:15.293305Z</date>
382
+ <msg>Get rid of wxStringTokenizer from Options.cpp</msg>
383
+ </logentry>
384
+ <logentry
385
+ revision="7779">
386
+ <author>codesquid</author>
387
+ <date>2016-09-19T12:56:28.862414Z</date>
388
+ <msg>Fix warning.
389
+ </msg>
390
+ </logentry>
391
+ <logentry
392
+ revision="7780">
393
+ <author>codesquid</author>
394
+ <date>2016-09-19T13:21:48.954223Z</date>
395
+ <msg>Fix stupid mistake
396
+ </msg>
397
+ </logentry>
398
+ <logentry
399
+ revision="7781">
400
+ <author>codesquid</author>
401
+ <date>2016-09-20T09:38:25.344439Z</date>
402
+ <msg>Add "not all" match type to filters and search. #9293</msg>
403
+ </logentry>
404
+ <logentry
405
+ revision="7782">
406
+ <author>codesquid</author>
407
+ <date>2016-09-20T09:43:49.144207Z</date>
408
+ <msg>Rename "Filename filters" to "Directory listing filters" in menu.</msg>
409
+ </logentry>
410
+ <logentry
411
+ revision="7783">
412
+ <author>codesquid</author>
413
+ <date>2016-09-20T13:19:38.612780Z</date>
414
+ <msg>Reorder LDFLAGS, fixes linking errors in the test case.
415
+ </msg>
416
+ </logentry>
417
+ <logentry
418
+ revision="7784">
419
+ <author>codesquid</author>
420
+ <date>2016-09-20T13:47:10.553155Z</date>
421
+ <msg>Implement exporting directory listing filters.</msg>
422
+ </logentry>
423
+ <logentry
424
+ revision="7785">
425
+ <author>codesquid</author>
426
+ <date>2016-09-20T14:54:56.318578Z</date>
427
+ <msg>Small modernization.
428
+ </msg>
429
+ </logentry>
430
+ <logentry
431
+ revision="7786">
432
+ <author>codesquid</author>
433
+ <date>2016-09-20T14:57:12.152339Z</date>
434
+ <msg>Verify item before indexing m_selections in OnItemDeselected just as in OnItemSelected</msg>
435
+ </logentry>
436
+ <logentry
437
+ revision="7787">
438
+ <author>codesquid</author>
439
+ <date>2016-09-20T15:12:50.209936Z</date>
440
+ <msg>Fix harmless logic error.</msg>
441
+ </logentry>
442
+ <logentry
443
+ revision="7788">
444
+ <author>codesquid</author>
445
+ <date>2016-09-21T23:06:33.151467Z</date>
446
+ <msg>Use a more permissive copyright for this file.</msg>
447
+ </logentry>
448
+ <logentry
449
+ revision="7790">
450
+ <author>codesquid</author>
451
+ <date>2016-09-24T12:53:54.917078Z</date>
452
+ <msg>Import of filters</msg>
453
+ </logentry>
454
+ <logentry
455
+ revision="7791">
456
+ <author>codesquid</author>
457
+ <date>2016-09-24T13:13:13.138596Z</date>
458
+ <msg>Fix compile error
459
+ </msg>
460
+ </logentry>
461
+ <logentry
462
+ revision="7796">
463
+ <author>codesquid</author>
464
+ <date>2016-09-24T14:14:53.266101Z</date>
465
+ <msg>Updated translations</msg>
466
+ </logentry>
467
+ <logentry
468
+ revision="7797">
469
+ <author>codesquid</author>
470
+ <date>2016-09-24T14:41:27.347713Z</date>
471
+ <msg>Bump to 3.22.0-rc1
472
+ </msg>
473
+ </logentry>
474
+ <logentry
475
+ revision="7798">
476
+ <author>codesquid</author>
477
+ <date>2016-09-24T14:42:07.118080Z</date>
478
+ <msg>Document lfz 0.7.0 dependency</msg>
479
+ </logentry>
480
+ <logentry
481
+ revision="7800">
482
+ <author>codesquid</author>
483
+ <date>2016-09-25T19:46:57.822136Z</date>
484
+ <msg>Fix an issue preventing keyfiles from working correctly.</msg>
485
+ </logentry>
486
+ <logentry
487
+ revision="7801">
488
+ <author>codesquid</author>
489
+ <date>2016-09-26T12:01:50.144716Z</date>
490
+ <msg>Allow setting color.</msg>
491
+ </logentry>
492
+ <logentry
493
+ revision="7802">
494
+ <author>codesquid</author>
495
+ <date>2016-09-27T09:33:14.128800Z</date>
496
+ <msg>Update icon specs, we want to transition towards scalable icons.</msg>
497
+ </logentry>
498
+ <logentry
499
+ revision="7803">
500
+ <author>codesquid</author>
501
+ <date>2016-09-28T10:13:33.866108Z</date>
502
+ <msg>Fixes for --with-pugixml=auto</msg>
503
+ </logentry>
504
+ <logentry
505
+ revision="7804">
506
+ <author>codesquid</author>
507
+ <date>2016-09-28T10:16:57.021570Z</date>
508
+ <msg>Fix warning in test</msg>
509
+ </logentry>
510
+ <logentry
511
+ revision="7805">
512
+ <author>codesquid</author>
513
+ <date>2016-09-28T12:41:59.459745Z</date>
514
+ <msg>Fix two more warnings in configure output</msg>
515
+ </logentry>
516
+ <logentry
517
+ revision="7806">
518
+ <author>codesquid</author>
519
+ <date>2016-09-28T12:56:22.917890Z</date>
520
+ <msg>Refactor CLocalTreeView::GetSpecialFolder to get rid of deprecated SHGetMalloc</msg>
521
+ </logentry>
522
+ <logentry
523
+ revision="7807">
524
+ <author>codesquid</author>
525
+ <date>2016-09-28T15:16:18.553803Z</date>
526
+ <msg>Clear background in sizeformatting examples when changing selection</msg>
527
+ </logentry>
528
+ <logentry
529
+ revision="7808">
530
+ <author>codesquid</author>
531
+ <date>2016-09-28T15:23:51.765612Z</date>
532
+ <msg>Fixed typo</msg>
533
+ </logentry>
534
+ <logentry
535
+ revision="7809">
536
+ <author>codesquid</author>
537
+ <date>2016-09-28T16:23:45.257527Z</date>
538
+ <msg>Update svn:ignore</msg>
539
+ </logentry>
540
+ <logentry
541
+ revision="7810">
542
+ <author>codesquid</author>
543
+ <date>2016-09-29T11:58:08.195550Z</date>
544
+ <msg>Fix a case of the queue completion action triggering too early.</msg>
545
+ </logentry>
546
+ <logentry
547
+ revision="7811">
548
+ <author>codesquid</author>
549
+ <date>2016-09-29T12:38:53.690223Z</date>
550
+ <msg>Change wxString to std::wstring in a few places.</msg>
551
+ </logentry>
552
+ <logentry
553
+ revision="7812">
554
+ <author>codesquid</author>
555
+ <date>2016-09-30T13:12:38.392569Z</date>
556
+ <msg>Fix colors in log after toggling log timestamps. #10990</msg>
557
+ </logentry>
558
+ <logentry
559
+ revision="7813">
560
+ <author>codesquid</author>
561
+ <date>2016-09-30T13:36:06.529900Z</date>
562
+ <msg>Small update to icon specs.</msg>
563
+ </logentry>
564
+ <logentry
565
+ revision="7814">
566
+ <author>codesquid</author>
567
+ <date>2016-09-30T15:26:32.116721Z</date>
568
+ <msg>Partial fix for #10960, set comparison flag from site-specific bookmark.</msg>
569
+ </logentry>
570
+ <logentry
571
+ revision="7815">
572
+ <author>codesquid</author>
573
+ <date>2016-09-30T15:58:35.671420Z</date>
574
+ <msg>Copy comparison flag for bookmarks.</msg>
575
+ </logentry>
576
+ <logentry
577
+ revision="7816">
578
+ <author>codesquid</author>
579
+ <date>2016-09-30T16:30:32.695103Z</date>
580
+ <msg>Fix setting comparison from bookmarks, #10960</msg>
581
+ </logentry>
582
+ <logentry
583
+ revision="7817">
584
+ <author>codesquid</author>
585
+ <date>2016-10-01T08:00:09.215424Z</date>
586
+ <msg>Add a link to the paid phone support page for US and Canada in official Windows builds.</msg>
587
+ </logentry>
588
+ <logentry
589
+ revision="7818">
590
+ <author>codesquid</author>
591
+ <date>2016-10-01T08:18:27.869307Z</date>
592
+ <msg>Updated translations</msg>
593
+ </logentry>
594
+ <logentry
595
+ revision="7819">
596
+ <author>codesquid</author>
597
+ <date>2016-10-01T08:37:54.407920Z</date>
598
+ <msg>Bump to 3.22.0
599
+ </msg>
600
+ </logentry>
601
+ <logentry
602
+ revision="7821">
603
+ <author>codesquid</author>
604
+ <date>2016-10-02T15:34:39.833706Z</date>
605
+ <msg>Fix valgrind warning
606
+ </msg>
607
+ </logentry>
608
+ <logentry
609
+ revision="7822">
610
+ <author>codesquid</author>
611
+ <date>2016-10-02T16:05:46.469662Z</date>
612
+ <msg>Add a debug message.</msg>
613
+ </logentry>
614
+ <logentry
615
+ revision="7824">
616
+ <author>codesquid</author>
617
+ <date>2016-10-03T09:14:50.516396Z</date>
618
+ <msg>Add workaround for a nasty Xcode bug where compiling for older OS X versions silently allows user of functions only available on newer versions, leading to runtime failures.
619
+ </msg>
620
+ </logentry>
621
+ <logentry
622
+ revision="7825">
623
+ <author>codesquid</author>
624
+ <date>2016-10-03T09:46:47.019581Z</date>
625
+ <msg>Windows has no strndup</msg>
626
+ </logentry>
627
+ <logentry
628
+ revision="7826">
629
+ <author>codesquid</author>
630
+ <date>2016-10-03T13:04:52.191219Z</date>
631
+ <msg>Avoid a needless conversion from std::wstring to wxString.</msg>
632
+ </logentry>
633
+ <logentry
634
+ revision="7829">
635
+ <author>codesquid</author>
636
+ <date>2016-10-03T14:03:24.895291Z</date>
637
+ <msg>Updated translations.</msg>
638
+ </logentry>
639
+ <logentry
640
+ revision="7830">
641
+ <author>codesquid</author>
642
+ <date>2016-10-03T14:04:55.132180Z</date>
643
+ <msg>Bump to 3.22.1</msg>
644
+ </logentry>
645
+ <logentry
646
+ revision="7832">
647
+ <author>codesquid</author>
648
+ <date>2016-10-04T08:22:15.392017Z</date>
649
+ <msg>Add a missing include.</msg>
650
+ </logentry>
651
+ <logentry
652
+ revision="7833">
653
+ <author>codesquid</author>
654
+ <date>2016-10-04T08:24:01.653873Z</date>
655
+ <msg>Two more missing includes.</msg>
656
+ </logentry>
657
+ <logentry
658
+ revision="7834">
659
+ <author>codesquid</author>
660
+ <date>2016-10-04T08:25:08.191779Z</date>
661
+ <msg>Apply patch #11005 by twu2: Fix string conversion in CProxySocket::GetUser and CProxySocket::GetPass</msg>
662
+ </logentry>
663
+ <logentry
664
+ revision="7835">
665
+ <author>codesquid</author>
666
+ <date>2016-10-04T13:26:31.066184Z</date>
667
+ <msg>Refactor CFZPuttyGenInterface to use fz::process instead of wxProcess.</msg>
668
+ </logentry>
669
+ <logentry
670
+ revision="7836">
671
+ <author>codesquid</author>
672
+ <date>2016-10-04T15:42:48.250272Z</date>
673
+ <msg>Some additional wxString removal.</msg>
674
+ </logentry>
675
+ <logentry
676
+ revision="7837">
677
+ <author>codesquid</author>
678
+ <date>2016-10-04T16:33:03.117053Z</date>
679
+ <msg>Fix a compile error.</msg>
680
+ </logentry>
681
+ <logentry
682
+ revision="7838">
683
+ <author>codesquid</author>
684
+ <date>2016-10-04T17:08:30.149670Z</date>
685
+ <msg>Further dewxification.
686
+ </msg>
687
+ </logentry>
688
+ <logentry
689
+ revision="7839">
690
+ <author>codesquid</author>
691
+ <date>2016-10-04T17:13:47.978606Z</date>
692
+ <msg>Fix compile error
693
+ </msg>
694
+ </logentry>
695
+ <logentry
696
+ revision="7841">
697
+ <author>codesquid</author>
698
+ <date>2016-10-06T08:12:23.655807Z</date>
699
+ <msg>Eliminated wxString usage from the command classes.</msg>
700
+ </logentry>
701
+ <logentry
702
+ revision="7842">
703
+ <author>codesquid</author>
704
+ <date>2016-10-06T09:26:01.450475Z</date>
705
+ <msg>Remove wxString from CServerPath</msg>
706
+ </logentry>
707
+ <logentry
708
+ revision="7843">
709
+ <author>codesquid</author>
710
+ <date>2016-10-06T09:45:16.968070Z</date>
711
+ <msg>Fix logic error
712
+ </msg>
713
+ </logentry>
714
+ <logentry
715
+ revision="7844">
716
+ <author>codesquid</author>
717
+ <date>2016-10-06T13:32:21.091153Z</date>
718
+ <msg>Remove wxString from CLocalPath.</msg>
719
+ </logentry>
720
+ <logentry
721
+ revision="7845">
722
+ <author>codesquid</author>
723
+ <date>2016-10-06T14:05:23.290276Z</date>
724
+ <msg>Fix compile errors.
725
+ </msg>
726
+ </logentry>
727
+ <logentry
728
+ revision="7846">
729
+ <author>codesquid</author>
730
+ <date>2016-10-06T15:38:50.380697Z</date>
731
+ <msg>Fix another compile error.
732
+ </msg>
733
+ </logentry>
734
+ <logentry
735
+ revision="7847">
736
+ <author>codesquid</author>
737
+ <date>2016-10-06T19:06:07.799464Z</date>
738
+ <msg>Hopefully the last compile error.</msg>
739
+ </logentry>
740
+ <logentry
741
+ revision="7848">
742
+ <author>codesquid</author>
743
+ <date>2016-10-11T07:49:58.630583Z</date>
744
+ <msg>Remove a bit more wxString.</msg>
745
+ </logentry>
746
+ <logentry
747
+ revision="7849">
748
+ <author>codesquid</author>
749
+ <date>2016-10-11T08:16:13.282648Z</date>
750
+ <msg>Further wxString removal.</msg>
751
+ </logentry>
752
+ <logentry
753
+ revision="7850">
754
+ <author>codesquid</author>
755
+ <date>2016-10-11T09:48:44.530215Z</date>
756
+ <msg>Remove wxString from notifications</msg>
757
+ </logentry>
758
+ <logentry
759
+ revision="7851">
760
+ <author>codesquid</author>
761
+ <date>2016-10-11T09:49:25.322478Z</date>
762
+ <msg>Avoid unnecessary conversion to wxString.</msg>
763
+ </logentry>
764
+ <logentry
765
+ revision="7853">
766
+ <author>codesquid</author>
767
+ <date>2016-10-11T10:23:01.574606Z</date>
768
+ <msg>Begin cleaning up CServer</msg>
769
+ </logentry>
770
+ <logentry
771
+ revision="7854">
772
+ <author>codesquid</author>
773
+ <date>2016-10-11T10:33:27.206785Z</date>
774
+ <msg>Minor cleanup without functional change.
775
+ </msg>
776
+ </logentry>
777
+ <logentry
778
+ revision="7855">
779
+ <author>codesquid</author>
780
+ <date>2016-10-11T10:33:40.437599Z</date>
781
+ <msg>Fix warning.
782
+ </msg>
783
+ </logentry>
784
+ <logentry
785
+ revision="7856">
786
+ <author>codesquid</author>
787
+ <date>2016-10-11T13:15:24.679132Z</date>
788
+ <msg>Further reduction of wxString usage.</msg>
789
+ </logentry>
790
+ <logentry
791
+ revision="7857">
792
+ <author>codesquid</author>
793
+ <date>2016-10-11T13:30:18.267802Z</date>
794
+ <msg>Fix a compile error</msg>
795
+ </logentry>
796
+ <logentry
797
+ revision="7858">
798
+ <author>codesquid</author>
799
+ <date>2016-10-11T15:58:37.561671Z</date>
800
+ <msg>Add a null check.</msg>
801
+ </logentry>
802
+ <logentry
803
+ revision="7859">
804
+ <author>codesquid</author>
805
+ <date>2016-10-11T16:09:08.602329Z</date>
806
+ <msg>Add two more null checks.</msg>
807
+ </logentry>
808
+ <logentry
809
+ revision="7860">
810
+ <author>codesquid</author>
811
+ <date>2016-10-11T19:42:30.160786Z</date>
812
+ <msg>Additional cleanup of CServer</msg>
813
+ </logentry>
814
+ <logentry
815
+ revision="7861">
816
+ <author>codesquid</author>
817
+ <date>2016-10-11T20:22:51.769041Z</date>
818
+ <msg>Somewhat dewx CQueueStorage.</msg>
819
+ </logentry>
820
+ <logentry
821
+ revision="7862">
822
+ <author>codesquid</author>
823
+ <date>2016-10-11T20:33:04.439795Z</date>
824
+ <msg>Change a few XML function to use std::wstring instead of wxString.</msg>
825
+ </logentry>
826
+ <logentry
827
+ revision="7863">
828
+ <author>codesquid</author>
829
+ <date>2016-10-12T07:50:55.199354Z</date>
830
+ <msg>SFTP: Reduce log output if not detailed.</msg>
831
+ </logentry>
832
+ <logentry
833
+ revision="7864">
834
+ <author>codesquid</author>
835
+ <date>2016-10-12T08:19:03.912187Z</date>
836
+ <msg>Minor performance improvement</msg>
837
+ </logentry>
838
+ <logentry
839
+ revision="7865">
840
+ <author>codesquid</author>
841
+ <date>2016-10-12T09:46:56.632447Z</date>
842
+ <msg>Avoid a string copy.</msg>
843
+ </logentry>
844
+ <logentry
845
+ revision="7866">
846
+ <author>codesquid</author>
847
+ <date>2016-10-12T12:35:36.183532Z</date>
848
+ <msg>Cleanup CBuildInfo</msg>
849
+ </logentry>
850
+ <logentry
851
+ revision="7868">
852
+ <author>codesquid</author>
853
+ <date>2016-10-12T13:19:58.644970Z</date>
854
+ <msg>Cleaned up CServer.</msg>
855
+ </logentry>
856
+ <logentry
857
+ revision="7870">
858
+ <author>codesquid</author>
859
+ <date>2016-10-13T08:45:06.355464Z</date>
860
+ <msg>Further removal of wxString.</msg>
861
+ </logentry>
862
+ <logentry
863
+ revision="7871">
864
+ <author>codesquid</author>
865
+ <date>2016-10-13T15:31:00.159408Z</date>
866
+ <msg>Cleanup C(S)FtpControlSocket</msg>
867
+ </logentry>
868
+ <logentry
869
+ revision="7872">
870
+ <author>codesquid</author>
871
+ <date>2016-10-13T15:48:35.787601Z</date>
872
+ <msg>Fixed compile error.</msg>
873
+ </logentry>
874
+ <logentry
875
+ revision="7874">
876
+ <author>codesquid</author>
877
+ <date>2016-10-14T08:02:38.569965Z</date>
878
+ <msg>Further wxString removal.</msg>
879
+ </logentry>
880
+ <logentry
881
+ revision="7875">
882
+ <author>codesquid</author>
883
+ <date>2016-10-14T14:43:26.290461Z</date>
884
+ <msg>Small bits of wxString removal.</msg>
885
+ </logentry>
886
+ <logentry
887
+ revision="7876">
888
+ <author>codesquid</author>
889
+ <date>2016-10-14T20:35:12.428336Z</date>
890
+ <msg>Fix compile error
891
+ </msg>
892
+ </logentry>
893
+ <logentry
894
+ revision="7877">
895
+ <author>codesquid</author>
896
+ <date>2016-10-15T10:03:49.189503Z</date>
897
+ <msg>Add small debug feature to reinitialize the updater on-demand.</msg>
898
+ </logentry>
899
+ <logentry
900
+ revision="7878">
901
+ <author>codesquid</author>
902
+ <date>2016-10-15T10:46:07.833996Z</date>
903
+ <msg>Remove last remaining wxString usage from queue storage.</msg>
904
+ </logentry>
905
+ <logentry
906
+ revision="7879">
907
+ <author>codesquid</author>
908
+ <date>2016-10-15T11:07:38.255384Z</date>
909
+ <msg>sqlite3_column_bytes16 returns bytes, not characters, so divide by two.</msg>
910
+ </logentry>
911
+ <logentry
912
+ revision="7880">
913
+ <author>codesquid</author>
914
+ <date>2016-10-18T07:48:04.264330Z</date>
915
+ <msg>Wait for wx to finish processing the rename before refreshing local file list. Fixes an assertion in wx.
916
+ </msg>
917
+ </logentry>
918
+ <logentry
919
+ revision="7881">
920
+ <author>codesquid</author>
921
+ <date>2016-10-18T12:11:41.569871Z</date>
922
+ <msg>Make new filters apply to both files and directories by default.
923
+ </msg>
924
+ </logentry>
925
+ <logentry
926
+ revision="7882">
927
+ <author>codesquid</author>
928
+ <date>2016-10-18T12:42:00.170189Z</date>
929
+ <msg>Allow subclassing wxCustomHeightListCtrl
930
+ </msg>
931
+ </logentry>
932
+ <logentry
933
+ revision="7883">
934
+ <author>codesquid</author>
935
+ <date>2016-10-19T11:35:58.004370Z</date>
936
+ <msg>Fix assertion if Ctrl+A is pressed in an empty file list.</msg>
937
+ </logentry>
938
+ <logentry
939
+ revision="7884">
940
+ <author>codesquid</author>
941
+ <date>2016-10-19T13:32:16.261032Z</date>
942
+ <msg>Fix assertion due to new items being unexpectedly selected by default.
943
+ </msg>
944
+ </logentry>
945
+ <logentry
946
+ revision="7885">
947
+ <author>codesquid</author>
948
+ <date>2016-10-19T13:32:54.725043Z</date>
949
+ <msg>Small formatting changes.
950
+ </msg>
951
+ </logentry>
952
+ <logentry
953
+ revision="7886">
954
+ <author>codesquid</author>
955
+ <date>2016-10-20T09:10:09.120392Z</date>
956
+ <msg>Remove wxString from one function.</msg>
957
+ </logentry>
958
+ <logentry
959
+ revision="7887">
960
+ <author>codesquid</author>
961
+ <date>2016-10-20T13:08:09.634271Z</date>
962
+ <msg>Explicitly check for wxUSE_GUI during configure, wx-config unfortunately doesn't do the right thing.
963
+ </msg>
964
+ </logentry>
965
+ <logentry
966
+ revision="7888">
967
+ <author>codesquid</author>
968
+ <date>2016-10-23T09:38:23.840405Z</date>
969
+ <msg>Some reformatting.</msg>
970
+ </logentry>
971
+ <logentry
972
+ revision="7889">
973
+ <author>codesquid</author>
974
+ <date>2016-10-24T12:04:33.431280Z</date>
975
+ <msg>Fix compile error
976
+ </msg>
977
+ </logentry>
978
+ <logentry
979
+ revision="7890">
980
+ <author>codesquid</author>
981
+ <date>2016-10-24T13:14:10.638387Z</date>
982
+ <msg>Save a few cycles.</msg>
983
+ </logentry>
984
+ <logentry
985
+ revision="7891">
986
+ <author>codesquid</author>
987
+ <date>2016-10-24T14:31:08.480207Z</date>
988
+ <msg>Show a message on non-existing key file</msg>
989
+ </logentry>
990
+ <logentry
991
+ revision="7892">
992
+ <author>codesquid</author>
993
+ <date>2016-10-24T14:31:21.607358Z</date>
994
+ <msg>Remove un-needed include.</msg>
995
+ </logentry>
996
+ <logentry
997
+ revision="7893">
998
+ <author>codesquid</author>
999
+ <date>2016-10-24T15:00:27.981278Z</date>
1000
+ <msg>Don't silently remove non-existing key files.</msg>
1001
+ </logentry>
1002
+ <logentry
1003
+ revision="7894">
1004
+ <author>codesquid</author>
1005
+ <date>2016-10-24T16:45:42.615704Z</date>
1006
+ <msg>Apply #11044: Use wxSYS_COLOUR_LISTBOXTEXT instead of wxSYS_COLOUR_WINDOWTEXT for status messages in the message log to match the background which is wxSYS_COLOUR_LISTBOX.</msg>
1007
+ </logentry>
1008
+ <logentry
1009
+ revision="7895">
1010
+ <author>codesquid</author>
1011
+ <date>2016-10-25T07:54:20.574429Z</date>
1012
+ <msg>Simplify a comment.</msg>
1013
+ </logentry>
1014
+ <logentry
1015
+ revision="7896">
1016
+ <author>codesquid</author>
1017
+ <date>2016-10-25T08:53:15.521045Z</date>
1018
+ <msg>Get rid of wxSysErrorMsg and wxSysErrorCode
1019
+ </msg>
1020
+ </logentry>
1021
+ <logentry
1022
+ revision="7897">
1023
+ <author>codesquid</author>
1024
+ <date>2016-10-25T13:01:25.758456Z</date>
1025
+ <msg>Fix logic of keyfile skipping.</msg>
1026
+ </logentry>
1027
+ <logentry
1028
+ revision="7900">
1029
+ <author>codesquid</author>
1030
+ <date>2016-10-25T14:53:02.094145Z</date>
1031
+ <msg>Updated translations</msg>
1032
+ </logentry>
1033
+ <logentry
1034
+ revision="7901">
1035
+ <author>codesquid</author>
1036
+ <date>2016-10-25T15:12:49.767658Z</date>
1037
+ <msg>Bump to 3.22.2-rc1</msg>
1038
+ </logentry>
1039
+ <logentry
1040
+ revision="7902">
1041
+ <author>codesquid</author>
1042
+ <date>2016-10-27T07:47:17.957508Z</date>
1043
+ <msg>Fix parsing custom ports.</msg>
1044
+ </logentry>
1045
+ <logentry
1046
+ revision="7904">
1047
+ <author>codesquid</author>
1048
+ <date>2016-10-27T16:13:17.757288Z</date>
1049
+ <msg>Fix parsing of EPSV reply. Inspired by patch #11048</msg>
1050
+ </logentry>
1051
+ <logentry
1052
+ revision="7905">
1053
+ <author>codesquid</author>
1054
+ <date>2016-10-28T08:36:39.414508Z</date>
1055
+ <msg>Minor cleanup</msg>
1056
+ </logentry>
1057
+ <logentry
1058
+ revision="7906">
1059
+ <author>codesquid</author>
1060
+ <date>2016-10-28T08:45:24.470956Z</date>
1061
+ <msg>Avoid a call to substr.</msg>
1062
+ </logentry>
1063
+ <logentry
1064
+ revision="7907">
1065
+ <author>codesquid</author>
1066
+ <date>2016-10-28T10:10:24.887633Z</date>
1067
+ <msg>Remove wxString from remote recursive operations.</msg>
1068
+ </logentry>
1069
+ <logentry
1070
+ revision="7908">
1071
+ <author>codesquid</author>
1072
+ <date>2016-10-28T10:12:14.865445Z</date>
1073
+ <msg>Mark error string of CTlsSocket::GetMacName() translatable.</msg>
1074
+ </logentry>
1075
+ <logentry
1076
+ revision="7909">
1077
+ <author>codesquid</author>
1078
+ <date>2016-10-28T10:20:44.729349Z</date>
1079
+ <msg>Remove wxString from CTlsSocket.</msg>
1080
+ </logentry>
1081
+ <logentry
1082
+ revision="7910">
1083
+ <author>codesquid</author>
1084
+ <date>2016-10-28T11:10:58.443577Z</date>
1085
+ <msg>Remove a bit of debug code accidentally left in.</msg>
1086
+ </logentry>
1087
+ <logentry
1088
+ revision="7911">
1089
+ <author>codesquid</author>
1090
+ <date>2016-10-28T11:42:10.219443Z</date>
1091
+ <msg>Fix rename where the target is a directory.</msg>
1092
+ </logentry>
1093
+ <logentry
1094
+ revision="7912">
1095
+ <author>codesquid</author>
1096
+ <date>2016-10-28T12:31:15.356559Z</date>
1097
+ <msg>Fix code indentation</msg>
1098
+ </logentry>
1099
+ <logentry
1100
+ revision="7913">
1101
+ <author>codesquid</author>
1102
+ <date>2016-10-28T12:31:44.900021Z</date>
1103
+ <msg>Updated translations</msg>
1104
+ </logentry>
1105
+ <logentry
1106
+ revision="7914">
1107
+ <author>codesquid</author>
1108
+ <date>2016-10-28T12:34:38.315736Z</date>
1109
+ <msg>Bump to 3.22.2-rc2</msg>
1110
+ </logentry>
1111
+ <logentry
1112
+ revision="7916">
1113
+ <author>codesquid</author>
1114
+ <date>2016-10-30T11:01:18.813424Z</date>
1115
+ <msg>Use a more discreet border for the progress bar and reduce the gradient strength</msg>
1116
+ </logentry>
1117
+ <logentry
1118
+ revision="7917">
1119
+ <author>codesquid</author>
1120
+ <date>2016-11-01T09:05:00.652688Z</date>
1121
+ <msg>Updated translation.</msg>
1122
+ </logentry>
1123
+ <logentry
1124
+ revision="7918">
1125
+ <author>codesquid</author>
1126
+ <date>2016-11-01T10:04:38.852566Z</date>
1127
+ <msg>Bump to 3.22.2</msg>
1128
+ </logentry>
1129
+ <logentry
1130
+ revision="7920">
1131
+ <author>codesquid</author>
1132
+ <date>2016-11-01T15:02:12.224073Z</date>
1133
+ <msg>Fix a crash if the server only implements a minimal, fact-less MLSD/MLST (RFC 3659 even has a name for such implementation: useless)
1134
+ </msg>
1135
+ </logentry>
1136
+ <logentry
1137
+ revision="7921">
1138
+ <author>codesquid</author>
1139
+ <date>2016-11-01T15:32:26.265617Z</date>
1140
+ <msg>Bump to 3.22.2.1
1141
+ </msg>
1142
+ </logentry>
1143
+ <logentry
1144
+ revision="7923">
1145
+ <author>codesquid</author>
1146
+ <date>2016-11-01T17:50:27.579534Z</date>
1147
+ <msg>Fix trimming of feat response lines.</msg>
1148
+ </logentry>
1149
+ <logentry
1150
+ revision="7924">
1151
+ <author>codesquid</author>
1152
+ <date>2016-11-01T17:53:11.661054Z</date>
1153
+ <msg>Bump to 3.22.2.2
1154
+ </msg>
1155
+ </logentry>
1156
+ <logentry
1157
+ revision="7925">
1158
+ <author>codesquid</author>
1159
+ <date>2016-11-01T18:03:20.639884Z</date>
1160
+ <msg>Missing commit</msg>
1161
+ </logentry>
1162
+ <logentry
1163
+ revision="7926">
1164
+ <author>codesquid</author>
1165
+ <date>2016-11-03T09:43:30.226102Z</date>
1166
+ <msg>Add a safety check in case the drop target disappears
1167
+ </msg>
1168
+ </logentry>
1169
+ <logentry
1170
+ revision="7927">
1171
+ <author>codesquid</author>
1172
+ <date>2016-11-03T15:15:18.680383Z</date>
1173
+ <msg>Refactor CFilterConditionsDialog and wxCustomHeightListCtrl to make both simpler and the latter reusable.</msg>
1174
+ </logentry>
1175
+ <logentry
1176
+ revision="7929">
1177
+ <author>codesquid</author>
1178
+ <date>2016-11-07T18:03:49.994853Z</date>
1179
+ <msg>Minor cleanup.</msg>
1180
+ </logentry>
1181
+ <logentry
1182
+ revision="7930">
1183
+ <author>codesquid</author>
1184
+ <date>2016-11-07T18:06:45.138311Z</date>
1185
+ <msg>Remove explicit memory management from CCertificaet and partial cleanup of XML functions.</msg>
1186
+ </logentry>
1187
+ <logentry
1188
+ revision="7931">
1189
+ <author>codesquid</author>
1190
+ <date>2016-11-08T09:15:57.034240Z</date>
1191
+ <msg>Get rid of wxFileName::CreateTempFileName</msg>
1192
+ </logentry>
1193
+ <logentry
1194
+ revision="7933">
1195
+ <author>codesquid</author>
1196
+ <date>2016-11-08T09:29:28.863197Z</date>
1197
+ <msg>Replace wxRemoveFile with fz::remove_file</msg>
1198
+ </logentry>
1199
+ <logentry
1200
+ revision="7934">
1201
+ <author>codesquid</author>
1202
+ <date>2016-11-08T15:26:16.426040Z</date>
1203
+ <msg>Add functions to translate strings to the engine so that it is no longer directly handled by wx</msg>
1204
+ </logentry>
1205
+ <logentry
1206
+ revision="7935">
1207
+ <author>codesquid</author>
1208
+ <date>2016-11-08T16:13:14.573581Z</date>
1209
+ <msg>Fix arguments to xgettext
1210
+ </msg>
1211
+ </logentry>
1212
+ <logentry
1213
+ revision="7936">
1214
+ <author>codesquid</author>
1215
+ <date>2016-11-08T16:13:44.031553Z</date>
1216
+ <msg>Fix compile errors
1217
+ </msg>
1218
+ </logentry>
1219
+ <logentry
1220
+ revision="7937">
1221
+ <author>codesquid</author>
1222
+ <date>2016-11-11T15:14:39.700609Z</date>
1223
+ <msg>Call ResetOperation if converting to command to 8bit charset fails
1224
+ </msg>
1225
+ </logentry>
1226
+ <logentry
1227
+ revision="7938">
1228
+ <author>codesquid</author>
1229
+ <date>2016-11-11T15:17:35.487681Z</date>
1230
+ <msg>Apply same fix to CSFtpControlSocket::SendCommand as well.
1231
+ </msg>
1232
+ </logentry>
1233
+ <logentry
1234
+ revision="7939">
1235
+ <author>codesquid</author>
1236
+ <date>2016-11-11T15:18:00.660362Z</date>
1237
+ <msg>Fix typo.
1238
+ </msg>
1239
+ </logentry>
1240
+ <logentry
1241
+ revision="7941">
1242
+ <author>codesquid</author>
1243
+ <date>2016-11-11T15:44:34.920080Z</date>
1244
+ <msg>More wxString removal
1245
+ </msg>
1246
+ </logentry>
1247
+ <logentry
1248
+ revision="7943">
1249
+ <author>codesquid</author>
1250
+ <date>2016-11-11T18:30:29.676912Z</date>
1251
+ <msg>Use assert instead of wxASSERT in the engine.
1252
+ </msg>
1253
+ </logentry>
1254
+ <logentry
1255
+ revision="7944">
1256
+ <author>codesquid</author>
1257
+ <date>2016-11-13T17:48:06.975721Z</date>
1258
+ <msg>Ignore BOM at beginning of directory listing lines.</msg>
1259
+ </logentry>
1260
+ <logentry
1261
+ revision="7945">
1262
+ <author>codesquid</author>
1263
+ <date>2016-11-14T14:25:18.343721Z</date>
1264
+ <msg>Allow controlling cache ttl, within reason.</msg>
1265
+ </logentry>
1266
+ <logentry
1267
+ revision="7946">
1268
+ <author>codesquid</author>
1269
+ <date>2016-11-15T08:21:09.818630Z</date>
1270
+ <msg>Make use of the recently assigned Unix.ownername and Unix.groupname facts.</msg>
1271
+ </logentry>
1272
+ <logentry
1273
+ revision="7947">
1274
+ <author>codesquid</author>
1275
+ <date>2016-11-15T12:38:18.233458Z</date>
1276
+ <msg>Add link to display download log if getting the update fails.</msg>
1277
+ </logentry>
1278
+ <logentry
1279
+ revision="7948">
1280
+ <author>codesquid</author>
1281
+ <date>2016-11-15T12:40:52.103152Z</date>
1282
+ <msg>Replace wxURI with a custom uri parser.</msg>
1283
+ </logentry>
1284
+ <logentry
1285
+ revision="7949">
1286
+ <author>codesquid</author>
1287
+ <date>2016-11-16T09:12:19.662231Z</date>
1288
+ <msg>Do not fail adding site to site manager for site-specific bookmarks if sitemanager.xml does not yet exist.</msg>
1289
+ </logentry>
1290
+ <logentry
1291
+ revision="7950">
1292
+ <author>codesquid</author>
1293
+ <date>2016-11-16T09:34:36.334912Z</date>
1294
+ <msg>React to changes in global bookmarks.</msg>
1295
+ </logentry>
1296
+ <logentry
1297
+ revision="7952">
1298
+ <author>codesquid</author>
1299
+ <date>2016-11-16T15:12:28.327978Z</date>
1300
+ <msg>Remove wxString from CDirectoryListing and CDirectoryCache.</msg>
1301
+ </logentry>
1302
+ <logentry
1303
+ revision="7953">
1304
+ <author>codesquid</author>
1305
+ <date>2016-11-16T15:18:21.726010Z</date>
1306
+ <msg>Remove old timezone detection code which has been unused for almost two years.</msg>
1307
+ </logentry>
1308
+ <logentry
1309
+ revision="7954">
1310
+ <author>codesquid</author>
1311
+ <date>2016-11-17T12:18:50.984732Z</date>
1312
+ <msg>Move #includes of wx headers out of the public engine API.</msg>
1313
+ </logentry>
1314
+ <logentry
1315
+ revision="7955">
1316
+ <author>codesquid</author>
1317
+ <date>2016-11-17T13:14:11.241860Z</date>
1318
+ <msg>Define UNICODE on MSW</msg>
1319
+ </logentry>
1320
+ <logentry
1321
+ revision="7956">
1322
+ <author>codesquid</author>
1323
+ <date>2016-11-17T13:18:15.946135Z</date>
1324
+ <msg>Get test cases to compile again.</msg>
1325
+ </logentry>
1326
+ <logentry
1327
+ revision="7957">
1328
+ <author>codesquid</author>
1329
+ <date>2016-11-17T13:45:05.770628Z</date>
1330
+ <msg>Fix logic issue in error paths that should be unused.</msg>
1331
+ </logentry>
1332
+ <logentry
1333
+ revision="7958">
1334
+ <author>codesquid</author>
1335
+ <date>2016-11-17T14:05:29.319192Z</date>
1336
+ <msg>Fix compile error.</msg>
1337
+ </logentry>
1338
+ <logentry
1339
+ revision="7959">
1340
+ <author>codesquid</author>
1341
+ <date>2016-11-17T14:26:47.479959Z</date>
1342
+ <msg>Add missing include.</msg>
1343
+ </logentry>
1344
+ <logentry
1345
+ revision="7960">
1346
+ <author>codesquid</author>
1347
+ <date>2016-11-17T20:02:16.014762Z</date>
1348
+ <msg>Fix more compile errors.
1349
+ </msg>
1350
+ </logentry>
1351
+ <logentry
1352
+ revision="7961">
1353
+ <author>codesquid</author>
1354
+ <date>2016-11-18T10:36:27.776242Z</date>
1355
+ <msg>Fix rule gch dependency file generation
1356
+ </msg>
1357
+ </logentry>
1358
+ <logentry
1359
+ revision="7964">
1360
+ <author>codesquid</author>
1361
+ <date>2016-11-22T20:12:55.653087Z</date>
1362
+ <msg>WIP: New scalable icon theme and general theme provider refactoring to make use of the scaling.</msg>
1363
+ </logentry>
1364
+ <logentry
1365
+ revision="7965">
1366
+ <author>codesquid</author>
1367
+ <date>2016-11-22T20:13:35.785537Z</date>
1368
+ <msg>Remove some unused pre-vista code.</msg>
1369
+ </logentry>
1370
+ <logentry
1371
+ revision="7966">
1372
+ <author>codesquid</author>
1373
+ <date>2016-11-22T21:16:24.919174Z</date>
1374
+ <msg>Move some files around.
1375
+ </msg>
1376
+ </logentry>
1377
+ <logentry
1378
+ revision="7967">
1379
+ <author>codesquid</author>
1380
+ <date>2016-11-22T21:47:22.776565Z</date>
1381
+ <msg>Update installer for new theme.</msg>
1382
+ </logentry>
1383
+ <logentry
1384
+ revision="7968">
1385
+ <author>codesquid</author>
1386
+ <date>2016-11-22T22:10:17.705699Z</date>
1387
+ <msg>Remove unused script. These days there are better tools.</msg>
1388
+ </logentry>
1389
+ <logentry
1390
+ revision="7969">
1391
+ <author>codesquid</author>
1392
+ <date>2016-11-22T22:12:24.157860Z</date>
1393
+ <msg>Fix compile error
1394
+ </msg>
1395
+ </logentry>
1396
+ <logentry
1397
+ revision="7970">
1398
+ <author>codesquid</author>
1399
+ <date>2016-11-22T22:12:37.210468Z</date>
1400
+ <msg>Fix build system.
1401
+ </msg>
1402
+ </logentry>
1403
+ <logentry
1404
+ revision="7971">
1405
+ <author>codesquid</author>
1406
+ <date>2016-11-22T22:21:05.284453Z</date>
1407
+ <msg>Add missing include for std::make_reverse_iterator</msg>
1408
+ </logentry>
1409
+ <logentry
1410
+ revision="7972">
1411
+ <author>codesquid</author>
1412
+ <date>2016-11-22T22:48:31.759502Z</date>
1413
+ <msg>As it turns out, libstdc++ on many platforms doesn't know about the trivial std::make_reverse_iterator.</msg>
1414
+ </logentry>
1415
+ <logentry
1416
+ revision="7973">
1417
+ <author>codesquid</author>
1418
+ <date>2016-11-22T23:24:09.269622Z</date>
1419
+ <msg>Since classic theme got moved, use a diffferent data file as reference when searching for the data directory.</msg>
1420
+ </logentry>
1421
+ <logentry
1422
+ revision="7974">
1423
+ <author>codesquid</author>
1424
+ <date>2016-11-23T08:38:52.258312Z</date>
1425
+ <msg>Mark 16x16 of classic theme as primary.</msg>
1426
+ </logentry>
1427
+ <logentry
1428
+ revision="7975">
1429
+ <author>codesquid</author>
1430
+ <date>2016-11-23T13:32:59.581609Z</date>
1431
+ <msg>Reformatting.</msg>
1432
+ </logentry>
1433
+ <logentry
1434
+ revision="7976">
1435
+ <author>codesquid</author>
1436
+ <date>2016-11-23T13:33:54.484348Z</date>
1437
+ <msg>Work around toolbar button alpha blending issues on MSW.</msg>
1438
+ </logentry>
1439
+ <logentry
1440
+ revision="7977">
1441
+ <author>codesquid</author>
1442
+ <date>2016-11-23T15:06:42.810620Z</date>
1443
+ <msg>Don't mismatch image list size and size of added icons.
1444
+ </msg>
1445
+ </logentry>
1446
+ <logentry
1447
+ revision="7978">
1448
+ <author>codesquid</author>
1449
+ <date>2016-11-23T15:16:21.750249Z</date>
1450
+ <msg>Implement icon scaling on wxGTK.
1451
+ </msg>
1452
+ </logentry>
1453
+ <logentry
1454
+ revision="7979">
1455
+ <author>codesquid</author>
1456
+ <date>2016-11-23T15:22:18.750280Z</date>
1457
+ <msg>Also scale tree controls.
1458
+ </msg>
1459
+ </logentry>
1460
+ <logentry
1461
+ revision="7980">
1462
+ <author>codesquid</author>
1463
+ <date>2016-11-23T16:00:40.750891Z</date>
1464
+ <msg>The default icon set is mandatory.</msg>
1465
+ </logentry>
1466
+ <logentry
1467
+ revision="7981">
1468
+ <author>codesquid</author>
1469
+ <date>2016-11-23T16:23:00.085907Z</date>
1470
+ <msg>Request correct system image list size.</msg>
1471
+ </logentry>
1472
+ <logentry
1473
+ revision="7982">
1474
+ <author>codesquid</author>
1475
+ <date>2016-11-23T16:23:14.903273Z</date>
1476
+ <msg>Set remembered scale factor.</msg>
1477
+ </logentry>
1478
+ <logentry
1479
+ revision="7983">
1480
+ <author>codesquid</author>
1481
+ <date>2016-11-23T16:46:36.811393Z</date>
1482
+ <msg>Cleanup theme page.</msg>
1483
+ </logentry>
1484
+ <logentry
1485
+ revision="7984">
1486
+ <author>codesquid</author>
1487
+ <date>2016-11-23T16:51:42.835358Z</date>
1488
+ <msg>Remove unused code from theme provider.</msg>
1489
+ </logentry>
1490
+ <logentry
1491
+ revision="7985">
1492
+ <author>codesquid</author>
1493
+ <date>2016-11-23T16:54:38.487351Z</date>
1494
+ <msg>Declare the INSTALLICONSET macro earlier.</msg>
1495
+ </logentry>
1496
+ <logentry
1497
+ revision="7986">
1498
+ <author>codesquid</author>
1499
+ <date>2016-11-23T17:15:53.543279Z</date>
1500
+ <msg>Try to handle retina displays.</msg>
1501
+ </logentry>
1502
+ <logentry
1503
+ revision="7987">
1504
+ <author>codesquid</author>
1505
+ <date>2016-11-24T20:03:25.733183Z</date>
1506
+ <msg>Once again OS X does everything differently from all other platforms. On OS X a pixel isn't a pixel, a pixel on OS X is a virtual thing composed of a multiple actual pixels in a square formation.
1507
+ </msg>
1508
+ </logentry>
1509
+ <logentry
1510
+ revision="7988">
1511
+ <author>codesquid</author>
1512
+ <date>2016-11-24T20:05:08.892190Z</date>
1513
+ <msg>wxArtProvider, even on trunk, cannot handle bitmaps with a scale factor. Replace it with CThemeProvider and use it to get toolbar icons to load proper on OS X.
1514
+ </msg>
1515
+ </logentry>
1516
+ <logentry
1517
+ revision="7989">
1518
+ <author>codesquid</author>
1519
+ <date>2016-11-24T20:05:45.580993Z</date>
1520
+ <msg>Additional wxArtProvider replacement</msg>
1521
+ </logentry>
1522
+ <logentry
1523
+ revision="7990">
1524
+ <author>codesquid</author>
1525
+ <date>2016-11-25T16:57:53.193169Z</date>
1526
+ <msg>Further HiDPI fixes for OS X</msg>
1527
+ </logentry>
1528
+ <logentry
1529
+ revision="7991">
1530
+ <author>codesquid</author>
1531
+ <date>2016-11-25T17:57:18.838916Z</date>
1532
+ <msg>Fix stripping of BOM.
1533
+ </msg>
1534
+ </logentry>
1535
+ <logentry
1536
+ revision="7992">
1537
+ <author>codesquid</author>
1538
+ <date>2016-11-25T17:59:03.936277Z</date>
1539
+ <msg>Fix compile error on *nix</msg>
1540
+ </logentry>
1541
+ <logentry
1542
+ revision="7993">
1543
+ <author>codesquid</author>
1544
+ <date>2016-11-26T14:54:12.541130Z</date>
1545
+ <msg>Simplify creating overlays and handle differences in scale factors and the likes.
1546
+ </msg>
1547
+ </logentry>
1548
+ <logentry
1549
+ revision="7994">
1550
+ <author>codesquid</author>
1551
+ <date>2016-11-26T15:42:41.502757Z</date>
1552
+ <msg>Fix scaling of queue progress line on OS X</msg>
1553
+ </logentry>
1554
+ <logentry
1555
+ revision="7995">
1556
+ <author>codesquid</author>
1557
+ <date>2016-11-26T16:21:29.543778Z</date>
1558
+ <msg>Fix position of theme scale control</msg>
1559
+ </logentry>
1560
+ <logentry
1561
+ revision="7996">
1562
+ <author>codesquid</author>
1563
+ <date>2016-11-26T16:30:15.324043Z</date>
1564
+ <msg>Add missing files to distribution.</msg>
1565
+ </logentry>
1566
+ <logentry
1567
+ revision="7997">
1568
+ <author>codesquid</author>
1569
+ <date>2016-11-26T16:36:06.093538Z</date>
1570
+ <msg>Add another missing file.</msg>
1571
+ </logentry>
1572
+ <logentry
1573
+ revision="7998">
1574
+ <author>codesquid</author>
1575
+ <date>2016-11-26T18:33:52.039891Z</date>
1576
+ <msg>Fix icons in Site Manager tree.</msg>
1577
+ </logentry>
1578
+ <logentry
1579
+ revision="7999">
1580
+ <author>codesquid</author>
1581
+ <date>2016-11-26T18:42:07.552127Z</date>
1582
+ <msg>Use actual size, not requrested size to get scale factor.</msg>
1583
+ </logentry>
1584
+ <logentry
1585
+ revision="8000">
1586
+ <author>codesquid</author>
1587
+ <date>2016-11-26T21:04:18.907630Z</date>
1588
+ <msg>Fix size cancel button.</msg>
1589
+ </logentry>
1590
+ <logentry
1591
+ revision="8001">
1592
+ <author>codesquid</author>
1593
+ <date>2016-11-27T18:10:45.607238Z</date>
1594
+ <msg>Fix two harmless warnings.</msg>
1595
+ </logentry>
1596
+ <logentry
1597
+ revision="8002">
1598
+ <author>codesquid</author>
1599
+ <date>2016-11-27T18:11:56.483395Z</date>
1600
+ <msg>Fix type mismatch in sftp_find_request
1601
+
1602
+ The id member of the sftp_request structure is of type unsigned int. This type is also used in the sftp_reqfind callback. In sftp_find_request we thus need to pass a pointer to unsigned int to find234. Before this commit, sftp_find_request was passing a pointer to unsigned long to find234, which causes the lookup to fail on big-endian platforms where sizeof(unsigned int) != sizeof(unsigned long), e.g. ppc64.</msg>
1603
+ </logentry>
1604
+ <logentry
1605
+ revision="8003">
1606
+ <author>codesquid</author>
1607
+ <date>2016-11-27T19:43:44.409489Z</date>
1608
+ <msg>Slightly indent first toolbar icon on MSW, without it just looks odd on Windows 10 where there are no window decorations.</msg>
1609
+ </logentry>
1610
+ <logentry
1611
+ revision="8004">
1612
+ <author>codesquid</author>
1613
+ <date>2016-11-28T16:03:25.087553Z</date>
1614
+ <msg>Bump to 3.23.0-rc1</msg>
1615
+ </logentry>
1616
+ <logentry
1617
+ revision="8005">
1618
+ <author>codesquid</author>
1619
+ <date>2016-11-28T16:29:21.783767Z</date>
1620
+ <msg>Updated translations</msg>
1621
+ </logentry>
1622
+ <logentry
1623
+ revision="8008">
1624
+ <author>codesquid</author>
1625
+ <date>2016-11-28T16:46:37.988137Z</date>
1626
+ <msg>Update svn:ignore
1627
+ </msg>
1628
+ </logentry>
1629
+ <logentry
1630
+ revision="8009">
1631
+ <author>codesquid</author>
1632
+ <date>2016-11-28T16:50:07.262091Z</date>
1633
+ <msg>Initialize two members.</msg>
1634
+ </logentry>
1635
+ <logentry
1636
+ revision="8010">
1637
+ <author>codesquid</author>
1638
+ <date>2016-11-28T17:00:14.022576Z</date>
1639
+ <msg>Fix size of disabled speedlimits icon on Mac.</msg>
1640
+ </logentry>
1641
+ <logentry
1642
+ revision="8012">
1643
+ <author>codesquid</author>
1644
+ <date>2016-11-29T11:21:07.911414Z</date>
1645
+ <msg>Apply #11086 to fix a deprecation warning in some wx configurations.</msg>
1646
+ </logentry>
1647
+ <logentry
1648
+ revision="8013">
1649
+ <author>codesquid</author>
1650
+ <date>2016-11-29T14:53:07.023010Z</date>
1651
+ <msg>Do path expansion in a way that does not destroy UNC paths on MSW. Fixes #11088</msg>
1652
+ </logentry>
1653
+ <logentry
1654
+ revision="8014">
1655
+ <author>codesquid</author>
1656
+ <date>2016-11-29T15:43:40.146902Z</date>
1657
+ <msg>Add missing directory to SUBDIRS</msg>
1658
+ </logentry>
1659
+ <logentry
1660
+ revision="8015">
1661
+ <author>codesquid</author>
1662
+ <date>2016-11-30T15:42:16.147449Z</date>
1663
+ <msg>Much easier toolbar creation by not using XRC.</msg>
1664
+ </logentry>
1665
+ <logentry
1666
+ revision="8016">
1667
+ <author>codesquid</author>
1668
+ <date>2016-11-30T15:43:17.924263Z</date>
1669
+ <msg>Add old toolbar.xrc to leftover cleanup.</msg>
1670
+ </logentry>
1671
+ <logentry
1672
+ revision="8017">
1673
+ <author>codesquid</author>
1674
+ <date>2016-11-30T15:47:30.522112Z</date>
1675
+ <msg>Remove unused files.</msg>
1676
+ </logentry>
1677
+ <logentry
1678
+ revision="8018">
1679
+ <author>codesquid</author>
1680
+ <date>2016-11-30T15:56:01.921288Z</date>
1681
+ <msg>Fix compile error</msg>
1682
+ </logentry>
1683
+ <logentry
1684
+ revision="8019">
1685
+ <author>codesquid</author>
1686
+ <date>2016-11-30T16:27:22.682915Z</date>
1687
+ <msg>Flatten makefiles a little bit.</msg>
1688
+ </logentry>
1689
+ <logentry
1690
+ revision="8020">
1691
+ <author>codesquid</author>
1692
+ <date>2016-11-30T16:31:59.304959Z</date>
1693
+ <msg>Fix syntax error
1694
+ </msg>
1695
+ </logentry>
1696
+ <logentry
1697
+ revision="8021">
1698
+ <author>codesquid</author>
1699
+ <date>2016-11-30T16:32:42.112051Z</date>
1700
+ <msg>Fix yet another syntax error.
1701
+ </msg>
1702
+ </logentry>
1703
+ <logentry
1704
+ revision="8022">
1705
+ <author>codesquid</author>
1706
+ <date>2016-11-30T16:34:25.319526Z</date>
1707
+ <msg>Remove a few empty lines
1708
+ </msg>
1709
+ </logentry>
1710
+ <logentry
1711
+ revision="8023">
1712
+ <author>codesquid</author>
1713
+ <date>2016-11-30T16:37:50.927630Z</date>
1714
+ <msg>Update svn:ignore
1715
+ </msg>
1716
+ </logentry>
1717
+ <logentry
1718
+ revision="8024">
1719
+ <author>codesquid</author>
1720
+ <date>2016-11-30T20:18:36.757463Z</date>
1721
+ <msg>Avoid expensive conversion from wxBitmap to wxImage.</msg>
1722
+ </logentry>
1723
+ <logentry
1724
+ revision="8025">
1725
+ <author>codesquid</author>
1726
+ <date>2016-11-30T20:19:23.838551Z</date>
1727
+ <msg>Fix a compile erorr on mac.</msg>
1728
+ </logentry>
1729
+ <logentry
1730
+ revision="8026">
1731
+ <author>codesquid</author>
1732
+ <date>2016-12-01T08:12:25.716347Z</date>
1733
+ <msg>Restore accidentally deleted file.</msg>
1734
+ </logentry>
1735
+ <logentry
1736
+ revision="8027">
1737
+ <author>codesquid</author>
1738
+ <date>2016-12-01T09:06:26.220922Z</date>
1739
+ <msg>Remove call to no longer existing sub-make</msg>
1740
+ </logentry>
1741
+ <logentry
1742
+ revision="8028">
1743
+ <author>codesquid</author>
1744
+ <date>2016-12-01T09:09:46.119198Z</date>
1745
+ <msg>Minor refactoring.</msg>
1746
+ </logentry>
1747
+ <logentry
1748
+ revision="8029">
1749
+ <author>codesquid</author>
1750
+ <date>2016-12-01T09:49:22.241370Z</date>
1751
+ <msg>Create quickconnect bar directly.</msg>
1752
+ </logentry>
1753
+ <logentry
1754
+ revision="8030">
1755
+ <author>codesquid</author>
1756
+ <date>2016-12-01T10:48:36.234014Z</date>
1757
+ <msg>Fix typo</msg>
1758
+ </logentry>
1759
+ <logentry
1760
+ revision="8031">
1761
+ <author>codesquid</author>
1762
+ <date>2016-12-01T11:26:59.972638Z</date>
1763
+ <msg>Fix toolbar not showing on OS X</msg>
1764
+ </logentry>
1765
+ <logentry
1766
+ revision="8032">
1767
+ <author>codesquid</author>
1768
+ <date>2016-12-01T20:04:51.541184Z</date>
1769
+ <msg>Fixed typo from removing line breaks.</msg>
1770
+ </logentry>
1771
+ <logentry
1772
+ revision="8033">
1773
+ <author>codesquid</author>
1774
+ <date>2016-12-01T20:06:52.513362Z</date>
1775
+ <msg>Fixed another typo</msg>
1776
+ </logentry>
1777
+ <logentry
1778
+ revision="8034">
1779
+ <author>codesquid</author>
1780
+ <date>2016-12-02T10:41:28.027532Z</date>
1781
+ <msg>Check for libfilezilla 0.9.0 or higher.</msg>
1782
+ </logentry>
1783
+ <logentry
1784
+ revision="8035">
1785
+ <author>codesquid</author>
1786
+ <date>2016-12-03T18:03:43.255858Z</date>
1787
+ <msg>Loading and scaling large resources is expensive. Cache scaled resources and load those instead.
1788
+ </msg>
1789
+ </logentry>
1790
+ <logentry
1791
+ revision="8036">
1792
+ <author>codesquid</author>
1793
+ <date>2016-12-03T18:06:55.162959Z</date>
1794
+ <msg>Fix compile error
1795
+ </msg>
1796
+ </logentry>
1797
+ <logentry
1798
+ revision="8037">
1799
+ <author>codesquid</author>
1800
+ <date>2016-12-03T18:32:28.833948Z</date>
1801
+ <msg>Cleanup startup routines
1802
+ </msg>
1803
+ </logentry>
1804
+ <logentry
1805
+ revision="8038">
1806
+ <author>codesquid</author>
1807
+ <date>2016-12-03T21:52:15.042196Z</date>
1808
+ <msg>Fix typo
1809
+ </msg>
1810
+ </logentry>
1811
+ <logentry
1812
+ revision="8039">
1813
+ <author>codesquid</author>
1814
+ <date>2016-12-03T22:09:19.138155Z</date>
1815
+ <msg>Revert previous commit and do proper fix</msg>
1816
+ </logentry>
1817
+ <logentry
1818
+ revision="8040">
1819
+ <author>codesquid</author>
1820
+ <date>2016-12-04T14:01:46.202823Z</date>
1821
+ <msg>Explicitly load resource files by name, prevents errors due to stale files from previous versions.
1822
+ </msg>
1823
+ </logentry>
1824
+ <logentry
1825
+ revision="8041">
1826
+ <author>codesquid</author>
1827
+ <date>2016-12-04T14:15:27.188109Z</date>
1828
+ <msg>layout.xml does not contain important data, overwrite it if it has become corrupt.
1829
+ </msg>
1830
+ </logentry>
1831
+ <logentry
1832
+ revision="8042">
1833
+ <author>codesquid</author>
1834
+ <date>2016-12-04T14:17:02.225814Z</date>
1835
+ <msg>search.xml is non-critical too and can be overwritten without harm.
1836
+ </msg>
1837
+ </logentry>
1838
+ <logentry
1839
+ revision="8043">
1840
+ <author>codesquid</author>
1841
+ <date>2016-12-04T18:32:07.681674Z</date>
1842
+ <msg>Disallow wxWidgets 3.1 or higher.</msg>
1843
+ </logentry>
1844
+ <logentry
1845
+ revision="8044">
1846
+ <author>codesquid</author>
1847
+ <date>2016-12-04T19:25:43.645619Z</date>
1848
+ <msg>Remove sizer flags that are no-ops.</msg>
1849
+ </logentry>
1850
+ <logentry
1851
+ revision="8045">
1852
+ <author>codesquid</author>
1853
+ <date>2016-12-05T14:06:14.912963Z</date>
1854
+ <msg>Disable next button while fetching offer data.</msg>
1855
+ </logentry>
1856
+ <logentry
1857
+ revision="8046">
1858
+ <author>codesquid</author>
1859
+ <date>2016-12-05T15:11:30.851028Z</date>
1860
+ <msg>Add a 480x480 filezilla.png</msg>
1861
+ </logentry>
1862
+ <logentry
1863
+ revision="8047">
1864
+ <author>codesquid</author>
1865
+ <date>2016-12-05T15:20:16.349467Z</date>
1866
+ <msg>Add missing icons to installer.</msg>
1867
+ </logentry>
1868
+ <logentry
1869
+ revision="8048">
1870
+ <author>codesquid</author>
1871
+ <date>2016-12-05T15:40:00.244339Z</date>
1872
+ <msg>On OS X, consider content scale factor when selecting pivot size for icon search.
1873
+ </msg>
1874
+ </logentry>
1875
+ <logentry
1876
+ revision="8049">
1877
+ <author>codesquid</author>
1878
+ <date>2016-12-05T16:10:14.823602Z</date>
1879
+ <msg>Don't use wxArtProvider, it just cannot handle OS X scale factors.
1880
+ </msg>
1881
+ </logentry>
1882
+ <logentry
1883
+ revision="8050">
1884
+ <author>codesquid</author>
1885
+ <date>2016-12-05T16:20:14.826718Z</date>
1886
+ <msg>Get rid of redundant icon loading.</msg>
1887
+ </logentry>
1888
+ <logentry
1889
+ revision="8051">
1890
+ <author>codesquid</author>
1891
+ <date>2016-12-05T16:30:10.577872Z</date>
1892
+ <msg>Use correct icon in speedlimits dialog on OS X
1893
+ </msg>
1894
+ </logentry>
1895
+ <logentry
1896
+ revision="8052">
1897
+ <author>codesquid</author>
1898
+ <date>2016-12-05T16:51:00.981320Z</date>
1899
+ <msg>Updated translations</msg>
1900
+ </logentry>
1901
+ <logentry
1902
+ revision="8053">
1903
+ <author>codesquid</author>
1904
+ <date>2016-12-05T17:04:13.210200Z</date>
1905
+ <msg>Bump to 3.23.0</msg>
1906
+ </logentry>
1907
+ <logentry
1908
+ revision="8055">
1909
+ <author>codesquid</author>
1910
+ <date>2016-12-05T23:15:13.340557Z</date>
1911
+ <msg>Work around bug in wxWidgets: Calling RemoveTool on a toolbar that has not been realized yet leads to it looping over 2^64 non-existing items.</msg>
1912
+ </logentry>
1913
+ <logentry
1914
+ revision="8056">
1915
+ <author>codesquid</author>
1916
+ <date>2016-12-05T23:19:18.920522Z</date>
1917
+ <msg>Updated translation.</msg>
1918
+ </logentry>
1919
+ <logentry
1920
+ revision="8057">
1921
+ <author>codesquid</author>
1922
+ <date>2016-12-05T23:19:36.170466Z</date>
1923
+ <msg>Bump to 3.23.0.1</msg>
1924
+ </logentry>
1925
+ <logentry
1926
+ revision="8059">
1927
+ <author>codesquid</author>
1928
+ <date>2016-12-06T08:38:38.556276Z</date>
1929
+ <msg>Save and load keyfile server entry to queue.sqlite3 and migrate schema. Fixes #11098</msg>
1930
+ </logentry>
1931
+ <logentry
1932
+ revision="8060">
1933
+ <author>codesquid</author>
1934
+ <date>2016-12-06T14:53:40.260471Z</date>
1935
+ <msg>Work around a bug in wxWidgets: wxImageList::GetBitmap kills the channel, use wxImageList::GetIcon instead and convert it to wxBitmap afterwards.</msg>
1936
+ </logentry>
1937
+ <logentry
1938
+ revision="8061">
1939
+ <author>codesquid</author>
1940
+ <date>2016-12-06T15:01:03.287326Z</date>
1941
+ <msg>Handle the unlikely case of an invalid icon by creating an empty one.</msg>
1942
+ </logentry>
1943
+ <logentry
1944
+ revision="8062">
1945
+ <author>codesquid</author>
1946
+ <date>2016-12-06T15:14:24.809783Z</date>
1947
+ <msg>Allow passing relative paths and environment variables in the "Cache directory" setting.</msg>
1948
+ </logentry>
1949
+ <logentry
1950
+ revision="8063">
1951
+ <author>codesquid</author>
1952
+ <date>2016-12-06T15:35:03.560883Z</date>
1953
+ <msg>Print more detailed error message if libfilezilla isn't found.
1954
+ </msg>
1955
+ </logentry>
1956
+ <logentry
1957
+ revision="8064">
1958
+ <author>codesquid</author>
1959
+ <date>2016-12-06T16:10:09.940820Z</date>
1960
+ <msg>Bump to 3.23.0.2
1961
+ </msg>
1962
+ </logentry>
1963
+ <logentry
1964
+ revision="8066">
1965
+ <author>codesquid</author>
1966
+ <date>2016-12-06T16:49:01.781501Z</date>
1967
+ <msg>Give credit to creator of new icon theme.</msg>
1968
+ </logentry>
1969
+ <logentry
1970
+ revision="8067">
1971
+ <author>codesquid</author>
1972
+ <date>2016-12-13T11:31:15.128154Z</date>
1973
+ <msg>Add entitlements file for app sandboxing on OS X.
1974
+ </msg>
1975
+ </logentry>
1976
+ <logentry
1977
+ revision="8068">
1978
+ <author>codesquid</author>
1979
+ <date>2016-12-13T15:06:43.459505Z</date>
1980
+ <msg>Add persistant security-scoped bookmarks if using the OSX app sandbox.
1981
+ </msg>
1982
+ </logentry>
1983
+ <logentry
1984
+ revision="8069">
1985
+ <author>codesquid</author>
1986
+ <date>2016-12-13T15:07:18.256870Z</date>
1987
+ <msg>Fixed typo</msg>
1988
+ </logentry>
1989
+ <logentry
1990
+ revision="8070">
1991
+ <author>codesquid</author>
1992
+ <date>2016-12-13T16:18:46.206223Z</date>
1993
+ <msg>Possible fix for #11105. Should also handle other upload failures better, there was shadowed variable similar to issue #10811 fixed in r7404.</msg>
1994
+ </logentry>
1995
+ <logentry
1996
+ revision="8071">
1997
+ <author>codesquid</author>
1998
+ <date>2016-12-13T17:11:49.835466Z</date>
1999
+ <msg>Fix copy&amp;paste mistake.
2000
+ </msg>
2001
+ </logentry>
2002
+ <logentry
2003
+ revision="8072">
2004
+ <author>codesquid</author>
2005
+ <date>2016-12-13T20:14:00.634611Z</date>
2006
+ <msg>Fix resource leak</msg>
2007
+ </logentry>
2008
+ <logentry
2009
+ revision="8073">
2010
+ <author>codesquid</author>
2011
+ <date>2016-12-13T20:15:35.027869Z</date>
2012
+ <msg>Remove accidental commit of debug code.</msg>
2013
+ </logentry>
2014
+ <logentry
2015
+ revision="8074">
2016
+ <author>codesquid</author>
2017
+ <date>2016-12-18T11:44:23.777877Z</date>
2018
+ <msg>Minify FileZilla logo. Patch by XhmikosR.</msg>
2019
+ </logentry>
2020
+ <logentry
2021
+ revision="8075">
2022
+ <author>codesquid</author>
2023
+ <date>2016-12-18T11:47:43.054857Z</date>
2024
+ <msg>Whitepsace cleanup. Patch by XhmikosR.</msg>
2025
+ </logentry>
2026
+ <logentry
2027
+ revision="8076">
2028
+ <author>codesquid</author>
2029
+ <date>2016-12-23T22:17:18.397243Z</date>
2030
+ <msg>Remove stray semicolon
2031
+ </msg>
2032
+ </logentry>
2033
+ <logentry
2034
+ revision="8077">
2035
+ <author>codesquid</author>
2036
+ <date>2016-12-23T22:30:41.286317Z</date>
2037
+ <msg>Minify icons, patch by XhmikosR
2038
+ </msg>
2039
+ </logentry>
2040
+ <logentry
2041
+ revision="8078">
2042
+ <author>codesquid</author>
2043
+ <date>2016-12-24T14:22:40.041846Z</date>
2044
+ <msg>Remove unused variabled and a stray semicolon. Patch by XhmikosR.
2045
+ </msg>
2046
+ </logentry>
2047
+ <logentry
2048
+ revision="8080">
2049
+ <author>codesquid</author>
2050
+ <date>2016-12-26T22:53:07.026520Z</date>
2051
+ <msg>Fix a bunch of warnings.
2052
+ </msg>
2053
+ </logentry>
2054
+ <logentry
2055
+ revision="8081">
2056
+ <author>codesquid</author>
2057
+ <date>2016-12-27T09:15:51.840807Z</date>
2058
+ <msg>During synchronized browsing, reset the syncbrowse dirchange flag when the user canceles the dialog that prompts for action if the remote directory does not exist. #11113
2059
+ </msg>
2060
+ </logentry>
2061
+ <logentry
2062
+ revision="8082">
2063
+ <author>codesquid</author>
2064
+ <date>2016-12-27T09:30:29.447516Z</date>
2065
+ <msg>Also allow using Alt+# to switch to tabs. #10732
2066
+ </msg>
2067
+ </logentry>
2068
+ <logentry
2069
+ revision="8083">
2070
+ <author>codesquid</author>
2071
+ <date>2016-12-27T10:46:20.505274Z</date>
2072
+ <msg>Add "Copy URL(s) to clipboard" to search results context menu.
2073
+ </msg>
2074
+ </logentry>
2075
+ <logentry
2076
+ revision="8084">
2077
+ <author>codesquid</author>
2078
+ <date>2016-12-27T11:02:56.083320Z</date>
2079
+ <msg>Fix initial size of condition type choice.
2080
+ </msg>
2081
+ </logentry>
2082
+ <logentry
2083
+ revision="8085">
2084
+ <author>codesquid</author>
2085
+ <date>2016-12-27T11:39:56.064562Z</date>
2086
+ <msg>Further rendering fixes
2087
+ </msg>
2088
+ </logentry>
2089
+ <logentry
2090
+ revision="8086">
2091
+ <author>codesquid</author>
2092
+ <date>2016-12-27T18:58:04.668736Z</date>
2093
+ <msg>Decrement item after each iteration as it is being deleted. #11122
2094
+ </msg>
2095
+ </logentry>
2096
+ <logentry
2097
+ revision="8087">
2098
+ <author>codesquid</author>
2099
+ <date>2016-12-28T11:53:03.983482Z</date>
2100
+ <msg>Use nettle for SHA512 as well.
2101
+ </msg>
2102
+ </logentry>
2103
+ <logentry
2104
+ revision="8088">
2105
+ <author>codesquid</author>
2106
+ <date>2016-12-29T14:33:48.664188Z</date>
2107
+ <msg>Fix a few compiler warnings.
2108
+ </msg>
2109
+ </logentry>
2110
+ <logentry
2111
+ revision="8089">
2112
+ <author>codesquid</author>
2113
+ <date>2016-12-29T14:36:55.294737Z</date>
2114
+ <msg>Use _nettle_sha1_compress instead of the custom implementation from PuTTY in SHATransform
2115
+ </msg>
2116
+ </logentry>
2117
+ <logentry
2118
+ revision="8090">
2119
+ <author>codesquid</author>
2120
+ <date>2016-12-29T14:37:43.530162Z</date>
2121
+ <msg>Fix indentation
2122
+ </msg>
2123
+ </logentry>
2124
+ <logentry
2125
+ revision="8091">
2126
+ <author>codesquid</author>
2127
+ <date>2016-12-29T16:17:55.011212Z</date>
2128
+ <msg>Merge upstream PuTTY changes.</msg>
2129
+ </logentry>
2130
+ <logentry
2131
+ revision="8092">
2132
+ <author>codesquid</author>
2133
+ <date>2016-12-29T17:31:30.383289Z</date>
2134
+ <msg>Fix cast.</msg>
2135
+ </logentry>
2136
+ <logentry
2137
+ revision="8093">
2138
+ <author>codesquid</author>
2139
+ <date>2016-12-30T16:50:51.385445Z</date>
2140
+ <msg>Make engine id const as it never changes.
2141
+ </msg>
2142
+ </logentry>
2143
+ <logentry
2144
+ revision="8094">
2145
+ <author>codesquid</author>
2146
+ <date>2017-01-05T14:46:44.670578Z</date>
2147
+ <msg>Don't show popup dialogs if already handling a native GUI event on OS X. Should fix #11110.</msg>
2148
+ </logentry>
2149
+ <logentry
2150
+ revision="8095">
2151
+ <author>codesquid</author>
2152
+ <date>2017-01-06T09:18:35.946460Z</date>
2153
+ <msg>Unify style for writing ", aborting."</msg>
2154
+ </logentry>
2155
+ <logentry
2156
+ revision="8096">
2157
+ <author>codesquid</author>
2158
+ <date>2017-01-06T09:20:36.936568Z</date>
2159
+ <msg>Small cleanup.</msg>
2160
+ </logentry>
2161
+ <logentry
2162
+ revision="8097">
2163
+ <author>codesquid</author>
2164
+ <date>2017-01-06T09:25:26.490946Z</date>
2165
+ <msg>Remember toolbar tool size.</msg>
2166
+ </logentry>
2167
+ <logentry
2168
+ revision="8098">
2169
+ <author>codesquid</author>
2170
+ <date>2017-01-06T12:19:43.331059Z</date>
2171
+ <msg>Fix a memory leak.</msg>
2172
+ </logentry>
2173
+ <logentry
2174
+ revision="8099">
2175
+ <author>codesquid</author>
2176
+ <date>2017-01-06T14:31:14.961152Z</date>
2177
+ <msg>Show base643 encoded SHA256 hash as hostkey fingerprint to match output format of OpenSSH 6.8+</msg>
2178
+ </logentry>
2179
+ <logentry
2180
+ revision="8100">
2181
+ <author>codesquid</author>
2182
+ <date>2017-01-06T15:18:12.630023Z</date>
2183
+ <msg>Updated translations</msg>
2184
+ </logentry>
2185
+ <logentry
2186
+ revision="8101">
2187
+ <author>codesquid</author>
2188
+ <date>2017-01-06T15:18:27.636704Z</date>
2189
+ <msg>Bump to 3.24.0-rc1</msg>
2190
+ </logentry>
2191
+ <logentry
2192
+ revision="8102">
2193
+ <author>codesquid</author>
2194
+ <date>2017-01-12T18:53:33.536722Z</date>
2195
+ <msg>Use correct return code if command cannot be converted to 8-bit charset.</msg>
2196
+ </logentry>
2197
+ <logentry
2198
+ revision="8103">
2199
+ <author>codesquid</author>
2200
+ <date>2017-01-12T18:53:59.241153Z</date>
2201
+ <msg>Fix CServerPath::operator&lt; </msg>
2202
+ </logentry>
2203
+ <logentry
2204
+ revision="8104">
2205
+ <author>codesquid</author>
2206
+ <date>2017-01-13T14:01:08.733229Z</date>
2207
+ <msg>Keep insertion point visible.
2208
+ </msg>
2209
+ </logentry>
2210
+ <logentry
2211
+ revision="8105">
2212
+ <author>codesquid</author>
2213
+ <date>2017-01-13T14:01:54.336794Z</date>
2214
+ <msg>Overlay scrollbars are always so much trouble. Refresh layout after refreshing it.
2215
+ </msg>
2216
+ </logentry>
2217
+ <logentry
2218
+ revision="8106">
2219
+ <author>codesquid</author>
2220
+ <date>2017-01-13T14:39:40.093912Z</date>
2221
+ <msg>Refactor offer initialization
2222
+ </msg>
2223
+ </logentry>
2224
+ <logentry
2225
+ revision="8107">
2226
+ <author>codesquid</author>
2227
+ <date>2017-01-13T15:06:52.742612Z</date>
2228
+ <msg>Updated translations</msg>
2229
+ </logentry>
2230
+ <logentry
2231
+ revision="8108">
2232
+ <author>codesquid</author>
2233
+ <date>2017-01-13T15:49:52.277576Z</date>
2234
+ <msg>Bump to 3.Bump to 3.24.0
2235
+ </msg>
2236
+ </logentry>
2237
+ <logentry
2238
+ revision="8109">
2239
+ <author>codesquid</author>
2240
+ <date>2017-01-13T17:50:42.389933Z</date>
2241
+ <msg>Fixed typo
2242
+ </msg>
2243
+ </logentry>
2244
+ <logentry
2245
+ revision="8110">
2246
+ <author>codesquid</author>
2247
+ <date>2017-01-13T18:03:51.045746Z</date>
2248
+ <msg>Updated translation</msg>
2249
+ </logentry>
2250
+ <logentry
2251
+ revision="8112">
2252
+ <author>codesquid</author>
2253
+ <date>2017-01-18T08:31:39.912161Z</date>
2254
+ <msg>Remove unused variable.
2255
+ </msg>
2256
+ </logentry>
2257
+ <logentry
2258
+ revision="8119">
2259
+ <author>codesquid</author>
2260
+ <date>2017-01-30T13:28:38.658631Z</date>
2261
+ <msg>Work around a bug in Windows, its documentation does not match its behavior on Vista and possibly 7.
2262
+ </msg>
2263
+ </logentry>
2264
+ <logentry
2265
+ revision="8120">
2266
+ <author>codesquid</author>
2267
+ <date>2017-01-30T13:41:44.274224Z</date>
2268
+ <msg>Minor reformatting.</msg>
2269
+ </logentry>
2270
+ <logentry
2271
+ revision="8121">
2272
+ <author>codesquid</author>
2273
+ <date>2017-01-30T15:57:56.578722Z</date>
2274
+ <msg>Refactor directory listing notifications, do the broadcast in the GUI, not in the engine.</msg>
2275
+ </logentry>
2276
+ <logentry
2277
+ revision="8138">
2278
+ <author>codesquid</author>
2279
+ <date>2017-02-10T08:58:30.768699Z</date>
2280
+ <msg>Small refactoring to make pushing operations easier.</msg>
2281
+ </logentry>
2282
+ <logentry
2283
+ revision="8139">
2284
+ <author>codesquid</author>
2285
+ <date>2017-02-10T18:02:45.249681Z</date>
2286
+ <msg>Various cleanup
2287
+ </msg>
2288
+ </logentry>
2289
+ <logentry
2290
+ revision="8140">
2291
+ <author>codesquid</author>
2292
+ <date>2017-02-10T18:15:37.482745Z</date>
2293
+ <msg>Further cleanup and slight code modernization.
2294
+ </msg>
2295
+ </logentry>
2296
+ <logentry
2297
+ revision="8141">
2298
+ <author>codesquid</author>
2299
+ <date>2017-02-11T11:26:24.777543Z</date>
2300
+ <msg>Remove assert, the error is handled gracefully.
2301
+ </msg>
2302
+ </logentry>
2303
+ <logentry
2304
+ revision="8142">
2305
+ <author>codesquid</author>
2306
+ <date>2017-02-11T13:22:53.701975Z</date>
2307
+ <msg>Revert a small change that breaks compilation.
2308
+ </msg>
2309
+ </logentry>
2310
+ <logentry
2311
+ revision="8143">
2312
+ <author>codesquid</author>
2313
+ <date>2017-02-11T13:53:20.388459Z</date>
2314
+ <msg>Heavy WIP: Refactor operation handling, move FTP specific files into own subdirectory, split operations into individual files.
2315
+ </msg>
2316
+ </logentry>
2317
+ <logentry
2318
+ revision="8144">
2319
+ <author>codesquid</author>
2320
+ <date>2017-02-11T14:00:20.352635Z</date>
2321
+ <msg>Code cleanup
2322
+ </msg>
2323
+ </logentry>
2324
+ <logentry
2325
+ revision="8145">
2326
+ <author>codesquid</author>
2327
+ <date>2017-02-12T10:12:10.162423Z</date>
2328
+ <msg>Work in process: Work on refactoring the list operation.
2329
+ </msg>
2330
+ </logentry>
2331
+ <logentry
2332
+ revision="8146">
2333
+ <author>codesquid</author>
2334
+ <date>2017-02-12T21:26:41.948873Z</date>
2335
+ <msg>Work in progress: Continue refactoring. We're a wee bit further along the complicated listing operation.
2336
+ </msg>
2337
+ </logentry>
2338
+ <logentry
2339
+ revision="8147">
2340
+ <author>codesquid</author>
2341
+ <date>2017-02-13T17:10:37.374951Z</date>
2342
+ <msg>Fix compile error on some compilers.</msg>
2343
+ </logentry>
2344
+ <logentry
2345
+ revision="8148">
2346
+ <author>codesquid</author>
2347
+ <date>2017-02-13T17:15:38.592546Z</date>
2348
+ <msg>Add missing eol-style</msg>
2349
+ </logentry>
2350
+ <logentry
2351
+ revision="8149">
2352
+ <author>codesquid</author>
2353
+ <date>2017-02-13T17:26:41.918548Z</date>
2354
+ <msg>Fix warnings.</msg>
2355
+ </logentry>
2356
+ <logentry
2357
+ revision="8150">
2358
+ <author>codesquid</author>
2359
+ <date>2017-02-13T18:00:31.883880Z</date>
2360
+ <msg>Work in progress: Split mkdir into own file, further work on list.</msg>
2361
+ </logentry>
2362
+ <logentry
2363
+ revision="8151">
2364
+ <author>codesquid</author>
2365
+ <date>2017-02-13T20:28:29.107770Z</date>
2366
+ <msg>Split raw transfer code into own file and modernize it.</msg>
2367
+ </logentry>
2368
+ <logentry
2369
+ revision="8152">
2370
+ <author>codesquid</author>
2371
+ <date>2017-02-14T10:10:01.640012Z</date>
2372
+ <msg>Convert the m_pCurrentServer pointer in CControlSocket to a non-pointer member.
2373
+ </msg>
2374
+ </logentry>
2375
+ <logentry
2376
+ revision="8153">
2377
+ <author>codesquid</author>
2378
+ <date>2017-02-14T16:51:04.801107Z</date>
2379
+ <msg>Further refactoring to clean up CFtpControlSocket and in particular the list operation.
2380
+ </msg>
2381
+ </logentry>
2382
+ <logentry
2383
+ revision="8154">
2384
+ <author>codesquid</author>
2385
+ <date>2017-02-14T17:09:18.467981Z</date>
2386
+ <msg>Fix EPSV regression.</msg>
2387
+ </logentry>
2388
+ <logentry
2389
+ revision="8155">
2390
+ <author>codesquid</author>
2391
+ <date>2017-02-14T18:06:32.784955Z</date>
2392
+ <msg>Make CControlSocket's List and Connect functions asynchronous, they now always return void.</msg>
2393
+ </logentry>
2394
+ <logentry
2395
+ revision="8156">
2396
+ <author>codesquid</author>
2397
+ <date>2017-02-14T18:24:07.824272Z</date>
2398
+ <msg>Adjust return types of CFtpControlSocket:Transfer, deal with some fixmes.</msg>
2399
+ </logentry>
2400
+ <logentry
2401
+ revision="8157">
2402
+ <author>codesquid</author>
2403
+ <date>2017-02-14T19:46:39.851977Z</date>
2404
+ <msg>Move filetransfer code.</msg>
2405
+ </logentry>
2406
+ <logentry
2407
+ revision="8158">
2408
+ <author>codesquid</author>
2409
+ <date>2017-02-16T09:44:14.211463Z</date>
2410
+ <msg>Move transfersocket.* into ftp subdirectory.</msg>
2411
+ </logentry>
2412
+ <logentry
2413
+ revision="8159">
2414
+ <author>codesquid</author>
2415
+ <date>2017-02-16T09:58:37.966424Z</date>
2416
+ <msg>Refactor raw commands.</msg>
2417
+ </logentry>
2418
+ <logentry
2419
+ revision="8160">
2420
+ <author>codesquid</author>
2421
+ <date>2017-02-16T10:43:02.227062Z</date>
2422
+ <msg>Refactor delete and rmdir commands.</msg>
2423
+ </logentry>
2424
+ <logentry
2425
+ revision="8161">
2426
+ <author>codesquid</author>
2427
+ <date>2017-02-16T11:11:23.619448Z</date>
2428
+ <msg>Finish moving FTP operations into separate files.</msg>
2429
+ </logentry>
2430
+ <logentry
2431
+ revision="8162">
2432
+ <author>codesquid</author>
2433
+ <date>2017-02-16T12:56:30.633510Z</date>
2434
+ <msg>Change return type of CRealControlSocket::Send and CFtpControlSocket::SendCommand.</msg>
2435
+ </logentry>
2436
+ <logentry
2437
+ revision="8163">
2438
+ <author>codesquid</author>
2439
+ <date>2017-02-16T13:44:16.208455Z</date>
2440
+ <msg>Adjust CControlSocket::CheckOverwriteFile and CRealControlSocket::ContinueConnect to new model. This should complete the transformation for FTP. The other protocols still need to be changed.</msg>
2441
+ </logentry>
2442
+ <logentry
2443
+ revision="8164">
2444
+ <author>codesquid</author>
2445
+ <date>2017-02-16T19:26:13.480041Z</date>
2446
+ <msg>Fix warnings.</msg>
2447
+ </logentry>
2448
+ <logentry
2449
+ revision="8165">
2450
+ <author>codesquid</author>
2451
+ <date>2017-02-16T20:09:08.086882Z</date>
2452
+ <msg>WIP: Begin refactoring CHttpControlSocket. As start, turn it into a stub.</msg>
2453
+ </logentry>
2454
+ <logentry
2455
+ revision="8166">
2456
+ <author>codesquid</author>
2457
+ <date>2017-02-17T07:58:28.824723Z</date>
2458
+ <msg>Fix a few compile errors in currently commented out code.</msg>
2459
+ </logentry>
2460
+ <logentry
2461
+ revision="8167">
2462
+ <author>codesquid</author>
2463
+ <date>2017-02-18T10:06:45.984343Z</date>
2464
+ <msg>Small progress in redoing the HTTP support.</msg>
2465
+ </logentry>
2466
+ <logentry
2467
+ revision="8168">
2468
+ <author>codesquid</author>
2469
+ <date>2017-02-18T10:17:45.527259Z</date>
2470
+ <msg>General cleanup pass on SFTP code.</msg>
2471
+ </logentry>
2472
+ <logentry
2473
+ revision="8169">
2474
+ <author>codesquid</author>
2475
+ <date>2017-02-18T10:23:30.574175Z</date>
2476
+ <msg>Move CSftpControlSocket into own directory.</msg>
2477
+ </logentry>
2478
+ <logentry
2479
+ revision="8170">
2480
+ <author>codesquid</author>
2481
+ <date>2017-02-18T10:32:55.816400Z</date>
2482
+ <msg>Added Danish translation to .desktop file.</msg>
2483
+ </logentry>
2484
+ <logentry
2485
+ revision="8172">
2486
+ <author>codesquid</author>
2487
+ <date>2017-02-18T10:46:11.188823Z</date>
2488
+ <msg>Remove an unused variable</msg>
2489
+ </logentry>
2490
+ <logentry
2491
+ revision="8173">
2492
+ <author>codesquid</author>
2493
+ <date>2017-02-18T10:46:19.656336Z</date>
2494
+ <msg>Fixed a compile error.</msg>
2495
+ </logentry>
2496
+ <logentry
2497
+ revision="8174">
2498
+ <author>codesquid</author>
2499
+ <date>2017-02-18T11:16:33.559628Z</date>
2500
+ <msg>Update built-in pugixml.</msg>
2501
+ </logentry>
2502
+ <logentry
2503
+ revision="8175">
2504
+ <author>codesquid</author>
2505
+ <date>2017-02-18T11:30:19.501121Z</date>
2506
+ <msg>Fix compile error with some GCC versions.
2507
+ </msg>
2508
+ </logentry>
2509
+ <logentry
2510
+ revision="8176">
2511
+ <author>codesquid</author>
2512
+ <date>2017-02-18T13:39:59.823595Z</date>
2513
+ <msg>Get HTTP back into a state where it can send requests.</msg>
2514
+ </logentry>
2515
+ <logentry
2516
+ revision="8177">
2517
+ <author>codesquid</author>
2518
+ <date>2017-02-18T14:34:32.345734Z</date>
2519
+ <msg>Partially re-implement parsing HTTP headers.</msg>
2520
+ </logentry>
2521
+ <logentry
2522
+ revision="8178">
2523
+ <author>codesquid</author>
2524
+ <date>2017-02-18T16:40:42.150794Z</date>
2525
+ <msg>Basic HTTP downloads working again, though redirects are ignored.</msg>
2526
+ </logentry>
2527
+ <logentry
2528
+ revision="8179">
2529
+ <author>codesquid</author>
2530
+ <date>2017-02-18T17:15:10.165632Z</date>
2531
+ <msg>Re-implement HTTP redirect handling.</msg>
2532
+ </logentry>
2533
+ <logentry
2534
+ revision="8180">
2535
+ <author>codesquid</author>
2536
+ <date>2017-02-18T18:21:57.700240Z</date>
2537
+ <msg>Start splitting up SFTP.</msg>
2538
+ </logentry>
2539
+ <logentry
2540
+ revision="8181">
2541
+ <author>codesquid</author>
2542
+ <date>2017-02-18T22:55:03.533299Z</date>
2543
+ <msg>Move SendNextCommand to CControlSocket.</msg>
2544
+ </logentry>
2545
+ <logentry
2546
+ revision="8182">
2547
+ <author>codesquid</author>
2548
+ <date>2017-02-18T23:05:23.349477Z</date>
2549
+ <msg>Minor cleanup.</msg>
2550
+ </logentry>
2551
+ <logentry
2552
+ revision="8183">
2553
+ <author>codesquid</author>
2554
+ <date>2017-02-19T09:21:56.235161Z</date>
2555
+ <msg>Add missing include.</msg>
2556
+ </logentry>
2557
+ <logentry
2558
+ revision="8184">
2559
+ <author>codesquid</author>
2560
+ <date>2017-02-19T11:13:44.871418Z</date>
2561
+ <msg>Move SFTP list code into own files.</msg>
2562
+ </logentry>
2563
+ <logentry
2564
+ revision="8185">
2565
+ <author>codesquid</author>
2566
+ <date>2017-02-19T11:58:30.398847Z</date>
2567
+ <msg>Refactor ChangeDir operation for SFTP.</msg>
2568
+ </logentry>
2569
+ <logentry
2570
+ revision="8186">
2571
+ <author>codesquid</author>
2572
+ <date>2017-02-19T14:06:00.962267Z</date>
2573
+ <msg>Refactor and move SFTP file transfer code into own file.</msg>
2574
+ </logentry>
2575
+ <logentry
2576
+ revision="8187">
2577
+ <author>codesquid</author>
2578
+ <date>2017-02-19T15:48:31.493711Z</date>
2579
+ <msg>Use a common CProtocolOpData&lt;T&gt; as base class.</msg>
2580
+ </logentry>
2581
+ <logentry
2582
+ revision="8188">
2583
+ <author>codesquid</author>
2584
+ <date>2017-02-19T16:39:29.914931Z</date>
2585
+ <msg>Refactor SFTP del, mkd and rmd operations.</msg>
2586
+ </logentry>
2587
+ <logentry
2588
+ revision="8189">
2589
+ <author>codesquid</author>
2590
+ <date>2017-02-19T17:01:50.097116Z</date>
2591
+ <msg>Refactor the rename and chmod operations for SFTP.</msg>
2592
+ </logentry>
2593
+ <logentry
2594
+ revision="8190">
2595
+ <author>codesquid</author>
2596
+ <date>2017-02-19T18:30:31.104165Z</date>
2597
+ <msg>Get rid of the explicitly managed *m_pCurOpData and replace it with a vector or unique_ptrs.</msg>
2598
+ </logentry>
2599
+ <logentry
2600
+ revision="8191">
2601
+ <author>codesquid</author>
2602
+ <date>2017-02-19T18:52:10.444039Z</date>
2603
+ <msg>Fix cache unlocking in ResetOperation.</msg>
2604
+ </logentry>
2605
+ <logentry
2606
+ revision="8192">
2607
+ <author>codesquid</author>
2608
+ <date>2017-02-19T19:26:42.257900Z</date>
2609
+ <msg>Add another missing include.</msg>
2610
+ </logentry>
2611
+ <logentry
2612
+ revision="8193">
2613
+ <author>codesquid</author>
2614
+ <date>2017-02-19T19:47:14.307154Z</date>
2615
+ <msg>Fix a warning.</msg>
2616
+ </logentry>
2617
+ <logentry
2618
+ revision="8194">
2619
+ <author>codesquid</author>
2620
+ <date>2017-02-19T20:08:25.245600Z</date>
2621
+ <msg>Fix Coverity warnings.</msg>
2622
+ </logentry>
2623
+ <logentry
2624
+ revision="8195">
2625
+ <author>codesquid</author>
2626
+ <date>2017-02-20T10:02:32.447637Z</date>
2627
+ <msg>In CHttpControlSocket::OnConnect, check that the current operation is PrivCommand::http_connect, not Command::connect.</msg>
2628
+ </logentry>
2629
+ <logentry
2630
+ revision="8196">
2631
+ <author>codesquid</author>
2632
+ <date>2017-02-20T10:12:40.698004Z</date>
2633
+ <msg>Fix User-Agent header.</msg>
2634
+ </logentry>
2635
+ <logentry
2636
+ revision="8197">
2637
+ <author>codesquid</author>
2638
+ <date>2017-02-20T10:33:00.106758Z</date>
2639
+ <msg>Fix a warning.
2640
+ </msg>
2641
+ </logentry>
2642
+ <logentry
2643
+ revision="8198">
2644
+ <author>codesquid</author>
2645
+ <date>2017-02-20T14:17:34.787713Z</date>
2646
+ <msg>Fix duplicate mnemonic in files currently edited dialog. #11135</msg>
2647
+ </logentry>
2648
+ <logentry
2649
+ revision="8199">
2650
+ <author>codesquid</author>
2651
+ <date>2017-02-20T17:02:07.486049Z</date>
2652
+ <msg>Merge upstream PuTTY changes.</msg>
2653
+ </logentry>
2654
+ <logentry
2655
+ revision="8200">
2656
+ <author>codesquid</author>
2657
+ <date>2017-02-20T19:10:48.506939Z</date>
2658
+ <msg>Fix a compile error.</msg>
2659
+ </logentry>
2660
+ <logentry
2661
+ revision="8203">
2662
+ <author>codesquid</author>
2663
+ <date>2017-02-21T18:06:36.508151Z</date>
2664
+ <msg>Implement sending the request body.</msg>
2665
+ </logentry>
2666
+ <logentry
2667
+ revision="8204">
2668
+ <author>codesquid</author>
2669
+ <date>2017-02-21T20:38:49.548746Z</date>
2670
+ <msg>Merge remaining upstream PuTTY changes.</msg>
2671
+ </logentry>
2672
+ <logentry
2673
+ revision="8207">
2674
+ <author>codesquid</author>
2675
+ <date>2017-02-21T20:59:34.864546Z</date>
2676
+ <msg>Bump to FileZilla 3.24.1
2677
+ </msg>
2678
+ </logentry>
2679
+ <logentry
2680
+ revision="8210">
2681
+ <author>codesquid</author>
2682
+ <date>2017-02-22T18:41:21.250379Z</date>
2683
+ <msg>Scale widths of status line control.</msg>
2684
+ </logentry>
2685
+ <logentry
2686
+ revision="8211">
2687
+ <author>codesquid</author>
2688
+ <date>2017-02-23T10:21:49.508015Z</date>
2689
+ <msg>pimpl CTlsSocket and solve the ssize_t issue.</msg>
2690
+ </logentry>
2691
+ <logentry
2692
+ revision="8212">
2693
+ <author>codesquid</author>
2694
+ <date>2017-02-23T12:06:26.204446Z</date>
2695
+ <msg>Assorted cleanup.</msg>
2696
+ </logentry>
2697
+ <logentry
2698
+ revision="8213">
2699
+ <author>codesquid</author>
2700
+ <date>2017-02-23T14:46:37.039555Z</date>
2701
+ <msg>Add missing include.</msg>
2702
+ </logentry>
2703
+ <logentry
2704
+ revision="8214">
2705
+ <author>codesquid</author>
2706
+ <date>2017-02-23T14:49:23.441547Z</date>
2707
+ <msg>Actually fix the includes in the right file...</msg>
2708
+ </logentry>
2709
+ <logentry
2710
+ revision="8215">
2711
+ <author>codesquid</author>
2712
+ <date>2017-02-23T14:53:04.370004Z</date>
2713
+ <msg>Fix harmless warning.</msg>
2714
+ </logentry>
2715
+ <logentry
2716
+ revision="8216">
2717
+ <author>codesquid</author>
2718
+ <date>2017-02-23T14:58:15.609203Z</date>
2719
+ <msg>Remove wxFAIL_MSG from engine.</msg>
2720
+ </logentry>
2721
+ <logentry
2722
+ revision="8217">
2723
+ <author>codesquid</author>
2724
+ <date>2017-02-23T19:15:11.987477Z</date>
2725
+ <msg>Use a new interface for custom character set conversion. From this point on, wxWidgets is no longer used in the engine.</msg>
2726
+ </logentry>
2727
+ <logentry
2728
+ revision="8218">
2729
+ <author>codesquid</author>
2730
+ <date>2017-02-23T19:15:59.005780Z</date>
2731
+ <msg>Eliminate wx from default project settings.</msg>
2732
+ </logentry>
2733
+ <logentry
2734
+ revision="8219">
2735
+ <author>codesquid</author>
2736
+ <date>2017-02-23T19:24:44.310453Z</date>
2737
+ <msg>Use a new interface for custom character set conversion. From this point on, wxWidgets is no longer used in the engine, missing half of commit.</msg>
2738
+ </logentry>
2739
+ <logentry
2740
+ revision="8220">
2741
+ <author>codesquid</author>
2742
+ <date>2017-02-23T20:04:44.659476Z</date>
2743
+ <msg>Move reporting of GUI library dependencies into the GUI.</msg>
2744
+ </logentry>
2745
+ <logentry
2746
+ revision="8221">
2747
+ <author>codesquid</author>
2748
+ <date>2017-02-23T20:21:53.794465Z</date>
2749
+ <msg>Remove discontinued support channel.</msg>
2750
+ </logentry>
2751
+ <logentry
2752
+ revision="8222">
2753
+ <author>codesquid</author>
2754
+ <date>2017-02-23T20:34:11.365994Z</date>
2755
+ <msg>Add a missing include.</msg>
2756
+ </logentry>
2757
+ <logentry
2758
+ revision="8223">
2759
+ <author>codesquid</author>
2760
+ <date>2017-02-23T22:00:26.124353Z</date>
2761
+ <msg>Move GetRealOsVersion to buildinfo.h/cpp</msg>
2762
+ </logentry>
2763
+ <logentry
2764
+ revision="8224">
2765
+ <author>codesquid</author>
2766
+ <date>2017-02-23T22:01:40.365472Z</date>
2767
+ <msg>Remove unused forward declarations.</msg>
2768
+ </logentry>
2769
+ <logentry
2770
+ revision="8225">
2771
+ <author>codesquid</author>
2772
+ <date>2017-02-23T22:28:05.903246Z</date>
2773
+ <msg>Add another missing include.</msg>
2774
+ </logentry>
2775
+ <logentry
2776
+ revision="8226">
2777
+ <author>codesquid</author>
2778
+ <date>2017-02-24T07:57:21.317022Z</date>
2779
+ <msg>Fix a warning about a statement having no effect, a return was missing.</msg>
2780
+ </logentry>
2781
+ <logentry
2782
+ revision="8227">
2783
+ <author>codesquid</author>
2784
+ <date>2017-02-24T07:58:19.039213Z</date>
2785
+ <msg>Fix warning about signed/unsigned integer comparison.</msg>
2786
+ </logentry>
2787
+ <logentry
2788
+ revision="8228">
2789
+ <author>codesquid</author>
2790
+ <date>2017-02-24T08:01:07.754629Z</date>
2791
+ <msg>Fixed a compile error due to a constant no longer available.</msg>
2792
+ </logentry>
2793
+ <logentry
2794
+ revision="8229">
2795
+ <author>codesquid</author>
2796
+ <date>2017-02-24T13:49:57.351850Z</date>
2797
+ <msg>Backport small fixes from an in-development feature branch.</msg>
2798
+ </logentry>
2799
+ <logentry
2800
+ revision="8230">
2801
+ <author>codesquid</author>
2802
+ <date>2017-02-24T15:21:01.112375Z</date>
2803
+ <msg>Updated translations</msg>
2804
+ </logentry>
2805
+ <logentry
2806
+ revision="8231">
2807
+ <author>codesquid</author>
2808
+ <date>2017-02-24T15:28:34.161775Z</date>
2809
+ <msg>Bump to 3.25.0-beta1</msg>
2810
+ </logentry>
2811
+ <logentry
2812
+ revision="8233">
2813
+ <author>codesquid</author>
2814
+ <date>2017-02-24T16:16:09.992786Z</date>
2815
+ <msg>Fix typo in include guard.</msg>
2816
+ </logentry>
2817
+ <logentry
2818
+ revision="8234">
2819
+ <author>codesquid</author>
2820
+ <date>2017-02-24T16:26:21.251269Z</date>
2821
+ <msg>Fix a bunch of warnings reported by Clang with -Winconsistent-missing-override</msg>
2822
+ </logentry>
2823
+ <logentry
2824
+ revision="8235">
2825
+ <author>codesquid</author>
2826
+ <date>2017-02-24T18:33:08.433279Z</date>
2827
+ <msg>Fixed a few more warnings.</msg>
2828
+ </logentry>
2829
+ <logentry
2830
+ revision="8236">
2831
+ <author>codesquid</author>
2832
+ <date>2017-02-26T10:54:34.374093Z</date>
2833
+ <msg>Unify format of debug messages.</msg>
2834
+ </logentry>
2835
+ <logentry
2836
+ revision="8237">
2837
+ <author>codesquid</author>
2838
+ <date>2017-02-26T10:55:07.480098Z</date>
2839
+ <msg>Small include cleanup.</msg>
2840
+ </logentry>
2841
+ <logentry
2842
+ revision="8238">
2843
+ <author>codesquid</author>
2844
+ <date>2017-02-27T14:43:34.343363Z</date>
2845
+ <msg>Simpler check for unsure items.</msg>
2846
+ </logentry>
2847
+ <logentry
2848
+ revision="8239">
2849
+ <author>codesquid</author>
2850
+ <date>2017-02-27T14:44:55.969713Z</date>
2851
+ <msg>Require lfz 0.9.1 or greater.</msg>
2852
+ </logentry>
2853
+ <logentry
2854
+ revision="8242">
2855
+ <author>codesquid</author>
2856
+ <date>2017-02-27T15:29:22.218157Z</date>
2857
+ <msg>Update svn:ignore
2858
+ </msg>
2859
+ </logentry>
2860
+ <logentry
2861
+ revision="8249">
2862
+ <author>codesquid</author>
2863
+ <date>2017-03-03T15:38:01.814151Z</date>
2864
+ <msg>Remove BOM.
2865
+ </msg>
2866
+ </logentry>
2867
+ <logentry
2868
+ revision="8250">
2869
+ <author>codesquid</author>
2870
+ <date>2017-03-03T15:50:09.676842Z</date>
2871
+ <msg>Merge upstream PuTTY changes.</msg>
2872
+ </logentry>
2873
+ <logentry
2874
+ revision="8251">
2875
+ <author>codesquid</author>
2876
+ <date>2017-03-03T16:07:54.741365Z</date>
2877
+ <msg>Fix CSiteManagerDialog::GetProtocol()</msg>
2878
+ </logentry>
2879
+ <logentry
2880
+ revision="8252">
2881
+ <author>codesquid</author>
2882
+ <date>2017-03-03T16:09:52.187927Z</date>
2883
+ <msg>Fix size check.</msg>
2884
+ </logentry>
2885
+ <logentry
2886
+ revision="8253">
2887
+ <author>codesquid</author>
2888
+ <date>2017-03-03T18:12:00.275485Z</date>
2889
+ <msg>Fix assertion on OS X.
2890
+ </msg>
2891
+ </logentry>
2892
+ <logentry
2893
+ revision="8254">
2894
+ <author>codesquid</author>
2895
+ <date>2017-03-04T10:44:51.819562Z</date>
2896
+ <msg>Use same wording for similar error messages. Clarify others.</msg>
2897
+ </logentry>
2898
+ <logentry
2899
+ revision="8255">
2900
+ <author>codesquid</author>
2901
+ <date>2017-03-04T11:03:38.274042Z</date>
2902
+ <msg>Updated translations</msg>
2903
+ </logentry>
2904
+ <logentry
2905
+ revision="8256">
2906
+ <author>codesquid</author>
2907
+ <date>2017-03-04T11:08:28.710173Z</date>
2908
+ <msg>Bump to 3.25.0-rc1</msg>
2909
+ </logentry>
2910
+ <logentry
2911
+ revision="8257">
2912
+ <author>codesquid</author>
2913
+ <date>2017-03-04T13:16:06.140382Z</date>
2914
+ <msg>Fix typo
2915
+ </msg>
2916
+ </logentry>
2917
+ <logentry
2918
+ revision="8258">
2919
+ <author>codesquid</author>
2920
+ <date>2017-03-04T14:02:45.501717Z</date>
2921
+ <msg>Fix another typo
2922
+ </msg>
2923
+ </logentry>
2924
+ <logentry
2925
+ revision="8259">
2926
+ <author>codesquid</author>
2927
+ <date>2017-03-06T08:04:57.066696Z</date>
2928
+ <msg>Clear response code headers in CHttpRequest::Send</msg>
2929
+ </logentry>
2930
+ <logentry
2931
+ revision="8260">
2932
+ <author>codesquid</author>
2933
+ <date>2017-03-06T14:08:42.557883Z</date>
2934
+ <msg>Implementations of GetDependencVersion and GetDependencName were swapped.</msg>
2935
+ </logentry>
2936
+ <logentry
2937
+ revision="8261">
2938
+ <author>codesquid</author>
2939
+ <date>2017-03-06T14:09:42.841686Z</date>
2940
+ <msg>Typo</msg>
2941
+ </logentry>
2942
+ <logentry
2943
+ revision="8262">
2944
+ <author>codesquid</author>
2945
+ <date>2017-03-06T17:47:12.041306Z</date>
2946
+ <msg>Destroy worker thread in CIoThread destructor.</msg>
2947
+ </logentry>
2948
+ <logentry
2949
+ revision="8266">
2950
+ <author>codesquid</author>
2951
+ <date>2017-03-10T09:40:05.575228Z</date>
2952
+ <msg>Bump copyright year to 2017</msg>
2953
+ </logentry>
2954
+ <logentry
2955
+ revision="8267">
2956
+ <author>codesquid</author>
2957
+ <date>2017-03-10T09:47:31.681737Z</date>
2958
+ <msg>Updated svn:ignore</msg>
2959
+ </logentry>
2960
+ <logentry
2961
+ revision="8268">
2962
+ <author>codesquid</author>
2963
+ <date>2017-03-10T10:16:09.907909Z</date>
2964
+ <msg>Fix variable name.</msg>
2965
+ </logentry>
2966
+ <logentry
2967
+ revision="8269">
2968
+ <author>codesquid</author>
2969
+ <date>2017-03-10T10:34:02.969809Z</date>
2970
+ <msg>Handle the "100 Continue" response code.</msg>
2971
+ </logentry>
2972
+ <logentry
2973
+ revision="8270">
2974
+ <author>codesquid</author>
2975
+ <date>2017-03-10T10:35:56.344518Z</date>
2976
+ <msg>Fix include guard.</msg>
2977
+ </logentry>
2978
+ <logentry
2979
+ revision="8271">
2980
+ <author>codesquid</author>
2981
+ <date>2017-03-10T10:40:37.839948Z</date>
2982
+ <msg>Make thread_local mandatory.</msg>
2983
+ </logentry>
2984
+ <logentry
2985
+ revision="8272">
2986
+ <author>codesquid</author>
2987
+ <date>2017-03-10T14:55:59.984764Z</date>
2988
+ <msg>Fix selection of encryption option from ServerProtocol.</msg>
2989
+ </logentry>
2990
+ <logentry
2991
+ revision="8273">
2992
+ <author>codesquid</author>
2993
+ <date>2017-03-10T14:56:27.236615Z</date>
2994
+ <msg>Remove no longer needed include</msg>
2995
+ </logentry>
2996
+ <logentry
2997
+ revision="8274">
2998
+ <author>codesquid</author>
2999
+ <date>2017-03-10T14:56:36.011532Z</date>
3000
+ <msg>Fix include guards.</msg>
3001
+ </logentry>
3002
+ <logentry
3003
+ revision="8275">
3004
+ <author>codesquid</author>
3005
+ <date>2017-03-10T15:15:06.505330Z</date>
3006
+ <msg>Zero-initialize some pointers.</msg>
3007
+ </logentry>
3008
+ <logentry
3009
+ revision="8276">
3010
+ <author>codesquid</author>
3011
+ <date>2017-03-11T08:55:25.795137Z</date>
3012
+ <msg>Fix error resulting from similarly named variable in CControlSocket and CMkdirOpData breaking stepwise directory creation.</msg>
3013
+ </logentry>
3014
+ <logentry
3015
+ revision="8277">
3016
+ <author>codesquid</author>
3017
+ <date>2017-03-11T08:56:09.651704Z</date>
3018
+ <msg>Fix small typo</msg>
3019
+ </logentry>
3020
+ <logentry
3021
+ revision="8278">
3022
+ <author>codesquid</author>
3023
+ <date>2017-03-12T16:38:13.956088Z</date>
3024
+ <msg>#11177: OS X: If toolbar is hidden, hide it on creation.</msg>
3025
+ </logentry>
3026
+ <logentry
3027
+ revision="8279">
3028
+ <author>codesquid</author>
3029
+ <date>2017-03-12T19:15:36.166931Z</date>
3030
+ <msg>Use NSProcessInfo's beginActivityWithOptions to prevent idle sleep instead of IOPMAssertionCreate. This has the benefit of also preventing App Nap. The drawback is that it requires OS X 10.9 or higher.</msg>
3031
+ </logentry>
3032
+ <logentry
3033
+ revision="8280">
3034
+ <author>codesquid</author>
3035
+ <date>2017-03-12T19:45:14.731944Z</date>
3036
+ <msg>Work around ugly autoconf/automake bug, languaged cannot be conditionally used.
3037
+ </msg>
3038
+ </logentry>
3039
+ <logentry
3040
+ revision="8281">
3041
+ <author>codesquid</author>
3042
+ <date>2017-03-12T21:06:18.184674Z</date>
3043
+ <msg>Apparently Objective C has garbage collection, yet uses pointer notation. Horrible syntax...</msg>
3044
+ </logentry>
3045
+ <logentry
3046
+ revision="8282">
3047
+ <author>codesquid</author>
3048
+ <date>2017-03-12T22:18:44.264413Z</date>
3049
+ <msg>Use a global NSProcessInfo, else it doesn't work</msg>
3050
+ </logentry>
3051
+ <logentry
3052
+ revision="8283">
3053
+ <author>codesquid</author>
3054
+ <date>2017-03-13T09:08:01.780823Z</date>
3055
+ <msg>Revert a previous change, it was actually working already.</msg>
3056
+ </logentry>
3057
+ <logentry
3058
+ revision="8284">
3059
+ <author>codesquid</author>
3060
+ <date>2017-03-13T09:16:36.106873Z</date>
3061
+ <msg>Query location of downloads directory on OS X to store updates in</msg>
3062
+ </logentry>
3063
+ <logentry
3064
+ revision="8285">
3065
+ <author>codesquid</author>
3066
+ <date>2017-03-13T09:24:15.431610Z</date>
3067
+ <msg>Fix calculation of dataToSend_ in request.</msg>
3068
+ </logentry>
3069
+ <logentry
3070
+ revision="8286">
3071
+ <author>codesquid</author>
3072
+ <date>2017-03-13T09:37:25.093585Z</date>
3073
+ <msg>Fix retry logic.</msg>
3074
+ </logentry>
3075
+ <logentry
3076
+ revision="8287">
3077
+ <author>codesquid</author>
3078
+ <date>2017-03-13T10:07:48.841681Z</date>
3079
+ <msg>Pass opt variable to beginActivityWithOptions</msg>
3080
+ </logentry>
3081
+ <logentry
3082
+ revision="8288">
3083
+ <author>codesquid</author>
3084
+ <date>2017-03-13T13:03:40.417541Z</date>
3085
+ <msg>Update translations</msg>
3086
+ </logentry>
3087
+ <logentry
3088
+ revision="8289">
3089
+ <author>codesquid</author>
3090
+ <date>2017-03-13T13:17:10.452540Z</date>
3091
+ <msg>Bump to 3.25.0</msg>
3092
+ </logentry>
3093
+ <logentry
3094
+ revision="8290">
3095
+ <author>codesquid</author>
3096
+ <date>2017-03-13T14:03:52.231191Z</date>
3097
+ <msg>Add a missing include</msg>
3098
+ </logentry>
3099
+ <logentry
3100
+ revision="8291">
3101
+ <author>codesquid</author>
3102
+ <date>2017-03-16T08:13:10.273245Z</date>
3103
+ <msg>Allow about dialog to go a bit wider.</msg>
3104
+ </logentry>
3105
+ <logentry
3106
+ revision="8298">
3107
+ <author>codesquid</author>
3108
+ <date>2017-03-18T15:32:14.675645Z</date>
3109
+ <msg>Fix a few warnings
3110
+ </msg>
3111
+ </logentry>
3112
+ <logentry
3113
+ revision="8299">
3114
+ <author>codesquid</author>
3115
+ <date>2017-03-20T09:09:16.215144Z</date>
3116
+ <msg>If converting to wchar_t from char* as ISO8859-1, cast through unsigned char* to preserve correct values of potentially negative chars.</msg>
3117
+ </logentry>
3118
+ <logentry
3119
+ revision="8300">
3120
+ <author>codesquid</author>
3121
+ <date>2017-03-20T10:11:23.205138Z</date>
3122
+ <msg>Fix timeout detection. #11206</msg>
3123
+ </logentry>
3124
+ <logentry
3125
+ revision="8301">
3126
+ <author>codesquid</author>
3127
+ <date>2017-03-20T14:55:58.339989Z</date>
3128
+ <msg>Updated translations</msg>
3129
+ </logentry>
3130
+ <logentry
3131
+ revision="8302">
3132
+ <author>codesquid</author>
3133
+ <date>2017-03-20T15:03:19.784307Z</date>
3134
+ <msg>Add a few null checks.</msg>
3135
+ </logentry>
3136
+ <logentry
3137
+ revision="8303">
3138
+ <author>codesquid</author>
3139
+ <date>2017-03-20T15:06:25.174956Z</date>
3140
+ <msg>One more null check.</msg>
3141
+ </logentry>
3142
+ <logentry
3143
+ revision="8304">
3144
+ <author>codesquid</author>
3145
+ <date>2017-03-20T15:11:35.058624Z</date>
3146
+ <msg>Bump to 3.25.1</msg>
3147
+ </logentry>
3148
+ <logentry
3149
+ revision="8305">
3150
+ <author>codesquid</author>
3151
+ <date>2017-03-21T11:26:33.011713Z</date>
3152
+ <msg>Fix generation of login sequence when using FTP proxies.</msg>
3153
+ </logentry>
3154
+ <logentry
3155
+ revision="8308">
3156
+ <author>codesquid</author>
3157
+ <date>2017-03-23T08:12:48.746797Z</date>
3158
+ <msg>Fix buffer handling sending request body</msg>
3159
+ </logentry>
3160
+ <logentry
3161
+ revision="8309">
3162
+ <author>codesquid</author>
3163
+ <date>2017-03-23T08:20:59.476991Z</date>
3164
+ <msg>Minor cleanup.</msg>
3165
+ </logentry>
3166
+ <logentry
3167
+ revision="8310">
3168
+ <author>codesquid</author>
3169
+ <date>2017-03-23T08:43:30.943154Z</date>
3170
+ <msg>Return FZ_REPLY_WOULDBLOCK in CHttpRequestOpData::Send() if the backend returns EAGAIN.</msg>
3171
+ </logentry>
3172
+ <logentry
3173
+ revision="8312">
3174
+ <author>codesquid</author>
3175
+ <date>2017-03-24T14:10:03.162886Z</date>
3176
+ <msg>Need to adjust dataToSend_ prior to returning FZ_REPLY_WOULDBLOCK.</msg>
3177
+ </logentry>
3178
+ <logentry
3179
+ revision="8330">
3180
+ <author>codesquid</author>
3181
+ <date>2017-04-06T07:21:02.589949Z</date>
3182
+ <msg>Fix sending of keep-alive commands.</msg>
3183
+ </logentry>
3184
+ <logentry
3185
+ revision="8331">
3186
+ <author>codesquid</author>
3187
+ <date>2017-04-06T09:22:32.114208Z</date>
3188
+ <msg>End Vista support.</msg>
3189
+ </logentry>
3190
+ <logentry
3191
+ revision="8332">
3192
+ <author>codesquid</author>
3193
+ <date>2017-04-06T09:33:45.874705Z</date>
3194
+ <msg>Fix "IP address" capitalization in user-visible strings, patch by Peter Körner.</msg>
3195
+ </logentry>
3196
+ <logentry
3197
+ revision="8333">
3198
+ <author>codesquid</author>
3199
+ <date>2017-04-06T11:28:08.099931Z</date>
3200
+ <msg>Fix "IP address" capitalization in user-visible strings, patch by Peter Körner.</msg>
3201
+ </logentry>
3202
+ <logentry
3203
+ revision="8341">
3204
+ <author>codesquid</author>
3205
+ <date>2017-04-10T09:25:55.264790Z</date>
3206
+ <msg>Allow deleting unlistable directories.
3207
+ </msg>
3208
+ </logentry>
3209
+ <logentry
3210
+ revision="8344">
3211
+ <author>codesquid</author>
3212
+ <date>2017-04-10T16:09:01.218729Z</date>
3213
+ <msg>Try harder to obtain the system image list handle. If that still fails, fail more gracefully.</msg>
3214
+ </logentry>
3215
+ <logentry
3216
+ revision="8347">
3217
+ <author>codesquid</author>
3218
+ <date>2017-04-18T08:16:07.061721Z</date>
3219
+ <msg>Reformatting without functional change.</msg>
3220
+ </logentry>
3221
+ <logentry
3222
+ revision="8348">
3223
+ <author>codesquid</author>
3224
+ <date>2017-04-18T08:42:38.626165Z</date>
3225
+ <msg>Fix an assertion triggered by an invalid filter.xml that contains no Filters element.</msg>
3226
+ </logentry>
3227
+ <logentry
3228
+ revision="8349">
3229
+ <author>codesquid</author>
3230
+ <date>2017-04-18T11:49:50.163176Z</date>
3231
+ <msg>Fix spelling.</msg>
3232
+ </logentry>
3233
+ <logentry
3234
+ revision="8350">
3235
+ <author>codesquid</author>
3236
+ <date>2017-04-18T12:01:00.253952Z</date>
3237
+ <msg>Handle the hint element.</msg>
3238
+ </logentry>
3239
+ <logentry
3240
+ revision="8351">
3241
+ <author>codesquid</author>
3242
+ <date>2017-04-18T13:02:36.463463Z</date>
3243
+ <msg>Fix detection of regular paths accepting too much due to a typo. Reported by mseker.</msg>
3244
+ </logentry>
3245
+ <logentry
3246
+ revision="8353">
3247
+ <author>codesquid</author>
3248
+ <date>2017-04-19T10:24:13.882026Z</date>
3249
+ <msg>Do not list Vista as supported in the README file.</msg>
3250
+ </logentry>
3251
+ <logentry
3252
+ revision="8354">
3253
+ <author>codesquid</author>
3254
+ <date>2017-04-19T10:25:29.763616Z</date>
3255
+ <msg>Use std::deque instead of std::list for the pending notifications and a vector for the queued log messages.</msg>
3256
+ </logentry>
3257
+ <logentry
3258
+ revision="8360">
3259
+ <author>codesquid</author>
3260
+ <date>2017-04-21T08:48:19.867159Z</date>
3261
+ <msg>Add generic proxy support for HTTP.</msg>
3262
+ </logentry>
3263
+ <logentry
3264
+ revision="8361">
3265
+ <author>codesquid</author>
3266
+ <date>2017-04-21T08:59:49.233246Z</date>
3267
+ <msg>Remove unused CConnectOpData</msg>
3268
+ </logentry>
3269
+ <logentry
3270
+ revision="8362">
3271
+ <author>codesquid</author>
3272
+ <date>2017-04-22T10:35:46.162376Z</date>
3273
+ <msg>Minor cleanup.</msg>
3274
+ </logentry>
3275
+ <logentry
3276
+ revision="8363">
3277
+ <author>codesquid</author>
3278
+ <date>2017-04-22T12:48:36.800353Z</date>
3279
+ <msg>Fix a few insignificant coverity issues.</msg>
3280
+ </logentry>
3281
+ <logentry
3282
+ revision="8364">
3283
+ <author>codesquid</author>
3284
+ <date>2017-04-23T10:01:04.541593Z</date>
3285
+ <msg>Do not mark a string as translatable that is not meant to be translated.</msg>
3286
+ </logentry>
3287
+ <logentry
3288
+ revision="8365">
3289
+ <author>codesquid</author>
3290
+ <date>2017-04-23T10:26:11.852273Z</date>
3291
+ <msg>Some header cleanup.</msg>
3292
+ </logentry>
3293
+ <logentry
3294
+ revision="8366">
3295
+ <author>codesquid</author>
3296
+ <date>2017-04-23T10:30:33.324669Z</date>
3297
+ <msg>Increase default speedlimit values to be more useful.</msg>
3298
+ </logentry>
3299
+ <logentry
3300
+ revision="8367">
3301
+ <author>codesquid</author>
3302
+ <date>2017-04-23T10:57:39.955089Z</date>
3303
+ <msg>Updated translations.</msg>
3304
+ </logentry>
3305
+ <logentry
3306
+ revision="8368">
3307
+ <author>codesquid</author>
3308
+ <date>2017-04-23T11:04:36.227969Z</date>
3309
+ <msg>Bump to 3.25.2-rc1</msg>
3310
+ </logentry>
3311
+ <logentry
3312
+ revision="8369">
3313
+ <author>codesquid</author>
3314
+ <date>2017-04-24T08:54:15.610156Z</date>
3315
+ <msg>Handle asynchronous requests for active engines without associated items, such as listing operations.</msg>
3316
+ </logentry>
3317
+ <logentry
3318
+ revision="8371">
3319
+ <author>codesquid</author>
3320
+ <date>2017-04-25T09:34:02.674264Z</date>
3321
+ <msg>Move CSocket into fz namespace.</msg>
3322
+ </logentry>
3323
+ <logentry
3324
+ revision="8372">
3325
+ <author>codesquid</author>
3326
+ <date>2017-04-25T12:00:40.033542Z</date>
3327
+ <msg>Further fz::socket cleanup.</msg>
3328
+ </logentry>
3329
+ <logentry
3330
+ revision="8374">
3331
+ <author>codesquid</author>
3332
+ <date>2017-04-28T09:58:46.790002Z</date>
3333
+ <msg>Even further fz::socket cleanup.</msg>
3334
+ </logentry>
3335
+ <logentry
3336
+ revision="8375">
3337
+ <author>codesquid</author>
3338
+ <date>2017-04-28T10:52:13.590034Z</date>
3339
+ <msg>Fix compile errors.
3340
+ </msg>
3341
+ </logentry>
3342
+ <logentry
3343
+ revision="8376">
3344
+ <author>codesquid</author>
3345
+ <date>2017-04-28T10:53:31.449059Z</date>
3346
+ <msg>Revert accidental commit of debug code.
3347
+ </msg>
3348
+ </logentry>
3349
+ <logentry
3350
+ revision="8377">
3351
+ <author>codesquid</author>
3352
+ <date>2017-04-28T10:54:05.229250Z</date>
3353
+ <msg>Typo.
3354
+ </msg>
3355
+ </logentry>
3356
+ <logentry
3357
+ revision="8378">
3358
+ <author>codesquid</author>
3359
+ <date>2017-04-28T11:01:16.168795Z</date>
3360
+ <msg>Remove redundant qualification of fz namespace.
3361
+ </msg>
3362
+ </logentry>
3363
+ <logentry
3364
+ revision="8379">
3365
+ <author>codesquid</author>
3366
+ <date>2017-04-30T09:08:24.150420Z</date>
3367
+ <msg>Merge upstream PuTTY changes.</msg>
3368
+ </logentry>
3369
+ <logentry
3370
+ revision="8380">
3371
+ <author>codesquid</author>
3372
+ <date>2017-04-30T09:24:28.266109Z</date>
3373
+ <msg>Updated translations
3374
+ </msg>
3375
+ </logentry>
3376
+ <logentry
3377
+ revision="8381">
3378
+ <author>codesquid</author>
3379
+ <date>2017-04-30T09:39:54.448192Z</date>
3380
+ <msg>Bump to 3.25.2
3381
+ </msg>
3382
+ </logentry>
3383
+ <logentry
3384
+ revision="8383">
3385
+ <author>codesquid</author>
3386
+ <date>2017-05-01T10:07:49.705960Z</date>
3387
+ <msg>Code cleanup
3388
+ </msg>
3389
+ </logentry>
3390
+ <logentry
3391
+ revision="8385">
3392
+ <author>codesquid</author>
3393
+ <date>2017-05-01T12:28:16.200797Z</date>
3394
+ <msg>Socket threads are now self-cleaning.
3395
+ </msg>
3396
+ </logentry>
3397
+ <logentry
3398
+ revision="8386">
3399
+ <author>codesquid</author>
3400
+ <date>2017-05-02T08:59:22.313705Z</date>
3401
+ <msg>Remove debug code.</msg>
3402
+ </logentry>
3403
+ <logentry
3404
+ revision="8387">
3405
+ <author>codesquid</author>
3406
+ <date>2017-05-02T21:33:53.861826Z</date>
3407
+ <msg>wxWidgets 3.0.3 finally got released. Require it.</msg>
3408
+ </logentry>
3409
+ <logentry
3410
+ revision="8391">
3411
+ <author>codesquid</author>
3412
+ <date>2017-05-10T11:36:25.516907Z</date>
3413
+ <msg>Fix possible null-pointer dereference.</msg>
3414
+ </logentry>
3415
+ <logentry
3416
+ revision="8392">
3417
+ <author>codesquid</author>
3418
+ <date>2017-05-10T11:36:35.992666Z</date>
3419
+ <msg>Add function to retrigger events.</msg>
3420
+ </logentry>
3421
+ <logentry
3422
+ revision="8394">
3423
+ <author>codesquid</author>
3424
+ <date>2017-05-12T09:44:29.677861Z</date>
3425
+ <msg>Fix logic error.</msg>
3426
+ </logentry>
3427
+ <logentry
3428
+ revision="8396">
3429
+ <author>codesquid</author>
3430
+ <date>2017-05-18T14:03:35.279493Z</date>
3431
+ <msg>Work in progress: Separate credentials from CServer into own structure.</msg>
3432
+ </logentry>
3433
+ <logentry
3434
+ revision="8397">
3435
+ <author>codesquid</author>
3436
+ <date>2017-05-18T17:35:03.788130Z</date>
3437
+ <msg>The two structures depend on each other, disallow invalid or bogus combinations.</msg>
3438
+ </logentry>
3439
+ <logentry
3440
+ revision="8398">
3441
+ <author>codesquid</author>
3442
+ <date>2017-05-21T16:58:46.141389Z</date>
3443
+ <msg>Fix include guard.</msg>
3444
+ </logentry>
3445
+ <logentry
3446
+ revision="8399">
3447
+ <author>codesquid</author>
3448
+ <date>2017-05-21T16:59:35.704052Z</date>
3449
+ <msg>Simple unauthenticated asymmetric data encryption and decryption.</msg>
3450
+ </logentry>
3451
+ <logentry
3452
+ revision="8401">
3453
+ <author>codesquid</author>
3454
+ <date>2017-05-22T08:57:49.602851Z</date>
3455
+ <msg>Move password crypto into own file, fix some include guards.</msg>
3456
+ </logentry>
3457
+ <logentry
3458
+ revision="8402">
3459
+ <author>codesquid</author>
3460
+ <date>2017-05-22T15:09:04.041341Z</date>
3461
+ <msg>If a master password encryptor is set, use it.</msg>
3462
+ </logentry>
3463
+ <logentry
3464
+ revision="8403">
3465
+ <author>codesquid</author>
3466
+ <date>2017-05-22T19:16:22.940912Z</date>
3467
+ <msg>Use saved decryptors if available.</msg>
3468
+ </logentry>
3469
+ <logentry
3470
+ revision="8404">
3471
+ <author>codesquid</author>
3472
+ <date>2017-05-23T13:16:03.152644Z</date>
3473
+ <msg>Ask for master password.</msg>
3474
+ </logentry>
3475
+ <logentry
3476
+ revision="8407">
3477
+ <author>codesquid</author>
3478
+ <date>2017-05-23T16:00:28.553101Z</date>
3479
+ <msg>Better texts</msg>
3480
+ </logentry>
3481
+ <logentry
3482
+ revision="8408">
3483
+ <author>codesquid</author>
3484
+ <date>2017-05-23T16:01:53.578308Z</date>
3485
+ <msg>Handle sites that already have encrypted passwords.</msg>
3486
+ </logentry>
3487
+ <logentry
3488
+ revision="8409">
3489
+ <author>codesquid</author>
3490
+ <date>2017-05-23T16:02:13.659842Z</date>
3491
+ <msg>Encrypt passwords in the queue.</msg>
3492
+ </logentry>
3493
+ <logentry
3494
+ revision="8412">
3495
+ <author>codesquid</author>
3496
+ <date>2017-05-23T17:04:02.462347Z</date>
3497
+ <msg>Settings prototype.</msg>
3498
+ </logentry>
3499
+ <logentry
3500
+ revision="8413">
3501
+ <author>codesquid</author>
3502
+ <date>2017-05-25T10:58:47.405707Z</date>
3503
+ <msg>It is now possible to configure master passwords.</msg>
3504
+ </logentry>
3505
+ <logentry
3506
+ revision="8414">
3507
+ <author>codesquid</author>
3508
+ <date>2017-05-25T15:17:55.402914Z</date>
3509
+ <msg>Set initial control state.</msg>
3510
+ </logentry>
3511
+ <logentry
3512
+ revision="8415">
3513
+ <author>codesquid</author>
3514
+ <date>2017-05-25T16:47:06.324596Z</date>
3515
+ <msg>Handle mismatch of keys.</msg>
3516
+ </logentry>
3517
+ <logentry
3518
+ revision="8416">
3519
+ <author>codesquid</author>
3520
+ <date>2017-05-25T18:20:56.161242Z</date>
3521
+ <msg>Change credentials in all states.</msg>
3522
+ </logentry>
3523
+ <logentry
3524
+ revision="8417">
3525
+ <author>codesquid</author>
3526
+ <date>2017-05-25T18:21:38.851441Z</date>
3527
+ <msg>Fix typo</msg>
3528
+ </logentry>
3529
+ <logentry
3530
+ revision="8418">
3531
+ <author>codesquid</author>
3532
+ <date>2017-05-25T18:22:13.503942Z</date>
3533
+ <msg>Add option to use a master password to the AskSavePassword dialog.</msg>
3534
+ </logentry>
3535
+ <logentry
3536
+ revision="8419">
3537
+ <author>codesquid</author>
3538
+ <date>2017-05-25T18:22:28.222204Z</date>
3539
+ <msg>Run the AskSavePassword dialog from the Site Manager.</msg>
3540
+ </logentry>
3541
+ <logentry
3542
+ revision="8423">
3543
+ <author>codesquid</author>
3544
+ <date>2017-05-25T18:34:22.829137Z</date>
3545
+ <msg>Updated translations</msg>
3546
+ </logentry>
3547
+ <logentry
3548
+ revision="8424">
3549
+ <author>codesquid</author>
3550
+ <date>2017-05-25T18:34:41.714411Z</date>
3551
+ <msg>Bump to 3.26.0-rc1</msg>
3552
+ </logentry>
3553
+ <logentry
3554
+ revision="8425">
3555
+ <author>codesquid</author>
3556
+ <date>2017-05-28T08:35:59.524882Z</date>
3557
+ <msg>Add missing backslash, without it half the icons for this theme were not installed. Strangely no error or warning was being generated by Automake.</msg>
3558
+ </logentry>
3559
+ <logentry
3560
+ revision="8426">
3561
+ <author>codesquid</author>
3562
+ <date>2017-05-28T08:39:29.624299Z</date>
3563
+ <msg>Install the bookmark.png files in the blukis theme.</msg>
3564
+ </logentry>
3565
+ <logentry
3566
+ revision="8427">
3567
+ <author>codesquid</author>
3568
+ <date>2017-05-28T09:12:48.924431Z</date>
3569
+ <msg>Fix the remember checkbox to appear when asking for a username in addition to a password.</msg>
3570
+ </logentry>
3571
+ <logentry
3572
+ revision="8428">
3573
+ <author>codesquid</author>
3574
+ <date>2017-06-01T18:05:47.518527Z</date>
3575
+ <msg>Reprotect passwords in active queue if user changes protection settings.</msg>
3576
+ </logentry>
3577
+ <logentry
3578
+ revision="8429">
3579
+ <author>codesquid</author>
3580
+ <date>2017-06-01T19:03:10.524619Z</date>
3581
+ <msg>Fix translator comments.</msg>
3582
+ </logentry>
3583
+ <logentry
3584
+ revision="8430">
3585
+ <author>codesquid</author>
3586
+ <date>2017-06-01T19:20:42.861847Z</date>
3587
+ <msg>Updated translations.</msg>
3588
+ </logentry>
3589
+ <logentry
3590
+ revision="8431">
3591
+ <author>codesquid</author>
3592
+ <date>2017-06-01T19:28:46.593605Z</date>
3593
+ <msg>Bump to 3.26.0</msg>
3594
+ </logentry>
3595
+ <logentry
3596
+ revision="8433">
3597
+ <author>codesquid</author>
3598
+ <date>2017-06-02T15:16:07.005172Z</date>
3599
+ <msg>Run through xmllint
3600
+ </msg>
3601
+ </logentry>
3602
+ <logentry
3603
+ revision="8434">
3604
+ <author>codesquid</author>
3605
+ <date>2017-06-02T15:16:48.389034Z</date>
3606
+ <msg>Explicitly link against hogweed.
3607
+ </msg>
3608
+ </logentry>
3609
+ <logentry
3610
+ revision="8435">
3611
+ <author>codesquid</author>
3612
+ <date>2017-06-02T16:36:13.779229Z</date>
3613
+ <msg>Fixed crash if rewriting credentials in site directories.</msg>
3614
+ </logentry>
3615
+ <logentry
3616
+ revision="8436">
3617
+ <author>codesquid</author>
3618
+ <date>2017-06-02T16:54:06.379843Z</date>
3619
+ <msg>Fix argument to wxTreeCtrl::GetNextChild, it expects the parent, not the current child.
3620
+ </msg>
3621
+ </logentry>
3622
+ <logentry
3623
+ revision="8437">
3624
+ <author>codesquid</author>
3625
+ <date>2017-06-02T17:01:00.944024Z</date>
3626
+ <msg>Bump to 3.26.1
3627
+ </msg>
3628
+ </logentry>
3629
+ <logentry
3630
+ revision="8440">
3631
+ <author>codesquid</author>
3632
+ <date>2017-06-07T18:52:56.024729Z</date>
3633
+ <msg>Update pkg.m4 to pkgconfig-0.29.2</msg>
3634
+ </logentry>
3635
+ <logentry
3636
+ revision="8443">
3637
+ <author>codesquid</author>
3638
+ <date>2017-06-07T19:33:25.741014Z</date>
3639
+ <msg>Use pkg-config to check for cppunit instead of cppunit-config, the latter has been removed in cppunit-1.14.0
3640
+ </msg>
3641
+ </logentry>
3642
+ <logentry
3643
+ revision="8445">
3644
+ <author>codesquid</author>
3645
+ <date>2017-06-10T12:29:33.333026Z</date>
3646
+ <msg>Fix for undoing the length hiding, it didn't work for long passwords.
3647
+ </msg>
3648
+ </logentry>
3649
+ <logentry
3650
+ revision="8448">
3651
+ <author>codesquid</author>
3652
+ <date>2017-06-12T17:39:24.720407Z</date>
3653
+ <msg>Updated translations.</msg>
3654
+ </logentry>
3655
+ <logentry
3656
+ revision="8449">
3657
+ <author>codesquid</author>
3658
+ <date>2017-06-12T17:40:46.514548Z</date>
3659
+ <msg>Bump to 3.26.2</msg>
3660
+ </logentry>
3661
+ <logentry
3662
+ revision="8452">
3663
+ <author>codesquid</author>
3664
+ <date>2017-06-14T15:21:37.930325Z</date>
3665
+ <msg>Remove unused variable.</msg>
3666
+ </logentry>
3667
+ <logentry
3668
+ revision="8453">
3669
+ <author>codesquid</author>
3670
+ <date>2017-06-20T06:01:00.336836Z</date>
3671
+ <msg>Minor formatting.</msg>
3672
+ </logentry>
3673
+ <logentry
3674
+ revision="8454">
3675
+ <author>codesquid</author>
3676
+ <date>2017-06-20T06:01:12.132016Z</date>
3677
+ <msg>Fix assertion.</msg>
3678
+ </logentry>
3679
+ <logentry
3680
+ revision="8455">
3681
+ <author>codesquid</author>
3682
+ <date>2017-06-22T12:21:23.994931Z</date>
3683
+ <msg>Allow (un)registering handlers during ongoing notifications
3684
+ </msg>
3685
+ </logentry>
3686
+ <logentry
3687
+ revision="8456">
3688
+ <author>codesquid</author>
3689
+ <date>2017-06-22T12:25:33.336418Z</date>
3690
+ <msg>Revert accidental commit
3691
+ </msg>
3692
+ </logentry>
3693
+ <logentry
3694
+ revision="8457">
3695
+ <author>codesquid</author>
3696
+ <date>2017-06-22T12:26:34.069052Z</date>
3697
+ <msg>Remove unused variable
3698
+ </msg>
3699
+ </logentry>
3700
+ <logentry
3701
+ revision="8458">
3702
+ <author>codesquid</author>
3703
+ <date>2017-06-22T12:29:58.897580Z</date>
3704
+ <msg>Fix assertion.
3705
+ </msg>
3706
+ </logentry>
3707
+ <logentry
3708
+ revision="8459">
3709
+ <author>codesquid</author>
3710
+ <date>2017-06-22T12:50:50.591260Z</date>
3711
+ <msg>Null the hnadler when unregistering.
3712
+ </msg>
3713
+ </logentry>
3714
+ <logentry
3715
+ revision="8460">
3716
+ <author>codesquid</author>
3717
+ <date>2017-06-29T13:17:46.128190Z</date>
3718
+ <msg>Fix filetype of directories on Windows if the filename contains a dot. Also avoid some needless conversion to/from wxString.</msg>
3719
+ </logentry>
3720
+ <logentry
3721
+ revision="8461">
3722
+ <author>codesquid</author>
3723
+ <date>2017-06-29T18:50:42.470078Z</date>
3724
+ <msg>Fix a compile error.</msg>
3725
+ </logentry>
3726
+ <logentry
3727
+ revision="8462">
3728
+ <author>codesquid</author>
3729
+ <date>2017-06-29T19:46:33.983921Z</date>
3730
+ <msg>Return value of correct type.</msg>
3731
+ </logentry>
3732
+ <logentry
3733
+ revision="8463">
3734
+ <author>codesquid</author>
3735
+ <date>2017-07-04T19:54:08.263344Z</date>
3736
+ <msg>Add COpData::Reset() to reduce the amount of operation-specific logic in RequestOperation.</msg>
3737
+ </logentry>
3738
+ <logentry
3739
+ revision="8464">
3740
+ <author>codesquid</author>
3741
+ <date>2017-07-04T20:08:16.962178Z</date>
3742
+ <msg>Implement HTTP keep-alive.</msg>
3743
+ </logentry>
3744
+ <logentry
3745
+ revision="8465">
3746
+ <author>codesquid</author>
3747
+ <date>2017-07-07T10:18:48.599594Z</date>
3748
+ <msg>Reset m_closed when connecting.
3749
+ </msg>
3750
+ </logentry>
3751
+ <logentry
3752
+ revision="8466">
3753
+ <author>codesquid</author>
3754
+ <date>2017-07-07T10:29:09.515666Z</date>
3755
+ <msg>Show additional information if certificate verification fails.
3756
+ </msg>
3757
+ </logentry>
3758
+ <logentry
3759
+ revision="8467">
3760
+ <author>codesquid</author>
3761
+ <date>2017-07-07T10:39:55.610900Z</date>
3762
+ <msg>Remove debug code.</msg>
3763
+ </logentry>
3764
+ <logentry
3765
+ revision="8468">
3766
+ <author>codesquid</author>
3767
+ <date>2017-07-07T10:40:20.763423Z</date>
3768
+ <msg>Minor cleanup.</msg>
3769
+ </logentry>
3770
+ <logentry
3771
+ revision="8469">
3772
+ <author>codesquid</author>
3773
+ <date>2017-07-07T10:40:51.792537Z</date>
3774
+ <msg>Further fixes to HTTP keep-alive.</msg>
3775
+ </logentry>
3776
+ <logentry
3777
+ revision="8472">
3778
+ <author>codesquid</author>
3779
+ <date>2017-07-09T16:09:13.747865Z</date>
3780
+ <msg>Use correct peer address in certificate notification.</msg>
3781
+ </logentry>
3782
+ <logentry
3783
+ revision="8473">
3784
+ <author>codesquid</author>
3785
+ <date>2017-07-09T16:10:24.093740Z</date>
3786
+ <msg>Get rid of CSftpControlSocket::ResetOperation</msg>
3787
+ </logentry>
3788
+ <logentry
3789
+ revision="8478">
3790
+ <author>codesquid</author>
3791
+ <date>2017-07-09T16:32:48.184316Z</date>
3792
+ <msg>Adapt to libfilezilla changes.
3793
+ </msg>
3794
+ </logentry>
3795
+ <logentry
3796
+ revision="8489">
3797
+ <author>codesquid</author>
3798
+ <date>2017-07-11T15:17:44.970851Z</date>
3799
+ <msg>Merge storj branch onto trunk.
3800
+ </msg>
3801
+ </logentry>
3802
+ <logentry
3803
+ revision="8490">
3804
+ <author>codesquid</author>
3805
+ <date>2017-07-11T15:45:51.657992Z</date>
3806
+ <msg>Updated translations</msg>
3807
+ </logentry>
3808
+ <logentry
3809
+ revision="8491">
3810
+ <author>codesquid</author>
3811
+ <date>2017-07-11T15:46:30.721573Z</date>
3812
+ <msg>Bump to 3.27.0-rc1</msg>
3813
+ </logentry>
3814
+ <logentry
3815
+ revision="8492">
3816
+ <author>codesquid</author>
3817
+ <date>2017-07-13T08:46:35.317182Z</date>
3818
+ <msg>Trivial code cleanup.</msg>
3819
+ </logentry>
3820
+ <logentry
3821
+ revision="8494">
3822
+ <author>codesquid</author>
3823
+ <date>2017-07-16T09:27:26.286370Z</date>
3824
+ <msg>Trivial code cleanup</msg>
3825
+ </logentry>
3826
+ <logentry
3827
+ revision="8495">
3828
+ <author>codesquid</author>
3829
+ <date>2017-07-16T09:49:31.268634Z</date>
3830
+ <msg>Address some harmless issues found by a static analyzer.</msg>
3831
+ </logentry>
3832
+ <logentry
3833
+ revision="8496">
3834
+ <author>codesquid</author>
3835
+ <date>2017-07-16T10:29:07.247625Z</date>
3836
+ <msg>Merge changes from upstream PuTTY.</msg>
3837
+ </logentry>
3838
+ <logentry
3839
+ revision="8497">
3840
+ <author>codesquid</author>
3841
+ <date>2017-07-16T10:56:09.193075Z</date>
3842
+ <msg>Fix compile error.</msg>
3843
+ </logentry>
3844
+ <logentry
3845
+ revision="8498">
3846
+ <author>codesquid</author>
3847
+ <date>2017-07-19T07:31:22.137542Z</date>
3848
+ <msg>Updated translations</msg>
3849
+ </logentry>
3850
+ <logentry
3851
+ revision="8499">
3852
+ <author>codesquid</author>
3853
+ <date>2017-07-19T07:35:21.185317Z</date>
3854
+ <msg>Merge upstream PuTTY changes.</msg>
3855
+ </logentry>
3856
+ <logentry
3857
+ revision="8500">
3858
+ <author>codesquid</author>
3859
+ <date>2017-07-19T07:43:42.368092Z</date>
3860
+ <msg>Trivial cleanup</msg>
3861
+ </logentry>
3862
+ <logentry
3863
+ revision="8501">
3864
+ <author>codesquid</author>
3865
+ <date>2017-07-19T07:51:06.939243Z</date>
3866
+ <msg>Bump to 3.27.0</msg>
3867
+ </logentry>
3868
+ <logentry
3869
+ revision="8502">
3870
+ <author>codesquid</author>
3871
+ <date>2017-07-19T08:00:56.485735Z</date>
3872
+ <msg>Add a comment aimed at package maintainers blindly changing dependencies at will, without regarding the consequences.</msg>
3873
+ </logentry>
3874
+ <logentry
3875
+ revision="8503">
3876
+ <author>codesquid</author>
3877
+ <date>2017-07-19T12:41:21.517983Z</date>
3878
+ <msg>Add missing file</msg>
3879
+ </logentry>
3880
+ <logentry
3881
+ revision="8504">
3882
+ <author>codesquid</author>
3883
+ <date>2017-07-19T15:30:40.888031Z</date>
3884
+ <msg>Provide a dummy __cxa_pure_virtual. My code is proper, it doesn't call pure virtuals.
3885
+ </msg>
3886
+ </logentry>
3887
+ <logentry
3888
+ revision="8505">
3889
+ <author>codesquid</author>
3890
+ <date>2017-07-19T15:31:51.886384Z</date>
3891
+ <msg>There's a problematic libtool bug, it strips the -static-libgcc and -static-libstdc++ options. Force libtool to use them.
3892
+ </msg>
3893
+ </logentry>
3894
+ <logentry
3895
+ revision="8506">
3896
+ <author>codesquid</author>
3897
+ <date>2017-07-19T16:40:46.250869Z</date>
3898
+ <msg>\b does not work with + or -
3899
+ </msg>
3900
+ </logentry>
3901
+ <logentry
3902
+ revision="8507">
3903
+ <author>codesquid</author>
3904
+ <date>2017-07-19T16:41:06.241341Z</date>
3905
+ <msg>Bump to 3.27.0.1
3906
+ </msg>
3907
+ </logentry>
3908
+ <logentry
3909
+ revision="8508">
3910
+ <author>codesquid</author>
3911
+ <date>2017-07-21T12:17:06.278389Z</date>
3912
+ <msg>Add events.hpp to distribution.</msg>
3913
+ </logentry>
3914
+ <logentry
3915
+ revision="8509">
3916
+ <author>codesquid</author>
3917
+ <date>2017-07-22T08:54:18.613807Z</date>
3918
+ <msg>Mark a string translatable that should be translated.</msg>
3919
+ </logentry>
3920
+ <logentry
3921
+ revision="8510">
3922
+ <author>codesquid</author>
3923
+ <date>2017-07-24T06:55:24.080984Z</date>
3924
+ <msg>Add /skipuac flag to bypass UAC prompt if started unevaluated.</msg>
3925
+ </logentry>
3926
+ <logentry
3927
+ revision="8511">
3928
+ <author>codesquid</author>
3929
+ <date>2017-07-24T07:09:53.184372Z</date>
3930
+ <msg>Add port to error message when creating the listen socket fails.</msg>
3931
+ </logentry>
3932
+ <logentry
3933
+ revision="8512">
3934
+ <author>codesquid</author>
3935
+ <date>2017-07-24T19:36:41.252245Z</date>
3936
+ <msg>Fix silent installation, the uninstaller was not being run. Also add the /quiet flag which acts like silent, except for showing error messages.
3937
+ </msg>
3938
+ </logentry>
3939
+ </log>