forked from ginhom/dnscrypt-proxy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
5942 lines (3174 loc) · 128 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
* Mon Jan 5 17:55:36 2015 +0100
+dnscrypt.org-fr
* Mon Jan 5 17:16:31 2015 +0100
NEWS update
* Mon Jan 5 17:10:50 2015 +0100
Get ready for a new release
* Mon Jan 5 17:07:25 2015 +0100
libevent 2.0.22
* Mon Jan 5 17:04:17 2015 +0100
libevent: fix CVE-2014-6272
* Mon Jan 5 17:03:44 2015 +0100
libevent: Fix evbuffer_peek() with len==-1 and start_at non-NULL.
* Wed Dec 31 19:09:00 2014 +0100
2015
* Mon Dec 29 18:29:18 2014 +0100
Check if -D_FORTIFY_SOURCE=2 works
* Mon Dec 29 18:22:22 2014 +0100
Add IPv6 IP for ns1-wa-us
Merge: 14d2932 783edbf
* Mon Dec 29 18:19:23 2014 +0100
Merge branch 'master' of https://github.com/jedisct1/dnscrypt-proxy
* 'master' of https://github.com/jedisct1/dnscrypt-proxy:
Check if -Wl,-pie should be used instead of -pie in LDFLAGS
Reflecting 'd0wn-fr-ns1' server IP address change.
* Mon Dec 29 18:19:05 2014 +0100
Add a new OpenNIC server in Washington
* Mon Dec 29 01:29:11 2014 +0100
Check if -Wl,-pie should be used instead of -pie in LDFLAGS
Merge: 8bb1599 579c596
* Fri Dec 26 14:10:13 2014 +0100
Merge pull request #171 from DistantThunder/master
Updating d0wn french servers.
* Fri Dec 26 02:32:29 2014 +0100
Reflecting 'd0wn-fr-ns1' server IP address change.
Changing 'd0wn-fr-ns2' listening port to a working one.
Merge: 3f7dbf5 32794a0
* Sun Dec 21 14:08:23 2014 +0100
Merge pull request #169 from pataquets/patch-1
Fix typos
* Sun Dec 21 12:05:07 2014 +0100
Fix typo
* Sun Dec 21 12:03:01 2014 +0100
Fix typo
Merge: 57d3072 562ddd4
* Thu Dec 4 17:40:14 2014 -0800
Merge pull request #166 from xuzhen/master
fixed issue #104
* Thu Dec 4 21:31:28 2014 +0800
fixed issue #104
* Wed Dec 3 15:02:27 2014 -0800
Update ChangeLog
* Wed Dec 3 15:01:09 2014 -0800
Remove OpenNIC UK resolvers
* Tue Dec 2 23:23:29 2014 -0800
Bump fpm package version up
* Tue Dec 2 23:22:49 2014 -0800
Use resolver-name
* Tue Dec 2 23:07:55 2014 -0800
dnscrypt-wrapper doesn't support socket activation (yet?)
* Tue Dec 2 23:07:03 2014 -0800
Document how to run dnscrypt-proxy with systemd
* Tue Dec 2 19:15:44 2014 -0800
Remove offline d0wn servers
* Tue Dec 2 19:00:11 2014 -0800
open dns supports https now
* Tue Dec 2 18:57:21 2014 -0800
Update d0wn IPs, add new d0wn servers, update open dns catchline
* Tue Dec 2 17:51:11 2014 -0800
Bump version number
* Tue Dec 2 17:27:05 2014 -0800
When using a systemd socket, retrieve its local address.
* Tue Dec 2 17:13:02 2014 -0800
The systemd service needs NonBlocking=true
* Tue Dec 2 17:08:58 2014 -0800
Socket inherited from systemd must be set to nonblocking.
* Tue Dec 2 16:46:27 2014 -0800
When using systemd, the local address may not reflect the reality.
* Tue Dec 2 16:39:50 2014 -0800
UDP sockets sent by systemd are not listening
* Tue Dec 2 15:52:58 2014 -0800
Fix error message
* Tue Dec 2 15:40:42 2014 -0800
Add a simple sample systemd service file.
* Tue Dec 2 15:15:06 2014 -0800
Add SYSTEMD_DAEMON_ flags
* Tue Dec 2 14:54:05 2014 -0800
The TCP socket is of type SOCK_STREAM.
* Tue Dec 2 14:53:47 2014 -0800
Outline systemd descriptors initialization
* Tue Dec 2 14:51:35 2014 -0800
Check for libsystemd-daemon in addition to libsystemd.
Do not pick systemd unless --with-systemd is explicitly used.
* Tue Dec 2 14:18:15 2014 -0800
A file descriptor doesn't have to be >= 0
* Tue Dec 2 14:16:52 2014 -0800
Indent
* Tue Dec 2 16:42:19 2014 -0800
logger() -> logger_noformat()
* Tue Dec 2 15:43:22 2014 -0800
Use sodium 1.0.1
* Tue Dec 2 14:56:50 2014 -0800
libevent2: Fix race caused by event_active
There is a race between manual event_active and natural event activation.
If both happen at the same time on the same FD, they would both be protected by the same event base lock except for 1 LoC where the fields of struct event are read without any kind of lock.
In 2.0-stable, none of this is inside the lock; in HEAD, only the callback is read inside the lock. This gets the callback and all 3 arguments inside the lock before calling it outside the lock.
* Tue Dec 2 14:55:57 2014 -0800
Sodium 0.5.0 is the bare minimum.
Merge: 6d3a902 7a8b8e8
* Tue Dec 2 14:12:37 2014 -0800
Merge pull request #165 from zedinosaur/systemd
Add socket activation to dnscrypt-proxy.
* Sat Nov 29 22:56:40 2014 -0500
Add documentation about systemd integration.
* Sat Nov 29 22:27:23 2014 -0500
Move READY notify to when listeners start.
* Sat Nov 29 14:47:26 2014 -0500
Add socket activation to dnscrypt-proxy.
Conditional systemd support for socket activation and startup and shutdown
notification.
Merge: 3c605e7 24efbde
* Tue Nov 25 16:41:48 2014 -0800
Merge branch 'master' of github.com:jedisct1/dnscrypt-proxy
* 'master' of github.com:jedisct1/dnscrypt-proxy:
iOS: add -miphoneos-version-min
Add the cypherpunk.lu server
Update dnscrypt-resolvers.csv.sig
Sort resolvers list
Added a DNSCrypt server in Luxembourg
Indent
High-level functions are enough
Not Poly1305-AES.
* Tue Nov 25 16:41:29 2014 -0800
Don't use -fwrapv if it's redundant.
* Thu Nov 20 14:01:46 2014 -0800
iOS: add -miphoneos-version-min
* Fri Oct 31 13:02:14 2014 -0700
Add the cypherpunk.lu server
* Fri Oct 31 09:01:55 2014 -0700
Update dnscrypt-resolvers.csv.sig
* Fri Oct 31 09:01:35 2014 -0700
Sort resolvers list
Merge: 4ab8308 1f3d58e
* Fri Oct 31 08:58:52 2014 -0700
Merge pull request #157 from virii/master
Added a DNSCrypt server in Luxembourg
* Fri Oct 31 16:51:27 2014 +0100
Added a DNSCrypt server in Luxembourg
* Wed Oct 29 02:13:20 2014 -0700
Indent
* Wed Oct 29 02:12:30 2014 -0700
High-level functions are enough
* Wed Oct 29 02:09:37 2014 -0700
Not Poly1305-AES.
Merge: 41c667e ca47395
* Mon Oct 13 10:17:52 2014 -0700
Merge pull request #150 from rob/patch-1
Update dnscrypt-resolvers.csv
* Mon Oct 13 09:33:50 2014 -0400
Update dnscrypt-resolvers.csv
According to the OpenNIC wiki [1], the correct IPv6 address for PhilipSoutham's server is ns18.ca.us, not ns17.ca.us. The provider key was also wrong.
[1] http://wiki.opennicproject.org/Tier2
* Fri Oct 10 19:17:23 2014 -0700
Libevent2 - Fix a typo in a doxygen comment. Reported by äå.
* Tue Sep 30 16:05:35 2014 -0700
d0wn servers support Namecoin - Prodded by @bugreport0
Merge: 9ec8509 5a9a96d
* Mon Sep 29 15:42:05 2014 -0700
Merge remote-tracking branch 'teknocrat/master'
* teknocrat/master:
* New ebuild for 1.4.0 * New ebuild for 1.4.1 * Configuration change to support providers * Drop libsodium from overlay (is not in portage tree) * Dnscrypt-Proxy 1.4.x requires libsodium 1.0.0 or newer
Conflicts:
packages/gentoo/net-dns/dnscrypt-proxy/Manifest
packages/gentoo/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.4.0.ebuild
packages/gentoo/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.4.1.ebuild
* Wed Sep 24 11:17:38 2014 -0400
* New ebuild for 1.4.0
* New ebuild for 1.4.1
* Configuration change to support providers
* Drop libsodium from overlay (is not in portage tree)
* Dnscrypt-Proxy 1.4.x requires libsodium 1.0.0 or newer
* Sun Sep 28 01:42:11 2014 -0700
and -> and/or
Merge: 1578efb 4cd37f7
* Sat Sep 27 12:13:32 2014 -0700
Merge branch 'master' of github.com:jedisct1/dnscrypt-proxy
* 'master' of github.com:jedisct1/dnscrypt-proxy:
* New ebuild for 1.4.0 * New ebuild for 1.4.1 * Configuration change to support providers
* Sat Sep 27 12:13:10 2014 -0700
Fix the tests, update Gemfile by the way
Merge: 4991aa3 c21c3c1
* Wed Sep 24 08:56:40 2014 -0700
Merge pull request #145 from Teknocrat/master
New Gentoo ebuilds for 1.4.0 and 1.4.1
* Wed Sep 24 11:17:38 2014 -0400
* New ebuild for 1.4.0
* New ebuild for 1.4.1
* Configuration change to support providers
* Sat Sep 20 23:05:44 2014 -0700
Mention that a minimal build of libsodium is fine.
* Fri Sep 19 00:02:26 2014 -0700
Update ChangeLog
Merge: 3c960ad 1e2eb46
* Thu Sep 18 23:23:45 2014 -0700
Merge branch 'master' of github.com:jedisct1/dnscrypt-proxy
* 'master' of github.com:jedisct1/dnscrypt-proxy:
Do not use the same description for 2 different configurations
Update ChangeLog
libevent - [Bugfix] fix bufferevent setwatermark suspend_read
libevent - regress_buffer: fix 'memcmp' compare size
* Thu Sep 18 23:18:23 2014 -0700
1.4.0 -> 1.4.1
* Thu Sep 18 22:55:23 2014 -0700
timing -> timing out
* Thu Sep 18 18:56:25 2014 -0700
Do not use the same description for 2 different configurations
* Thu Sep 18 17:25:37 2014 -0700
Update ChangeLog
* Thu Sep 18 17:24:03 2014 -0700
libevent - [Bugfix] fix bufferevent setwatermark suspend_read
* Thu Sep 18 17:23:22 2014 -0700
libevent - regress_buffer: fix 'memcmp' compare size
Merge: 5d55fee 4a3a23c
* Thu Sep 11 20:22:14 2014 -0700
Merge remote-tracking branch 'Shnatsel/master'
* Shnatsel/master:
Bump compat to 9, standards version to 3.9.5
Drop AppArmor installation from Debian/Ubuntu package
Since we could not resolve the AppArmor shutdown issue so far, at least add a warning about it
* Sun Sep 7 17:49:19 2014 -0700
Target iOS 7.1 since iOS 8 hasn't been jailbroken yet
* Sat Sep 6 13:58:09 2014 -0700
Use Sodium 0.7.0
* Thu Sep 4 15:05:58 2014 -0700
ChangeLog update
* Thu Sep 4 15:00:35 2014 -0700
Add a few comments to the .plist file
* Thu Sep 4 14:57:28 2014 -0700
Mention that the path to the CSV file is also required
* Tue Sep 2 20:09:22 2014 -0700
ChangeLog update
* Tue Sep 2 14:53:24 2014 -0700
libevent: Consistently check for failure from evbuffer_pullup()
* Wed Aug 27 22:50:37 2014 -0700
Ship libgcc_s_dw2-1.dll in the Windows package
* Tue Aug 26 19:14:37 2014 -0700
Bump libsodium DLL version
* Tue Aug 26 11:45:14 2014 -0700
Mention Docker images
* Sun Aug 24 19:03:35 2014 +0400
Bump compat to 9, standards version to 3.9.5
* Sun Aug 24 18:48:36 2014 +0400
Drop AppArmor installation from Debian/Ubuntu package
* Sun Aug 24 18:40:29 2014 +0400
Since we could not resolve the AppArmor shutdown issue so far, at least add a warning about it
* Fri Aug 22 11:48:53 2014 -0700
libevent2
* Fri Aug 22 11:48:19 2014 -0700
DTrace -> dtrace
* Fri Aug 22 11:47:32 2014 -0700
Update documentation
* Fri Aug 22 11:43:17 2014 -0700
I am not running Mountain Lion any more.
* Fri Aug 22 11:43:02 2014 -0700
Doc update
* Thu Aug 21 23:05:59 2014 -0700
More permanent issues URL
* Thu Aug 21 22:58:04 2014 -0700
-encrypted
* Thu Aug 21 22:55:33 2014 -0700
Clarify what the Resolver Name is
* Thu Aug 21 22:54:05 2014 -0700
Regen documentation
* Thu Aug 21 22:47:22 2014 -0700
Make it clear that most people just need to run dnscrypt-proxy -R <provider name>
* Tue Aug 19 10:18:04 2014 -0700
Add a few files created by "make verify" to .gitignore.
* Tue Aug 19 08:28:49 2014 -0700
Note about dnscrypt.org being blocked
* Sat Aug 16 22:31:53 2014 -0700
Revert "No more resolvers in Japan :("
* Thu Aug 14 12:13:23 2014 -0700
Remove unused function.
* Tue Aug 12 22:43:43 2014 -0700
Revert "Bring back clang on Travis"
Merge: ef06bdb 1eb7a00
* Tue Aug 12 22:43:32 2014 -0700
Merge branch 'master' of github.com:jedisct1/dnscrypt-proxy
* 'master' of github.com:jedisct1/dnscrypt-proxy:
Bring back clang on Travis
* Tue Aug 12 22:41:55 2014 -0700
No more resolvers in Japan :(
* Mon Aug 11 16:47:26 2014 -0700
Bring back clang on Travis
* Thu Aug 7 20:14:01 2014 -0700
clang seems to be broken on Travis
* Thu Aug 7 19:45:22 2014 -0700
Document that some plugins need additional DLLs on Windows
* Mon Jul 28 13:02:56 2014 -0700
Don't even try to parse an empty file.
* Sat Jul 26 12:12:17 2014 -0700
Bump version to 1.4.1
* Sat Jul 26 12:07:19 2014 -0700
mlock() the proxy context
* Sat Jul 26 11:59:43 2014 -0700
Replace the custom fingerprint parse with sodium_hextobin()
Merge: 5ddc648 3f85a31
* Sat Jul 26 11:21:41 2014 -0700
Merge branch 'master' of github.com:jedisct1/dnscrypt-proxy
* 'master' of github.com:jedisct1/dnscrypt-proxy:
Add alternative port to dnscrypt.eu servers
* Sat Jul 26 11:21:26 2014 -0700
"sodium.h" -> <sodium.h>
Merge: aab1871 025ac7f
* Fri Jul 18 13:15:52 2014 -0700
Merge pull request #125 from trrbl/master
Add alternative port to dnscrypt.eu servers
* Fri Jul 18 23:38:25 2014 +0400
Add alternative port to dnscrypt.eu servers
Some ISP are filtering outgoing port 443.
Merge: 3592248 ad407a0
* Sat Jul 5 10:23:26 2014 -0700
Merge branch 'master' of github.com:jedisct1/dnscrypt-proxy
* 'master' of github.com:jedisct1/dnscrypt-proxy:
Package new Android build scripts
* Sat Jul 5 10:22:42 2014 -0700
Do not retry to send UDP packets, let the stub resolver do it.
* Wed Jul 2 16:47:15 2014 -0700
Package new Android build scripts
Merge: b8e8055 8a5cd0f
* Mon Jun 30 10:40:06 2014 -0700
Merge pull request #122 from Teknocrat/patch-1
Update dnscrypt-proxy-1.3.3-r1.ebuild
* Mon Jun 30 10:33:08 2014 -0700
Update dnscrypt-proxy-1.3.3-r1.ebuild
You need this additional line or else Gentoo will not actually create the local user and group accounts..
* Sun Jun 29 10:54:52 2014 -0700
Target iOS 8.0
* Mon Jun 16 21:19:32 2014 -0700
Add OpenDNS on port 53 for some unusual setups
* Mon Jun 2 20:36:59 2014 -0700
Tweak OSX compile flags
* Sun Jun 1 22:49:41 2014 -0700
Travis: install libldns-dev
* Sun Jun 1 23:00:44 2014 -0700
Use libsodium 0.5.0
* Mon Jun 2 20:29:04 2014 -0700
On OSX, compile for Mountain Lion.
Merge: 5bd6577 1cbcb8f
* Fri May 23 09:09:36 2014 -0700
Merge branch 'master' of github.com:jedisct1/dnscrypt-proxy
* 'master' of github.com:jedisct1/dnscrypt-proxy:
Default to OpenDNS resolvers explicitly in the old-style config file because DNSCrypt no longer defaults to them internally
* Fri May 23 09:09:22 2014 -0700
Log the signal number in the signal handler
Merge: c4d8ffc 66a97df
* Fri May 16 09:03:58 2014 -0700
Merge pull request #107 from Shnatsel/fix-config
Default to OpenDNS resolvers explicitly in the old-style config file...
* Fri May 16 13:39:56 2014 +0400
Default to OpenDNS resolvers explicitly in the old-style config file because DNSCrypt no longer defaults to them internally
* Tue May 13 11:05:41 2014 -0700
Revert ""[debian revision] should be zero, because this package is not in Debian yet and thus has no Debian revisions""
* Tue May 13 06:28:28 2014 -0700
"[debian revision] should be zero, because this package is not in Debian yet and thus has no Debian revisions"
Merge: 786180e 8782c8e
* Mon May 12 07:20:21 2014 -0700
Merge branch 'master' of github.com:jedisct1/dnscrypt-proxy
* 'master' of github.com:jedisct1/dnscrypt-proxy:
Link http://dominustemporis.com/2014/05/dnscrypt-on-windows-update/
* Mon May 12 07:19:54 2014 -0700
OpenDNS FamilyShield IP address is 208.67.220.123
* Mon May 12 07:19:26 2014 -0700
<argument> is confusing to Windows users, so use quotes.
Merge: c0fb5fe 536abb6
* Sat May 10 22:33:53 2014 -0700
Merge branch 'master' of github.com:jedisct1/dnscrypt-proxy
* 'master' of github.com:jedisct1/dnscrypt-proxy:
Ship libwinpthread-1.dll on Windows
Tell Windows users to open the 'bin' directory.
Windows: copy the CSV file to $bindir
Update signature
Make sure that 'plugins' and 'bin' are directories.
Add CPPFLAGS/LDFLAGS for libsodium
Update Win32 build scripts
Add two new d0wn servers. Via Martin A.
Just discovered Windows + X ...
* Sat May 10 22:33:44 2014 -0700
Link http://dominustemporis.com/2014/05/dnscrypt-on-windows-update/
* Mon May 5 17:00:20 2014 -0700
Ship libwinpthread-1.dll on Windows
* Mon May 5 16:48:10 2014 -0700
Tell Windows users to open the 'bin' directory.
* Mon May 5 16:47:03 2014 -0700
Windows: copy the CSV file to $bindir
* Mon May 5 16:28:31 2014 -0700
Update signature
* Mon May 5 16:26:45 2014 -0700
Make sure that 'plugins' and 'bin' are directories.
* Mon May 5 16:13:11 2014 -0700
Add CPPFLAGS/LDFLAGS for libsodium
* Mon May 5 16:08:37 2014 -0700
Update Win32 build scripts
* Mon May 5 15:44:29 2014 -0700
Add two new d0wn servers. Via Martin A.
* Sun May 4 22:59:09 2014 -0700
Just discovered Windows + X ...
* Wed Apr 30 18:03:35 2014 -0700
Sync the Android build scripts with libsodium's
* Mon Apr 28 10:01:17 2014 -0700
Remove opennic-proxy.sh-dns2 until what is wrong with it gets sorted out
* Sat Apr 26 10:14:32 2014 -0700
Update .csv sig
* Sat Apr 26 10:14:10 2014 -0700
Nits
* Sat Apr 26 10:12:16 2014 -0700
proxy.sh: use names closer to the convention used by other entries
* Sat Apr 26 10:06:32 2014 -0700
Update .csv signature
Merge: 5bb89b5 6630fd1
* Sat Apr 26 10:05:22 2014 -0700
Merge pull request #94 from boianmihailov/patch-1
Add couple of servers to dnscrypt-resolvers.csv
* Sat Apr 26 16:39:40 2014 +0300
Add couple of servers to dnscrypt-resolvers.csv
Append two DNS server provided by proxy.sh
* Fri Apr 25 00:12:48 2014 -0700
--daemonize is not the only option one may want to use
* Thu Apr 24 23:31:23 2014 -0700
Regen dnscrypt-resolvers.csv.sig
* Thu Apr 24 23:20:35 2014 -0700
Add final stop
* Thu Apr 24 23:19:56 2014 -0700
Update documentation example
* Thu Apr 24 23:18:34 2014 -0700
Link README-WINDOWS.markdown instead of out-of-date instructions.
* Thu Apr 24 23:15:49 2014 -0700
Quote args, remove spaces
* Thu Apr 24 22:57:01 2014 -0700
Version 1.1.0 is dead old, no need to mention it.
* Thu Apr 24 22:56:17 2014 -0700
Update .plist
* Thu Apr 24 22:49:18 2014 -0700
Update NEWS
* Thu Apr 24 22:26:30 2014 -0700
Update ChangeLog
* Thu Apr 24 22:25:06 2014 -0700
Do not document --reinstall
* Thu Apr 24 22:24:41 2014 -0700
Document how to open an elevated command prompt
* Thu Apr 24 17:44:37 2014 -0700
Make dnscrypt-proxy half-decent on Windows
* Thu Apr 24 23:23:49 2014 +0000
Add windows_service_registry_write_string(()
* Wed Apr 23 23:10:14 2014 -0700
Quote dnscrypt-proxy
* Wed Apr 23 21:38:21 2014 -0700
No need to check for inet_pton after all
* Wed Apr 23 21:37:49 2014 -0700
Fu fu fu Windows, fu fu fuuuuu
* Wed Apr 23 21:24:49 2014 -0700
Define a replacement inet_pton() function for Windows
* Wed Apr 23 21:10:17 2014 -0700
Use inet_pton() instead of inet_aton()
* Wed Apr 23 12:56:00 2014 -0700
Revert cf5a85b255f86db8b2c5ec4fe45aa383903a69bb
* Wed Apr 23 08:20:26 2014 -0700
Update d0wn entries, requested by d0wn
* Tue Apr 22 22:17:05 2014 -0700
Update dnscrypt-resolvers.csv signature
* Tue Apr 22 22:12:54 2014 -0700
Update ns4.ca.dns.opennic.glue signature, via Nova King
* Tue Apr 22 20:08:48 2014 -0700
Sign .csv file
* Tue Apr 22 20:06:13 2014 -0700
Add CloudNS Tor addresses
* Tue Apr 22 08:12:15 2014 -0700
Mention DNSCrypt-OSXClient, a new universal client for OSX.
* Mon Apr 21 21:12:31 2014 -0700
Do not skip the last row of the CSV file.
* Mon Apr 21 14:04:08 2014 -0700
Mention extra plugins
* Mon Apr 21 14:00:26 2014 -0700
Markdown fixups
* Mon Apr 21 13:58:36 2014 -0700
Update documentation
* Mon Apr 21 13:58:17 2014 -0700
Do not recommend logging to /tmp
* Mon Apr 21 13:01:01 2014 -0700
opennic-ca-ns17 is actually in Fremont, CA, US.
* Mon Apr 21 12:53:23 2014 -0700
Full country names
* Mon Apr 21 12:50:16 2014 -0700
for d0wn and OpenNIC servers, place the country code first to improve sorting
* Mon Apr 21 12:46:06 2014 -0700
OK Turtles is okTurtles
* Mon Apr 21 12:44:53 2014 -0700
opendns-ipv6 description should be unique
* Mon Apr 21 12:44:03 2014 -0700
Sort, and add OpenDNS IPv6 and OpenDNS Familyshield
* Mon Apr 21 12:35:00 2014 -0700
Complete d0wn servers
* Mon Apr 21 12:33:18 2014 -0700
CSV is hard
* Mon Apr 21 12:32:21 2014 -0700
Add missing version #
* Mon Apr 21 12:31:13 2014 -0700
Missing ,
* Mon Apr 21 12:30:18 2014 -0700
Fix CSV
* Mon Apr 21 12:28:38 2014 -0700
More d0wn servers
* Mon Apr 21 12:17:31 2014 -0700
Phew, NovaKing has so many resolvers...
* Mon Apr 21 12:10:01 2014 -0700
Slowly complete the list of resolvers...
* Mon Apr 21 11:48:13 2014 -0700
Add dnscrypt.eu IPv6 addresses
* Mon Apr 21 11:24:47 2014 -0700
Remove unneeded quotes from CSV file
* Mon Apr 21 11:23:24 2014 -0700
Remove empty records from CSV file
* Mon Apr 21 11:23:01 2014 -0700
Cleanup CSV file
* Fri Apr 18 04:56:18 2014 -0700
Plugins shouldn't be considered experimental any more
Merge: cadf94b d005fa4
* Thu Apr 17 08:18:14 2014 -0700
Merge pull request #91 from pysiak/master
Update GEO coordinates and pubkey for Soltysiak
* Thu Apr 17 13:31:21 2014 +0200
Update GEO coordinates and pubkey for Soltysiak
* Thu Apr 17 00:21:22 2014 -0700
Better usage()