~cyphermox/network-manager-applet/misc-fixes

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
network-manager-applet (0.8.999+git.20110523t134536.bb7ef97-0ubuntu1) UNRELEASED; urgency=low

  * upstream snapshot 2011-05-23 13:45:36 (GMT)
    + bb7ef97a6c9ca604d261a9a8d1092e9d6d2e4f8d
    - applet: fix leak in import/upgrade code (LP: #784756)
  * debian/rules: switch back to git "master" branch.
  * debian/patches/0001-applet-fix-possibly-uninitialized-variable.patch: drop,
    this is fixed upstream.
  * debian/patches/04-autostart.patch: refreshed.
  * debian/patches/20_use_full_vpn_dialog_service_name_path.patch: refreshed.
  * debian/patches/lp328572-dxteam-connect-text.patch: refreshed.
  * debian/patches/lp337960_dxteam_notification_icon_names.diff: refreshed.
  * debian/patches/lp341684_device_sensitive_disconnect_notify.patch: refresh.
  * debian/patches/lp460144_correctly_update_notification.patch: refreshed.
  * debian/patches/lp341684_device_sensitive_disconnect_notify.patch: refresh.
  * debian/patches/lp358526_generic_disconnected_notification_icon.patch:
    refreshed.
  * debian/patches/nm-applet-use-indicator.patch: refreshed and modified to
    build with GTK3 appindicator.
    - properly free icon_name for indicators (LP: #724554), thanks JKL.
    - fix leak in applet_menu_item_add_complex_separator_helper due to new'ing
      a GtkSeparatorMenuItem on top of a GtkImageMenuItem (LP: #784711).
  * debian/control:
    - Bump Build-Depends to libappindicator3-dev.
    - Update Build-Depends for GTK to libgtk-3-dev.
    - Bump network-manager and libnm Depends and Build-Depends to 0.8.998.
  * debian/rules, debian/patches/series: pass --libexecdir to configure, which
    now renders the patch 20_use_full_vpn_dialog_service_name_path.patch
    unnecessary, so we're dropping it.
  * debian/patches/20_use_full_vpn_dialog_service_name_path.patch: dropped,
    see above.

 -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com>  Fri, 27 May 2011 15:23:28 -0400

network-manager-applet (0.8.4-0ubuntu1) oneiric; urgency=low

  * New upstream release 0.8.4.
  * debian/source/format: migrate to debian source format 3.0 (quilt).
  * debian/control: sync with Debian's changes:
    - drop a bunch of old, unnecessary build dependencies.
    - keep in Build-Depends: libiw-dev, libxml-parser-perl, libnss3-dev,
      libappindicator-dev
    - add to Build-Depends: dh-autoreconf and libnm-glib-vpn-dev.
    - network-manager-gnome: specify package's Section as gnome.
    - network-manager-gnome: add policykt-1-gnome, gnome-icon-theme, dbus-x11
      to Depends.
    - network-manager-gnome: now Recommends gnome-bluetooth.
    - network-manager-gnome: add Suggests for the VPN plugins.
    - adjust network-manager-gnome long description to match Debian's.
    - bump Standards-Version to 3.9.2.
  * debian/compat: bump to compat level 8.
  * debian/copyright: sync with Debian's copyright file.
  * debian/rules:
    - migrate to dh instead of CDBS.
    - use dh-autoreconf to reconfigure the build tree.
    - drop old dapper-to-intrepid and karmic-to-lucid workarounds for icon
      changes.
    - we switch to using png icons directly instead of uuencoded png files; so
      remove the uudecode parts that are no longer necessary.
    - don't empty aclocal.m4.
    - do some extra cleanup of files left behind by the build process.
    - drop configure parameters --with-mbca, --with-nss, --without-gnutls.
  * debian/icons/22/*: replace uuencoded png icons by their original, decoded
    versions.
  * debian/source/include-binaries: add .png icons to included-binaries.
  * debian/network-manager-gnome.README.Debian: include Debian's README.Debian
    file for network-manager-gnome, minus the part about using the netdev user.
  * debian/network-manager-gnome.docs: install NEWS from upstream.
  * Fix the manpage so it actually gets installed:
    - Rename network-manager-applet.manpages to network-manager-gnome.manpages.
    - Sync nm-applet.sgml with the file from Debian.
  * debian/patches/04-autostart.patch,
    debian/patches/lp268803_xdg_autostart_gnome_xfce_only.patch,
    debian/patches/lp295788_xfce_menu_entry.patch:
    Install the 04-autostart.patch patch, editing the .desktop files from
    Debian and adjust it to also replace OnlyShowIn with NotShowIn=KDE for
    nm-connection-editor. This renders the two other patches obsolete, so
    drop them. Also fixes (LP: #753300).
  * debian/patches/0001-applet-fix-possibly-uninitialized-variable.patch:
    Include that patch from Debian which fixes a potential FTBFS.
    - This makes debian/patches/applet-dialog-uninited-method.patch obsolete.
  * debian/patches/lp328572-dxteam-connect-text.patch: refreshed so it applies
    cleanly.
  * debian/patches/lp330608_dxteam_gsm_connect_text.patch: refreshed so it
    applies cleanly.
  * debian/patches/lp341684_device_sensitive_disconnect_notify.patch: refreshed
    so it applies cleanly.

 -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com>  Wed, 18 May 2011 14:50:06 -0400

network-manager-applet (0.8.4~git.20110318t152954.9c4c9a0-0ubuntu1) natty; urgency=low

  * upstream snapshot 2011-03-18 15:29:54 (GMT)
    + 9c4c9a0f689fa3920b7b083f04479fc094cdbec2
    - release: bump version to 0.8.3.998 (0.8.4-rc1)
    - gconf: fix accessing freed memory
    - applet: don't overwrite already-migrated certificate paths (rh #682288)
    - release: bump version to 0.8.3.997 (0.8.4-beta3)
    - eap: make DER certificate checking code endian-safe
    - Updated Polish translation
    - applet: update about dialog copyright to 2011
  * debian/patches/nm-applet-use-indicator.patch,
    debian/patches/indicator-accessible-desc.patch,
    debian/patches/series:
    Fold in accessible descriptions in the general indicator patch.
  * debian/patches/nm-applet-use-indicator.patch: rework patch for inclusion in
    nm-applet proper, following recommendations from Dan Williams.
  * debian/patches/nm-applet-use-indicator.patch: don't escape underscores in
    SSIDs. (LP: #739490)
  * debian/control: bump network-manager, libnm-glib2 and libnm-util1
    Build-Depends to 0.8.4~.
  * debian/control: bump network-manager Depends to 0.8.4~.

 -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com>  Wed, 23 Mar 2011 16:00:42 -0400

network-manager-applet (0.8.4~git.20110228t141430.abba62f-0ubuntu1) natty; urgency=low

  * upstream snapshot 2011-02-28 14:14:30 (GMT)
    + abba62fe1c22422bb84f12875fd3612b90ead434
    - editor: fix usage of nm_connection_update_secrets() (LP: #721071)
    - release: bump version to 0.8.3.996 (0.8.4-beta2)
    - mobile: fix path to GtkBuilder file
    - applet: blacklist "Free Public Wifi" (LP: #659461)
    - applet: consolidate manufacturer default SSID lists
    - release: bump version to 0.8.3.995 (0.8.4-beta1)
    - release: update NEWS with changes since 0.8.2
    - editor: remove unused argument from CEPage 'initialized' signal
    - bluetooth: don't create empty plugin dirs when disabled (bgo #641300)
    - Updated Polish translation
  * debian/patches/nm-applet-use-indicator.patch: Further update indicator
    patch to fix memory leaks in get_best_icon_name_for_ap(). (LP: #724554)
  * debian/patches/nm-applet-use-indicator.patch: Set indicator icon for mobile
    according to the connection's current signal strength (LP: #726669)
  * debian/patches/indicator-accessible-desc.patch: provide accessible
    descriptions for the various icons and devices states for NetworkManager
    (LP: #719736)

 -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com>  Fri, 04 Mar 2011 15:05:58 -0500

network-manager-applet (0.8.3+git.20110203t003354.9bf0b98-0ubuntu1) natty; urgency=low

  * upstream snapshot 2011-02-03 00:33:54 (GMT)
    + 9bf0b98073bee4905bb00b4658d8fd78c84a831f
  * debian/control: Drop the mobile-broadband-provider-info dependency to a
    Recommends. (LP: #582404)
  * debian/patches/nm-applet-use-indicator.patch: revert Flight Mode, it's
    confusing users and not accurate; plus doesn't allow re-enabling just wifi
    from flight mode (when flights allow wifi, for instance)
    (LP: #704295, #712122)
  * debian/patches/nm-applet-use-indicator.patch: disconnect a VPN connection
    when it's activated and its GtkCheckMenuItem is clicked. (LP: #701004)
  * debian/patches/applet-wifi-menu-before-vpn.patch: move Connect to Hidden,
    Create New wireless items below the VPN submenu.
  * debian/control: bump Standards-Version to 3.9.1.
  * debian/control: move Homepage to its own field.

 -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com>  Tue, 15 Feb 2011 09:53:22 -0500

network-manager-applet (0.8.3+git.20110114t131931.fd589a7-0ubuntu5) natty; urgency=low

  * debian/patches/nm-applet-use-indicator.patch: do not add the About menu
    item.

 -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com>  Fri, 28 Jan 2011 14:14:35 -0500

network-manager-applet (0.8.3+git.20110114t131931.fd589a7-0ubuntu4) natty; urgency=low

  * debian/patches/nm-applet-use-indicator.patch: Unbreak CDMA modems: the piece
    of code added to workaround mobile disable not working shows CDMA as always
    disabled. (LP: #705196)

 -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com>  Thu, 27 Jan 2011 12:54:17 -0500

network-manager-applet (0.8.3+git.20110114t131931.fd589a7-0ubuntu3) natty; urgency=low

  * Ship fallback icons for the new *-secure icons we need (as well as links
    for the 3g ones).
    - update debian/rules
    - add debian/icons/22/nm-device-wired-secure.png.uue
    - add debian/icons/22/nm-signal-00-secure.png.uue
    - add debian/icons/22/nm-signal-25-secure.png.uue
    - add debian/icons/22/nm-signal-50-secure.png.uue
    - add debian/icons/22/nm-signal-75-secure.png.uue
    - add debian/icons/22/nm-signal-100-secure.png.uue

 -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com>  Thu, 20 Jan 2011 17:06:37 -0500

network-manager-applet (0.8.3+git.20110114t131931.fd589a7-0ubuntu2) natty; urgency=low

  * debian/patches/nm-applet-use-indicator.patch: Fix memory leak in
    escape_mnemonics().

 -- Anders Kaseorg <andersk@mit.edu>  Wed, 19 Jan 2011 15:29:52 -0500

network-manager-applet (0.8.3+git.20110114t131931.fd589a7-0ubuntu1) natty; urgency=low

  * upstream snapshot 2011-01-14 13:19:31 (GMT)
    + fd589a743f2484dd19495951cb1d498b8902ff4b
    - applet: show IPv6 stuff in Connection information window
    - mobile-wizard: use "Country or region" term (bgo #618511)
  * Collapse the Enable networking, wireless, mobile broadband into just one
    menu item (Flight mode), which toggles all radio-based systems (everything
    but wired).
  * Clean up some of the separations by removing the "Available" items,
    turning it into a plain separator.
  * Do some further rework of the indicator patch: dispatch menu rebuilds only
    when no other events are happening, which should reduce the number of
    spurious errors messages in .xsession-errors.
  * Drop the patch for fixing races in getting enable/disable permissions; it's
    been upstream for a long while (was a backport).
    - deleted debian/patches/lp637930_fix_race_in_permissions-changed.patch
  * Fix an uninitialized variable in the new code to show IPv6 address info in
    the Connection Information dialog.
    - added debian/patches/applet-dialog-uninited-method.patch
    - updated debian/patches/series

 -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com>  Mon, 17 Jan 2011 14:53:13 -0500

network-manager-applet (0.8.3+git.20101209t081952.0330eca-0ubuntu3) natty; urgency=low

  * Re-instate animations while processing network association phases, it tends
    to be annoying and confusing without them. (LP: #694534)
  * Provide and use premade theme icons for wireless strength *with security*,
    which include the padlock already composited.
    - Enable icons in menus for wireless strength and security. (LP: #683896)
    - Re-use the same icons to notify the user that they are connected to a
      VPN-secured connection. (LP: #696442)
  * Clean up code paths for GSM and CDMA devices which still tried to create
    a custom widget to add to the menu -- replaced it with a simple image
    menu item.
  * Escape underscores in SSID names so they display with the correct name
    rather than underlining the next character (as a mnemonic).

 -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com>  Fri, 07 Jan 2011 12:52:06 -0500

network-manager-applet (0.8.3+git.20101209t081952.0330eca-0ubuntu2) natty; urgency=low

  * Update indicator patch to not re-create the menu on a device-added signal,
    only on state-changed (which gets called anyway). This should fix the crash
    for GSM/CDMA devices when they are plugged in as nm-applet starts.
    (LP: #692234)
    - update debian/patches/nm-applet-use-indicator.patch

 -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com>  Mon, 20 Dec 2010 14:51:52 -0500

network-manager-applet (0.8.3+git.20101209t081952.0330eca-0ubuntu1) natty; urgency=low

  * upstream snapshot 2010-12-09 08:19:52 (GMT)
    + 0330ecae2eec0d4dfccd57921f1992b8e245e2da
    - core: convert to GtkBuilder (bgo #625248)
    - when no VPN plugin is installed, indicate that in the tooltip of "Add" button
  * Refresh notifications update patch, which needed some rework due to upstream
    libnotify >= 0.7 fixes.
    - update debian/patches/lp460144_correctly_update_notification.patch
  * Rip out some more GtkImageMenuItems from the indicator menus, since they tend
    to cause spewage of Glib/Gtk errors on .xsession-errors. They do not show on
    a default install anyway. Also refresh the patch for libnotify changes.
    - update debian/patches/nm-applet-use-indicator.patch
  * Switch from regularly updating the menus to doing it "on-demand", by following
    the signals sent from NetworkManager on device state changes.
    - update debian/patches/nm-applet-use-indicator.patch
  * More changes to indicator patch for making sure allocated memory gets freed.
    - update debian/patches/nm-applet-use-indicator.patch

 -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com>  Fri, 10 Dec 2010 17:51:44 -0500

network-manager-applet (0.8.2+git.20101123t161608.f143e76-0ubuntu1) natty; urgency=low

  * upstream snapshot 2010-11-23 16:16:08 (GMT)
    + f143e7629749acdb20de072372fbd471ec2c19a8
  * Refreshed debian/patches/lp295788_xfce_menu_entry.patch
  * Refreshed debian/patches/lp337960_dxteam_notification_icon_names.diff
  * Refreshed debian/patches/lp341684_device_sensitive_disconnect_notify.patch
  * more workflow updates to get the daily builds to work with different branches
    - update debian/rules
  * Now draw the applet and applet's menus using libappindicator.
    - add debian/patches/nm-applet-use-indicator.patch
    - update debian/patches/series
  * Explicitly turn on libappindicator support with --enable-indicator.
    - update debian/rules
  * Add Build-Depends for libappindicator-dev
    - update debian/control

 -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com>  Mon, 29 Nov 2010 10:38:51 -0500

network-manager-applet (0.8.1+git.20100809t190028.290dc70-0ubuntu3) maverick; urgency=low

  * Cherry-pick upstream commit c7b5312 to fix greyed-out Enable Networking items in
    context menu (LP: #637930)
    - added debian/patches/lp637930_fix_race_in_permissions-changed.patch
    - modified debian/patches/series

 -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com>  Thu, 16 Sep 2010 10:23:15 -0400

network-manager-applet (0.8.1+git.20100809t190028.290dc70-0ubuntu2) maverick; urgency=low

  * Bump Build-Depends for network-manager-dev, libnm-glib-dev, libnm-util-dev
    to be >= 0.8.1.
    - update debian/control

 -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com>  Wed, 11 Aug 2010 10:48:13 -0400

network-manager-applet (0.8.1+git.20100809t190028.290dc70-0ubuntu1) maverick; urgency=low

  * upstream snapshot 2010-08-09 19:00:28 (GMT)
    + 290dc707f2076135eac02ed2d975912cb1ae80ce
  * update debian/rules:
    - switch GIT_BRANCH to NMA_0_8, be conservative: only track 0.8.1 for now.
    - update get-orig-source/branch code to properly deal with branch switch.
  * refresh the device disconnection notification patch, update to new code base
    - updated debian/patches/lp341684_device_sensitive_disconnect_notify.patch
  * refreshed vpn service name patch, update to new code base
    - updated debian/patches/20_use_full_vpn_dialog_service_name_path.patch 
  * delete lazy icon loading patch from seb128, it's applied upstream
    - deleted debian/patches/bgo609134_lazy_icons.patch
    - updated debian/patches/series 
  * delete lazy notification capabilities checking from pitti: applied upstream
    - deleted debian/patches/bgo610881_lazy_init_notify_caps.patch
    - updated debian/patches/series 
  * bump DEB_AUTO_UPDATE_ACLOCAL and DEB_AUTO_UPDATE_AUTOMAKE to 1.11
    - update debian/rules
  * refreshed the patch to always show the tray icon
    - update debian/patches/lp289466_always_show_tray_icon.patch

 -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com>  Wed, 11 Aug 2010 10:09:37 -0400

network-manager-applet (0.8-0ubuntu3) lucid; urgency=low

  [ Mirco MĂĽller (MacSlow) <mirco.mueller@ubuntu.com> ]
  * Make nm-applet correctly update a notification, if the connection-status
    has changed. This avoids displaying obsolete notifications to the user, 
    which no longer reflect the correct connection-status. Fixes LP: #460144
    - add debian/patches/lp460144_correctly_update_notification.patch
    - update debian/patches/series

  [ Chris Coulson <chris.coulson@canonical.com ]
  * Update bgo609134_lazy_icons.patch with the change actually committed
    to GIT

 -- Alexander Sack <asac@ubuntu.com>  Tue, 30 Mar 2010 10:39:18 +0200

network-manager-applet (0.8-0ubuntu2) lucid; urgency=low

  * Add bgo610881_lazy_init_notify_caps.patch: Defer querying notification
    server capabilities until needed, to avoid starting notify-osd on desktop
    startup.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Tue, 23 Feb 2010 23:22:23 +0100

network-manager-applet (0.8-0ubuntu1) lucid; urgency=low

  [ Tony Espy <espy@ubuntu.com> ]
  * drop string change revert_* patches, as full SRU for Karmic
    was rejected.
    - remove debian/patches/revert_more_networks.patch
    - remove debian/patches/revert_disable_notifications.patch
    - remove debian/patches/revert_country_not_listed.patch
    - remove debian/patches/revert_cleartext_priv_keys.patch
    - remove debian/patches/revert_enable_broadband.patch
    - update debian/series

  [ Mathieu Trudel <mathieu-tl@ubuntu.com> ]
  * upstream release 0.8
    - core: add --help to explain what nm-applet is/does (rh #494641)
    - core: clearer failure message when an applet is already running
    - wired: don't crash when getting 802.1x settings from the user (rh #556763)
    - info: don't crash on various D-Bus property errors (rh #557007)
    - core: fix clearing secrets when updating connections
    - build: link nm-connection-editor with libm for ceil() (rh #541353)
    - gsm: fix secret requests when connection has multiple secrets
  * bump build-depends to >= 0.8 to build with 0.8 final.
    - update debian/control

  [ Michael Vogt <mvo@ubuntu.com> ]
  * debian/rules, debian/icons/22/nm-active-device.png.uue:
    - install icon so that on upgrade the old applet can
      still find it and not error out (LP: #518760)

  [ Sebastien Bacher <seb128@ubuntu.com> ]
  * lazily load icons for using less cpu on login
    - add debian/patches/bgo609134_lazy_icons.patch
    - update debian/patches/series

 -- Mathieu Trudel <mathieu-tl@ubuntu.com>  Fri, 19 Feb 2010 08:34:28 -0500

network-manager-applet (0.8~rc2-0ubuntu1) lucid; urgency=low

  * upstream snapshot 2009-11-12 07:27:27 (GMT)
    + 4162285fd7c53e8b684e1c1513a2ba6ce865e073

  * upstream 0.8-rc1 release
      - applet: don't crash if we can't get some ActiveConnection attrs (rh: #545011)
      - editor: serialize PolicyKit auth requests (rh #462944) (LP: #462944)
      - applet: don't crash if wireless dialog goes away quickly (rh #542617)
      - eap: handle PEM files without and ending newline (rh #507315)
      - tls: require password-protected private keys
      - applet: fix connecting to system connections from wireless dialog
      - menu: show BT connections when no other devices available (rh #532049)
      - applet: don't assert when auto connections can't be made (rh #532680)
      - editor: fix various IP page tooltips (bgo #595287)
      - applet: fix animation issues
      - mobile-wizard: add a "My Country is not listed" option (rh #530981) (bgo #599705)
      - applet: fix issues with icon loading when panel is slow to resize (rh #529766)
      - applet: Connect to Hidden doesn't work for non-New networks (LP: #446394)
      - applet: nm-applet does not start at login (LP: #146896)

  * upstream 0.8-rc2 release
    - editor: protect against invalid CEPolkitButton objects (rh #549579)
    - menu: ensure active menu item is valid before trying to use it (rh #546901) 
    - editor: fix bad assignment
    - core: add "Enable Mobile Broadband" menu item
    - applet: escape notification text


  [ Mathieu Trudel <mathieu.tl@gmail.com> ]
  * updated device sensitive disconnect notification patch
    - update debian/patches/lp341684_device_sensitive_disconnect_notify.patch

  [ Tony Espy <espy@ubuntu.com> ]
  * add logic to map '~rc' versions to '-rc' tag format used upstream.  This
    allows the upstream tags to be used, while managing to keep the version
    numbers less than the final release version.
    - update debian/rules
  * update build and runtime depends for network-manager to >= 0.8~rc2
    - update debian/control
  * backout string changes in preparation for SRU
    - add deb/debian/patches/revert_more_networks.patch
    - add deb/debian/patches/revert_disable_notifications.patch
    - add deb/debian/patches/revert_country_not_listed.patch
    - add deb/debian/patches/revert_cleartext_priv_keys.patch	
    - add deb/debian/patches/revert_enable_broadband.patch		
    - update debian/series

 -- Tony Espy <espy@ubuntu.com>  Wed, 20 Jan 2010 10:16:56 -0500

network-manager-applet (0.8~a~git.20091014t134532.4033e62-0ubuntu1) karmic; urgency=low

  * upstream snapshot for karmic-RC 2009-10-14 13:45:32 (GMT)
    + 4033e623f7af571d38281f5fb6ab28a77bfe2220 
    - core: don't crash if we can't get active connection properties from NM (LP: #430535)
    - gconf: restore 0.7 notification behavior defaults (LP: #444561)

 -- Alexander Sack <asac@ubuntu.com>  Thu, 15 Oct 2009 00:34:03 +0200

network-manager-applet (0.8~a~git.20091002t194214.8515a07-0ubuntu1) karmic; urgency=low

  * upstream snapshot 2009-10-02 19:42:14 (GMT)
    + 8515a07e507847c4372fe8f95bddf57aea66acd5
  * fixed upstream
    - LP: #285219 - Critical warning while running nm-connection-editor
    - LP: #442988 - network manager mobile broadband does not remember username
      and password
    - LP: #439956 - Cannot set manual IP and DNS with nm-connection-editor
    - LP: #438160 - nm-applet loses ipv4 configuration
    - LP: #431265 - Network Manager can't connect to hidden wireless networks
    - LP: #443049 - MASTER nm-connection-editor crashed with SIGSEGV in get_permissions_cb 
    - LP: #438374 - Failure to retain edited MTU value 
    - LP: #436839 - Disconnect menu option looks like wireless network

  [ Tony Espy <espy@ubuntu.com> ]
  * drop wifi toplevel_sort patch that was committed upstream
    - delete debian/patches/wifi_toplevel_ap_sort.patch
    - update debian/patches/series 

  [ Alexander Sack <asac@ubuntu.com> ]
  * drop preview patch that was committed upstream
    - delete debian/patches/nm08-applet-preview.patch
    - update debian/patches/series
  * require network-manager and libnm-* >= 0.8~a~git.20090930t162132
    - update debian/control
  * adjust patches to new upstream code base
    - update debian/patches/lp341684_device_sensitive_disconnect_notify.patch
  * (re-)sort wifi toplevel AP list alphabetically before adding to menu
    - add debian/patches/toplevel_sort.patch
    - update debian/patches/series
  * rebuild against latest NM after padding additions to libnm-* APIs
    - update debian/control

 -- Alexander Sack <asac@ubuntu.com>  Mon, 05 Oct 2009 23:45:07 +0200

network-manager-applet (0.8~a~git.20090923t220421.1ac8ffd-0ubuntu4) karmic; urgency=low

  * LP: #436061 - fix nm-applet crash when no APs in proximity; drop assert on a GList, which
    explicitly can be NULL.
    - update debian/patches/nm08-applet-preview.patch
  * LP: #436179 - nm-applet assert failure: ERROR:applet.c:481:applet_menu_item_favorize_helper:
    assertion failed: (favoritePixbuf); simply return with warning if favorize helper is invoked
    without a favorite pixbuf
    - update debian/patches/nm08-applet-preview.patch
  * important UI tweaks for karmic beta: 1. don't use an icon to indicate favorites/known
    connections - the heart was just too ugly; 2. dont put "Active" separator above the
    current active connection; in turn we make the current AP bold; 3. increase xpadding for
    title items (e.g. Wireless Networks) to 10.0; 4. do not visualize all visible connections
    as active if a device is disconnected.
    - update debian/patches/nm08-applet-preview.patch

 -- Alexander Sack <asac@ubuntu.com>  Fri, 25 Sep 2009 10:08:46 +0200

network-manager-applet (0.8~a~git.20090923t220421.1ac8ffd-0ubuntu3) karmic; urgency=low

  * fix build failure because of compiler warnings due to uninitialized variable
    - update debian/patches/nm08-applet-preview.patch

 -- Alexander Sack <asac@ubuntu.com>  Thu, 24 Sep 2009 17:40:06 +0200

network-manager-applet (0.8~a~git.20090923t220421.1ac8ffd-0ubuntu2) karmic; urgency=low

  * fix build failure caused by missing build-depend for uudecode
    - update debian/control

 -- Alexander Sack <asac@ubuntu.com>  Thu, 24 Sep 2009 17:16:54 +0200

network-manager-applet (0.8~a~git.20090923t220421.1ac8ffd-0ubuntu1) karmic; urgency=low

  * upstream snapshot 2009-09-23 22:04:21 (GMT)
    + 1ac8ffd41a2d162d23713415cec6c3e96fbc3c82 
    + new upstream UI for beta (prepatched) - LP: #435333
    + mini-abi transition respin for libnm-glib-vpn rename fixes LP: #435888

  [ Alexander Sack <asac@ubuntu.com> ]
  * increase build-depend version requirements for network-manager bits to
    latest upstream (>= 0.8~a~git.20090923t064445)
    - update debian/control
  * add new nm08 applet prepatch and add icons not shippable in diff manually
    using uudecode
    - add debian/patches/nm08-applet-preview.patch
    - update debian/patches/series
    - add debian/icons/22/nm-secure-lock.png.uue
    - update debian/rules

  [ Mathieu Trudel <mathieu.tl@gmail.com> ]
  * fix noisy output: use grep -q -c rather than just -c in GET_SOURCE etc.
    - update debian/rules
  * add get-snapshot-info rule
    - update debian/rules
  * make GET_SOURCE not go mad for git versions that use a different abbrev-id syntax
    - update debian/rules
  * drop ellipsize patch, addressed libhal issues, superseded by the use of udev
    - delete debian/patches/lp341940_use_ellipsized_menu_entries.patch
    - update debian/patches/series

 -- Alexander Sack <asac@ubuntu.com>  Thu, 24 Sep 2009 15:30:33 +0200

network-manager-applet (0.8~a~git.20090913t161448.cc2f6be-0ubuntu1) karmic; urgency=low

  * upstream snapshot 2009-09-13 16:14:48 (GMT)
    + cc2f6bea12daec5f0caf535a3534f07ade5b5cf2

  [ Alexander Sack <asac@ubuntu.com> ]
  * build depend on libpolkit-gobject-1-dev instead of libpolkit-dbus-dev
    - update debian/control

  [ Tony Espy <espy@ubuntu.com> ]
  * adjust patches for upstream code base
    - update debian/patches/20_use_full_vpn_dialog_service_name_path.patch
    - update debian/patches/lp328572_dxteam_connect_text.patch
    - update debian/patches/lp337960_dxteam_notification_icon_names.diff
    - update debian/patches/lp341684_device_sensitive_disconnect_notify.patch
  * adjust build and runtime depends due to ABI changes in latest NM
    - update debian/control

 -- Alexander Sack <asac@ubuntu.com>  Mon, 14 Sep 2009 11:32:57 +0200

network-manager-applet (0.8~a~git.20090818t151413.a8b7eed-0ubuntu2) karmic; urgency=low

  * fix lpia build problems; make find and remove of .a .la files more robust
    in common-binary-post-install-arch:: target
    - update debian/rules

 -- Alexander Sack <asac@ubuntu.com>  Fri, 21 Aug 2009 10:32:12 +0200

network-manager-applet (0.8~a~git.20090818t151413.a8b7eed-0ubuntu1) karmic; urgency=low

  [ Tony Espy <espy@ubuntu.com> ]
  * upstream snapshot 2009-08-18 15:14:13 (GMT)
    + a8b7eed3676e1154b4df1b3292eb414a3e9f2378
    - includes WEP Auth dialog simplification and
      minor IPv6 changes

  [ Alexander Sack <asac@ubuntu.com> ]
  * add LOCAL_BRANCH feature to play nicely with fta's build bot
    - update rules
  * add gnome-bluetooth support; build-depend on libgnome-bluetooth-dev and install
    the gnome-bluetooth plugin to the gnome-bluetooth plugindir directory.
    - update debian/control
  * remove bluetooth plugin .la and .la files during post-install
    - update debian/rules

 -- Tony Espy <espy@ubuntu.com>  Thu, 20 Aug 2009 11:48:20 -0400

network-manager-applet (0.8~a~git.20090805t131328.d1edfce-0ubuntu1) karmic; urgency=low

  [ Tony Espy <espy@ubuntu.com> ]
  * upstream snapshot 2009-08-05 13:13:28 (GMT)
    + d1edfced3ac4373019c097a4de5c7b97d0b2562a
  * bump required version for networkmanager bits to >= 0.8~a~git.20090804t185522
    - update control
  * adjust patch for upstream code base
    - update patches/lp341684_device_sensitive_disconnect_notify.patch
  * re-work tarball generation code; added get-curr-source to
    grab a specific version; get-orig-source now grabs the tip
    of new variable GIT_BRANCH; adjusted changelog version to 
    new scheme.
    - update rules

  [ Alexander Sack <asac@ubuntu.com> ]
  * prepare get-orig-source for daily ppa-scripts
    - update rules
  * adjust patches to changed upstream codebase
    - update patches/lp341940_use_ellipsized_menu_entries.patch
  * raise build requirements on network-manager parts to >= 0.8~
    - update control

 -- Tony Espy <espy@ubuntu.com>  Thu, 06 Aug 2009 10:35:38 +0100

network-manager-applet (0.7.1.git.2.8ed7940cd3-0ubuntu1~nm1) UNRELEASED; urgency=low

  * upstream snapshot 2009-07-01 18:21:51 (GMT)
    + commit 8ed7940cd3eb2158f95786e4a0cfbeea2035a870
  * bump required version for networkmanager bits to >= 0.7.1.git.1
  * drop mbca patch because upstream ships its own wizard now
    - delete patches/add_libmbca_support.patch
    - update patches/series
  * drop libmbca-dev from build-depends as nm applet builds its own wizard
    now; in turn depend binary package on mobile-broadband-provider-info >= 20090622
    - update control
  * adjust patches to changed upstream code base
    - update patches/lp341940_use_ellipsized_menu_entries.patch
    - update patches/lp337960_dxteam_notification_icon_names.diff
    - update patches/lp341684_device_sensitive_disconnect_notify.patch
  * drop libmbca0 from Recommends
    - update control

 -- Alexander Sack <asac@ubuntu.com>  Tue, 02 Jun 2009 14:14:43 +0200

network-manager-applet (0.7.1-0ubuntu1) karmic; urgency=low

  * Upstream release 0.7.1
  * drop patches applied upstream
    - delete patches/fix_upstream_buildfailure.patch
    - update patches/series
  * adjust patches to new upstream code base
    - update patches/lp341940_use_ellipsized_menu_entries.patch
  * fix LP: #341940 - menu entries like device names can be overly long;
    we fix this by using ellipsized labels with proper tooltip to allow
    interested users to read the full text label
    - add patches/lp341940_use_ellipsized_menu_entries.patch
    - update patches/series

 -- Alexander Sack <asac@ubuntu.com>  Tue, 02 Jun 2009 13:20:07 +0200

network-manager-applet (0.7.1~rc4.1-0ubuntu2) jaunty; urgency=low

  * point Vcs-Bzr header to proper branch
    - update control
  * fix LP: #358526 - Notification shows wrong WiFi disconnected icon when
    resuming from suspend; we use the proper generic disconnected icon
    if we don't know which device type caused the "offline" event.
    - add patches/lp358526_generic_disconnected_notification_icon.patch
    - update patches/series

 -- Alexander Sack <asac@ubuntu.com>  Tue, 14 Apr 2009 12:52:44 +0200

network-manager-applet (0.7.1~rc4.1-0ubuntu1) jaunty; urgency=low

  * New upstream release 0.7.1 rc4
    + svn-v3-trunk0:9c6bbc85-7128-0410-879a-9bbc9e4270e9:branches%2FNETWORKMANAGER_APPLET_0_7:1254
    + drop upstreamed patches
      - delete patches/lp331799_sensible_notify_actions.patch
      - update patches/series
    + adjust diverged patches to new upstream codebase
      - update patches/add_libmbca_support.patch
      - update patches/lp341684_device_sensitive_disconnect_notify.patch
    + fix build failure with our gcc introduced upstream (string format issue)
      - add patches/fix_upstream_buildfailure.patch
      - update patches/series
  * rename patch for disconnect states to match the bug it fixed (LP: #341684)
    - rename patches/lpXXX_device_sensitive_disconnect_notify.patch =>
      lp341684_device_sensitive_disconnect_notify.patch
    - update patche/series
  * fix LP: #348612 - Wired disconnect icon is wrong; we fix a typo in icon name
    - update patches/lp341684_device_sensitive_disconnect_notify.patch
  * fix LP: #354420 - offline notification should have NOTIFY_URGENCY_CRITICAL;
    normal disconnect notifications get NOTIFY_URGENCY_NORMAL
    - update patches/lp341684_device_sensitive_disconnect_notify.patch
  * eliminate string changes from a few notification patches
    - update patches/lp330571_dxteam_wired_connect_text.patch
    - update patches/lp330608_dxteam_gsm_connect_text.patch
    and adjust follow up patches
    - update patches/lp337960_dxteam_notification_icon_names.diff

 -- Alexander Sack <asac@ubuntu.com>  Mon, 06 Apr 2009 13:25:39 +0200

network-manager-applet (0.7.1~rc3-0ubuntu4) jaunty; urgency=low

  * use the notification-gsm-disconnected icon name used by human theme for jaunty beta
    - update patches/lpXXX_device_sensitive_disconnect_notify.patch

 -- Alexander Sack <asac@ubuntu.com>  Thu, 19 Mar 2009 17:02:01 +0100

network-manager-applet (0.7.1~rc3-0ubuntu3) jaunty; urgency=low

  * fix bug in lpXXX_device_sensitive_disconnect_notify.patch that made
    disconnect events to not display a notification if the overall state
    still was online
    - update patches/lpXXX_device_sensitive_disconnect_notify.patch

 -- Alexander Sack <asac@ubuntu.com>  Thu, 19 Mar 2009 15:44:43 +0100

network-manager-applet (0.7.1~rc3-0ubuntu2) jaunty; urgency=low

  * flip title in wifi "Connection Established" notification bubble (LP: #338389)
    - update patches/lp328572-dxteam-connect-text.patch
    - update patches/lp337960_dxteam_notification_icon_names.diff
  * add patch to support device sensitive disconnect/offline notifications;
    this patch queues event from NMClient and NMDevice and then decides what
    kind of disconnect happened and which device was reponsible.
    - add patches/lpXXX_device_sensitive_disconnect_notify.patch
    - update patches/series

 -- Alexander Sack <asac@ubuntu.com>  Thu, 19 Mar 2009 14:54:03 +0100

network-manager-applet (0.7.1~rc3-0ubuntu1) jaunty; urgency=low

  * new upstream RC 0.7.1rc3
    + rev: 982
    + revision-id: svn-v3-trunk0:9c6bbc85-7128-0410-879a-9bbc9e4270e9:branches%2FNETWORKMANAGER_APPLET_0_7:1212
    + branch: http://bzr-playground.gnome.org/network-manager-applet/branches/NETWORKMANAGER_APPLET_0_7/
    - update .bzr-builddeb/default.conf
  * bump lower builds for network-manager build depends to >= 0.7.1~rc3
    - update control
  * fix LP: #328572 - Connecting/disconnecting notification changes; we apply the
    the "Connecting" part of this patch, as the disconnecting part would require
    string changes that need to be done upstream
    - add patches/lp328572-dxteam-connect-text.patch
    - update patches/series
  * fix LP: #330571 - Wired connected message in nm-applet too long
    - add patches/lp330571_dxteam_wired_connect_text.patch
    - update patches/series
  * fix LP: #330608 - GSM connection message too long in nm-applet
    - add patches/lp330608_dxteam_gsm_connect_text.patch
    - update patches/series
  * fix LP: #337960 - nm-applet jaunty icon changes - brought to you by d(u)xteam;
    we apply two patches: first patch changes the icon names referred to in notifications;
    second patch ships fallback icons for those names within network-manager-gnome
    package

 -- Alexander Sack <asac@ubuntu.com>  Thu, 05 Mar 2009 01:30:46 +0100

network-manager-applet (0.7.1~rc1+20090219+bzr974-0ubuntu2) jaunty; urgency=low

  * "Network Connections" settings entry does not appear in gnome-control-center;
    we fix a typo in the .desktop file introduced by the xfce patch
    - update patches/lp295788_xfce_menu_entry.patch

 -- Alexander Sack <asac@ubuntu.com>  Mon, 23 Feb 2009 15:45:07 +0100

network-manager-applet (0.7.1~rc1+20090219+bzr974-0ubuntu1) jaunty; urgency=low

  * new upstream snapshot 0.7.1rc1+ Feb 19, 2009
    + rev: 974
    + revision-id: svn-v3-trunk0:9c6bbc85-7128-0410-879a-9bbc9e4270e9:branches%2FNETWORKMANAGER_APPLET_0_7:1186
    + branch: http://bzr-playground.gnome.org/network-manager-applet/branches/NETWORKMANAGER_APPLET_0_7/
    - update .bzr-builddeb/default.conf
  * rebase diverged patches
    - update patches/add_libmbca_support.patch
  * fix LP: #331799 - nm-applet must not send actions when notification server
    does not support actions
    - add patches/331799_sensible_notify_actions.patch
    - update patches/series

 -- Alexander Sack <asac@ubuntu.com>  Thu, 19 Feb 2009 23:32:28 +0100

network-manager-applet (0.7.1~20090213+bzr960-0ubuntu1) jaunty; urgency=low

  * new upstream snapshot 0.7.1pre Feb 13, 2009
    + rev: 960
    + revision-id: svn-v3-trunk0:9c6bbc85-7128-0410-879a-9bbc9e4270e9:branches%2FNETWORKMANAGER_APPLET_0_7:1161
    + branch: http://bzr-playground.gnome.org/network-manager-applet/branches/NETWORKMANAGER_APPLET_0_7/
  * add config for bzr-builddeb meta information; we declare "merge" as default
    operation mode and set the current top most upstream revision id
    - add .bzr-builddeb/default.conf
  * adjust patches to new upstream code
    - update patches/add_libmbca_support.patch
  * new tree layout doesn't have upstream sources; in turn we apply
    autotools/cdbs integration magic on the fly now; this means we run
    intltoolize in pre-build and create a dummy aclocal.m4 in clean::;
    doing that allows us to use a bzr export from the upstream tree
    instead of a make dist tarball
    - update rules
  * fix "(applet.c:1044):applet_open_mbca: code should not be reached"
    warnings that get dumped to console; typos produced those warnings
    even if nothing was wrong
    - update patches/add_libmbca_support.patch
  * bump lower bound for network-manager build-depends to >= 0.7.1~
    - update control
  * fix LP: #327427 - network manager applet should pop up wizard when
    3g device is plugged in and no configuration exists; we adjust the
    mobile broadband patch to not show notification.
    - update patches/add_libmbca_support.patch

 -- Alexander Sack <asac@ubuntu.com>  Tue, 17 Feb 2009 16:06:09 +0100

network-manager-applet (0.7-0ubuntu2) jaunty; urgency=low

  * fix LP: #295788 - Network Configuration menu item should also be
    displayed in Xfce; we add XFCE to the OnlyShowIn .desktop field;
    patch by Martin Mai
    - add debian/patches/lp295788_xfce_menu_entry.patch
  * fix LP: #327411 - network-manager: configure button(s) to create gsm
    connections only works on first attempt; the assitants lists contains
    UdiAssitants and not MbcaAssistant's
    - update debian/patches/add_libmbca_support.patch

 -- Alexander Sack <asac@ubuntu.com>  Sun, 15 Feb 2009 02:29:53 +0100

network-manager-applet (0.7-0ubuntu1) jaunty; urgency=low

  * merge new upstrema release (0.7) from trunk branch (rev970)
  * drop patches superseeded/applied upstream
    - delete debian/patches/lp293749_better_prefix_netmask_ui.patch
    - delete debian/patches/lp286421_fix_i18n_bug_286421.patch
    - update debian/patches/series
  * adjust patches to new upstream codebase (mostly accessor and
    anti-bit-rotting measures)
    - update debian/patches/add_libmbca_support.patch
    - update debian/patches/20_use_full_vpn_dialog_service_name_path.patch
    - update debian/patches/lp268803_xdg_autostart_gnome_xfce_only.patch
    - update debian/patches/lp289466_always_show_tray_icon.patch
  * add support for "easy" bzr builddeb
    add .bzr-builddeb/default.conf
  * bump minimum required version for network-manager-dev, libnm-glib-dev
    and libnm-util-dev
    - update debian/control

 -- Alexander Sack <asac@ubuntu.com>  Mon, 12 Jan 2009 13:31:17 +0100

network-manager-applet (0.7~~svn20081020t000444-0ubuntu2) jaunty; urgency=low

  * fix LP: #289466 - Network Manager 0.7 applet not Appearing if there are
    managed entries in /etc/network/interfaces; we always call
    applet_schedule_update_icon in client_init; also we also show the try when
    there are error conditions (no NM running, no managed device)
    - add debian/patches/lp289464_always_show_tray_icon.patch
    - update debian/patches/series
  * fix LP: #286421 - nm-connection-editor menu item untranslatable;
    add i18n support to nm-connection-editor.desktop; patch by Timo Jyrinki
    <timo.jyrinki@iki.fi>
    - add debian/patches/lp286421_fix_i18n_bug_286421.patch
    - update debian/patches/series
  * fix LP: #268803 - Ubuntu Intrepid: Both Knetworkmanager and Network
    Manager load on startup; fix xdg autostart .desktop file to
    "OnlyShowIn=GNOME;XFCE;"
    - add debian/patches/lp268803_xdg_autostart_gnome_xfce_only.patch
    - update debian/patches/series
  * fix LP: #293749 - prefix vs. netmask translation inconsistencies in
    connection-editor causes confusion; we cherry pick rev1009 from upstream
    svn and backport that.
    - add debian/patches/lp293749_better_prefix_netmask_ui.patch
    - update debian/patches/series

 -- Alexander Sack <asac@ubuntu.com>  Mon, 01 Dec 2008 14:05:51 +0100

network-manager-applet (0.7~~svn20081020t000444-0ubuntu1) intrepid; urgency=low

  New upstream snapshot Mon 2008-10-20 00:04:44 +0000 (rev 819)
  * support .cer and .crt extensions for wpa-eap (LP: #272185)
    - update src/wireless-security/eap-method.c
  * Don't translate widget labels
    - update src/connection-editor/ce-page-ip4.glade
  * updated translations for sv, es, hu, sk, nb, be, he

 -- Alexander Sack <asac@ubuntu.com>  Mon, 20 Oct 2008 16:30:10 +0200

network-manager-applet (0.7~~svn20081015t194645-0ubuntu1) intrepid; urgency=low

  * new upstream snapshot Wed 2008-10-15 19:46:45 +0000 (rev 809)
  * fix LP: #277084 - nm-applet confused by icon name changes during
    hardy-intrepid upgrade; we ship icons used by NM 0.6 in the NM 0.7
    to prevent this behaviour
    - update debian/rules

 -- Alexander Sack <asac@ubuntu.com>  Thu, 16 Oct 2008 00:42:34 +0200

network-manager-applet (0.7~~svn20081012t133407-0ubuntu1) intrepid; urgency=low

  * new upstream snapshot Sun 2008-10-12 13:34:07 +0000 (rev 805)
    - fixes LP: #279387
  * adjust patch to new upstream code
    - update debian/patches/add_libmbca_support.patch

 -- Alexander Sack <asac@ubuntu.com>  Mon, 13 Oct 2008 21:24:14 +0200

network-manager-applet (0.7~~svn20081005t082522-0ubuntu1) intrepid; urgency=low

  * new upstream snapshot Sun 2008-10-05 08:25:22 +0000 (rev 793)
  * adjust mbca patch for changed upstream code base
    - update debian/patches/add_libmbca_support.patch

 -- Alexander Sack <asac@ubuntu.com>  Mon, 06 Oct 2008 13:41:27 +0200

network-manager-applet (0.7~~svn20080927t101113-0ubuntu1) intrepid; urgency=low

  * new upstream snapshot Sat 2008-09-27 10:11:13 +0000 (rev 776)
  [ Antti Kaijanmäki ]
  * added support for Mobile Broadband Configuration Assistant:
    - added debian/patches/add_libmbca_support.patch
    - updated debian/patches/series
    - added libmbca-dev build-dependency to debian/control
    - added --with-libmbca to DEB_CONFIGURE_EXTRA_FLAGS in debian/control

  [ Alexander Sack ]
  * refresh libmbca patch using quilt to prevent diff pollution in future.
    (quilt refresh --diffstat --no-timestamps -U8)
    - update debian/patches/add_libmbca_support.patch
  * generate a uuid for NMSettingConnection which was introduced by recent
    network manager dbus API changes.
    - update debian/patches/add_libmbca_support.patch
  * fix libmbca setting the dialup string instead of the proper number (*99#)
    for GSM modems
    - update debian/patches/add_libmbca_support.patch
  * add new parameter to add_connection call in mbca patch and strip trailing
    whitespaces uses quilt refresh
    - update debian/patches/add_libmbca_support.patch
  * bump build-depends and depends bar on network-manager bits to
    >= 0.7~~svn20080928
    - update debian/control
  * explicitly set connection scope for mbca created connections to
    NM_CONNECTION_SCOPE_USER
    - update debian/patches/add_libmbca_support.patch
  * add libmbca0 to Recommends
    - update debian/control

 -- Alexander Sack <asac@ubuntu.com>  Mon, 29 Sep 2008 22:15:13 +0200

network-manager-applet (0.7~~svn20080907t033843-0ubuntu2) intrepid; urgency=low

  * new upstream snapshot Sun 2008-09-07 03:38:43 +0000 (rev 743)
  * adjust versioned (build-)depends on network-manager packages to
    >= 0.7~~svn20080908
    - update debian/control

 -- Alexander Sack <asac@ubuntu.com>  Tue, 09 Sep 2008 16:42:23 +0200

network-manager-applet (0.7~~svn20080817t183748-0ubuntu1) intrepid; urgency=low

  * new upstream snapshot Sun 2008-08-17 18:37:48 +0000 (rev 723)
  * drop patches applied upstream:
    - delete debian/patches/01_gcc43.patch
    - update debian/patches/series
  * bump build dependency versions on network-manager-dev and friends to (>=
    0.7~~svn20080812)
    - update debian/control
  * use full path for vpn auth-dialog's as provided by the .name key file in
    $sysconfdir/NetworkManager/VPN/
    - add debian/patches/20_use_full_vpn_dialog_service_name_path.patch
    - update debian/patches/series

 -- Alexander Sack <asac@ubuntu.com>  Mon, 18 Aug 2008 21:32:15 +0200

network-manager-applet (0.7~~svn20080721t051503-0ubuntu1) intrepid; urgency=low

  * new upstream snapshot Mon 2008-07-21 05:15:03 +0000 (bzr trunk rev673)
  * drop manual network config patches - default connection editor is NM
    - delete debian/patches/01_static_network-admin.patch
    - delete debian/patches/03_manual_config_available_when_connected.patch
    - delete debian/patches/13_custom-network-admin.diff
    - update debian/patches/series
  * fix gcc 4.3 build failures
    - add debian/patches/01_gcc43.patch
    - update debian/patches/series
  * higher network-manager versions for build and binary depends (>=
    0.7~~svn20080720t224551)
    - update debian/control

 -- Alexander Sack <asac@ubuntu.com>  Thu, 07 Aug 2008 01:54:01 +0200

network-manager-applet (0.7~~svn20080121t194048-0ubuntu0~pre6) hardy; urgency=low

  * package 0.7 svn snapshot
  * add automake1.9 to Build-Depends
    - update debian/control
  * add quilt to Build-Depends
    - update debian/control
  * add libtool to Build-Depends
    - update debian/control
  * add gnome-common to Build-Depends
    - update debian/control
  * add libnotify-dev to Build-Depends
    - update debian/control
  * add libgnutls-dev to Build-Depends and pass --with-gnutls and
    --without-nss to configure explicitly
    - update debian/control
    - update debian/rules
  * make libnm-util-dev build dependency versioned to only build against
    versions that come with libnm-util1
    - update debian/control
  * include empty aclocal.m4 file to make cdbs trigger aclocal auto run
    - add aclocal.m4
  * switch to use quilt as patchsystem
    - add debian/patches/series
    - update debian/rules
  * unfold Build-Depends and Depends in debian/control to improve legability
    of patches
    - update debian/control
  * bump {Build-}Depends: version for network-manager and friends to a
    reasonable value (>= 0.7~~svn20080121t191418+eni1-0ubuntu0~pre6)
    - update debian/control
  * remove debian/network-manager-gnome/usr/include on install
    - update debian/rules

 -- Alexander Sack <asac@ubuntu.com>  Tue, 22 Jan 2008 17:56:32 +0000

network-manager-applet (0.6.5-0ubuntu11) hardy; urgency=low

  * apply patch to drop gnome-runtime dependencies (LP: #136945) - patch by Jani
    Monoses
    - add debian/patches/06_drop_libgnome.patch
    - add debian/patches/99_autoconf_update.patch
  * don't use gksu in hardy anymore - policy kit hooray! (LP: #176222)
    - update debian/patches/01_static_network-admin.patch
    - update debian/patches/13_custom-network-admin.diff

  [ TJ ]
  * debian/patches/15_lp124336_missing_prototype_causes_connect_to_other_networks_sigsegv.patch:
    Fix SIGSEGV caused by pointer>int>pointer conversion on x86_64. (LP: #124336)

 -- Alexander Sack <asac@ubuntu.com>  Wed, 09 Jan 2008 13:15:10 +0100

network-manager-applet (0.6.5-0ubuntu10) gutsy; urgency=low

  * debian/control: add missing depends on gksu to allow manual
    network-configuration even for minimal ubuntu flavours, like the UME.
  * debian/patches/13_custom-network-admin.diff: use BINDIR "/" MANUAL_CONF_FILE
    when its available on the system. (LP: #145625)
  * debian/rules: apply previously forgotten hunk to install network manager
    applet autostart file to /etc/xdg/autostart/ from LP: #95064.
  * debian/patches/14_lp123808_dont_start_applet_on_ltsp_client.patch: don't
    start nm-applet on ltsp client. (LP: #123808)

 -- Alexander Sack <asac@ubuntu.com>  Tue, 02 Oct 2007 20:58:18 +0200

network-manager-applet (0.6.5-0ubuntu9) gutsy; urgency=low

  * debian/patches/11_lp95064-enable-xdg-autostart-for-xfce.patch: enable
    autostart of nm-applet for XFCE nm-applet.desktop. (LP: #95064)
  * debian/patches/12_lp101978-connection-info-hide-on-delete-event.patch:
    hide connection info on delete-event; patch by Dima Korzhevin.
    (LP: #101978).

 -- Alexander Sack <asac@ubuntu.com>  Wed, 19 Sep 2007 18:24:28 +0200

network-manager-applet (0.6.5-0ubuntu8) gutsy; urgency=low

  * set Maintainer to ubuntu-core-dev
  * add XS-Vcs-Bzr tag to point apt-get to the correct branch

 -- Reinhard Tartler <siretart@tauware.de>  Thu, 26 Jul 2007 15:55:06 +0200

network-manager-applet (0.6.5-0ubuntu7) gutsy; urgency=low

  * add 04_nm-vpn-properties_path again, nm-vpn-properties has been moved
    back again. LP: #127844

 -- Reinhard Tartler <siretart@tauware.de>  Thu, 26 Jul 2007 11:05:45 +0200

network-manager-applet (0.6.5-0ubuntu6) gutsy; urgency=low

  * remove 04_nm-vpn-properties_path.patch. nm-vpn-properties now
    installed in /usr/bin again.

 -- Reinhard Tartler <siretart@tauware.de>  Thu, 05 Jul 2007 10:25:15 +0200

network-manager-applet (0.6.5-0ubuntu5) gutsy; urgency=low

  * debian/control:
    - Build-Depends on intltool so the translation template updated
      (LP: #122547)

 -- Sebastien Bacher <seb128@canonical.com>  Thu, 28 Jun 2007 21:32:29 +0200

network-manager-applet (0.6.5-0ubuntu4) gutsy; urgency=low

  * debian/patches/01_static_network-admin.patch: fix by Peter
    Clifton; adding NULL check to stop nm-applet from crashing
    and make encrypted wifi work. (LP: #121228)

 -- Alexander Sack <asac@ubuntu.com>  Wed, 27 Jun 2007 12:34:03 +0200

network-manager-applet (0.6.5-0ubuntu3) gutsy; urgency=low

  * Re-import applet patches from network-manager

  * debian/control: tighten build-depends on network-manager to
    >= 0.6.5-0ubuntu3

  * Make patches apply against applet sources + drop patches that have
    been applied upstream:
   - debian/patches/01_static_network-admin.patch: fix diff path for
     new source layout: gnome/applet -> src/ + update line numbers.
   - debian/patches/02_manual_means_always_online.diff: fix diff path
     for new source layout: gnome/applet -> src/ + update line numbers;
     drop diffs for sources not in this tarball: src/NetworkManagerDbus.c,
     src/NetworkManagerMain.h and src/nm-device.c.
   - debian/patches/03_manual_config_available_when_connected.patch: fix
     diff path for new source layout: gnome/applet -> src/ + update line
     numbers.
   - debian/patches/04_nm-vpn-properties_path.patch: nm-vpn-properties
     are shipped in network-manager pkglibdir
   - debian/patches/10-po_fr.patch: all but one translation fixes were applied
     upstream.

 -- Alexander Sack <asac@ubuntu.com>  Tue, 26 Jun 2007 10:52:45 +0200

network-manager-applet (0.6.5-0ubuntu2) gutsy; urgency=low

  * Added missing dep network-manager

 -- Anthony Mercatante <tonio@ubuntu.com>  Fri, 22 Jun 2007 18:24:22 +0200

network-manager-applet (0.6.5-0ubuntu1) gutsy; urgency=low

  * Initial release
  * Added 21_manual_means_always_online.diff to "patches-not-applied"
    The gnome applet has been splitted from n-m code, and patch needs
    to be rewritten
  * Added 04_nm-vpn-properties_path.patch
   Fixes path to nm-vpn-properties according to the changes we've done
   to network-manager package due to bad source splitting

 -- Anthony Mercatante <tonio@ubuntu.com>  Fri, 15 Jun 2007 12:46:22 +0200