-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathChangeLog
5923 lines (4406 loc) · 201 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2009-04-15 Alexander Sack <[email protected]>
* src/connection-editor/nm-connection-list.c
- (add_done_cb): prevent assertion crash when editor dialogs are
cancelled (lp #361115)
2009-04-04 Dan Williams <[email protected]>
* src/connection-editor/helpers.c
src/connection-editor/helpers.h
- Small helper to fill UI widgets from connection secrets
* src/connection-editor/Makefile.am
src/connection-editor/Makefile.am
src/connection-editor/eap-method-leap.c
src/connection-editor/eap-method-simple.c
src/connection-editor/eap-method-tls.c
src/connection-editor/ws-leap.c
src/connection-editor/ws-wep-key.c
src/connection-editor/ws-wpa-psk.c
- Handle system connection secrets too
2009-04-04 Dan Williams <[email protected]>
* src/connection-editor/nm-connection-editor.c
src/connection-editor/nm-connection-editor.h
- (connection_editor_validate, system_checkbutton_toggled_cb,
recheck_initialization): don't validate before the editor is
all initialized; fixes issues with connection values getting
cleared becuase validation updates the connection's settings
too, and the UI might not be completely filled in yet until
all pages are initialized
2009-04-04 Dan Williams <[email protected]>
* src/connection-editor/ce-page.c
- (get_secrets_cb): don't mix up the PolicyKit error and the error
that could be returned from pk_helper_obtain_auth()
2009-04-04 Dan Williams <[email protected]>
* src/connection-editor/polkit-helpers.c
- (pk_helper_obtain_auth): handle NULL PolicyKit error
2009-04-04 Dan Williams <[email protected]>
* src/connection-editor/page-wired-security.c
- (ce_page_wired_security_new): don't connect to the "use 802.1x"
checkbox's 'toggled' signal here, do it after setting the
checkbox's initial value in finish_setup(). Fixes issue
where validation would be triggered prematurely, before the
editor was initialized
- (finish_setup): enable_toggled() already calls ce_page_changed()
2009-04-04 Dan Williams <[email protected]>
* src/connection-editor/nm-connection-list.c
- Send the clicked signal to the button instead of calling do_edit()
explicitly so that the PolKitAction's code gets run; ensures
the same codepath gets taken for double-click as for clicking
the edit button
2009-04-03 Dan Williams <[email protected]>
* Ensure PolicyKit autorization before editing system connections, and
request secrets from the system settings service for system connections.
This requires splitting each CEPage subclass's *_new() method into
two parts, the first doing minimal setup, and the second filling in
the UI with details from the backing NMConnection. Between the first
and second parts, if required, secrets are requested from the system
settings service using PolicyKit. As a bonus, actually handle errors
instead of dropping them on the floor.
2009-03-31 Dan Williams <[email protected]>
* src/connection-editor/nm-connection-list.c
- (add_connection_buttons, delete_selection_changed_cb): disable the
delete button when the connection is read-only
2009-03-31 Dan Williams <[email protected]>
* configure.ac
Makefile.am
- Check D-Bus version; use different applet dbus conf files for
D-Bus >= 1.2.6 which uses deny-by-default processing. New
conf file fixes issues with 'root' also being at_console,
where at_console permissions would deny root access to
applet secrets
* nm-applet.conf
- Remove; now generated
* nm-applet-pre-dbus-126.conf
- D-Bus config for dbus < 1.2.6
* nm-applet-dbus-126.conf
- D-Bus config for dbus >= 1.2.6 (from Tambet)
2009-03-26 Dan Williams <[email protected]>
* nm-applet.conf
- Explicitly allow 'root' to talk to the secrets interface. Fixes a bug exposed
in SUSE ConsoleKit packages that always treated 'root' as at_console when
logged in once; when using explicit denials (which we're using here to
ensure we don't expose distros shipping older D-Bus packages) and when
permissions may overlap, as in the case of root being at_console, there
needs to be an explicit allow in the right section too. Thus when root is
'at_console', root will still have access to secrets due to the explicit
allow in the user=root section.
2009-03-20 Alexander Sack <[email protected]>
* src/applet.c
src/applet.h
- (constructor): check whether the notification server supports
actions
- (applet_do_notify): don't set a notification if the notification
server doesn't support them
2009-03-10 Claude Paroz <[email protected]>
* src/connection-editor/ce-page-ppp.glade
- Remove translatable property on stock labels
* src/connection-editor/page-ppp.c
- Add translator comment for 'none' string
2009-03-03 Dan Williams <[email protected]>
* src/gconf-helpers/nma-gconf-connection.c
- CVE-2009-0578: restrict connection changes to applet user
- (update, do_delete, is_user_authorized): check UID of dbus request
2009-03-03 Dan Williams <[email protected]>
* nm-applet.conf
- CVE-2009-0365: only allow root to get secrets
2009-02-19 Dan Williams <[email protected]>
* src/wireless-security/eap-method-peap.c
- Allow forcing PEAP v0 as well; default to "Automatic" PEAP
version (rh #468844)
2009-02-18 Dan Williams <[email protected]>
Patch by paolo borelli <[email protected]>
* src/applet.c
src/gconf-helpers/gconf-upgrade.c
src/wireless-dialog.c
- Fix some memory leaks (bgo #570869)
2009-02-18 Dan Williams <[email protected]>
* src/applet.c
- (ICON_LOAD): don't segfault if err is NULL (bgo #548062)
- (finalize): dispose of the settings proxies after disposing
of the NMClient so that the new-ap-notification stuff
in applet-device-wifi.c does log errors when disposing
of its data
- (constructor): ensure the missing gladefile warning dialog sticks around
- (nma_icons_load): ensure the missing icon warning dialog sticks around
* src/applet-dialogs.c
src/applet-dialogs.h
- (applet_warning_dialog_show): return the dialog object so the caller
can do something useful with it (like gtk_dialog_run()); fix
focus-stealing prevention, and set a title and icon
* src/main.c
- Pass the mainloop to the applet
2009-02-17 Dan Williams <[email protected]>
* src/gconf-helpers/gconf-helpers.c
src/gconf-helpers/gconf-helpers.h
- (nm_gconf_clear_keyring_items): clear keyring items for a
connection
* src/connection-editor/nm-connection-list.c
- (remove_connection): clear keyring items when removing a user connection
2009-02-17 Dan Williams <[email protected]>
* src/wireless-security/eap-method.c
src/wireless-security/eap-method.h
- Consolidate CA certificate nag dialog handling in the EAP method
to get correct dialog destruction and reduce code. Fixes crash
when nag dialog would come up the second time.
* src/wireless-security/eap-method-peap.c
src/wireless-security/eap-method-peap.h
src/wireless-security/eap-method-tls.c
src/wireless-security/eap-method-tls.h
src/wireless-security/eap-method-ttls.c
src/wireless-security/eap-method-ttls.h
- Move CA certificate nag dialog handling to EAPMethod class
* src/applet-device-wifi.c
- (wireless_dialog_response_cb, get_secrets_dialog_response_cb):
don't destroy nag dialog with parent; the EAP method object
takes care of destruction for us
2009-02-16 Dan Williams <[email protected]>
* src/gconf-helpers/gconf-upgrade.c
src/gconf-helpers/gconf-upgrade.h
src/gconf-helpers/gconf-helpers.c
- (nm_gconf_migrate_0_7_autoconnect_default): update autoconnect
GConf entries to preserve behavior now that autoconnect
defaults to TRUE in libnm-util
2009-02-16 Alexander Sack <[email protected]>
* src/applet.c
- (nma_menu_show_cb, nma_menu_deactivate_cb, applet_update_icon):
use gtk_status_icon_set_tooltip_text() on GTK+ >= 2.15
2009-02-13 Dan Williams <[email protected]>
* src/applet-device-wifi.c
- (add_one_ap_menu_item): fix max signal strength calculation with
multiple APs of the same SSID (rh #475123)
2009-02-12 Dan Williams <[email protected]>
* src/connection-editor/vpn-helpers.c
- (export_vpn_to_file_cb): fix export validtity checks (rh #480496)
2009-02-12 Dan Williams <[email protected]>
* icons/
- Fix fallout from icon move; install icons to the right directories
2009-02-12 Dan Williams <[email protected]>
* icons/
- Reorganize icons into directories for each size, and replace
nm-no-connection and nm-device-wired icons with less-ugly
ones from the Gnome icon theme (network-idle and
network-offline)
2009-02-06 Dan Williams <[email protected]>
* src/connection-editor/connection-editor.c
- (nm_connection_editor_set_connection): add IPv4 tab for DSL and Mobile
Broadband to allow users to override/amend DNS settings
2009-02-06 Dan Williams <[email protected]>
* src/connection-editor/page-ip4.c
- (method_changed): hide options for cases where they don't apply (like
Manual addressing or DHCP for Mobile Broadband)
2009-02-06 Dan Williams <[email protected]>
* src/connection-editor/page-ppp.c
- (ce_page_ppp_new): shorten PPP page tabe name
2009-02-06 Dan Williams <[email protected]>
* src/connection-editor/page-ip4.c
- (method_changed): disable "DHCP Client ID" entry for VPN connections
2009-02-05 Dan Williams <[email protected]>
* nm-applet.conf
- Update D-Bus rules for newer D-Bus, and deny attempts for non
at_console/non-root processes to ask for a users'
connections which they shouldn't need anyway
2009-02-05 Dan Williams <[email protected]>
* src/applet.c
- (nma_menu_device_check_unusable): add common code for checking
whether a device is in a usable state and creating the
menu item for it (rh #483879)
* src/applet-device-gsm.c
src/applet-device-wifi.c
src/applet-device-cdma.c
src/applet-device-wired.c
- (*_add_menu_item): use nma_menu_device_check_unusable()
2009-02-04 Dan Williams <[email protected]>
* src/gconf-helpers/nma-gconf-settings.c
- (read_connections): kill pointless warning (rh #484136)
2009-02-01 Dan Williams <[email protected]>
* src/gconf-helpers/gconf-helpers.c
src/gconf-helpers/gconf-helpers.h
- (nm_gconf_get_all_connections): implement applet GConf stamping to help
upgrades; upgrade 'never-default' in some cases
* src/gconf-helpers/gconf-upgrade.c
src/gconf-helpers/gconf-upgrade.h
- (nm_gconf_migrate_0_7_vpn_never_default): new function; if there were
static routes assigned to the VPN connection, set 'never-default'
to TRUE on upgrade to match 0.7.0 behavior
2009-01-28 Dan Williams <[email protected]>
* src/connection-editor/Makefile.am
src/connection-editor/ppp-auth-methods-dialog.c
src/connection-editor/ppp-auth-methods-dialog.h
- Add a separate dialog for configuring PPP authentication
methods, since the defaults rarely need to be changed
* src/connection-editor/ce-page-ppp.glade
src/connection-editor/page-ppp.c
- Move PPP authentication methods to a separate dialog
2009-01-22 Dan Williams <[email protected]>
* src/connection-editor/ip4-routes-dialog.c
- Validate options in the IP4 routes dialog and disable the OK
button when entered values are invalid
2009-01-19 Dan Williams <[email protected]>
* src/applet.c
- (construct_vpn_banner, vpn_connection_state_changed): filter some
HTML tags from VPN banners to better conform to the notification
daemon specification (bgo #564511)
2009-01-19 Dan Williams <[email protected]>
* nm-connection-editor.desktop.in
- Use a more appropriate icon (preferences-system-network) instead
of the wireless icon (bgo #563234)
2009-01-19 Przemysław Grzegorczyk <[email protected]>
* src/wireless-security/eap-method.h:
* src/wireless-security/wireless-security.h:
* src/polkit-helpers/polkit-gnome-action.c:
* src/connection-editor/ce-page.h:
* src/connection-editor/main.c:
* src/connection-editor/mobile-wizard.c:
* src/connection-editor/nm-connection-editor.c:
* src/connection-editor/nm-connection-list.c:
* src/connection-editor/nm-connection-list.h:
* src/connection-editor/page-dsl.h:
* src/connection-editor/page-ip4.h:
* src/connection-editor/page-mobile.h:
* src/connection-editor/page-ppp.h:
* src/connection-editor/page-vpn.h:
* src/connection-editor/page-wired-security.h:
* src/connection-editor/page-wired.h:
* src/connection-editor/page-wireless-security.h:
* src/connection-editor/page-wireless.h:
* src/ap-menu-item.h:
* src/applet-device-cdma.c:
* src/applet-device-gsm.c:
* src/applet-device-wifi.c:
* src/applet-device-wifi.h:
* src/applet-device-wired.c:
* src/applet-dialogs.c:
* src/applet-dialogs.h:
* src/applet.h:
* src/wireless-dialog.c:
* src/wireless-dialog.h: Cleared up gtk and glib includes
to use only toplevel headers. Bug #564379.
2008-01-16 Tambet Ingo <[email protected]>
* src/gconf-helpers/nma-gconf-settings.c
- (connection_changes_done, add_connection_real, connection_removed):
fix handling of connections removed from GConf by external programs
(bgo #557590)
2008-01-16 Dan Williams <[email protected]>
* nm-connection-editor.c
nm-connection-editor.h
- (nm_connection_editor_get_window): add accessor to editor GtkWindow
* nm-connection-list.c
nm-connection-list.h
- Pass XID of parent window to PolicyKit to ensure authorization windows
are transient for their parent
- Make error dialogs transient for the parent window
2008-12-19 Dan Williams <[email protected]>
Patch from Drew Moseley <[email protected]>
* src/applet-device-wifi.c
- (free_ap_notification_data): remove ap notification timeout when
freeing ap notification data
2008-12-11 Dan Williams <[email protected]>
* src/ap-menu-item.c
src/ap-menu-item.h
- (nm_network_menu_item_set_detail): disable the menu item if the device
can't even connect to the AP
* src/applet-device-wifi.c
- (add_new_ap_item): send device capabilities to menu item
2008-12-11 Dan Williams <[email protected]>
* src/applet.c
- (applet_pre_keyring_callback): handle right-click menu too
2008-12-09 Dan Williams <[email protected]>
* configure.ac
- Update tarball name to match project name
2008-12-09 Dan Williams <[email protected]>
* src/applet-device-wifi.c
- (other_wireless_activate_cb, new_network_activate_cb,
wireless_get_more_info, wireless_get_secrets): really fix focus
stealing prevention; the window needs to be visible before trying
to present it with an updated time, otherwise GTK just calls
gtk_window_show() instead of setting the timestamp
2008-12-09 Dan Williams <[email protected]>
* src/applet.c
- (applet_pre_keyring_callback): ensure that the menu is actually
destroyed before letting the keyring calls happen
2008-12-09 Dan Williams <[email protected]>
* src/connection-editor/ip4-routes-dialog.c
- (ip4_routes_dialog_new, ip4_routes_dialog_update_setting): get and
set never-default accordingly
* src/connection-editor/ce-page-ip4.glade
- Add never-default checkbox to the IP4 routes dialog
2008-12-09 Dan Williams <[email protected]>
* src/connection-editor/main.c
- (impl_start): bring connection editor window to front when it's
launched again, if it's already started
* src/connection-editor/nm-connection-list.c
src/connection-editor/nm-connection-list.h
- (nm_connection_list_present): no longer static
2008-12-05 Dan Williams <[email protected]>
* src/gconf-helpers/gconf-helpers.c
src/gconf-helpers/gconf-helpers.h
- (nm_gconf_clear_private_connection_values): new function to clear
applet private values from a connection
* src/connection-editor/page-wired-security.c
- (ce_page_wired_security_new): ensure setting gets updated when
security is changed
- (validate): copy applet private values to the real connection when
using 802.1x security; clear applet private values when there's no
security
* src/connection-editor/page-wireless-security.c
- (validate): clear applet private values when there's no security
2008-11-26 Dan Williams <[email protected]>
* Release 0.7
2008-11-26 Dan Williams <[email protected]>
* src/gconf-helpers/nma-gconf-connection.c
- (nma_gconf_connection_class_init): update for delete -> do_delete
2008-11-25 Dan Williams <[email protected]>
* src/gconf-helpers/nma-gconf-connection.c
- (nma_gconf_connection_changed): fill connection certs before functions
that verify them, since pkcs#12 needs special client cert/private key
handling; don't leak a connection hash
* src/utils/utils.c
- (utils_fill_connection_certs): handle pkcs#12 private keys and set
client cert at the same time
2008-11-24 Dan Williams <[email protected]>
Patch from Tony Houghton <[email protected]> (bgo #455250)
* src/applet.c
src/applet.h
- (applet_do_notify_with_pref): add notification helper for connect/
disconnect messages with a "disable me" button
- (foo_client_state_changed_cb): add ability to disable disconnected
notification too
- (applet_do_notify): set default timeout for notifications
* src/applet-device-cdma.c
src/applet-device-gsm.c
src/applet-device-wifi.c
src/applet-device-wired.c
- Use applet_do_notify_connect_state()
2008-11-21 Dan Williams <[email protected]>
* src/applet-dialogs.c
- (ip4_address_as_string): use inet_ntop() instead of inet_ntoa()
2008-11-20 Dan Williams <[email protected]>
* src/gconf-helpers/gconf-upgrade.c
- (vpn_helpers_save_secret): helper to save VPN secrets
- (nm_gconf_0_6_vpnc_settings): try to convert NM-vpnc 0.6 secrets
2008-11-20 Dan Williams <[email protected]>
* src/gconf-helpers/gconf-upgrade.c
- (get_06_keyring_secret): get an NM 0.6 secret from the keyring
- (nm_gconf_read_0_6_wep_settings, nm_gconf_read_0_6_wpa_settings,
nm_gconf_read_0_6_eap_settings, nm_gconf_read_0_6_leap_settings,
nm_gconf_read_0_6_wireless_connection): attempt to convert NM 0.6
secrets to NM 0.7 format
2008-11-20 Dan Williams <[email protected]>
* src/applet-device-wifi.c
- (wireless_get_secrets): really fix focus stealing prevention for real
2008-11-20 Dan Williams <[email protected]>
* src/gconf-helpers/gconf-helpers.c
- (read_one_setting_value_from_gconf, write_one_secret_to_keyring,
copy_one_setting_value_to_gconf): update for NMSettingValueIterFn
changes
- (copy_one_setting_value_to_gconf): remove bits than set secrets in
the keyring which couldn't possibly be called from here
2008-11-20 Dan Williams <[email protected]>
* src/gconf-helpers/gconf-helpers.c
- (string_in_list): implement locally now that nm_utils_string_in_list
was removed from libnm-util
2008-11-20 Dan Williams <[email protected]>
* src/applet-device-wifi.c
- (wireless_dialog_response_cb): update for nm_setting_new_from_hash()
2008-11-19 Dan Williams <[email protected]>
* src/gconf-helpers/nma-gconf-connection.c
src/applet-device-wifi.c
- Fix up compare flag names
2008-11-19 Dan Williams <[email protected]>
* src/gconf-helpers/nma-gconf-connection.c
- (nma_gconf_connection_changed): handle error returned from
nm_connection_replace_settings()
2008-11-18 Dan Williams <[email protected]>
* src/wireless-security/eap-method-tls.c
- (eap_method_tls_new, revalidate): don't validate here, since the
validation would only be for the TLS object, which may not be
what's actually selected in the security combo
* src/wireless-dialog.c
- (internal_init, revalidate): instead, validate here from an idle
handler to match revalidation done in nm-connection-editor.c.
Fixes a bug introduced by the PKCS#12 support where the secrets
dialog's OK button wouldn't be initially enabled
2008-11-15 Dan Williams <[email protected]>
* configure.ac
src/Makefile.am
src/polkit-helpers/Makefile.am
src/polkit-helpers/README
src/polkit-helpers/polkit-gnome-action.c
src/polkit-helpers/polkit-gnome-action.h
src/polkit-helpers/polkit-gnome-auth.c
src/polkit-helpers/polkit-gnome-auth.h
src/polkit-helpers/polkit-gnome-context.c
src/polkit-helpers/polkit-gnome-context.h
src/polkit-helpers/polkit-gnome.h
- Partial backport of PolicyKit-gnome 0.8 to PolicyKit 0.6
* src/connection-editor/Makefile.am
src/connection-editor/nm-connection-editor.c
src/connection-editor/nm-connection-editor.h
src/connection-editor/nm-connection-list.c
- Use polkit-helpers
* src/connection-editor/polkit-06-helpers.c
src/connection-editor/polkit-06-helpers.h
- Remove
2008-11-15 Dan Williams <[email protected]>
* src/gconf-helpers/gconf-upgrade.c
- (nm_gconf_read_0_6_wpa_settings, nm_gconf_read_0_6_eap_settings):
fix up 0.6 GConf upgrades for WPA and LEAP
2008-11-14 Dan Williams <[email protected]>
* Really tag 0.7.0-rc2
* Makefile.am
- Fix dist problem with translatable destkop files
2008-11-14 Dan Williams <[email protected]>
* Tag 0.7.0-rc2
2008-11-14 Dan Williams <[email protected]>
* src/applet-device-wifi.c
- (wireless_get_more_info): bring the secrets dialog to the front
2008-11-14 Dan Williams <[email protected]>
* src/connection-editor/nm-connection-list.c
- Pass system settings 'CanModify' property along to the connection
editor window
* src/connection-editor/nm-connection-editor.c
src/connection-editor/nm-connection-editor.h
- (nm_connection_editor_new): track whether system settings can actually
add conenctions or not
- (populate_connection_ui, set_editor_sensitivity): don't enable the
system settings checkbox if system settings can't be modified
2008-11-14 Dan Williams <[email protected]>
Patch from Kelemen Gábor <[email protected]>
* Makefile.am
nm-applet.desktop.in
nm-connection-editor.desktop.in
po/POTFILES.in
- Make desktop files translatable and fix up the descriptions to not
suck (bgo #559636)
2008-11-13 Dan Williams <[email protected]>
Add support for PKCS#12 private keys (bgo #558982)
* src/utils/utils.c
- (utils_fill_connection_certs): report errors
* src/connection-editor/nm-connection-editor.c
- (nm_connection_editor_set_connection): run initial validation from
and idle handler to allow file choosers time to asynchronously
find their files
* src/gconf-helpers/gconf-helpers.c
- (get_one_private_key): add private key passwords to the secrets hash
if the private key is a pkcs#12 private key
- (nm_gconf_get_keyring_items): move force-included private key passwords
functionality into get_one_private_key()
* src/wireless-security/eap-method.c
src/wireless-security/eap-method.h
- (eap_method_default_file_chooser_filter_new): use differnet filters
for private keys versus certificates, since private keys can be
pkcs#12 and certificates cannot
- (default_filter): split up into file_has_extension(),
file_is_der_or_pem(), default_filter_cert(), and
default_filter_privkey(); fix a bug where only the first 1K of a
candidate file would be read, missing some certificates with long
text descriptions
- (eap_method_validate_filepicker): take the private key password for
validation purposes; return the certificate/key type
* src/wireless-security/eap-method-peap.c
src/wireless-security/eap-method-ttls.c
- Update for eap_method_validate_filepicker() changes
* src/wireless-security/eap-method-tls.c
- (eap_method_tls_new): handle phase2 secrets too; and do initial
validation from and idle handler to allow file choosers time to
asynchronously find their file
- (setup_filepicker): connect a special handler to the private key
chooser so that the client certificate chooser can be disabled when
the user picks a pkcs#12 private key; additionally, work around a
GTK+ issue where GTK would clear the choosers filter
- (private_key_picker_helper): disable the client certificate chooser
button when the private key is pkcs#12
- (fill_connection): if the private key is pkcs#12, set the client
certificate to the the same file as the private key, as NM requires
- (validate): ignore the client certificate if the private key is
pkcs#12
2008-11-13 Tambet Ingo <[email protected]>
* src/gconf-helpers/gconf-helpers.c (get_one_private_key): Set the
GByteArray's content correctly.
2008-11-07 Dan Williams <[email protected]>
Fix bgo #505211 and harmonize tooltips
* src/applet.c
src/applet.h
- (nma_menu_deactivate_cb): refresh the tooltip when the menu closes,
since it was cleared when the menu was shown
- (applet_common_get_device_icon): NEED_AUTH state shouldn't just show
a disconnected icon; should do better here though in the future
- (get_tip_for_device_state): fallback tooltips if the device class
didn't set any
- (get_tip_for_vpn): VPN tips
- (applet_update_icon): show both default device and VPN tips
* src/applet-device-cdma.c
src/applet-device-gsm.c
src/applet-device-wifi.c
src/applet-device-wired.c
- Make tooltips consistent, and emphasize the actual connection which
is being activated or is active
2008-11-06 Claude Paroz <[email protected]>
* src/connection-editor/nm-connection-editor.glade:
- Remove translatable property on stock label.
2008-11-05 Dan Williams <[email protected]>
* src/connection-editor/page-ip4.c
src/connection-editor/ip4-routes-dialog.c
- Make address/route list editing less sucky by re-focusing on the next
column in the list rather than out of the list entirely
2008-11-05 Dan Williams <[email protected]>
Clear up ambiguity reported in bgo #559402
* src/connection-editor/page-ip4.c
- (populate_ui): show netmask, not prefix
- (parse_netmask): slightly stricter prefix checking; use inet_pton
* src/connection-editor/ip4-routes-dialog.c
- (ip4_routes_dialog_new): show netmask, not prefix
- (ip4_routes_dialog_update_setting): stricter validation of route options
2008-11-03 Dan Williams <[email protected]>
* src/applet-device-cdma.c
src/applet-device-gsm.c
src/applet-device-wifi.c
src/applet-device-wired.c
src/applet.c
src/gconf-helpers/gconf-helpers.c
src/gconf-helpers/nma-gconf-connection.c
src/vpn-password-dialog.c
- Use detailed NMSettings errors
2008-11-03 Dan Williams <[email protected]>
* src/applet-dialogs.c
- (create_info_label, create_info_label_security, info_dialog_add_page):
Make info items selectable (bgo #558975)
2008-11-03 Dan Williams <[email protected]>
* src/connection-editor/page-ppp.c
- (use_mppe_toggled_cb, populate_ui): ensure changes get saved
(bgo #559077)
2008-11-02 Dan Williams <[email protected]>
* Tag 0.7.0-rc1
2008-11-02 Dan Williams <[email protected]>
* src/applet.c
src/applet.h
- (find_active_device): return the active connection object instead of
just the active connection's specific object
- (applet_settings_new_secrets_requested_cb): pass the active connection
to the device subclasses
* src/applet-device-wired.c
src/applet-device-wifi.c
src/applet-device-gsm.c
src/applet-device-cdma.c
- Attach any secrets dialogs to the active connection object, such that
when the active connection object goes away the dialog also gets
closed
2008-10-31 Dan Williams <[email protected]>
* src/gconf-helpers/nma-gconf-connection.c
- (update): actually save private values like cert and key paths
* src/connection-editor/nm-connection-list.c
- (add_connection): fill certificate and private key items before adding
so that cert data actually gets to the system settings service
- (update_connection): copy private values before trying to update the
connection so that they actually get saved
2008-10-31 Dan Williams <[email protected]>
* src/gconf-helpers/gconf-helpers.c
src/gconf-helpers/gconf-helpers.h
- (nm_gconf_copy_private_connection_values): copy private values (like
certificate paths and such) between connections
- (nm_gconf_connection_duplicate): use nm_gconf_copy_private_connection_values()
* src/connection-editor/nm-connection-list.c
- (update_connection): make sure to copy private values when updating
the connection
2008-10-30 Dan Williams <[email protected]>
* src/applet-device-wifi.c
src/applet-dialogs.c
src/gconf-helpers/gconf-helpers.c
src/gconf-helpers/gconf-upgrade.c
src/utils/utils.c
src/wireless-security/eap-method-leap.c
src/wireless-security/eap-method-peap.c
src/wireless-security/eap-method-simple.c
src/wireless-security/eap-method-tls.c
src/wireless-security/eap-method-ttls.c
src/wireless-security/eap-method.c
src/wireless-security/wireless-security.c
- Use 802.1x setting accessors
2008-10-30 Dan Williams <[email protected]>
* src/applet-device-wifi.c
src/applet-dialogs.c
src/connection-editor/page-wireless-security.c
src/gconf-helpers/gconf-upgrade.c
src/utils/utils.c
src/wireless-dialog.c
src/wireless-security/wireless-security.c
src/wireless-security/ws-dynamic-wep.c
src/wireless-security/ws-leap.c
src/wireless-security/ws-wep-key.c
src/wireless-security/ws-wpa-eap.c
src/wireless-security/ws-wpa-psk.c
- Use wireless security setting accessors
2008-10-29 Dan Williams <[email protected]>
* src/applet-dialogs.c
src/connection-editor/ip4-routes-dialog.c
src/connection-editor/ip4-routes-dialog.h
src/connection-editor/page-ip4.c
src/gconf-helpers/gconf-upgrade.c
src/wireless-dialog.c
- Use IP4 setting accessors; fix leaks
2008-10-29 Tambet Ingo <[email protected]>
* src/connection-editor/nm-connection-list.c
src/connection-editor/page-vpn.c
src/connection-editor/vpn-helpers.c
src/gconf-helpers/gconf-upgrade.c
src/gconf-helpers/nma-gconf-connection.c
src/vpn-password-dialog.c
- Use VPN setting accessors.
2008-10-28 Dan Williams <[email protected]>
Patch from Tambet Ingo <[email protected]>
* src/applet-device-wifi.c
src/applet-dialogs.c
src/connection-editor/page-wireless-security.c
src/connection-editor/page-wireless.c
src/gconf-helpers/gconf-upgrade.c
src/utils/utils.c
src/wireless-dialog.c
src/wireless-security/wireless-security.c
src/wireless-security/ws-leap.c
src/wireless-security/ws-wep-key.c
src/wireless-security/ws-wpa-psk.c
- Use wireless setting accessors
2008-10-27 Dan Williams <[email protected]>
* src/gconf-helpers/gconf-helpers.c
src/gconf-helpers/gconf-helpers.h
- (nm_gconf_set_pre_keyring_callback): set a function to be called when
doing synchronous keyring operations
- (nm_gconf_add_keyring_item, nm_gconf_get_keyring_items): call that
function if the keyring is locked
* src/applet.c
- (applet_pre_keyring_callback): close the menu before showing accessing
the keyring (bgo #546034, rh #353451)
2008-10-27 Dan Williams <[email protected]>
Patch from Tambet Ingo <[email protected]>
* src/connection-editor/page-ppp.c
- Use ppp setting accessors
2008-10-27 Dan Williams <[email protected]>
Patch from Tambet Ingo <[email protected]>
* src/applet-device-cdma.c
src/applet-device-gsm.c
src/applet-device-wifi.c
src/applet-device-wired.c
src/applet.c
src/gconf-helpers/gconf-helpers.c
- Use setting accessors
2008-10-27 Dan Williams <[email protected]>
* src/connection-editor/nm-connection-editor.c
- Don't allow editing of read-only connections
* src/gconf-helpers/gconf-helpers.c
- Don't read or save the connection setting's 'read-only' value to GConf
2008-10-27 Dan Williams <[email protected]>
* src/connection-editor/nm-connection-editor.c
- Revert unintended checkin for read-only connections that snuck into
the previous commit
2008-10-26 Dan Williams <[email protected]>
Patch from Jaap A. Haitsma <[email protected]>
* src/connection-editor/nm-connection-editor.c
src/connection-editor/nm-connection-list.c
- Make default window icons actually work (bgo #553170)
2008-10-26 Dan Williams <[email protected]>
Patch from Tambet Ingo <[email protected]>
* src/applet-device-cdma.c
src/applet-device-gsm.c
src/applet-device-wifi.c
src/applet-device-wired.c
src/applet-dialogs.c
src/applet.c
src/connection-editor/nm-connection-editor.c
src/connection-editor/nm-connection-list.c
src/connection-editor/page-ip4.c
src/connection-editor/vpn-helpers.c
src/gconf-helpers/gconf-helpers.c
src/gconf-helpers/gconf-upgrade.c
src/gconf-helpers/nma-gconf-connection.c
src/utils/utils.c
src/vpn-password-dialog.c
src/wired-dialog.c
src/wireless-dialog.c
src/wireless-security/wireless-security.c
- Update connection setting accessors
2008-10-26 Dan Williams <[email protected]>
Patch from Tambet Ingo <[email protected]>
* src/applet-device-gsm.c
src/connection-editor/nm-connection-list.c
src/connection-editor/page-mobile.c
- Use gsm setting accessors
2008-10-26 Dan Williams <[email protected]>
Patch from Tambet Ingo <[email protected]>
* src/applet-device-cdma.c
src/connection-editor/nm-connection-list.c
src/connection-editor/page-mobile.c
- Use cdma setting accessors
2008-10-26 Dan Williams <[email protected]>
Patch from Tambet Ingo <[email protected]>
* src/applet-device-wired.c
src/connection-editor/page-dsl.c
- Use pppoe setting accessors
2008-10-26 Dan Williams <[email protected]>
Patch from Tambet Ingo <[email protected]>
* src/connection-editor/ce-page.c
src/connection-editor/ce-page.h
src/connection-editor/page-wired.c
src/utils/utils.c
- Use wired setting accessors
2008-10-26 Dan Williams <[email protected]>
Patch from Tambet Ingo <[email protected]>