This repository has been archived by the owner on Apr 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
CHANGES
1813 lines (1792 loc) · 61.8 KB
/
CHANGES
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
------------------------------------------------------------
revno: 960
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Mon 2016-01-25 05:36:45 +0100
message:
Update HOWTO_RELEASE after doing the 1.7.4 release
------------------------------------------------------------
revno: 959
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Mon 2016-01-25 05:25:04 +0100
message:
Why do we want a CHANGES file anyway...?
------------------------------------------------------------
revno: 958
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Mon 2016-01-25 05:23:58 +0100
message:
Update NEWS with what comes to mind...
------------------------------------------------------------
revno: 957
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Mon 2016-01-25 04:58:07 +0100
message:
Update version number
------------------------------------------------------------
revno: 956
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Mon 2016-01-25 04:47:18 +0100
message:
wicd: Fix the parsing and writing of wep-hex configurations (launchpad bug #1419464)
Thanks, Axel Beckert from Debian!
***
Symptom: Can't connect to WEP based networks with hexadecimal keys
due to unexpanded template variables like $_KEY in the actual
wpa_supplicant configurations.
Solution: Move the appending of the line outside the loop over all
matches in one line.
Author: Axel Beckert <[email protected]>
Bug-Debian: https://bugs.debian.org/812427
Bug: https://bugs.launchpad.net/wicd/+bug/1419464
------------------------------------------------------------
revno: 955
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Tue 2016-01-19 05:12:12 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 954
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Wed 2015-12-16 05:16:23 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 953
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sun 2015-12-13 05:16:25 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 952
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sun 2015-11-22 05:13:57 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 951
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Tue 2015-10-20 05:17:37 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 950
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Thu 2015-10-08 05:29:24 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 949
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Thu 2015-09-24 05:16:28 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 948
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Wed 2015-09-23 05:52:15 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 947
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Mon 2015-04-27 05:11:32 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 946 [merge]
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Fri 2015-04-24 16:55:14 +0200
message:
IndicatorTrayIconGUI was missing the function "set_from_name" and also the icon path was wrong.
Thanks, Bastian Köcher!
------------------------------------------------------------
revno: 945
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Fri 2015-04-10 04:56:36 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 944
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sat 2015-03-14 05:14:30 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 943
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sun 2015-02-15 05:46:35 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 942
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Sat 2015-02-14 11:55:53 +0100
message:
Add AppIndicator support for Ubuntu's Unity
This fixes https://bugs.launchpad.net/wicd/+bug/761326
Credits go to Michael D. Adams (mdmkolbe), thanks!
------------------------------------------------------------
revno: 941 [merge]
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Sat 2015-02-14 11:44:03 +0100
message:
Add possibility to pass extra arguments to the DHCP client commands, and use this option when a global DNS server has been set, to avoid resolv.conf being overwritten by the DHCP client when receiving a DHCP reply that contains a DNS server.
This should fix https://bugs.launchpad.net/wicd/+bug/145405.
Credits for the original patch go to "Leonardo" :-)
Plus, translations...
------------------------------------------------------------
revno: 940
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Thu 2015-02-12 18:01:42 +0100
message:
Wireless network interface should only be auto-detected when nothing is specified in /etc/wicd/manager-settings.conf
If the user makes this empty, it will not be autodetected anymore.
------------------------------------------------------------
revno: 939
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Thu 2015-02-12 15:45:24 +0100
message:
Improve handling of None values in the configuration file
When wireless_interface is not filled in, it should be autodetected.
But because this is set to None, the autodetection fails...
------------------------------------------------------------
revno: 938
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Thu 2015-02-12 14:57:31 +0100
message:
Add author info
------------------------------------------------------------
revno: 937
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Thu 2015-02-12 14:12:37 +0100
message:
Improve names of encryption schemes
------------------------------------------------------------
revno: 936
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Thu 2015-02-12 13:44:32 +0100
message:
Fix scanning of hidden networks
------------------------------------------------------------
revno: 935 [merge]
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Thu 2015-02-12 12:46:06 +0100
message:
Merge
------------------------------------------------------------
revno: 934
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Thu 2015-02-12 12:43:18 +0100
message:
Improve debugging output
------------------------------------------------------------
revno: 933
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Sun 2014-12-21 21:21:04 +0100
message:
wicd: update CHANGES file by following new easy procedure
------------------------------------------------------------
revno: 932
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Sun 2014-12-21 21:20:27 +0100
message:
HOWTO_RELEASE: improve procedure for creating CHANGES file
------------------------------------------------------------
revno: 931
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Sun 2014-12-21 21:13:30 +0100
message:
wicd: add HOWTO_RELEASE file with documentation as a memory aid
------------------------------------------------------------
revno: 930 [merge]
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Sun 2014-12-21 21:00:48 +0100
message:
Improve .bzrignore
------------------------------------------------------------
revno: 929
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Sun 2014-12-21 20:57:09 +0100
message:
Replace old broken wicd.net URL by the Launchpad homepage
This is now consistent with the GTK wicd-client website URL.
------------------------------------------------------------
revno: 928
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Sun 2014-12-21 20:12:15 +0100
message:
Prepare files for the release of 1.7.3
------------------------------------------------------------
revno: 927
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Sun 2014-12-21 17:57:33 +0100
message:
wicd: update list of authors
------------------------------------------------------------
revno: 926
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Sun 2014-12-21 17:50:41 +0100
message:
wicd-curses: replace old broken wicd.net URL by the Launchpad homepage
This is now consistent with the GTK wicd-client website URL.
------------------------------------------------------------
revno: 925
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Sun 2014-12-21 17:41:22 +0100
message:
wicd-curses: fix the "About" window
The height was not enough to show all authors (David Paleino was missing).
I removed the (invisible) horizontal line as well for asthetic reasons.
------------------------------------------------------------
revno: 924
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Sat 2014-12-20 10:32:35 +0100
message:
wicd-curses: avoid setting the focus past the end of the list
------------------------------------------------------------
revno: 923
fixes bug: https://launchpad.net/bugs/1404142
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Sat 2014-12-20 10:07:12 +0100
message:
Add Hebrew translations of two Wicd desktop files (thanks, GenghisKhan)
------------------------------------------------------------
revno: 922
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sat 2014-12-20 05:35:19 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 921
fixes bug: https://launchpad.net/bugs/1061492
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Fri 2014-12-19 15:40:39 +0100
message:
wicd-curses: handle SIGQUIT signal so that we can leave the terminal in a normal state
Previously, the terminal would be left without a blinking cursor and with red text when the user pressed CTRL-\ or sent a SIGQUIT signal.
------------------------------------------------------------
revno: 920
fixes bug: https://launchpad.net/bugs/1159323
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Fri 2014-12-19 13:43:42 +0100
message:
wicd-curses: add support for "S" key to save instead of F10, because F10 is often intercepted by the terminal emulator
------------------------------------------------------------
revno: 919
fixes bug: https://launchpad.net/bugs/937737
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Fri 2014-12-19 11:52:22 +0100
message:
wicd-curses: catch unhandled exception when automatically starting the wicd daemon fails
------------------------------------------------------------
revno: 918
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Fri 2014-12-19 06:11:21 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 917 [merge]
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Thu 2014-12-11 14:50:12 +0100
message:
Merge "Javier P.L. 2013-12-06 allow wicd daemon to start even if /etc/resolv.conf is a relative symlink"
https://code.launchpad.net/~chilicuil/wicd/wicd/+merge/198057
Bugreports:
https://bugs.launchpad.net/wicd/+bug/1193856
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=691973
https://bugs.launchpad.net/wicd/+bug/1171296
------------------------------------------------------------
revno: 916 [merge]
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Thu 2014-12-11 13:41:56 +0100
message:
Merge "Ben the Pyrate 2014-08-19 The exit status should indicate whether or not the connection was successful"
Exit with a non-zero status (6) when a connection attempt does not succeed.
------------------------------------------------------------
revno: 915 [merge]
committer: Tom Van Braeckel <[email protected]>
branch nick: wicd
timestamp: Thu 2014-12-11 12:59:28 +0100
message:
Merge "Tom Van Braeckel 2014-11-05 Automatic reconnect: honour the automatic reconnect configuration, even if the GUI interface is open"
------------------------------------------------------------
revno: 914
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Tue 2014-10-14 06:18:04 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 913
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Mon 2014-10-13 05:52:29 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 912
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Tue 2014-07-29 06:25:27 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 911
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Fri 2014-07-04 05:59:54 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 910
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Thu 2014-07-03 05:41:16 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 909
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Tue 2014-06-24 06:11:01 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 908
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Tue 2014-06-17 06:16:21 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 907
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Thu 2014-06-05 05:47:20 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 906
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Fri 2014-05-23 08:21:37 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 905
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Thu 2014-05-15 05:57:15 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 904
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Mon 2014-03-31 05:58:17 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 903
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sun 2014-03-23 06:26:34 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 902
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sat 2014-03-22 06:44:04 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 901
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Mon 2014-03-10 05:51:54 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 900
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sat 2014-01-11 05:52:11 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 899
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sat 2013-12-21 06:02:28 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 898
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Thu 2013-12-05 05:50:13 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 897
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Wed 2013-11-27 05:09:59 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 896
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sat 2013-11-23 06:10:36 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 895
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Mon 2013-10-07 05:29:46 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 894
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Tue 2013-10-01 05:23:55 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 893
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sat 2013-09-07 05:09:38 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 892
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sun 2013-07-28 05:58:32 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 891
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Tue 2013-07-23 05:05:25 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 890
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sat 2013-07-06 06:03:03 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 889
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Thu 2013-06-27 05:51:44 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 888
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Fri 2013-06-21 05:40:56 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 887
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sun 2013-06-16 04:48:50 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 886
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Fri 2013-06-14 05:58:56 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 885
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Mon 2013-06-03 06:06:33 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 884
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sun 2013-06-02 05:32:02 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 883
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Mon 2013-05-27 05:26:24 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 882
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Tue 2013-05-21 04:56:44 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 881
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Mon 2013-05-06 05:43:34 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 880
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Tue 2013-04-30 05:42:16 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 879
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sun 2013-04-28 04:41:31 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 878
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sat 2013-04-27 06:01:49 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 877
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Fri 2013-04-26 05:43:56 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 876
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Wed 2013-04-24 04:52:29 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 875
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Wed 2013-04-17 05:27:28 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 874
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Fri 2013-03-01 04:54:26 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 873
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sat 2013-02-23 05:40:17 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 872
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Sun 2013-02-17 12:53:20 +0100
message:
Fix typo in manpage.
------------------------------------------------------------
revno: 871
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Fri 2013-02-15 22:30:48 +0100
message:
Don't try to set wireless bitrate to "autoM"
------------------------------------------------------------
revno: 870
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sat 2013-02-02 05:13:29 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 869
fixes bug: https://launchpad.net/bugs/1098978
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Fri 2013-02-01 22:14:15 +0100
message:
Change behaviour when dealing with hostnames: don't send any if the user didn't tick the box (previously, the current system name was sent).
------------------------------------------------------------
revno: 868 [merge]
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Fri 2013-02-01 21:44:07 +0100
message:
Merge LP translations
------------------------------------------------------------
revno: 867
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Wed 2013-01-23 22:00:58 +0100
message:
Add wpa-psk-hex template, merged from Gentoo
------------------------------------------------------------
revno: 866
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Wed 2013-01-23 21:59:42 +0100
message:
Fix Gentoo initscript
------------------------------------------------------------
revno: 865
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Wed 2013-01-23 21:20:27 +0100
message:
Make sure we don't die if the kernel doesn't support some socket family
------------------------------------------------------------
revno: 864
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Wed 2013-01-23 20:38:10 +0100
message:
Change homepage to Launchpad
------------------------------------------------------------
revno: 863
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Wed 2013-01-23 05:10:03 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 862
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Tue 2013-01-22 04:57:36 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 861
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Mon 2013-01-21 04:50:59 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 860
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sun 2013-01-06 04:59:25 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 859
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sat 2013-01-05 05:13:16 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 858
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Sun 2012-12-02 04:43:55 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 857 [merge]
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Sat 2012-12-01 10:28:59 +0100
message:
Merge translations
------------------------------------------------------------
revno: 856
fixes bug: https://launchpad.net/bugs/397172
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Sat 2012-12-01 10:27:50 +0100
message:
Enable/disable the "Disconnect all" button depending on the current connection state
------------------------------------------------------------
revno: 855
fixes bug: https://launchpad.net/bugs/1084074
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Wed 2012-11-28 16:54:31 +0100
message:
Autofill common subnet masks for private networks
------------------------------------------------------------
revno: 854 [merge]
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Wed 2012-11-28 16:29:04 +0100
message:
Merge translations
------------------------------------------------------------
revno: 853
fixes bug: https://launchpad.net/bugs/1082618
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Wed 2012-11-28 16:28:11 +0100
message:
Added gnome-shell extension
------------------------------------------------------------
revno: 852
fixes bug: https://launchpad.net/bugs/1081854
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Thu 2012-11-22 09:02:04 +0100
message:
Specify DBus signature (useful when list is empty)
------------------------------------------------------------
revno: 851
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Wed 2012-11-21 18:35:35 +0100
message:
Change defaul behaviour: now wicd kills connections when is shutdown. This behaviour can be overriden with -c/--keep-connection (to the daemon).
------------------------------------------------------------
revno: 850
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Sun 2012-11-18 09:25:58 +0100
message:
More fixes to the themeability of wicd
------------------------------------------------------------
revno: 849
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Sun 2012-11-18 09:02:32 +0100
message:
Usability issue: move "Refresh" button at first position, so to avoid accidental press of "Shut off Wifi"
------------------------------------------------------------
revno: 848
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Sun 2012-11-18 00:45:46 +0100
message:
Fix (probably? needs further testing) bug with themeability
------------------------------------------------------------
revno: 847
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Sun 2012-11-18 00:18:22 +0100
message:
Localization fix.
------------------------------------------------------------
revno: 846
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Sun 2012-11-18 00:15:22 +0100
message:
Improve checking of input values
------------------------------------------------------------
revno: 845
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Sun 2012-11-18 00:15:04 +0100
message:
Fix bug in configmanager, due to pylint-related edits
------------------------------------------------------------
revno: 844
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Sat 2012-11-17 22:46:44 +0100
message:
Fix MANIFEST.in to properly generate the tarball
------------------------------------------------------------
revno: 843
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Sat 2012-11-17 19:12:25 +0100
message:
More pylint fixes
------------------------------------------------------------
revno: 842
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Sat 2012-11-17 19:11:11 +0100
message:
Disable more messages in pylint
------------------------------------------------------------
revno: 841
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Sat 2012-11-17 01:07:25 +0100
message:
Added pylintrc config file
------------------------------------------------------------
revno: 840
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Sat 2012-11-17 01:07:08 +0100
message:
Fix some issues by pylint
------------------------------------------------------------
revno: 839
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Fri 2012-11-16 21:27:34 +0100
message:
Fix typo
------------------------------------------------------------
revno: 838
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Fri 2012-11-16 21:22:22 +0100
message:
More fixes to the tests, don't rely on wlan0 being always present
------------------------------------------------------------
revno: 837
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Fri 2012-11-16 21:02:06 +0100
message:
Fix bug within GetWirelessInterfaces()
------------------------------------------------------------
revno: 836
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Fri 2012-11-16 21:01:57 +0100
message:
Fix testsuite
------------------------------------------------------------
revno: 835
fixes bug: https://launchpad.net/bugs/1075399
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Fri 2012-11-16 10:22:47 +0100
message:
Really fix urwid 1.1.0 compatibility
------------------------------------------------------------
revno: 834
fixes bug: https://launchpad.net/bugs/485532
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Thu 2012-11-15 17:47:58 +0100
message:
Fixed issues with positioning of the tray popup menu
------------------------------------------------------------
revno: 833
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Thu 2012-11-15 17:15:02 +0100
message:
Little remnant of the themeability patch
------------------------------------------------------------
revno: 832
fixes bug: https://launchpad.net/bugs/488242
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Thu 2012-11-15 16:38:06 +0100
message:
Support icon themes in WICD -- we still miss most sizes for most icons, but it's a start.
------------------------------------------------------------
revno: 831
fixes bug: https://launchpad.net/bugs/1075399
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Thu 2012-11-15 10:26:21 +0100
message:
Support urwid 1.1.0
------------------------------------------------------------
revno: 830
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Thu 2012-11-15 09:48:54 +0100
message:
Reliably detect the wireless interface. Thank to Markus Fuchs for investigations and patch. (LP: #415719)
------------------------------------------------------------
revno: 829
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Tue 2012-11-13 05:23:57 +0000
message:
Launchpad automatic translations update.
------------------------------------------------------------
revno: 828
fixes bug: https://launchpad.net/bugs/1075724
committer: David Paleino <[email protected]>
branch nick: wicd
timestamp: Tue 2012-11-06 21:25:25 +0100
message:
Fix wrong syntax when saving connection scripts
------------------------------------------------------------
revno: 827
committer: Launchpad Translations on behalf of wicd-devel
branch nick: wicd
timestamp: Tue 2012-11-06 04:54:06 +0000
message:
Launchpad automatic translations update.