-
Notifications
You must be signed in to change notification settings - Fork 2
/
changelog.upstream
2178 lines (1446 loc) · 64.9 KB
/
changelog.upstream
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
commit ed9cfed02e233f9a35ef665a5cad8fbbba61bb70
Author: Patrick Schleizer <[email protected]>
Date: Mon Aug 19 02:11:34 2024 -0400
/usr/sbin/tor simply executes /usr/bin/tor.
commit 2af65ddb0937badc81e415065f58a1bef57b222b
Author: Patrick Schleizer <[email protected]>
Date: Sat Jun 1 17:51:45 2024 +0000
bumped changelog version
commit 9350bb37d9190e8e8fd87392d9afa6606b1fc44d
Author: Patrick Schleizer <[email protected]>
Date: Sat Jun 1 13:51:24 2024 -0400
fix: disable debugging
commit e3acc74e6e619da33d6fd40229bacf72b4c04a76
Author: Patrick Schleizer <[email protected]>
Date: Sun Mar 24 22:54:28 2024 +0000
bumped changelog version
commit f92e85cc5534c4dbfffef854aad33b759efa2d85
Author: Patrick Schleizer <[email protected]>
Date: Sun Mar 24 16:21:21 2024 -0400
Bisq support
commit d7563ecf7b4ab87132052bdb7365599cd155e7b2
Author: Patrick Schleizer <[email protected]>
Date: Sun Mar 24 16:06:29 2024 -0400
stop hardcoding paths
commit 5a0fff8130db88593a4465e63add1d46b2f08239
Author: Patrick Schleizer <[email protected]>
Date: Sun Mar 24 16:05:53 2024 -0400
Bisq support
commit 039d006fd9613944e075d94448c3cf5e8a49aafc
Author: Patrick Schleizer <[email protected]>
Date: Sun Mar 24 12:37:21 2024 -0400
fix
commit d01126f6a3c371f01f4133110aaff65ec33b3daa
Author: Patrick Schleizer <[email protected]>
Date: Sun Mar 24 12:29:40 2024 -0400
dummy tor: towards Bisq 2 support
commit bb0f039ef136ae5a3c56efbb6602ee25a3d78381
Author: Patrick Schleizer <[email protected]>
Date: Sun Mar 24 12:16:00 2024 -0400
comment
commit e932c7573ffa1beec2cd9213e4d8995a60f03e33
Author: Patrick Schleizer <[email protected]>
Date: Sun Mar 24 11:53:10 2024 -0400
dummy tor: redirect `tor --version` to original Tor
for Bisq 2 support
commit f8ea5309e4a9f7286e155d0c3da82a1f68d326db
Author: Patrick Schleizer <[email protected]>
Date: Fri Feb 2 12:49:37 2024 +0000
bumped changelog version
commit 39103980272c4c757ff3b92dbeaf148f759137cd
Author: Patrick Schleizer <[email protected]>
Date: Fri Feb 2 07:49:24 2024 -0500
lintian
commit 4b997b876d17da9b96ddf951cf96f7db8d9364e1
Author: Patrick Schleizer <[email protected]>
Date: Fri Feb 2 12:40:10 2024 +0000
bumped changelog version
commit 5769fa47cb97bc15415e5918cbca22cad04c4a78
Author: Patrick Schleizer <[email protected]>
Date: Fri Feb 2 07:32:57 2024 -0500
usrmerge debhelper systemd Debian package maintainer scripts fix
commit a38cc31f0d3260440216f6a3233cf5dbd70cbef2
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 22 12:53:03 2024 +0000
bumped changelog version
commit e38938a7206836d915b324733c1afd8e7bc14b63
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 22 06:55:58 2024 -0500
usrmerge
commit 08fa8beabe62480ece6a6fb15eda1050636b3309
Author: Patrick Schleizer <[email protected]>
Date: Sat Nov 11 20:29:21 2023 +0000
bumped changelog version
commit c345b8ad6da22146edb2cff4727fac2af792e9d4
Author: Patrick Schleizer <[email protected]>
Date: Sat Nov 11 13:41:25 2023 -0500
change license to AGPL-3+
https://forums.whonix.org/t/license-change-to-agplv3/17455
commit 70ab3e3f71254df9fabcd3fdc42b9a0510406e5e
Author: Patrick Schleizer <[email protected]>
Date: Sat Oct 21 13:13:14 2023 -0400
bumped changelog version
commit 7afa87c9ec8f2a6c7252e38847f71a64d423f101
Author: Patrick Schleizer <[email protected]>
Date: Sat Oct 21 13:11:54 2023 -0400
fix, /etc/X11/Xsession.d does not support files ending with .sh
commit c4b7e502c610fce68f225d46e34b5da4d3adf40b
Author: Patrick Schleizer <[email protected]>
Date: Wed Oct 11 09:09:55 2023 -0400
bumped changelog version
commit c4688bb503b50a4bff9e810c27bb9930612e7da8
Author: Patrick Schleizer <[email protected]>
Date: Wed Oct 11 09:09:12 2023 -0400
wayland
commit 42c23b90b96b5897f1a0ba1784a1cfa9eb2bf597
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 29 16:09:18 2023 -0400
bumped changelog version
commit a5800571e1be00a4238cda324116b734388ab836
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 29 16:02:30 2023 -0400
tmpfiles.d improvement
commit 623b1b928bdfb40e05c0e58009a4e1de762afbbd
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 29 08:17:50 2023 -0400
bumped changelog version
commit 289afa5ee2b95b733eb8388813e1c0b9e402555f
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 29 08:12:59 2023 -0400
add symlinks from /etc/profile.d to /etc/zprofile.d
commit 54582aea3a27438d33b30e7174766c6661c81ed2
Author: Patrick Schleizer <[email protected]>
Date: Sun Jul 9 06:16:55 2023 -0400
bumped changelog version
commit 9e48a0d364e85565aa9fdb62ef94c0cda8a1aabf
Author: Patrick Schleizer <[email protected]>
Date: Sun Jul 9 06:15:11 2023 -0400
readme
commit 6f282a1378cd6141d73be81e5927158b5d35c814
Author: Patrick Schleizer <[email protected]>
Date: Wed Jun 21 09:42:29 2023 +0000
bumped changelog version
commit 1751a97442b507d0c74bcb0e1695840881a39d96
Author: Patrick Schleizer <[email protected]>
Date: Wed Jun 21 09:11:34 2023 +0000
bookworm
commit 73f3e2d459b21dae8d1e5ef31c677b1c2e278c7a
Author: Patrick Schleizer <[email protected]>
Date: Fri Jun 16 11:12:42 2023 +0000
bumped changelog version
commit 990a01455a69fe3d5454143ae5984883f9b78b1e
Author: Patrick Schleizer <[email protected]>
Date: Fri Jun 16 10:49:08 2023 +0000
readme
commit f4edc65c8612714719f2f83a4763caf4463d2d2c
Author: Patrick Schleizer <[email protected]>
Date: Thu Jun 15 17:08:30 2023 +0000
bumped changelog version
commit 9635e9a2261d8abde486fc00cd0a145ed739d1f8
Author: Patrick Schleizer <[email protected]>
Date: Wed Jun 14 13:14:50 2023 +0000
copyright
commit ee061522f6088c3e0358de65b3325ba16f80abe5
Author: Patrick Schleizer <[email protected]>
Date: Wed Jun 14 10:08:30 2023 +0000
bumped changelog version
commit 1a7798de3ecef0ef0b513733a6bfb896dcf099e2
Author: Patrick Schleizer <[email protected]>
Date: Wed Jun 14 09:34:30 2023 +0000
bookworm
commit 626ac9386cedcf1282bb5cac7ae3258453b96b7c
Author: Patrick Schleizer <[email protected]>
Date: Mon Jun 12 18:14:03 2023 +0000
bumped changelog version
commit 143196d123941c00899b6ceebf02099077b0f35d
Author: Patrick Schleizer <[email protected]>
Date: Mon Jun 12 16:22:35 2023 +0000
Standards-Version: 4.6.1.0
commit 71f34a2776410cdf4e185e36d71ea9670037075d
Author: Patrick Schleizer <[email protected]>
Date: Mon Jun 12 15:37:09 2023 +0000
bumped changelog version
commit 4b6145414121307ef04616fd4a6cd1f8358a9142
Author: Patrick Schleizer <[email protected]>
Date: Mon Jun 12 14:52:04 2023 +0000
update copyright year
commit 342de24260725190d70196e2e8efdf2174e35bf8
Author: Patrick Schleizer <[email protected]>
Date: Sat Aug 13 11:41:08 2022 -0400
bumped changelog version
commit 6f4104b0db9d2b70d43e16a1af59a6f2338a8582
Author: Patrick Schleizer <[email protected]>
Date: Sat Aug 13 11:36:20 2022 -0400
addgroup -> adduser fix
commit 4313e7eef705c6ec824006a4095aaad56286ecaa
Author: Patrick Schleizer <[email protected]>
Date: Wed May 25 06:07:39 2022 -0400
bumped changelog version
commit b05564230b351bfb49cef2263cf1f69d2febd379
Author: Patrick Schleizer <[email protected]>
Date: Fri May 20 15:27:14 2022 -0400
readme
commit 64237955512e0ddff93df72ec5bc228546b414e7
Author: Patrick Schleizer <[email protected]>
Date: Fri May 20 14:46:43 2022 -0400
copyright
commit d2b4cb0789b32512fdd554339a3eac20d591ed1a
Author: Patrick Schleizer <[email protected]>
Date: Sun Apr 10 12:40:20 2022 -0400
readme
commit 68bdc614a1ca235faff1b8f4f788df870d68281e
Author: Patrick Schleizer <[email protected]>
Date: Wed Jan 19 07:08:16 2022 -0500
bumped changelog version
commit e6c05d99006849caf4326d58d4cca4cb0e001c1b
Author: Patrick Schleizer <[email protected]>
Date: Sun Jan 16 12:10:48 2022 -0500
Tor emulation: fix, pass all command line options to `tor` when being called with `--verify-config`
https://github.com/nyxnor/tor-ctrl/issues/9
commit 8b34a274e458feb17d2cf8002e2853703e174860
Author: Patrick Schleizer <[email protected]>
Date: Sat Jan 15 15:29:27 2022 -0500
bumped changelog version
commit 7a1e0b59d39bc705c1e39be69a2c3dedb04c0f04
Author: Patrick Schleizer <[email protected]>
Date: Sat Jan 15 15:28:41 2022 -0500
implement `tor --verify-config`
tor-ctrl uses 'tor --verify-config'
fixes https://github.com/nyxnor/tor-ctrl/issues/9
commit 673ff1807649d753f937298f2a3ad83556ce85e8
Author: Patrick Schleizer <[email protected]>
Date: Tue Nov 9 14:32:28 2021 -0500
readme
commit 31fcadcf1f54f9c1b8e447deb31e381dc135e810
Author: Patrick Schleizer <[email protected]>
Date: Sat Sep 11 18:33:39 2021 -0400
bumped changelog version
commit 7494cc99bf640b63bcde1be2be239334f134790d
Author: Patrick Schleizer <[email protected]>
Date: Sat Sep 11 16:31:08 2021 -0400
readme
commit 6c0caf5dde5738e239217e966273650064b4d658
Author: Patrick Schleizer <[email protected]>
Date: Sun Aug 22 05:26:38 2021 -0400
bumped changelog version
commit 33c5559e910657b133e83aef6950ec4d8fa52fc0
Author: Patrick Schleizer <[email protected]>
Date: Sun Aug 22 05:20:55 2021 -0400
LANG=C str_replace
commit eb72f0ec82135a708dc1a969bd7713568c99f61f
Author: Patrick Schleizer <[email protected]>
Date: Thu Aug 5 16:31:31 2021 -0400
bumped changelog version
commit efdb7cd6c3c0174e1a7e8fd9ce08dcf845c8623c
Author: Patrick Schleizer <[email protected]>
Date: Wed Aug 4 14:42:59 2021 -0400
lintian FHS
commit 5767785c25a17fda5e5071af7fc772379cd66610
Author: Patrick Schleizer <[email protected]>
Date: Wed Aug 4 14:42:25 2021 -0400
lintian FHS
commit f9451226117b438908dbd7048c52b63cb37a89dc
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 3 12:48:51 2021 -0400
move /usr/lib/helper-scripts and /usr/lib/curl-scripts to /usr/libexec/helper-scripts as per lintian FHS
commit 522feddc3ba72017bad3bcea84ad83c6d050c197
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 3 11:50:50 2021 -0400
update lintian tag name
commit 4133fb23795ac0b901a7ca809cf877b1e3c2066f
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 3 05:48:16 2021 -0400
bullseye
commit 01ffa10973bd9dc0c2e7007bcbbd702abf0c2e3c
Author: Patrick Schleizer <[email protected]>
Date: Sun Aug 1 16:24:19 2021 -0400
readme
commit 00a1c9ef1c1b28b682b9b1e27e112650b4420823
Author: Patrick Schleizer <[email protected]>
Date: Sat Jul 24 19:05:17 2021 -0400
bumped changelog version
commit 6ee5b5b03d09dae202f2f55ff603c96dca2bf386
Author: Patrick Schleizer <[email protected]>
Date: Sat Jul 24 19:04:48 2021 -0400
Provides: obfsproxy, obfs4proxy
commit b7d7c7e6daa6afab9bcc3b6063970476cb80d3ac
Author: Patrick Schleizer <[email protected]>
Date: Wed Jul 7 04:36:34 2021 -0400
bumped changelog version
commit 73a4e81dee4a2cb5f0453d024d41f20a307802e8
Author: Patrick Schleizer <[email protected]>
Date: Wed Jul 7 04:33:00 2021 -0400
fix "Firefox is offline" messages in Tor Browser 10.5a17 and above by
enabling Tor Browser `quickstart`
`export TOR_USE_LEGACY_LAUNCHER=1`
https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/27476
https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/40455
https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/40433
https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/34345
commit 57c9f0804ed6d1ceee6aa487518659a0fb28f029
Author: Patrick Schleizer <[email protected]>
Date: Wed Mar 17 10:56:47 2021 -0400
bumped changelog version
commit 2157d942aec065dcd6086056a76ffde53f7563ff
Author: Patrick Schleizer <[email protected]>
Date: Wed Mar 17 09:45:11 2021 -0400
copyright
commit bdf598b738a0e07f95f0301d6e2db7d989f64b22
Author: Patrick Schleizer <[email protected]>
Date: Mon Feb 15 09:24:03 2021 -0500
bumped changelog version
commit 0b1394e98ee2a4c7f56c722585358dff3ea67f61
Author: Patrick Schleizer <[email protected]>
Date: Mon Feb 15 09:24:02 2021 -0500
readme
commit d0154afd9c5ad734ca6bb26644ef69a99c8e9749
Author: Patrick Schleizer <[email protected]>
Date: Fri Feb 12 03:46:16 2021 -0500
lintian
commit 4db39ec46cbbf432ca1e6cbd16562cae2896836b
Author: Patrick Schleizer <[email protected]>
Date: Fri Feb 12 03:36:57 2021 -0500
disable the following port forwardings from Whonix-Workstation to Whonix-Gateway
- 9153 (Tor Messenger default ControlPort)
since deprecated applications in Whonix and no longer in use
commit e6b7b164790058453b495b8b17a9bbeb310363c1
Author: Patrick Schleizer <[email protected]>
Date: Fri Feb 12 03:35:13 2021 -0500
disable the following port forwardings from Whonix-Workstation to Whonix-Gateway
- 9152 (Tor Messenger default SocksPort)
- 11109 (TorChat default SocksPort)
since deprecated applications in Whonix and no longer in use
commit 464189c826736e65fdf3f378ffbaf06cd33f0018
Author: Patrick Schleizer <[email protected]>
Date: Sat Nov 14 11:53:40 2020 -0500
bumped changelog version
commit 9e0de4bb5a4408b5b32a6b34244ec69570c555a1
Author: Patrick Schleizer <[email protected]>
Date: Sat Nov 14 07:51:15 2020 -0500
comment
commit 9f5e8fe507de7b95c2dbfed49fb848383a5a4241
Author: Patrick Schleizer <[email protected]>
Date: Sat Nov 14 07:50:08 2020 -0500
comment
commit 4636ec017c2ad3f7e189c96d28a5e4e6f0c3be31
Author: Patrick Schleizer <[email protected]>
Date: Sat Nov 14 07:49:22 2020 -0500
comment
commit 542efcdec2217b79567b54f41eed2c27ecaa9eab
Author: Patrick Schleizer <[email protected]>
Date: Sat Nov 14 07:43:36 2020 -0500
comments on IP change; better support to change IPs
commit e21142a0b21ed9b6496d9c53dbf7d3e3a58f11c3
Author: Patrick Schleizer <[email protected]>
Date: Mon Oct 19 11:37:54 2020 -0400
bumped changelog version
commit f065c2223c7a0e957996c227be4f39f1f30e8ca7
Author: Patrick Schleizer <[email protected]>
Date: Mon Oct 19 11:37:53 2020 -0400
readme
commit 865372f58a51a7715b8807f4438c4bdc85d82e43
Author: Patrick Schleizer <[email protected]>
Date: Mon Oct 19 11:36:00 2020 -0400
forward Thunderbird port 9102
run usr/share/lintian/overrides/anon-ws-disable-stacked-tor
Thanks to @LavenderLevitator for the bug report!
https://forums.whonix.org/t/torbirdy-replacement/8782/35
commit c7ad15982c27866747f9bcef0c10c83cacf18b7f
Author: Patrick Schleizer <[email protected]>
Date: Wed Jul 29 12:23:23 2020 -0400
bumped changelog version
commit 26bdf8f4c6a37f6b7243dac87a33e4a645a5a4b5
Author: Patrick Schleizer <[email protected]>
Date: Wed Jul 29 12:21:28 2020 -0400
redirect Thunderbird localhost 9102 to Whonix-Gateway 9102
https://forums.whonix.org/t/torbirdy-deprecated-replacement-required/8782/27
commit 84a73d18afa706ee39ac51b911c7821c79fad758
Author: Patrick Schleizer <[email protected]>
Date: Wed Jul 29 12:20:54 2020 -0400
/var/run -> /run
commit 5b2f06b8b21dfff06098beda8e747b2d0ea61740
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 16 08:22:33 2020 -0400
bumped changelog version
commit 93b495f4f417202bb113121395db3e99ac26f85e
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 15 14:05:27 2020 -0400
readme
commit 2c9de84861960e03a0f2c14d1bcf472b7996d19b
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 8 12:39:40 2020 +0000
bumped changelog version
commit ecb4cc74b70fca950900608b47b228eaa5e3cf3a
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 8 12:03:15 2020 +0000
anon-base-files -> dist-base-files
commit 3a039786e8f6c66dda4ee612fd4112a53e8bb4a0
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 2 07:32:20 2020 -0400
bumped changelog version
commit bed899a1edc5b1f1620e230fa6266e2b72a667d5
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 2 07:22:15 2020 -0400
readme
commit 99eeeff8eda1c9c273d0b2753a821bfb256d7545
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 16:57:27 2020 -0400
remove genmkfile
commit 459fccaa5aeeb31787aa177096871a4cb36f48f9
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 16:30:05 2020 -0400
add debian install file
commit d36da295f7c3687e609ac284431be15fcadefad6
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 10:23:52 2020 -0400
bumped changelog version
commit 87b23c3510e5fc81c0eff1cf09450ff27d381f06
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 08:49:52 2020 -0400
update copyright year
commit 7e6967725fa49e482caab0491c2f5beb276b4d5e
Author: Patrick Schleizer <[email protected]>
Date: Thu Oct 24 06:56:02 2019 +0000
bumped changelog version
commit d9b24531e0bead82d18e8edaaa0d07b3b590ca01
Author: Patrick Schleizer <[email protected]>
Date: Thu Oct 24 02:42:45 2019 -0400
comment
commit 9b300d0990cff790ce46ec961031de0e5375878f
Author: Patrick Schleizer <[email protected]>
Date: Mon Oct 14 10:16:47 2019 +0000
bumped changelog version
commit 203dd3422163d079272eccf9f67e7be18fb05da5
Author: Patrick Schleizer <[email protected]>
Date: Mon Oct 14 10:10:01 2019 +0000
readme
commit 430fee9f64f50d139a3d1e2d64d95adf5c4c0b72
Author: Patrick Schleizer <[email protected]>
Date: Tue Oct 8 12:06:57 2019 +0000
comment
commit dde300a09469c5e21dba3fdec7200237ef4c3840
Author: Patrick Schleizer <[email protected]>
Date: Tue Oct 8 12:04:12 2019 +0000
comment
commit 89b2312ad18861484604ca1c0b049058371f9e4a
Author: Patrick Schleizer <[email protected]>
Date: Tue Oct 8 03:59:16 2019 -0400
code documentation
commit cd56fdffb1c5065de26e76b3a1b7c449a300211f
Author: Patrick Schleizer <[email protected]>
Date: Mon Oct 7 11:05:29 2019 +0000
description
commit 4ed78b77c5efe1951ec297bab86c276735230466
Author: Patrick Schleizer <[email protected]>
Date: Tue Sep 17 13:39:05 2019 +0000
bumped changelog version
commit 536953c4a84902c408d858a67607b2da2eaab85a
Author: Patrick Schleizer <[email protected]>
Date: Tue Sep 17 07:26:26 2019 +0000
use --with=config-package rather than dh_configpackage
commit 02839f754c52d54e94d1c068687fffaf7368d45a
Author: Patrick Schleizer <[email protected]>
Date: Tue Sep 17 07:23:24 2019 +0000
fix, also run original dh_install from override_dh_install
commit cd20cf2526cc446b511b105830306d4d2200ff54
Author: Patrick Schleizer <[email protected]>
Date: Sat Aug 31 13:41:57 2019 +0000
bumped changelog version
commit 517eef5fe593ef08907310dd698052d32da6d669
Author: Patrick Schleizer <[email protected]>
Date: Sat Aug 31 08:43:17 2019 -0400
depend on adduser
commit 64ae0b1b45f941cafd1c66e349bac94b3dc547af
Author: Patrick Schleizer <[email protected]>
Date: Thu Aug 1 11:23:07 2019 +0000
bumped changelog version
commit 854a2f44d1a2feff8ecf0ac1b30f09aeb509d999
Author: Patrick Schleizer <[email protected]>
Date: Thu Aug 1 11:13:33 2019 +0000
readme
commit d2ce922195dbc9c022e0ee3a842f7e96ac585d9d
Author: Patrick Schleizer <[email protected]>
Date: Wed Jul 31 07:36:18 2019 +0000
bumped changelog version
commit de8c9ec29dba604941872d4630530d0d07733153
Author: Patrick Schleizer <[email protected]>
Date: Wed Jul 31 03:06:30 2019 -0400
/var/run -> /run
commit 50c19ce5ffd75c98c3c5ef2c488e145488e9e5ca
Author: Patrick Schleizer <[email protected]>
Date: Mon Jul 1 15:22:33 2019 +0000
bumped changelog version
commit 35198acb7a4e2ad05cafe7a118ec4c0eabb4901e
Author: Patrick Schleizer <[email protected]>
Date: Mon Jul 1 10:03:21 2019 +0000
actually do not cleanup DataDirectory; comment
https://github.com/micahflee/onionshare/issues/829#issuecomment-507190839
commit 89f3a4ec5996903812750b1442bca9ea44c7020d
Author: Patrick Schleizer <[email protected]>
Date: Mon Jul 1 10:00:56 2019 +0000
minor
commit 1736d5adda520afed9f036e460d329e8afb09312
Author: Patrick Schleizer <[email protected]>
Date: Mon Jul 1 10:00:29 2019 +0000
private variables
https://github.com/micahflee/onionshare/issues/829#issuecomment-507190839
commit 7b10c4923e566283c8e10d92e27e036509019d88
Author: Patrick Schleizer <[email protected]>
Date: Mon Jul 1 09:59:08 2019 +0000
cleanup DataDirectory
https://github.com/micahflee/onionshare/issues/829#issuecomment-507190839
commit c3f38be312088470794b7ffdc7c3a25c6594f3f3
Author: Patrick Schleizer <[email protected]>
Date: Mon Jul 1 09:52:16 2019 +0000
add also SocksPort support for OnionShare "bundled Tor"
https://github.com/micahflee/onionshare/issues/829#issuecomment-507190839
commit 6cbc889b37648b8b8cae8193c675b3c5aef9e55f
Author: Patrick Schleizer <[email protected]>
Date: Mon Jul 1 09:26:22 2019 +0000
add support for OnionShare "bundled Tor"
commit 5755d1f470c76bd91f287028ad133e4345792b89
Author: Patrick Schleizer <[email protected]>
Date: Sat Jun 8 10:12:48 2019 +0000
bumped changelog version
commit 64df319c6a165ad8dc7bd3e2a4a45841660cc485
Author: Patrick Schleizer <[email protected]>
Date: Sat Jun 8 00:05:29 2019 -0400
fix debian/watch lintian warning debian-watch-contains-dh_make-template
commit 1f7bf8ff3af2548cb735ab9450c7395d9d4065cf
Author: Patrick Schleizer <[email protected]>
Date: Thu Jun 6 01:43:06 2019 -0400
'restart' rather than 'start' required to support running this script
during runtime due to the following.
Jun 06 05:38:49 host systemd[1]: anon-ws-disable-stacked-tor_autogen__var_run_tor_socks.socket: Socket unit configuration has changed while unit has been running, no open socket file descriptor left. The socket unit is not functional until restarted.
commit 4bc1c2c8165a1a160116f15bf841b88f3b2587fa
Author: Patrick Schleizer <[email protected]>
Date: Fri May 24 20:09:47 2019 +0000
bumped changelog version
commit 66ae2f1aefe129ac9e5d524ac8f5adbf9024476a
Author: Patrick Schleizer <[email protected]>
Date: Fri May 24 12:28:54 2019 -0400
readme
commit 5652700e53376013b043f408052e12c5483132d4
Author: Patrick Schleizer <[email protected]>
Date: Sun May 12 10:30:40 2019 +0000
bumped changelog version
commit c3064496167e95033ff11b267303b9cd35b06dad
Author: Patrick Schleizer <[email protected]>
Date: Sun May 12 02:58:42 2019 -0400
update path to pre.bsh
commit 8b81ceb9b57ec9cf9b8cb77a3d5bed44763964e6
Author: Patrick Schleizer <[email protected]>
Date: Sun May 12 02:50:14 2019 -0400
anon-shared-helper-scripts -> helper-scripts
commit 20f08fffb6406d4c46b58ed91157fa2989256a96
Author: Patrick Schleizer <[email protected]>
Date: Fri May 3 11:16:07 2019 +0000
bumped changelog version
commit b16716901c4844ae83a96733e304e79e5762ab26
Author: Patrick Schleizer <[email protected]>
Date: Fri May 3 10:56:51 2019 +0000
update
commit e15c5bf026ab03b537733cbaa47cdf838ccea2fd
Author: Patrick Schleizer <[email protected]>
Date: Wed May 1 01:13:28 2019 +0000
bumped changelog version
commit e7113a224b319806ee7d5d8fc9c14019c4fe6ddb
Author: Patrick Schleizer <[email protected]>
Date: Tue Apr 30 21:07:18 2019 -0400
re-run usr/lib/anon-ws-disable-stacked-tor/systemd-unit-files-generator
fix port / fix for bisq
commit a7166ba7103d445fb032aa40b55a2b1ff32a010a
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 25 20:44:53 2019 +0000
bumped changelog version
commit 23f852368df6be6ed2dd1937363682df76ce81b2
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 25 16:26:26 2019 -0400
fix port / fix for bisq
commit 4b5a9330e1d446d026bfc1976f91f7b3d0515ffe
Author: Patrick Schleizer <[email protected]>
Date: Sat Apr 6 16:08:13 2019 +0000
bumped changelog version
commit 128e2312bf58a5c1cea3eecd74d1fa0a1a194b51
Author: Patrick Schleizer <[email protected]>
Date: Sat Apr 6 15:17:09 2019 +0000
have sane built-in defaults even if config files are non-existing
https://phabricator.whonix.org/T503
commit c73e0e05dd15ded988bf895f6d62b241a74dbd4f
Author: Patrick Schleizer <[email protected]>
Date: Sat Apr 6 15:12:08 2019 +0000
comments
commit 9c1118c49e1de4d0f9f335709b8dcae09aad01a0
Author: Patrick Schleizer <[email protected]>
Date: Sat Apr 6 15:09:23 2019 +0000
comment
commit 968727c36aeaefc7da5a89931323c95f06a62a7c
Author: Patrick Schleizer <[email protected]>
Date: Sat Apr 6 11:55:32 2019 +0000
bumped changelog version
commit 0e0a0bf396cf60ad3ce2d0a8e1ba3251ec21168f
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 4 05:55:50 2019 -0400
port to debian buster
commit 42117c005e56ea62cfd9d457b11e2c32c0756c14
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 4 05:50:33 2019 -0400
port to debian buster
commit f5e622c10bbef8c95fff10a4c9f160700079a0aa
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 3 18:04:48 2019 -0400
readme
commit f8b7e9a1f906c2c437010a7723928f123f1e27a5
Author: Patrick Schleizer <[email protected]>
Date: Fri Mar 29 09:45:14 2019 +0000
bumped changelog version
commit 41b5da9c8e52a1a2df79024c7ddcb10af19e06d0
Author: Patrick Schleizer <[email protected]>
Date: Fri Mar 29 09:02:45 2019 +0000
https://www.whonix.org/wiki/Dev/Licensing
commit 83f16f78a2e01562c21ea4df0c634a3492d3428e
Author: Patrick Schleizer <[email protected]>
Date: Tue Mar 12 11:18:36 2019 +0000
bumped changelog version
commit 3da8e90c264a9325d5ce349b7b72ff1967f8c073
Author: Patrick Schleizer <[email protected]>
Date: Fri Mar 1 14:31:49 2019 +0000
add improved legal protections clauses
The license for software created by Whonix is the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version with additional terms applicable per GNU GPL version 3 section 7.
The additional terms are based on the Doom 3 license which is Debian refers to as `GPL-3+-with-id-software-additional-terms`, which is Debian DFSG [1] (The Debian Free Software Guidelines) approved and which is therefore suitable for Debian `main`. Whonix made applied minimal changes to it:
* Rewrite `The Doom 3 BFG Edition GPL Source Code` to the more common `this program` which is used throughout the GPL.
* Added a "trump clause" [2], in other words, any conflicts or disputes between the additional terms and the GPLv3 shall be resolved in favor of the GPLv3 by adding `Notwithstanding any other provision of this License` (as mentioned in GPL FAQ [3]) at the beginning of the additional terms.
[1] https://www.debian.org/social_contract#guidelines
[2] https://www.fsf.org/news/canonical-updated-licensing-terms
[3] https://www.gnu.org/licenses/gpl-faq.html#v3Notwithstanding
For more considerations, see also:
https://www.whonix.org/wiki/Dev/Licensing
commit 6a0200b26370c8883b9b213a9f3c1bf835c5a93b
Author: Patrick Schleizer <[email protected]>
Date: Fri Dec 14 10:01:43 2018 +0000
bumped changelog version
commit 5dd547e93b6d26b96f56a134b8904b513f988765
Author: Patrick Schleizer <[email protected]>
Date: Fri Dec 7 06:16:32 2018 -0500
fix
commit 8a364762966d3e390cb3673d8c8f98ffda5996a0
Author: Patrick Schleizer <[email protected]>
Date: Fri Dec 7 06:13:54 2018 -0500
parse /usr/local/etc//anon-ws-disable-stacked-tor.d/*.conf
commit 3dcbe81a7d8c85871193e04e214b0360fcfd183a
Author: Patrick Schleizer <[email protected]>
Date: Mon Aug 27 15:52:59 2018 +0000
bumped changelog version
commit 12284612749bedc267ccbdc6ed01e1f5a027d9a2
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 21 05:17:53 2018 +0800
readme
commit d5b40d9e3ae9e9b54befc9e24a677404c0a3de20
Author: Patrick Schleizer <[email protected]>
Date: Fri Aug 17 19:32:12 2018 +0000
bumped changelog version
commit e53847fca02baefd7ec76e822929273d02b7aaf2
Author: Patrick Schleizer <[email protected]>
Date: Fri Aug 17 19:23:40 2018 +0000
comment
commit d85f5c22c2435ac53b737b59d99dd189b3f0cf47
Author: Patrick Schleizer <[email protected]>
Date: Wed May 9 12:19:55 2018 +0000
bumped changelog version
commit 7372afb6ff6d2e0a14a037d21b16ab758da6daea
Author: Patrick Schleizer <[email protected]>
Date: Wed May 9 09:59:23 2018 +0000
comment
commit 0a6b6fd716252637ab891b57160f63be3dd4331e
Author: Patrick Schleizer <[email protected]>
Date: Wed May 9 09:28:27 2018 +0000
comment
commit 4185e35465f0f4af20bd8fc3933072375b1a83e6
Author: Patrick Schleizer <[email protected]>
Date: Wed May 9 09:26:28 2018 +0000
regenerate