-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathchangelog.upstream
1897 lines (1275 loc) · 54.6 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 daf102c9bf1365e9a9d69139d2f6f688b15bef3b
Author: Patrick Schleizer <[email protected]>
Date: Wed Aug 7 07:21:24 2019 +0000
enable exit button
commit f4a93864b95203be1faf56f85d933a2a59855127
Author: Patrick Schleizer <[email protected]>
Date: Wed Aug 7 07:16:37 2019 +0000
bumped changelog version
commit 960e315885bfc862da183ff4be9a6431a7309511
Author: Patrick Schleizer <[email protected]>
Date: Wed Aug 7 07:15:13 2019 +0000
add default config file
commit 1f32ec18257e9adf14b9a5a4aab7d2ed361d9d1a
Author: Patrick Schleizer <[email protected]>
Date: Wed Aug 7 07:06:06 2019 +0000
add config setting to disable autostart
commit 4e3848233c7a27be68001801b14ff1e248832dcc
Author: Patrick Schleizer <[email protected]>
Date: Wed Aug 7 06:52:56 2019 +0000
fix, actually use gateway variable
commit ab7c989df17d75fdb8f4f305042ece223f43ef07
Author: Patrick Schleizer <[email protected]>
Date: Wed Aug 7 06:30:36 2019 +0000
bumped changelog version
commit d57c97978c77d74b92155bb19c360f723df42571
Author: Patrick Schleizer <[email protected]>
Date: Wed Aug 7 02:09:50 2019 -0400
cleanup
commit e2eb9f84233e7580cc2ceb13990b90689bc39382
Author: Patrick Schleizer <[email protected]>
Date: Wed Aug 7 02:05:31 2019 -0400
support multiple Whonix-Gateways through configuration
parse config files
/etc/sdwdate-gui.d/*.conf
/usr/local/etc/sdwdate-gui.d/*.conf
commit bc4370caca3d041a15c749d5ba758bc6048e1d42
Author: Patrick Schleizer <[email protected]>
Date: Wed Aug 7 01:18:48 2019 -0400
refactoring
commit e2c700fdb04261e621eec2c46160b3a5652168a5
Author: Patrick Schleizer <[email protected]>
Date: Thu Aug 1 12:02:05 2019 +0000
bumped changelog version
commit 379aea73917277a6b7807bb2f86d93686fd3022d
Author: Patrick Schleizer <[email protected]>
Date: Thu Aug 1 11:13:42 2019 +0000
readme
commit a29798fb4e5b936e2659166efeba69162a350784
Author: Patrick Schleizer <[email protected]>
Date: Wed Jul 31 07:44:16 2019 +0000
bumped changelog version
commit ca2735ee4b777d2ecdb70c8c3ef2c6f7c9f239f5
Author: Patrick Schleizer <[email protected]>
Date: Wed Jul 31 03:11:42 2019 -0400
/var/run -> /run
commit e487ffa5e210cabf3b921098f67a1f03fc973600
Author: Patrick Schleizer <[email protected]>
Date: Wed Jul 17 21:07:49 2019 +0000
bumped changelog version
commit 657c63ae3bb85ac75c53d4bcefaa3096ea49a304
Author: Patrick Schleizer <[email protected]>
Date: Wed Jul 17 20:56:10 2019 +0000
debugging
commit 32c87ff1ca9745ef5ac99bfd590f8c503f29fb0a
Author: Patrick Schleizer <[email protected]>
Date: Wed Jul 17 20:54:23 2019 +0000
enable notify-shutdown
commit 53f89ac8143a8dceda8979fd59f7523c5131e732
Author: Patrick Schleizer <[email protected]>
Date: Wed Jul 17 19:56:11 2019 +0000
bumped changelog version
commit c8b9a82b46adc7c36914e93685140d919f17894e
Author: Patrick Schleizer <[email protected]>
Date: Wed Jul 17 19:54:40 2019 +0000
debugging
commit ee4f5ff8d97c09df2f4989c2c04074e4da32f1f4
Author: Patrick Schleizer <[email protected]>
Date: Wed Jul 17 19:52:01 2019 +0000
start by default in Qubes
commit f6f2214cbb6ab1425207773da2b4ba613375c58a
Author: Patrick Schleizer <[email protected]>
Date: Wed Jul 17 19:51:24 2019 +0000
debugging
commit dec8aa00c550d3c39c83898a2b46b33ebb6b90b4
Author: Patrick Schleizer <[email protected]>
Date: Wed Jul 17 19:49:51 2019 +0000
enable also for DispVMs
commit 96c4432999a53de0c1ccb84f54f739d9366a1062
Author: Patrick Schleizer <[email protected]>
Date: Sun Jun 30 08:23:19 2019 +0000
bumped changelog version
commit cb0c903495deb12f3ede40be61ebe218779837ad
Author: Patrick Schleizer <[email protected]>
Date: Sat Jun 29 13:45:40 2019 +0000
man page
commit e30f1536e1abe3a31f454b4413f16fe2ce86cdfc
Author: Patrick Schleizer <[email protected]>
Date: Thu Jun 27 07:26:59 2019 +0000
bumped changelog version
commit 41e63c40c05ec071d2a678874deaac634e85974a
Author: Patrick Schleizer <[email protected]>
Date: Thu Jun 27 07:22:07 2019 +0000
name, comment
commit f527651a0354bc50b370447d62bf15336d00497f
Author: Patrick Schleizer <[email protected]>
Date: Sat Jun 8 11:31:40 2019 +0000
bumped changelog version
commit 9f97942bc9a0a52039edd51817d0eadf3dba1e66
Author: Patrick Schleizer <[email protected]>
Date: Sat Jun 8 00:05:35 2019 -0400
fix debian/watch lintian warning debian-watch-contains-dh_make-template
commit f5a222bcd640e1cbea5787c01a638c6b1291163c
Author: Patrick Schleizer <[email protected]>
Date: Fri May 24 20:48:29 2019 +0000
bumped changelog version
commit 1f4ded08eb72dce62ff497bb5b19d46013e1e0e6
Author: Patrick Schleizer <[email protected]>
Date: Fri May 24 12:29:07 2019 -0400
readme
commit 57993d84fa3fa239861e49320e3812b0a0106405
Author: Patrick Schleizer <[email protected]>
Date: Sun May 12 10:47:50 2019 +0000
bumped changelog version
commit 7041415f4e0083e06a2a870a6777d10d0f0b35bf
Author: Patrick Schleizer <[email protected]>
Date: Sun May 12 02:58:44 2019 -0400
update path to pre.bsh
commit 8c3312746a752de228054663e27d71a27c8897e3
Author: Patrick Schleizer <[email protected]>
Date: Sun May 12 02:50:15 2019 -0400
anon-shared-helper-scripts -> helper-scripts
commit 8f84a6ee040819443ba80bb8c1ebb0bccf79fa50
Author: Patrick Schleizer <[email protected]>
Date: Fri May 3 11:33:49 2019 +0000
bumped changelog version
commit 171aa6da292939d0cbbebbfe69d1de3a032c43ef
Author: Patrick Schleizer <[email protected]>
Date: Fri May 3 10:56:56 2019 +0000
update
commit c11bd0c911cd7d7f69fa63f2d10297efe947e59a
Author: Patrick Schleizer <[email protected]>
Date: Mon Apr 8 13:05:00 2019 +0000
bumped changelog version
commit a11b55372ea0d5a1fab2738e625d52c71f50e2a0
Author: Patrick Schleizer <[email protected]>
Date: Mon Apr 8 12:36:07 2019 +0000
fix
commit 03d27079685b5df9e2474b6f0c5d2452d2b98c69
Author: Patrick Schleizer <[email protected]>
Date: Mon Apr 8 12:30:44 2019 +0000
use /usr/lib/sdwdate/restart_fresh consistently
commit 8295b787274cb765bf493bb2f575650434de4f2a
Author: Patrick Schleizer <[email protected]>
Date: Mon Apr 8 12:25:41 2019 +0000
rm --force to avoid failing if file does not exist
commit 7c454fc5a2aff1e38882598fe8140df8ab561f8e
Author: Patrick Schleizer <[email protected]>
Date: Mon Apr 8 12:21:46 2019 +0000
use log viewer instead
commit 0bd34260a328c67c8cfd452ca23932c6c8027304
Author: Patrick Schleizer <[email protected]>
Date: Mon Apr 8 12:19:05 2019 +0000
safer permissions
commit e8136e573770033d36f2501a5a0ddef415177a09
Author: Patrick Schleizer <[email protected]>
Date: Mon Apr 8 12:16:39 2019 +0000
license
commit aa78ef38ae6f6051716b5796916226ae623d60e8
Author: Patrick Schleizer <[email protected]>
Date: Mon Apr 8 12:10:49 2019 +0000
safer /var/run/sdwdate-gui/anon-status permissions
commit df73d27b59158f890789f9c7c8b556749f10a378
Author: Patrick Schleizer <[email protected]>
Date: Mon Apr 8 11:58:26 2019 +0000
fix
commit 57db71c95450a8c8023d169bc2536fddbe237ed2
Author: Patrick Schleizer <[email protected]>
Date: Mon Apr 8 11:54:20 2019 +0000
fix
commit 2267a8be464a2adcfae6d8317f6dfd7579cdcec4
Author: Patrick Schleizer <[email protected]>
Date: Mon Apr 8 06:37:09 2019 -0400
launch into background
consistent with above tor-control-panel
commit af9207a3fe80c77418021b60443784149e7745f5
Author: Patrick Schleizer <[email protected]>
Date: Mon Apr 8 06:36:30 2019 -0400
root not required for log viewer since Debian buster
commit c870392cb4583967fe8a95f9e852bb9406f511cc
Author: Patrick Schleizer <[email protected]>
Date: Mon Apr 8 06:35:35 2019 -0400
xhost +
commit 31135c0d1a93d557bc173e839124bd692934b596
Author: Patrick Schleizer <[email protected]>
Date: Mon Apr 8 06:29:22 2019 -0400
output
commit e371bbf228ef7301262a3b56a3bf7140ef87050e
Author: Patrick Schleizer <[email protected]>
Date: Sat Apr 6 12:13:10 2019 +0000
bumped changelog version
commit f87c28764cf06e30298cdd2eb1e71f4bb18357e4
Author: Patrick Schleizer <[email protected]>
Date: Sat Apr 6 11:26:56 2019 +0000
sudo
commit 1358b91e0a5954888bccd887975f4860129bb34a
Author: Patrick Schleizer <[email protected]>
Date: Sat Apr 6 10:41:29 2019 +0000
sudo
commit 6099fc0b66e236253790628925b57cca9d70af2e
Author: Patrick Schleizer <[email protected]>
Date: Sat Apr 6 10:35:44 2019 +0000
sudo
commit f86dd4de8cec6feac5beb18e7816f9cc97879302
Author: Patrick Schleizer <[email protected]>
Date: Sat Apr 6 10:34:39 2019 +0000
sudo
commit 03509c0d8e2857932843dd9b0060f18113d3af5a
Author: Patrick Schleizer <[email protected]>
Date: Sat Apr 6 09:53:23 2019 +0000
sudo
commit f137319ad73f5dbeced0fc62a3f950dabefef4f0
Author: Patrick Schleizer <[email protected]>
Date: Fri Apr 5 17:02:21 2019 -0400
gksudo
commit b8e57d6de7a9b5c24854f5b546559351ec347863
Author: Patrick Schleizer <[email protected]>
Date: Fri Apr 5 14:06:55 2019 -0400
port to debian buster
commit 3d2f522533642e927b63a1021dd82c6cf76a9fb6
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 4 11:13:44 2019 -0400
remove -R to fix lintian warning maintainer-script-should-not-use-recursive-chown-or-chmod
commit 7c035122047e41d8f48e6548c9428819f742d6f4
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 4 05:55:51 2019 -0400
port to debian buster
commit bd0ac9a4a2c7cc35c4ab9e5d46f945ab50e04cf1
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 4 05:51:06 2019 -0400
port to debian buster
commit 244b2db40c403fca51c47691d620735dcd6b34d8
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 3 18:05:56 2019 -0400
readme
commit a6d50e9389dec46b347915e846adc5343411fe63
Author: Patrick Schleizer <[email protected]>
Date: Fri Mar 29 10:02:16 2019 +0000
bumped changelog version
commit 97c965fea2ce10f329f79ad35a3c22c56108463e
Author: Patrick Schleizer <[email protected]>
Date: Fri Mar 29 09:03:18 2019 +0000
https://www.whonix.org/wiki/Dev/Licensing
commit 7c3a5ac64b7d14694b30b285a7443a5942a3658e
Author: Patrick Schleizer <[email protected]>
Date: Tue Mar 12 11:35:46 2019 +0000
bumped changelog version
commit 0d80c2bc56a2278e32b4d03fc06b71765a46a1c7
Author: Patrick Schleizer <[email protected]>
Date: Thu Mar 7 13:08:28 2019 -0500
typo
commit 3ed2de99e8ab9367a7132f5856289c04baac2a74
Author: Patrick Schleizer <[email protected]>
Date: Fri Mar 1 14:32:41 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 2e0ee2794a54b3a23f7d1c73614970d7980a7883
Author: Patrick Schleizer <[email protected]>
Date: Thu Nov 1 07:41:33 2018 +0000
bumped changelog version
commit f9a269b352eeb2965a352c91e0a033576c01f0e1
Author: Patrick Schleizer <[email protected]>
Date: Fri Oct 26 06:16:20 2018 -0400
use /usr/lib/anon-shared-helper-scripts/terminal-wrapper rather than hardcoding Konsole
http://forums.whonix.org/t/calling-1-package-from-whonix-repo-will-pull-all-the-packages/6182/7
commit 5854da27c78c07a0edb7500268efb82cdcbc9070
Author: Patrick Schleizer <[email protected]>
Date: Mon Oct 1 12:38:25 2018 +0000
bumped changelog version
commit f59a7895780d04d237731abd08fa18581fd69604
Author: Patrick Schleizer <[email protected]>
Date: Mon Oct 1 11:35:59 2018 +0000
copyright
commit 4ff701a9fa29fc1d9e050c188c4ae8e7d04faa5d
Author: Patrick Schleizer <[email protected]>
Date: Mon Sep 17 17:16:16 2018 +0000
bumped changelog version
commit b0741aa52d77872ea83cb56b5d960c7ad9a88499
Author: Patrick Schleizer <[email protected]>
Date: Mon Sep 17 17:15:46 2018 +0000
do not run sdwdate-gui-qubes by default in Qubes
until https://github.com/QubesOS/updates-status/issues/666 reaches Qubes stable
commit 949278fb806cbb3978dfc9405cce3e1b58ab5594
Author: Patrick Schleizer <[email protected]>
Date: Mon Sep 17 15:39:26 2018 +0000
bumped changelog version
commit 0821aaac05b13c91ec190d6624e700d7c28835eb
Author: Patrick Schleizer <[email protected]>
Date: Mon Sep 17 11:30:50 2018 -0400
do not run sdwdate-gui-qubes by default in Qubes
until https://github.com/QubesOS/updates-status/issues/666 reaches Qubes stable
commit 70dc7b724fe43453091a38dfcb47aab7fad47aa6
Author: Patrick Schleizer <[email protected]>
Date: Mon Sep 17 10:23:23 2018 +0000
bumped changelog version
commit c6e5f57838943264447fd4fb77f3dcb6b873c454
Author: Patrick Schleizer <[email protected]>
Date: Mon Sep 17 10:05:05 2018 +0000
do not run sdwdate-gui-qubes by default in Qubes
until https://github.com/QubesOS/updates-status/issues/666 reaches Qubes stable
commit 1b09852ed5c9e394a3912737eb3963880d1141a2
Author: Patrick Schleizer <[email protected]>
Date: Sun Sep 16 11:22:57 2018 +0000
bumped changelog version
commit 267b6963f5953d1666b79ef2d839b8d86abc2ebd
Author: Patrick Schleizer <[email protected]>
Date: Sun Sep 16 11:05:56 2018 +0000
disable debugging
commit f200a348b5edb1d7e4dbd74dd84cd1bef61394f7
Merge: 4daa4c8 f7d24c4
Author: Patrick Schleizer <[email protected]>
Date: Sun Sep 16 11:04:40 2018 +0000
Merge branch 'sdwdate-gui-qubes'
commit f7d24c487656ff456958aa49354f11205da0c211
Author: Patrick Schleizer <[email protected]>
Date: Sun Sep 16 10:18:13 2018 +0000
bumped changelog version
commit fb25eb16537e3ece2998cdf34603b85a5f1a6d51
Author: Patrick Schleizer <[email protected]>
Date: Sun Sep 16 09:53:47 2018 +0000
output
commit a1338b0bfca60ce28c8e9a0fbfb17e181c9ecec0
Author: Patrick Schleizer <[email protected]>
Date: Sun Sep 16 09:45:09 2018 +0000
move to /usr/lib/sdwdate-gui/sdwdate-watcher so we don't need a man page
to fix lintian warning
commit f4ba6c2160d5f10a2b80821695b7cc5e690f69cb
Author: Patrick Schleizer <[email protected]>
Date: Sun Sep 16 09:44:10 2018 +0000
man
commit 31264dbb9975c4e0c7053e8b2b7d7a9a729088a5
Author: Patrick Schleizer <[email protected]>
Date: Sun Sep 16 09:42:20 2018 +0000
Description
commit f79e3c7c44391ed9a520522202304989efe1e4a7
Author: Patrick Schleizer <[email protected]>
Date: Sun Sep 16 09:41:30 2018 +0000
renamed lib/systemd/system/shutdown-notify.service -> lib/systemd/system/sdwdate-gui-shutdown-notify.service
commit 6e777e802d13c12fc2f5fac8073b2cfc41645d9f
Author: Patrick Schleizer <[email protected]>
Date: Sun Sep 16 09:40:13 2018 +0000
fix lintian warning
commit ea216332e6f0b59f3afc6167d4de68e3537779a9
Author: Patrick Schleizer <[email protected]>
Date: Sun Sep 16 09:39:03 2018 +0000
man page
commit 627698cd1b35b034023ad81b8c3d9e2d6d297bc0
Author: Patrick Schleizer <[email protected]>
Date: Sun Sep 16 05:17:13 2018 -0400
typo
commit d8524d69a07654b9be9e6f360f125bbf1c239b4f
Author: Patrick Schleizer <[email protected]>
Date: Sun Sep 16 05:16:39 2018 -0400
kdesudo
commit 63b9a0b1c7f979362ec114aebed5d62d2138f63f
Author: Patrick Schleizer <[email protected]>
Date: Sun Sep 16 05:04:51 2018 -0400
fix merge conflicts
commit ea94bfc9990ef0d69796b1ad3f513b800085f309
Merge: 985d5df a62d625
Author: Patrick Schleizer <[email protected]>
Date: Sun Sep 16 04:44:10 2018 -0400
Merge remote-tracking branch 'troubadoour/master' into sdwdate-gui-qubes
commit 985d5dff7a583af7af0a775e759272b467068c58
Merge: 6d4a8ed 4daa4c8
Author: Patrick Schleizer <[email protected]>
Date: Sun Sep 16 04:39:01 2018 -0400
Merge branch 'master' into sdwdate-gui-qubes
commit a62d625d2dcb000a0ffa034cca24f3c6fbe00fb7
Author: troubadoour <[email protected]>
Date: Sat Sep 15 19:36:51 2018 +0000
code cleaning
commit b8ba45d1be366bbadeece9b123b689505bd17986
Author: troubadoour <[email protected]>
Date: Sun Sep 2 16:37:33 2018 +0200
comment exit menu action
commit 0b7d851476ac5c9d352de537f0ddfea8f1095b34
Author: troubadoour <[email protected]>
Date: Sat Sep 1 22:29:20 2018 +0200
sdwdate-gui (non-qubes) update
commit 4daa4c85b721ad46f0937b6226c0bafc4da0e547
Author: Patrick Schleizer <[email protected]>
Date: Mon Aug 27 16:49:08 2018 +0000
bumped changelog version
commit 6d4a8edd90fe75504f2d3078763d133479ac8786
Merge: 0741690 126a4b4
Author: Patrick Schleizer <[email protected]>
Date: Thu Aug 23 06:22:14 2018 -0400
Merge remote-tracking branch 'troubadoour/master' into sdwdate-gui-qubes
commit 126a4b443228e51780bf03514302a7c51dd9492f
Author: troubadoour <[email protected]>
Date: Tue Aug 21 19:13:10 2018 +0000
move notify-shutdown to /usr/lib/sdwdate-gui
remove /usr/lib/qubes
commit f592e42a54c405fd7d1c0fc13bf9c321c246fb32
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 21 05:18:37 2018 +0800
readme
commit 13bb0accac051a9bd03824fa3ce05e4891601d66
Author: Patrick Schleizer <[email protected]>
Date: Fri Aug 17 19:12:16 2018 +0000
bumped changelog version
commit 4a4f91f273d4db29d76c1f8221238bf9d71a6115
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 14 19:55:17 2018 +0000
debugging
commit fbb95a58a1fc4082948f8f002d971d7080796465
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 14 16:31:41 2018 +0000
TODO
commit a26782640f2006d5a47e7ba61de06eaf80b27754
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 14 16:25:57 2018 +0000
renamed: usr/share/applications/timesync-monitor.desktop -> usr/share/applications/sdwdate-gui.desktop
commit 930f1e7c71d7a4cda1c5c0e0ef2d5c385c8bd10c
Author: Patrick Schleizer <[email protected]>
Date: Thu Aug 9 21:10:42 2018 +0000
bumped changelog version
commit 76aca853280326e1e432ab758b269c5365d23fb7
Author: Patrick Schleizer <[email protected]>
Date: Thu Aug 9 21:09:40 2018 +0000
fix sdwdate restart
commit 2f15a9aaf8b2fab63e442b9f1ccb142d4137ff42
Author: troubadoour <[email protected]>
Date: Fri Jul 20 08:43:13 2018 +0000
Empty commit to trigger post_receive hooks after github message
commit 074169059ab04e3fd52d1559f5059d7d3af6350a
Merge: 4b8002e 2a11945
Author: Patrick Schleizer <[email protected]>
Date: Tue Jul 17 13:46:22 2018 +0800
Merge remote-tracking branch 'troubadoour/master' into sdwdate-gui-qubes
commit 2a1194510088018563b6709749024cae75737c96
Author: troubadoour <[email protected]>
Date: Mon Jul 16 19:32:39 2018 +0000
debian/control recommends + tor-control-panel
commit a7408345f1a6f89f29363694533036f06a260c5e
Author: troubadoour <[email protected]>
Date: Mon Jul 16 17:49:42 2018 +0000
Check if tor-control-panel is installed.
If not, do not start tor watcher, set tor status "running", disable tor actions.
commit 27814a9def88b5a0e2b0c0526981548ddfb1e807
Merge: 61a142c 4b8002e
Author: troubadour <[email protected]>
Date: Thu Jul 12 19:01:20 2018 +0000
Merge pull request #1 from adrelanos/sdwdate-gui-qubes
fixes systemd and tmpfiles
commit 4b8002e9c669138bfecece9418d6be34a451fab2
Author: Patrick Schleizer <[email protected]>
Date: Thu Jul 12 07:16:03 2018 +0000
systemd
commit 75b5d3235a88ecf8fee645875b30a493d6ed50d5
Author: Patrick Schleizer <[email protected]>
Date: Thu Jul 12 07:00:25 2018 +0000
fix
commit d260d0feec5da21d1a01ee1b52f7fce2619fa25d
Merge: 9ca966c 61a142c
Author: Patrick Schleizer <[email protected]>
Date: Thu Jul 12 14:51:48 2018 +0800
Merge remote-tracking branch 'troubadoour/master' into sdwdate-gui-qubes
commit 61a142c053279853e62e7bed72585ac25ca047a3
Merge: 89d378f 9ca966c
Author: troubadoour <[email protected]>
Date: Wed Jul 11 11:45:11 2018 +0000
Merge remote-tracking branch 'whonix/master'
commit 89d378fc8237af794b53d82efc587db02c7908eb
Author: troubadoour <[email protected]>
Date: Tue Jul 10 20:28:08 2018 +0000
handle killed or crashed anon vms
commit ac9b40ef59f8edbe6c6da782958d32165a31e8b9
Author: troubadoour <[email protected]>
Date: Fri Jul 6 20:00:31 2018 +0000
+ os.path.exists tor controller
commit 30265a36cf3bada2f01ec448b587cf505f81bcf3
Author: troubadoour <[email protected]>
Date: Fri Jul 6 14:31:48 2018 +0000
sort out icons
commit 30da11a8c427fa4523085bb7a7e4e8ad37d4e80a
Author: troubadoour <[email protected]>
Date: Thu Jul 5 13:30:21 2018 +0000
code simplification in submenu
commit a9f2eafa4c1f844a94ce924adff4f3bddd0ffcea
Author: troubadoour <[email protected]>
Date: Thu Jul 5 12:55:54 2018 +0000
update icons in sys-whonix submenu
commit 03443f473d7de5b5b9fb4dcf38a8655b27b9090c
Author: troubadoour <[email protected]>
Date: Thu Jul 5 11:25:38 2018 +0000
context menu revamping step 2
commit 1587160e4efe72a5c5cf7ce70ffa749c4595b049
Author: troubadoour <[email protected]>
Date: Wed Jul 4 21:12:13 2018 +0000
context menu revamping step 1
commit 9ca966c6021df629a12b908a1cb613407e28e253
Author: Patrick Schleizer <[email protected]>
Date: Thu Jun 21 03:17:29 2018 +0000
bumped changelog version
commit 57d143129efd7c831eb80337545059177e1142e3
Author: Patrick Schleizer <[email protected]>
Date: Thu Jun 21 03:16:33 2018 +0000
fix
commit 91dbbdef558ebdc4b005db87756456f8d7c68680
Author: Patrick Schleizer <[email protected]>
Date: Wed Jun 20 00:01:52 2018 +0000
bumped changelog version
commit f2fe3ed4ded405e1a65dcfc218a9d0c3ebe43310
Author: Patrick Schleizer <[email protected]>
Date: Wed Jun 20 00:00:45 2018 +0000
use pgrep rather than killall to fix lintian warning
commit 1dfc7851e8626a70687ce02b4b68363fe746776f
Author: Patrick Schleizer <[email protected]>
Date: Tue Jun 19 23:57:35 2018 +0000
bumped changelog version
commit 2ab86349ee50e1ccf02c108a07b91e5018430a09
Author: Patrick Schleizer <[email protected]>
Date: Tue Jun 19 23:56:20 2018 +0000
fix log viewer for Qubes R4
commit 6f1a9182c737ff6521f18d0749baf3d08fd4afec
Author: Patrick Schleizer <[email protected]>
Date: Tue Jun 19 23:19:51 2018 +0000
fix sudoers for logviewer
commit 0bef5367aa72b4674ceb52f2ad448e7fe40da9d0
Author: troubadoour <[email protected]>
Date: Sat Jun 16 19:50:23 2018 +0000
comment out 'watch anon vms'
commit d7e12123a2d3027c49a6c51b41ce70a26a8cad12
Author: troubadoour <[email protected]>
Date: Wed May 23 09:13:54 2018 +0000
move external functions inside class. detach tor-control-panel
commit 4799b50e1fc4d89624379879e7533ff209a60b0d
Author: troubadoour <[email protected]>
Date: Tue May 22 19:47:17 2018 +0000
watch anon vms, provisional #2
commit 42b3b2fbf0b3ee275c622f734b9be7a3c91663fd
Author: troubadoour <[email protected]>
Date: Sat May 19 21:11:41 2018 +0000
watch anon vms, provisional
commit 6d7c68e3c6d02b141d88e59580f8302d0e51a9b1
Author: troubadoour <[email protected]>
Date: Sat May 5 18:17:15 2018 +0000
do not register disposable wms in sys-whonix sdwdate-gui
commit 83e0663be9313eeabb050637f751ee224cb929d4
Author: troubadoour <[email protected]>
Date: Sun Apr 29 20:41:10 2018 +0000
cleanup
commit 8d12c006989a5f26a7b04fec96f85f3766c68236
Author: troubadoour <[email protected]>
Date: Wed Apr 18 20:02:29 2018 +0000
add close button in show_message
commit 1d9c872a280b43fc6afdbff0e8896e214a7a3cd0
Author: troubadoour <[email protected]>
Date: Sun Mar 18 23:11:16 2018 +0000
chase segmentation fault
commit c4f0d9eb43fd9fdb59ec2045d7add2e1c2b9b072
Author: troubadoour <[email protected]>
Date: Sun Mar 18 21:27:03 2018 +0000
import tor_status from tor_control_panel
commit c6fd0ec833220c0a0ee33c40373d820eea606770
Author: troubadoour <[email protected]>
Date: Sun Mar 4 19:40:50 2018 +0000
add tor-control-panel command
commit 9db0fe64134766c94c62211cb9fdcfc4d4e39701
Author: troubadoour <[email protected]>
Date: Sun Feb 18 19:02:43 2018 +0000
add tor status "disabled and running"
commit 3099d1b78d6bebceea4e9a46005bb5d224f3b219
Author: troubadoour <[email protected]>
Date: Fri Feb 16 22:00:59 2018 +0000
icons in show_message
resized and renamed sdwdate icons
commit 4ae6b88f616b5cdda3d4c638c37c109023dc22c8
Author: troubadoour <[email protected]>
Date: Tue Feb 13 22:27:56 2018 +0000
add tor status and known commands
commit 59cd768416c6da0d4cd451783538f292efba139a
Author: Patrick Schleizer <[email protected]>
Date: Mon Feb 5 18:02:22 2018 +0000
bumped changelog version
commit 225f64712018df3ccf81b6880a42fd0d45e31082
Author: Patrick Schleizer <[email protected]>
Date: Mon Feb 5 16:06:46 2018 +0000
kdesudo
commit a82967767ad29d39388f95ccd4a27fefb99532ed
Author: Patrick Schleizer <[email protected]>
Date: Mon Feb 5 14:18:20 2018 +0000
bumped changelog version
commit 964fcb62d1961b52f4b126cc427d429cf2475ef4
Author: Patrick Schleizer <[email protected]>
Date: Mon Feb 5 13:56:12 2018 +0000
permission lockdown and fixes after running under user sdwdate-gui
commit e743d1617348e94e3d2e0dca1ed5db06e67416f9
Author: troubadoour <[email protected]>
Date: Sun Feb 4 21:05:17 2018 +0000
check that executables exist for tor commands
commit b33e360ec57906c8b6acf9b8a30986874909cd63
Author: troubadoour <[email protected]>
Date: Sun Feb 4 19:43:26 2018 +0000
+ tor control in sys-whonix submenu
commit a8713a5191f741ad73c23f76f553fd36e5a0d2ea
Author: troubadoour <[email protected]>
Date: Sat Feb 3 21:58:23 2018 +0000
empty self.name in exception
commit a616360e2ff40f2809aa3e19dbcec1c3e9c7e288
Author: troubadoour <[email protected]>
Date: Sat Feb 3 20:56:49 2018 +0000
defensive code against qubes-db and qubes-qrexec-agent
commit 0e1579850b04c72402305cfa57b61ead0795553c
Author: troubadoour <[email protected]>
Date: Sat Feb 3 19:44:54 2018 +0000
Revert "defensive code against qubes-db and qubes-qrexec-agent"
This reverts commit b67d3995982cf0f18df37bd5e1c26d32d2a4c72b.
commit b67d3995982cf0f18df37bd5e1c26d32d2a4c72b
Author: troubadoour <[email protected]>
Date: Sat Feb 3 18:51:31 2018 +0000
defensive code against qubes-db and qubes-qrexec-agent
commit 1989b97a888b19a1020df97b8601755c650a0277
Author: troubadoour <[email protected]>
Date: Fri Feb 2 16:34:01 2018 +0000
typo
commit 6a186e02928e73c18a58033d52d3c88e239371d1
Author: troubadoour <[email protected]>
Date: Thu Feb 1 22:24:14 2018 +0000
chmod exec rpc scripts and notify-shutdown
commit 0e4786a97e07d8995b96358e8f4a51d4aa28d4d1
Author: troubadoour <[email protected]>
Date: Thu Feb 1 19:20:12 2018 +0000
new version including Qubes
commit c78f298865bcf375dd51aa9641b6e031ce641ab4
Author: Patrick Schleizer <[email protected]>
Date: Thu Feb 1 15:17:55 2018 +0000
bumped changelog version
commit beab8130acdd298112b20464142cf5129565a633
Author: Patrick Schleizer <[email protected]>
Date: Tue Jan 30 13:19:51 2018 +0000
fix
commit 7af46f7eb8f5f2c24174f3d6642792fe77746598
Author: Patrick Schleizer <[email protected]>
Date: Tue Jan 30 13:19:04 2018 +0000
quotes ; fuzzer
commit 263126d05114aa1607527f76b27169fbd9b208f4
Author: Patrick Schleizer <[email protected]>
Date: Tue Jan 30 12:46:33 2018 +0000
update fuzzzer
commit 730210f6feb6feb7981798117f86349206b6bb97
Author: Patrick Schleizer <[email protected]>
Date: Tue Jan 30 12:31:51 2018 +0000
run as user 'sdwdate-gui'
commit e65409708ecd72ed6a20275e2e8d3b8d564b7eed
Author: Patrick Schleizer <[email protected]>
Date: Tue Jan 30 12:28:38 2018 +0000
run as user 'sdwdate'