forked from ginhom/dnscrypt-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
10696 lines (5673 loc) · 226 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
* Sat Jan 21 11:10:33 2017 +0100
Ignore *.exe
* Sat Jan 21 11:08:14 2017 +0100
Update permissions on dnscrypt-update-resolvers.sh
* Sat Jan 21 10:15:48 2017 +0100
Remove cd.. leftover
* Sat Jan 21 10:10:37 2017 +0100
Reduce the number of CI builds
* Sat Jan 21 09:18:11 2017 +0100
Check that everything builds with minimal libsodium builds
* Sat Jan 21 09:13:09 2017 +0100
Update NEWS/ChangeLog
* Sat Jan 21 09:09:07 2017 +0100
"make clean" is not super interesting to log
* Sat Jan 21 08:55:34 2017 +0100
Revert "New resolver in Tokyo, Japan: LifeTyper"
* Sat Jan 21 08:55:16 2017 +0100
Trusty is old
* Sat Jan 21 08:49:23 2017 +0100
Travis doesn't support IPv6 yet
* Sat Jan 21 08:48:56 2017 +0100
Travis: attempt install/uninstall + ./contrib/resolvers-check.sh
* Sat Jan 21 08:45:58 2017 +0100
resolvers-check.sh: IPV4_ONLY can be set to probe only IPv4 resolvers
* Sat Jan 21 08:12:53 2017 +0100
Move dnscrypt-update-resolvers.sh.in and resolvers-check.sh to contrib/
* Sat Jan 21 08:11:41 2017 +0100
Update .gitignore
* Sat Jan 21 08:05:08 2017 +0100
Use printunl/archlinux for the Windows builds
* Sat Jan 21 02:59:46 2017 +0100
New resolver in Tokyo, Japan: LifeTyper
* Sat Jan 21 02:54:08 2017 +0100
Use a random resolver in the tests
* Sat Jan 21 02:48:59 2017 +0100
Indent
* Sat Jan 21 02:45:03 2017 +0100
win32-win64-xcompile.sh: always compile from the script's directory
* Sat Jan 21 01:52:27 2017 +0100
In the Windows dist, remove the sample conf, add WINDOWS doc
* Sat Jan 21 00:00:55 2017 +0100
Update NEWS
* Sat Jan 21 00:00:10 2017 +0100
Update ChangeLog
* Fri Jan 20 23:58:24 2017 +0100
Fix libsodium warning
* Fri Jan 20 23:45:33 2017 +0100
CLEANFILES += dnscrypt-update-resolvers.sh
* Fri Jan 20 23:43:58 2017 +0100
Do not install the systemd files
Package maintainers will do a way better job with these
* Fri Jan 20 23:40:21 2017 +0100
Generate org.dnscrypt.osx.DNSCryptProxy.plist from a template
* Fri Jan 20 23:29:26 2017 +0100
Reduce the difference between Android and iOS builds
* Fri Jan 20 23:13:18 2017 +0100
Always include stdlib.h in evutil_rand.c
* Fri Jan 20 23:09:26 2017 +0100
Make the builds a little bit more silent
* Fri Jan 20 22:57:16 2017 +0100
Split
* Fri Jan 20 22:40:54 2017 +0100
Regen the man page
* Fri Jan 20 22:39:50 2017 +0100
Update ChangeLog
* Fri Jan 20 22:37:01 2017 +0100
Support "random" as a resolver name to pick a random resolver
* Fri Jan 20 21:32:03 2017 +0100
Install examples in @docdir@, create systemd files from templates
* Fri Jan 20 21:31:42 2017 +0100
Pay attention to @datarootdir@ in dnscrypt-update-resolvers.sh.in
* Fri Jan 20 13:58:37 2017 +0100
Print when the configuration file did not change
* Fri Jan 20 13:30:42 2017 +0100
1.9.4
* Fri Jan 20 13:30:57 2017 +0100
soltysiak down :( cs-lt up, cs-ua down.
* Fri Jan 20 13:08:02 2017 +0100
Overwrite conf if the installed one is the vanilla example
* Fri Jan 20 12:52:21 2017 +0100
Fix inverted logic in the installation of the example config file
* Wed Jan 18 10:52:53 2017 +0100
cs-lt and d0wn-us-ns3 are temporarily unresponsive
* Wed Jan 18 08:59:36 2017 +0100
Update ChangeLog
* Wed Jan 18 08:46:40 2017 +0100
On Linux, warn when we are running low on entropy
* Wed Jan 18 08:18:57 2017 +0100
Print even more details in test mode
* Wed Jan 18 08:15:48 2017 +0100
Improve the test mode output and print the validity period
* Wed Jan 18 03:15:58 2017 +0100
Travis: increase the margin for the certificate check
* Wed Jan 18 03:15:46 2017 +0100
Recommend installing pkg-config and libsystemd-dev for systemd
* Wed Jan 18 01:59:11 2017 +0100
Mention that NO_REUSEPORT is not required any more
* Tue Jan 17 22:48:18 2017 +0100
build-base should be enough to build the package
* Tue Jan 17 22:40:38 2017 +0100
d0wn-us-ns3 and soltysiak-ipv6 are temporarily down
* Tue Jan 17 22:37:45 2017 +0100
1.9.3
* Tue Jan 17 22:34:53 2017 +0100
Update ChangeLog
* Tue Jan 17 21:50:02 2017 +0100
Travis: actually try to install the proxy
* Tue Jan 17 21:41:29 2017 +0100
Fix the Plugin directive in config files; add a CI test for it as well
* Tue Jan 17 20:00:22 2017 +0100
Ignore ldconfig errors
* Tue Jan 17 19:52:50 2017 +0100
Restore -e, ignore make install errors
* Tue Jan 17 15:33:24 2017 +0100
Switch Travis builds to multiarch/alpine
* Tue Jan 17 15:30:38 2017 +0100
Update NEWS
* Tue Jan 17 15:27:01 2017 +0100
apt is not present on Travis
* Tue Jan 17 15:22:04 2017 +0100
Travis: try to compile for multiple Linux architectures
* Tue Jan 17 12:34:37 2017 +0100
If binding a TCP socket with SO_REUSEPORT fails, retry without it
This is required at least on alpine/armhf
* Tue Jan 17 12:09:45 2017 +0100
Check for linux/filter.h presence -- Allows compilation on musl libc
* Tue Jan 17 01:37:11 2017 +0100
Mention that the Include path does not require quotes
* Tue Jan 17 01:18:10 2017 +0100
--with-ttl was renamed --min-ttl
* Tue Jan 17 00:38:42 2017 +0100
Fix casing
* Mon Jan 16 23:52:20 2017 +0100
Do not print the plugins root directory on Windows
* Mon Jan 16 20:01:34 2017 +0100
It's called "tracker.debian.org", but it's not a tracker
* Mon Jan 16 14:10:30 2017 +0100
Do not install dnscrypt-proxy.conf.example if no dnscrypt-proxy.conf file exists
* Sun Jan 15 18:56:07 2017 +0100
Update ChangeLog
* Sun Jan 15 18:55:28 2017 +0100
Do not include <sys/socket.h> on WIN32
* Sun Jan 15 18:23:42 2017 +0100
--version now reports useful information about how the server was compiled
* Sun Jan 15 18:11:08 2017 +0100
Update ChangeLog
* Sun Jan 15 17:51:10 2017 +0100
Remove the fpm package
fpm is awesome, but apparently, nobody's using this script.
* Sun Jan 15 17:42:07 2017 +0100
Prepare for version 1.9.2
* Sun Jan 15 17:19:09 2017 +0100
Fix KX when using xchacha20poly1305 and non-ephemeral keys
* Sun Jan 15 16:27:38 2017 +0100
Warn when an obsolete libsodium version is found
* Sun Jan 15 15:45:02 2017 +0100
Log the system error message when the TCP listener cannot be created
* Sun Jan 15 15:12:19 2017 +0100
Update simpleconf
* Sun Jan 15 10:03:17 2017 +0100
Indent
* Sun Jan 15 09:58:32 2017 +0100
Move the !Include definition down
* Sun Jan 15 01:56:38 2017 +0100
Document that recursive configuration files are now supported
* Sun Jan 15 01:48:58 2017 +0100
Comment marktron's list in the sample domains-blacklist configuration
* Sun Jan 15 01:40:56 2017 +0100
Shorten
* Sun Jan 15 01:37:13 2017 +0100
simpleconf: support a handler for "special" keywords
* Sun Jan 15 00:11:39 2017 +0100
Preliminary support for recursive configuration files
* Sat Jan 14 23:59:25 2017 +0100
Improve the domains-blacklist.conf header
* Sat Jan 14 23:55:22 2017 +0100
simpleconf: detach the code responsible for loading a config file
* Fri Jan 13 22:13:54 2017 +0100
Improve the ProviderName example
* Fri Jan 13 02:54:07 2017 +0100
Nits
* Thu Jan 12 20:38:35 2017 +0100
Remove Quidsup Notrack by default -- too many FPs such as pusher
* Thu Jan 12 20:31:15 2017 +0100
Do not block elasticbeanstalk.com
* Wed Jan 11 10:04:25 2017 -0800
Add Dan Pollock's list
* Wed Jan 11 00:48:36 2017 -0800
Use bounce buffers for crypto_box_detached_afternm emulation
Required for ancient libsodium versions (stock Debian Jessie, Raspbian)
* Tue Jan 10 13:26:52 2017 -0800
Include \0 in the key equality test
* Tue Jan 10 10:48:50 2017 -0800
Iterate over the \0 terminator when inserting a new key
* Tue Jan 10 00:28:34 2017 -0800
Mention how to run the python script
* Sat Jan 7 15:24:35 2017 +0100
Unfortunately, blocking *.spotify.com breaks the app :/
* Sat Jan 7 10:53:44 2017 +0100
Nits
* Sat Jan 7 10:37:56 2017 +0100
IgnoreTimeStamps weakens security -- do not enable blindly
* Sat Jan 7 16:33:28 2017 +0700
Add Windows service properties IgnoreTimestamps and LogLevel
Add "IgnoreTimestamps (--ignore-timestamps)" and "LogLevel (--loglevel)" for windows service parameter registry.
So windows service parameter registry had the same option with the main program option.
* Sat Jan 7 16:32:45 2017 +0700
Update README-WINDOWS.markdown (#548)
* Update README-WINDOWS.markdown
Fixed.
Documentation for `windows_service.c` change.
* Update README-WINDOWS.markdown
* Sat Jan 7 10:30:14 2017 +0100
Redirect log messages whose level is < LOG_NOTICE to stderr
* Fri Jan 6 18:14:18 2017 +0100
Attach a BPF filter to the client-side UDP socket
* Fri Jan 6 16:02:10 2017 +0100
Typo
* Fri Jan 6 15:18:09 2017 +0100
Do not enable SO_REUSEPORT is NO_REUSEPORT is defined
`SO_REUSEPORT` is apparently buggy on older linux-sunxi kernels
* Thu Jan 5 23:46:37 2017 +0100
Avoid the redefinition of the FPST type
This fixes compilation on Debian 6
* Tue Jan 3 15:29:04 2017 +0100
Blocking tagcommander.com causes popular mobile apps to freeze :(
* Tue Jan 3 15:17:40 2017 +0100
Whitelist some entries
* Tue Jan 3 15:11:17 2017 +0100
Print the number of entries ignored because of the whitelist
* Tue Jan 3 15:08:13 2017 +0100
Support a whitelist
* Tue Jan 3 14:09:23 2017 +0100
Add TXT records
* Tue Jan 3 07:21:08 2017 +0100
Don't assume that ## or #@ is an inline comment
* Mon Jan 2 22:39:03 2017 +0100
Read the domains-blacklist.conf file from the command line if supplied
* Mon Jan 2 22:10:10 2017 +0100
Refine the inline-comments macro
* Mon Jan 2 21:56:17 2017 +0100
Add a few optional categories to domains-blacklist.conf
* Mon Jan 2 21:35:02 2017 +0100
Add more spam/fraud/ads sources
* Mon Jan 2 21:23:27 2017 +0100
Remove inline comments from blacklist entries
* Mon Jan 2 13:41:00 2017 +0100
Keep daemonize uncommented
* Mon Jan 2 13:40:17 2017 +0100
Mention that Daemonize is not for Windows
* Mon Jan 2 12:35:30 2017 +0100
Re-remove resolvers that are still down:
- cs-uswest - Failed
- d0wn-dk-ns1 - Failed
- d0wn-dk-ns1 - Failed
- d0wn-fr-ns1 - Failed
- d0wn-fr-ns1-ipv6 - Failed
- d0wn-nl-ns2 - Failed
* Mon Jan 2 06:29:50 2017 -0500
Update dnscrypt-resolvers.csv (#540)
Removed original listing of Cryptostorm's DNS resolvers and added Cryptostorm's updated DNS resolvers from their github
https://github.com/cryptostorm/cstorm_deepDNS/blob/master/dnscrypt-resolvers.csv
Updated D0wn's list of DNS resolvers
- According to https://dns.d0wn.biz/ "All servers are supporting DNSSEC." Updated d0wn's DNS resolvers to yes under DNSSEC column.
- Added Austria, Bulgaria, Canada, Czech Republic, Denmark, France, Germany, Greece, Hong Kong, Lithuania, Moldova, Netherlands, Romania, Singapore, South Korea, Switzerland, Tanzania, United States of America
- Rearranged Germany, Moldova, Spain, Sweden to coincide better Alphabetically
Added Tumabox IPv6 DNS Resolver
* Sun Jan 1 17:49:10 2017 +0100
Remove some d0wn resolver that are temporarily down
* Sun Jan 1 17:31:55 2017 +0100
Update ChangeLog
* Sun Jan 1 17:30:16 2017 +0100
generate-domains-blacklist.py: remove overlapping names
* Sun Jan 1 15:23:42 2017 +0100
Include netinet/ip.h
* Sun Jan 1 15:17:53 2017 +0100
Set the DSCP to AF32
* Sun Jan 1 08:00:55 2017 +0100
Fix stupid pasto in util_ntohl()
* Sun Jan 1 07:26:53 2017 +0100
Block eth0.me
* Sun Jan 1 00:22:01 2017 +0100
Regen man pages
* Sat Dec 31 23:35:10 2016 +0100
Fix string comparison after a previous iteration
* Sat Dec 31 23:08:35 2016 +0100
Keep the frame pointers to get nicer backtraces on Windows
* Sat Dec 31 23:07:04 2016 +0100
Actually run pkg-config and autoreconf
* Sat Dec 31 22:27:05 2016 +0100
A short update to the NEWS file
* Sat Dec 31 22:24:02 2016 +0100
Update ChangeLog
* Sat Dec 31 22:23:42 2016 +0100
Add the ability to specify the minimum TTL a record has to be cached
* Sat Dec 31 21:58:44 2016 +0100
Remove an useless assertion
* Sat Dec 31 20:48:11 2016 +0100
inline
* Sat Dec 31 20:45:18 2016 +0100
Reduce the value to 32 bits
* Sat Dec 31 20:37:28 2016 +0100
The max length of a key is 32767 bytes
* Sat Dec 31 20:29:33 2016 +0100
2017
* Sat Dec 31 20:29:29 2016 +0100
C++ compat
* Sat Dec 31 20:20:35 2016 +0100
Resume string comparison where we left after the previous iteration
* Sat Dec 31 18:34:52 2016 +0100
Version bump
* Sat Dec 31 18:32:40 2016 +0100
Rewrite the prefix matching algorithm for the blocking plugin
* Thu Dec 29 21:06:38 2016 +0100
Add quotes around paths to blacklists in the example file
Unnecessary for paths that don't include spaces, but paths with
spaces are common on Windows, so make the example more universal.
* Thu Dec 29 16:12:28 2016 +0100
Dragonfly BSD doesn't have any problems with -fstack-protector-strong
* Thu Dec 29 13:55:32 2016 +0100
`--install-service-with-config-file` -> `--install-with-config-file`
* Thu Dec 29 13:52:43 2016 +0100
Do not print references to man pages on Windows
* Thu Dec 29 11:21:29 2016 +0100
Properly include the contrib dir in the dist tarball
* Thu Dec 29 10:28:52 2016 +0100
Document what plugins can do
* Thu Dec 29 09:15:19 2016 +0100
Update ChangeLog
* Thu Dec 29 09:14:49 2016 +0100
Do not use --high-entropy-va on i686
* Thu Dec 29 09:03:22 2016 +0100
Typo
* Thu Dec 29 08:42:29 2016 +0100
Update ChangeLog
* Thu Dec 29 08:41:30 2016 +0100
Temporarily remove cs-uswest
Since a new release is being tagged, this resolver cannot be included
in the default list.
* Thu Dec 29 08:32:43 2016 +0100
Update ChangeLog
* Thu Dec 29 08:32:35 2016 +0100
+ TCP for hostip
* Thu Dec 29 08:31:04 2016 +0100
hostip: retry using TCP on truncated responses, dont change qname case
* Thu Dec 29 08:16:32 2016 +0100
Update some m4 scripts
* Thu Dec 29 07:48:18 2016 +0100
win[32|64]-xcompile: Force some link options even for dependencies
* Thu Dec 29 07:38:55 2016 +0100
Tweak AX_CHECK_COMPILE_FLAG to also try to link the test program
This simplifies the main configure script.
Also try to use -fstack-protector-strong if available instead of
-fstack-protector-all
* Thu Dec 29 07:13:36 2016 +0100
The libsodium copy doesn't require POSIX threads on Windows
* Thu Dec 29 00:33:08 2016 +0100
Add oas.* and oascentral.* (ads)
* Thu Dec 29 00:12:29 2016 +0100
Don't assume that the proxy is in /usr/local for the systemd service
People compiling the proxy themselves won't use systemd right away,
and people using dnscrypt-proxy via systemd are likely to use system
packages.
* Thu Dec 29 00:07:51 2016 +0100
Update ChangeLog
* Thu Dec 29 00:07:09 2016 +0100
Remove man pages, and .la files from the Windows distribution files
* Wed Dec 28 23:56:51 2016 +0100
msys*: add the CSV + pub file to the root directory
* Wed Dec 28 23:44:31 2016 +0100
Avoid ntohl() in example-ldns-blocking
* Wed Dec 28 23:26:23 2016 +0100
Add *.workgroup
* Wed Dec 28 23:25:12 2016 +0100
Block *.localdomain in the local-additions.txt example
* Wed Dec 28 23:24:28 2016 +0100
Add SRV records
* Wed Dec 28 23:11:13 2016 +0100
Try to enable TFO even after the listen() call
* Wed Dec 28 22:32:37 2016 +0100
Update the ChangeLog
* Wed Dec 28 22:28:58 2016 +0100
Use 1 fastopen queue on MacOS, 5 on Linux
* Wed Dec 28 22:18:41 2016 +0100
Cache entries according to the minimum TTL, not the first one observed
* Wed Dec 28 22:09:47 2016 +0100
Sync msys-* build scripts with the xcompile build script
* Wed Dec 28 21:49:54 2016 +0100
Use sodium_memzero() to zero structures before a call to free()
* Wed Dec 28 21:44:11 2016 +0100
Why I love Rust
* Wed Dec 28 21:09:07 2016 +0100
Udpate ChangeLog
* Wed Dec 28 21:08:51 2016 +0100
Mention plugins that require the ldns library
* Wed Dec 28 17:32:11 2016 +0100
Improve plugin documentation
* Wed Dec 28 17:09:56 2016 +0100
4 extra bytes after the qname are fine in a question RR
* Wed Dec 28 16:55:01 2016 +0100
free() allocated command-line arguments when using the config parser
* Wed Dec 28 16:51:01 2016 +0100
Allow options_parse() to alter argc/argv
* Wed Dec 28 16:27:12 2016 +0100
Plug a memory leak when deleting the cache
* Wed Dec 28 15:48:34 2016 +0100
options_read_file(): ensure that the output buffer is zero-terminated
* Wed Dec 28 14:14:42 2016 +0100
Update ChangeLog
* Wed Dec 28 14:14:29 2016 +0100
/etc/dnscrypt-proxy.conf is probably required in the apparmor profile
* Wed Dec 28 13:48:10 2016 +0100
crypto_box_*_afternm() computes the hash, so it can't be shared
* Wed Dec 28 13:21:22 2016 +0100
Print favored versions, not serials
* Wed Dec 28 11:59:27 2016 +0100
Downgrade "Unsupported certificate version" to LOG_INFO
* Wed Dec 28 11:45:00 2016 +0100
Do not assume that ntohl() is available without extra libraries
* Wed Dec 28 11:13:54 2016 +0100
libgcc_s* is required after all :/
* Wed Dec 28 10:44:19 2016 +0100
Revert "Add -static-libgcc to mingw builds"
* Wed Dec 28 10:43:55 2016 +0100
Revert "libgcc_s_*.dll should not be required any more"
* Wed Dec 28 09:05:06 2016 +0100
Doc update
* Wed Dec 28 08:45:24 2016 +0100
Block *.local and *.lan in domains-blacklist-local-additions.txt
* Wed Dec 28 08:26:03 2016 +0100
Mention that LocalAddress doesn't work if systemd interferes
* Wed Dec 28 00:48:48 2016 +0100
When using systemd, daemonization should apparently be disabled
* Tue Dec 27 23:35:21 2016 +0100
Add domains-blacklist-local-additions.txt for... local additions
* Tue Dec 27 22:22:12 2016 +0100
Fix more memory leaks on error path
* Tue Dec 27 21:45:34 2016 +0100
Update the NEWS file for version 1.9.0
* Tue Dec 27 21:21:25 2016 +0100
Update ChangeLog
* Tue Dec 27 21:10:29 2016 +0100
Sign
* Tue Dec 27 21:10:14 2016 +0100
d0wn-ua-ns1 is down
* Tue Dec 27 21:07:39 2016 +0100
Change ifreenet location to unicast
* Wed Dec 28 03:04:32 2016 +0700
Added d0wn Indonesia resolver (#522)
Added d0wn Indonesia resolver from https://dns.d0wn.biz
* Tue Dec 27 20:54:04 2016 +0100
Plug leak on error path
* Tue Dec 27 20:33:20 2016 +0100
Add Forward domains:(<any>) to:(<any>)
* Tue Dec 27 20:08:11 2016 +0100
Mention that `--service-name` only makes sense with `--[un]install`
* Tue Dec 27 20:05:21 2016 +0100
Typo
* Tue Dec 27 20:02:15 2016 +0100
Remove `ServiceName` from the config file
* Tue Dec 27 19:38:03 2016 +0100
Add a plugin to forward queries to specific resolvers
* Tue Dec 27 12:26:04 2016 +0100
Plug some memory leaks on error path
* Tue Dec 27 10:20:19 2016 +0100
line->str for consistency
* Tue Dec 27 09:31:38 2016 +0100
Mention that ServiceName is only used when installing the service.
* Tue Dec 27 09:25:43 2016 +0100
Also leverage `LT_LIBPREFIX`
* Tue Dec 27 09:16:36 2016 +0100
Use `LT_MODULE_EXT` to retrieve the module extension
This renders the presence of .la files optional.
* Mon Dec 26 22:05:58 2016 +0100
Correct the synopsis
* Mon Dec 26 22:04:15 2016 +0100
Update the man page
* Mon Dec 26 18:56:00 2016 +0100
Clarify
* Mon Dec 26 18:52:20 2016 +0100
Add a port number in the ResolverAddress example
* Mon Dec 26 18:47:37 2016 +0100
-Z should not imply -S
* Mon Dec 26 18:45:40 2016 +0100
Allow ResolverAddress to override the CSV-provided address
* Mon Dec 26 18:34:49 2016 +0100
Update the help message when no command-line options have been given
* Mon Dec 26 10:40:16 2016 +0100
Move the blacklist generation script to a contrib folder
* Mon Dec 26 10:38:52 2016 +0100
Toy might be misinterpreted
* Sun Dec 25 23:22:34 2016 +0100
Add a sample script to generate lists of blacklisted domains
* Sun Dec 25 11:42:51 2016 +0100
Shorten
* Sun Dec 25 11:41:22 2016 +0100
Rephrase, remove double space
* Sat Dec 24 19:11:30 2016 +0100
Final stop
* Sat Dec 24 01:38:33 2016 +0100
Use the config file in the systemd service
* Sat Dec 24 01:33:55 2016 +0100
Shorten even more
* Sat Dec 24 01:32:05 2016 +0100
The disclaimer can be moved to the wiki, too
* Sat Dec 24 01:30:44 2016 +0100
Remove a lot of the documentation. The Wiki is a better tool.