summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: a1024cef614c4ac94856ae2f55b9f91675494953 (plain)
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
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
2006-08-15  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Update intltool req.

2006-08-11  Alexander Larsson  <alexl@redhat.com>

	* reference/gnome-keyring-docs.sgml:
	Use sane title in docs (#348477)
	Patch from Ed Catmur   
	
2006-08-11  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-daemon.c: (find_keyring):
	* gnome-keyring.c: (gnome_keyring_find_network_password_sync):
	Don't crash on deleting a NULL keyring (#350417)
	Patch from Gonzalo Paniagua Javier   

2006-08-01  Arangel Angov <ufo@linux.net.mk>

	* Added Slovenian Translation to LINGUAS
	and added sl.po to /po directory.

2006-06-21  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-proto.c (gnome_keyring_proto_start_operation):
	Add g_warning if application name not set.

2006-06-16  Jules Colding  <colding@omesc.com>

	* gnome-keyring.c (gnome_keyring_item_grant_access_rights_sync): 
	New function to explicitly set access rights to a keyring item 
	for a specific application.

	* gnome-keyring.h: Declared new function to set access rights to 
	keyring item for specific application

2006-06-12  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Post-release version bump

=== gnome-keyring 0.5.1 ===

2006-06-12  Alexander Larsson  <alexl@redhat.com>

	* NEWS:
	Update for release.

	* configure.in:
	Update version to 0.5.1, better than .0 for an unstable branch.

2006-04-24  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring.c (gnome_keyring_change_password_sync):
	Whitespace fix (#339436)

2006-04-20  Alexander Larsson  <alexl@redhat.com>

	* Makefile.am (DISTCHECK_CONFIGURE_FLAGS):
	Add --enable-gtk-doc to distcheck flags

2006-04-20  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-daemon.c: (op_set_item_info_execute),
	(op_set_item_attributes_execute):
	Fix more NULL check order. (#338594)
	Patch from Pascal Terjan

2006-04-19  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-ask.c:
	Add password strength meter. (#166504)
	Patch from Jorge Bernal

2006-04-19  Alexander Larsson  <alexl@redhat.com>
	* gnome-keyring-daemon.c: (finish_ask_io):
	Save keyring when ACL is added. (#326221)
	Patch from Jon Nettleton

2006-04-19  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-daemon-file.c (get_keyring_dir):
	Create ~/.gnome2 if needed. (#143892)

2006-04-19  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-daemon.c: 
	* gnome-keyring-proto.h:
	* gnome-keyring.[ch]:
	Add gnome_keyring_daemon_set_display_sync that lets you
	set the DISPLAY if not already set. (#333653)
	Patch from Jon Nettleton

2006-04-19  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-daemon.c: (op_delete_item_execute):
	Fix NULL check order. (#338594)
	Patch from Pascal Terjan
	
2006-04-19  Alexander Larsson  <alexl@redhat.com>

	* Makefile.am:
	* configure.in:
	Use po/LINGUAS
	Patch from Przemyslaw Grzegorczyk

2006-04-19  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-daemon.c (close_stdinout): 
	Remove unnecessary closes (#141324)

2006-04-19  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-ask.c:
	* gnome-keyring-daemon.c:
	* gnome-keyring-daemon.h:
	* gnome-keyring-proto.c:
	* gnome-keyring-proto.h:
	* gnome-keyring.c:
	* gnome-keyring.h:
	Allow to change the password of a keyring.
	Patch from Jon Nettleton

2006-04-19  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Update version to 0.5.0

	* MAINTAINERS:
	Added file

=== Branched for 2.14 work on gnome-2-14 branch ==

2006-04-17  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Remove obsolete entry for no_NO
	* po/no.po: And the translation.

2006-04-14  Dan Williams  <dcbw@redhat.com>

	* gnome-keyring-daemon-io.c
		- (gnome_keyring_client_state_machine): if we get a null string
		as the GNOME_CLIENT_STATE_READ_DISPLAYNAME for some reason,
		ignore the request.  Part of patch from Bug #156860

2006-04-14  Dan Williams  <dcbw@redhat.com>

	* configure.in
		- Check for getpeerucred

	* gnome-keyring-daemon-io.c
		- Use getpeerucred() if we have it (Solaris)

2006-04-14  Dan Williams  <dcbw@redhat.com>

	* configure.in
		- Check for /dev/random

	* gnome-keyring-daemon.c
		- (init_salt): don't hit /dev/random unless we've got it

2006-04-13  Sven Herzberg  <herzi@gnome-de.org>

	* .cvsignore,
	* reference/.cvsignore,
	* reference/tmpl/.cvsignore: silence

2006-04-11  Sven Herzberg  <herzi@gnome-de.org>

	* autogen.sh: accept command line parameters
	* reference/tmpl/empty.sgml: satisfy stupid make dependency

2006-04-11  Sven Herzberg  <herzi@gnome-de.org>

	reviewed by: Alex Larsson

	* Makefile.am: added the reference subdirectory
	* autogen.sh: enable gtk-doc for developer builds (necessary for dist)
	* configure.in: check for gtk-doc, set distcheck flags, build the
	Makefile
	* gnome-keyring.c: documented gnome_keyring_find_items_sync()
	* reference/Makefile.am: documentation build system
	* reference/gnome-keyring-docs.sgml: rough documentation framework
	* reference/gnome-keyring-sections.txt: some documentation
	categorization (needs to be further split)

2006-04-03  Dan Williams  <dcbw@redhat.com>

	* gnome-keyring-daemon.c
	    - (init_salt): use fstat() on /dev/random after opening it to
	    ensure that it's a character device.  Make general rather than just
	    for Linux, since Solaris and FreeBSD also use this code.
	    (Bug #141322)

2006-04-03  Dan Williams  <dcbw@redhat.com>

	* gnome-keyring-daemon.c
	    - (gnome_keyring_application_ref_new_from_pid): use g_file_read_link(),
	    and add code for reading app path on FreeBSD.  (Bug #141323)

2006-04-03  Dan Williams  <dcbw@redhat.com>

	* gnome-keyring-daemon-io.c
	  gnome-keyring.c
	    - Updates for FreeBSD / SCM_CREDS support, fix endian
	    issues on non-i386 platforms.

2006-04-03  Dan Williams  <dcbw@redhat.com>

	Patch from Joe Marcus Clarke <marcus@freebsd.org>
	
	* gnome-keyring.c
	  - Implement SCM_CREDS support (#142373)

2006-04-03  Dan Williams  <dcbw@redhat.com>

	Patch from Dave Malcolm <david@davemalcolm.demon.co.uk>

	* test.c
	  - More verbose error messages (Bug #141761)

2006-04-03  Dan Williams  <dcbw@redhat.com>

	Patch from Jon Nettleton <jon.nettleton@gmail.com>

	* gnome-keyring.c
	  - (gnome_keyring_get_info_sync): encode keyring name (Bug #336893)

2006-04-03  Dan Williams  <dcbw@redhat.com>

	* gnome-keyring-daemon-file.c
	  - (update_keyring_from_disk): fix leak (bug #319053)

2006-04-03  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* gnome-keyring-ask.c: (run_dialog): Added labels for the entries 
	(#323269).

2006-03-24  Tommi Vainikainen  <thv@iki.fi>

	* configure.in (ALL_LINGUAS): Added Dzongkha (dz).

2006-03-20  Vladimer Sichinava  <vlsichinava@gmail.com>

        * configure.in: Added "ka" (Georgian) to ALL_LINGUAS

2006-03-13  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Post-release version bump

=== gnome-keyring 0.4.9 ===

2006-03-13  Alexander Larsson  <alexl@redhat.com>

	* NEWS:
	Update for release

2006-03-03  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring.c:
	Get proper return values for some sync calls. (#332845)
	Patch from Jon Nettleton

2006-02-27  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	post release version bump

=== gnome-keyring 0.4.8 ===

2006-02-27  Alexander Larsson  <alexl@redhat.com>

	* NEWS:
	Update for release

2006-02-17  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-ask.c:
	Fix crash when you deny without typing a password.
	Patch from  Brent Smith

2006-02-13  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Post release version bump.

=== gnome-keyring 0.4.7 ===

2006-02-13  Alexander Larsson  <alexl@redhat.com>

	* NEWS:
	Update for release.

2006-01-07  Chao-Hsiung Liao  <j_h_liau@yahoo.com.tw>

	* configure.in: Add "zh_HK" to ALL_LINGUAS.

2005-12-16  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-ask.c (_):
	Fix !ENABLE_NLS case (#324213)

2005-11-14  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Post release version bump.

=== gnome-keyring 0.4.6 ===

2005-11-14  Alexander Larsson  <alexl@redhat.com>

	* NEWS:
	Update for release.

2005-10-26  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-daemon.c: (access_request_default_keyring):
	Fix sparse warning. Patch from Kjartan Maraas.

2005-10-24  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-ask.c:
	Confirm password when selecting new password.
	Patch from Trevor Davenport (#311872)

2005-09-14  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Post release version bump.

=== gnome-keyring 0.4.5 ===

2005-09-14  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	Update for release.

2005-09-14  Fernando Herrera  <fherrera@onirica.com>

	* gnome-keyring.c: (run_sync_operation),
	(gnome_keyring_set_default_keyring_sync),
	(gnome_keyring_lock_all_sync), (gnome_keyring_create_sync),
	(gnome_keyring_unlock_sync), (gnome_keyring_lock_sync),
	(gnome_keyring_delete_sync), (gnome_keyring_set_info_sync),
	(gnome_keyring_item_delete_sync),
	(gnome_keyring_item_set_info_sync),
	(gnome_keyring_item_set_attributes_sync),
	(gnome_keyring_item_set_acl_sync): Fix all these sync functions
	adding a receive buffer. Patch by Crispin Flowerday <crispin@gnome.org>

=== gnome-keyring 0.4.4 ===

2005-09-05  Alexander Larsson  <alexl@redhat.com>

	* NEWS:
	Update for release.

2005-08-30  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-ask.c: (run_dialog):
	Fix warning (#310903)

2005-07-15  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Require gtk 2.6.0 (needed for gtk_window_set_icon_name)

2005-07-01  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Post release version bump.

=== gnome-keyring 0.4.3 ===

2005-07-01  Alexander Larsson  <alexl@redhat.com>

	* NEWS:
	Update for release.

2005-06-26  Kjartan Maraas  <kmaraas@gnome.org>

	* gnome-keyring-daemon-file.c: (update_keyrings_from_disk):
	Don't leak the name of the directory here. Closes bug #166797.

2005-06-23  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-ask.c: (run_dialog):
	Add window icon.
	Patch by Jaap A. Haitsma

2005-06-10  Ignacio Casal Quinteiro  <nacho.resa@gmail.com>

	* configure.in: Added 'gl' to ALL_LINGUAS.

2005-05-20  James Bowes  <bowes@cs.dal.ca>

	* gnome-keyring.c: (gnome_keyring_set_default_keyring_sync),
	(gnome_keyring_get_default_keyring_sync),
	(gnome_keyring_list_keyring_names_sync),
	(gnome_keyring_lock_all_sync), (gnome_keyring_create_sync),
	(gnome_keyring_unlock_sync), (gnome_keyring_lock_sync),
	(gnome_keyring_delete_sync), (gnome_keyring_get_info_sync),
	(gnome_keyring_set_info_sync), (gnome_keyring_list_item_ids_sync),
	(gnome_keyring_item_delete_sync),
	(gnome_keyring_item_get_info_sync),
	(gnome_keyring_item_set_info_sync),
	(gnome_keyring_item_get_attributes_sync),
	(gnome_keyring_item_set_attributes_sync),
	(gnome_keyring_item_get_acl_sync),
	(gnome_keyring_item_set_acl_sync):
	* gnome-keyring.h:
	Implement synchronous functions for all async functions.

2005-05-06  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-daemon-file.c (generate_key):
	More char signedness fixes.
	Patch from Vincent Untz
	
2005-05-04  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-daemon-file.c:
	* gnome-keyring-daemon-io.c:
	* gnome-keyring-proto.h:
	* md5.c:
	Fix char signness issues (#302938)
	Based on patch from Jeramy Rutley

2005-04-24  James Bowes  <bowes@cs.dal.ca>

	* gnome-keyring-daemon.c: (op_set_keyring_info_execute):
	* gnome-keyring-proto.c:
	(gnome_keyring_proto_encode_set_keyring_info),
	(gnome_keyring_proto_decode_set_item_info),
	(gnome_keyring_proto_decode_set_keyring_info):
	* gnome-keyring-proto.h: Implement gnome_keyring_set_info.

2005-04-21  James Bowes  <bowes@cs.dal.ca>

	* gnome-keyring-daemon.c: Fixed a typo in the 
	GnomeKeyringOperationImplementation keyring_ops, where 
	get_item_acl_execute was hooked to set_item..._collect.

2005-03-31  Steve Murphy  <murf@e-tools.com>

        * configure.in: Added "rw" to ALL_LINGUAS.

2005-03-23  Adi Attar  <aattar@cvs.gnome.org>

	* configure.in: Added 'xh' to ALL_LINGUAS.

2005-03-07  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Post release bump.

=== gnome-keyring 0.4.2 ===

2005-03-07  Alexander Larsson  <alexl@redhat.com>

	* NEWS:
	Update for release.

2005-02-21  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-ask.c:
	* gnome-keyring-daemon-io.c:
	* gnome-keyring-daemon.h:
	* gnome-keyring-private.h:
	* gnome-keyring.c:
	* gnome-keyring.h:
	Some AIX portability patches from The Written Word
	(#148385)

2005-01-14  Pawan Chitrakar  <pawan@nplinux.org>

	* configure.in: Added ne "Nepali" in ALL_LINGUAS

2005-01-11  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Post release bump

=== gnome-keyring 0.4.1 ===

2005-01-11  Alexander Larsson  <alexl@redhat.com>

	* NEWS:
	Update for release

2004-11-26  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-daemon.c: (lifetime_slave_pipe_io), (main):
	Added support for slaving lifetime to filedescriptor.

2004-10-11  Roozbeh Pournader  <roozbeh@farsiweb.info>

	* configure.in:
	Added 'fa' (Persian) to ALL_LINGUAS

2004-09-13  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Post release bump.

=== gnome-keyring 0.4.0 ===

2004-09-13  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in:
	Bump version to 0.4

2004-09-09  Mugurel Tudor  <mugurelu@go.ro>

	* configure.in: Added ro to ALL_LINGUAS

2004-09-07  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring.c: 
	* gnome-keyring-daemon.c:
	Include string.h to fix build (#151825)

2004-08-30  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Post-release version bump

=== gnome-keyring 0.3.3 ===

2004-08-30  Alexander Larsson  <alexl@redhat.com>

	* NEWS:
	Update for 0.3.3

2004-08-28  Akagic Amila  <bono@linux.org.ba>

	* configure.in: Added 'bs' to ALL_LINGUAS.	

2004-08-26  Jayaradha <njaya@redhat.com>

	* configure.in: Added ta to ALL_LINGUAS.

2004-08-26  Alexander Larsson  <alexl@redhat.com>

	* AUTHORS (Contributors):
	Add Fernando to AUTHORS.

2004-08-13  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Added nb to ALL_LINGUAS.

2004-08-09 Amanpreet Singh Alam<aalam@redhat.com>
	*configure.in: Add Gujurati Lang

2004-08-07  Runa Bhattacharjee <runab@redhat.com>
	* configure.in: Added Bengali (bn) to ALL_LINGUAS.

2004-07-20  Fernando Herrera  <fherrera@onirica.com>

	* configure.in:
	Post release version bump

=== gnome-keyring 0.3.2 ===

2004-07-20  Fernando Herrera  <fherrera@onirica.com>

	* Makefile.am:
	* NEWS:
	* configure.in: Update for 0.3.2 release. Incremented micro number
	because of the API aditions.

2004-07-14  Fernando Herrera  <fherrera@onirica.com>

	reviewed by: Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-daemon-file.c: (remove_keyring_file_from_disk):
	* gnome-keyring-daemon.c: (delete_keyring),
	(op_delete_keyring_execute), (op_get_item_acl_execute),
	(op_set_item_acl_execute):
	* gnome-keyring-daemon.h:
	* gnome-keyring-private.h:
	* gnome-keyring-proto.c: (gnome_keyring_proto_encode_set_acl),
	(gnome_keyring_proto_decode_acl), (gnome_keyring_proto_add_acl),
	(gnome_keyring_proto_decode_get_acl_reply),
	(gnome_keyring_proto_decode_set_attributes),
	(gnome_keyring_proto_decode_set_acl):
	* gnome-keyring-proto.h:
	* gnome-keyring-utils.c: (gnome_keyring_application_ref_new),
	(gnome_keyring_application_ref_free),
	(gnome_keyring_application_ref_copy),
	(gnome_keyring_access_control_new),
	(gnome_keyring_access_control_free),
	(gnome_keyring_access_control_copy), (gnome_keyring_acl_copy),
	(gnome_keyring_acl_free): Add support for deleting keyrings and
	setting/gettings ACL
	* gnome-keyring.c: (op_failed), (gnome_keyring_get_acl_reply),
	(gnome_keyring_item_get_acl), (gnome_keyring_item_set_acl),
	(gnome_keyring_item_ac_get_display_name),
	(gnome_keyring_item_ac_set_display_name),
	(gnome_keyring_item_ac_get_path_name),
	(gnome_keyring_item_ac_set_path_name),
	(gnome_keyring_item_ac_get_access_type),
	(gnome_keyring_item_ac_set_access_type):
	* gnome-keyring.h: new API functions for getting/setting ACL and for
	manipulating GnomeKeyringAccessControl

2004-07-05  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Post release version bump

=== gnome-keyring 0.3.1 ===

2004-07-05  Alexander Larsson  <alexl@redhat.com>

	* NEWS:
	Update for 0.3.1

	* Makefile.am (EXTRA_DIST):
	Add keyring-intro.txt

2004-06-10  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-daemon.c (op_unlock_keyring_execute):
	Make NULL unlock the default keyring.

2004-05-27  Mohammad DAMT  <mdamt@bisnisweb.com>
 
        * po/id.po: Added Indonesian translation done by Ahmad Riza H Nst <rizahnst@eriagempita.co.id>
        * configure.in: Added id to ALL_LINGUAS

2004-05-26  Alexander Shopov <ash@contact.bg>

	* configure.in: Added "bg" (Bulgarian) to ALL_LINGUAS.

2004-05-21  Iñaki Larrañaga  <dooteo@euskalgnu.org>

	* configure.in: Added "eu" (Basque) to ALL_LINGUAS.

2004-05-18  Fernando Herrera  <fherrera@onirica.com>

	* keyring-intro.txt: New intro doc.

2004-04-19  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Bump version to 0.3.1 on head. 0.2.x is now on gnome-2-6 branch
	
2004-04-19  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Post release version bump

=== gnome-keyring 0.2.1 ===

2004-04-19  Alexander Larsson  <alexl@redhat.com>

	* NEWS:
	Update for release

2004-04-03  Samúel Jón Gunnarsson  <sammi@techattack.nu>

	* configur.in: Added "is" to ALL_LINGUAS.
	
2004-03-24  Guntupalli Karunakar  <karunakar@freedomink.org>

        * configure.in: Added "pa" (Punjabi) to ALL_LINGUAS.

2004-03-22  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Post release version bump

=== gnome-keyring 0.2.0 ===

2004-03-22  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in:
	Update to 0.2.0

2004-03-21  Abel Cheung  <maddog@linux.org.hk>

	* configure.in: Added "ca" "nl" "tr" "zh_CN" "zh_TW" to ALL_LINGUAS.

2004-03-20  Gareth Owen  <gowen72@yahoo.com>

	* configure.in: Added en_GB to ALL_LINGUAS

2004-03-19  Andras Timar  <timar@gnome.hu>

	* hu.po: Added "hu" (Hungarian) to ALL_LINGUAS.

2004-03-17  Dafydd Harries  <daf@muse.19inch.net>

	* configure.in: Added "cy" (Welsh) to ALL_LINGUAS.

=== gnome-keyring 0.1.91 ===

2004-03-15  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in:
	Update to 0.1.91

2004-03-13  Maxim Dziumanenko <mvd@mylinux.com.ua>

	* configure.in: Added uk (Ukrainian) to ALL_LINGUAS.

2004-03-11  Dmitry G. Mastrukov  <dmitry@taurussoft.org>

	* configure.in: Added Russian to ALL_LINGUAS.

2004-03-10  Alexander Winston  <alexander.winston@comcast.net>

	* configure.in: Added en_CA to ALL_LINGUAS.

2004-03-10  Gustavo Maciel Dias Vieira  <gdvieira@zaz.com.br>

	* configure.in: Added pt_BR to ALL_LINGUAS.

=== gnome-keyring 0.1.90 ===

2004-03-08  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in:
	Update to 0.1.90

2004-03-02  Glynn Foster  <glynn.foster@sun.com>

        * Makefile.am:
        * configure.in:
        * gnome-keyring-1-uninstalled.pc.in:
        Add uninstalled pkg-config file.

2004-02-27  Paisa Seeluangsawat  <paisa@users.sf.net>

	* configure.in: Added "th" (Thai) to ALL_LINGUAS.

2004-02-25  Alessio Frusciante  <algol@firenze.linux.it>

	* configure.in: Added "it" (Italian) to ALL_LINGUAS.

2004-02-22  Mətin Əmirov  <metin@karegen.com>

        * configure.in: Added "az" to ALL_LINGUAS.

2004-02-11  Arafat Medini  <lumina@silverpen.de>

        * configure.in: Added Arabic locale ar to ALL_LINGUAS.
                                            
2004-02-11  Pauli Virtanen  <pauli.virtanen@hut.fi>

	* configure.in: Added "fi" (Finnish) to ALL_LINGUAS.

=== gnome-keyring 0.1.4 ===

2004-02-11  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in:
	Bump to 0.1.4

2004-02-09  Alexander Larsson  <alexl@redhat.com>

	* Makefile.am (INCLUDES): 
	* gnome-keyring-daemon.c (launch_ask_helper):
	Move gnome-keyring-ask to libexec.

2004-02-06  Robert Sedak  <robert.sedak@sk.htnet.hr>

        * configure.in: Added "hr" (Croatian) to ALL_LINGUAS.

2004-02-04  Laurent Dhima  <laurenti@alblinux.net>

	* configure.in: Added "sq" to ALL_LINGUAS.

2004-01-31  Sanlig Badral  <badral@openmn.org>

        * configure.in: Added "mn" (Mongolian) to ALL_LINGUAS.

2004-01-30  Ole Laursen  <olau@hardworking.dk>

	* configure.in: Added "da" (Danish) to ALL_LINGUAS.

=== gnome-keyring 0.1.3 ===

2004-01-30  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in:
	Update to 0.1.3

2004-01-14  Jody Goldberg <jody@gnome.org>

	* gnome-keyring-ask.c : include <locale.h> cause -Werror makes a
	  missing include unhappy.

2004-01-15  Changwoo Ryu  <cwryu@debian.org>

	* configure.in: Added "ko" to ALL_LINGUAS.

2004-01-14  Christian Neumair  <chris@gnome-de.org>

	* configure.in: (ALL_LINGUAS): Add German to ALL_LINGUAS.

2004-01-13  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-ask.c: (get_app_information),
	(get_keyring_information), (ask_for_keyring_password),
	(ask_for_new_keyring_password), (ask_for_default_keyring),
	(ask_for_item_read_write_acccess):
	Don't split up strings for translations.
	Mark some new strings translated.
	Patch from chris@gnome-de.org

2004-01-13  Alexander Larsson  <alexl@redhat.com>

	* Makefile.am:
	* gnome-keyring-ask.c: (main):
	Actually use translations.

2004-01-13  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	* gnome-keyring-daemon-io.c:
	* gnome-keyring-daemon.c:
	Portability fixes from mterry@fastmail.fm

2004-01-13  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-ask.c:
	Fix some leaks.
	Patch from tom@aliacom.fr.

2004-01-12  Žygimantas Beručka  <uid0@tuxfamily.org>

	* configure.in: Added "lt" (Lithuanian) to ALL_LINGUAS.

=== gnome-keyring 0.1.2 ===

2004-01-12  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in: 
	Update for 0.1.2

2004-01-11  Christophe Merlet  <redfox@redfoxcenter.org>

	* configure.in (ALL_LINGUAS): Added "fr" (French).

2004-01-08  David Coulthart  <davec@columbia.edu>

	* gnome-keyring.h: 
	* gnome-keyring.c: 
	* test.c:
	s/gnome_keyring_is_availible/gnome_keyring_is_available/

2004-01-08  Alex Duggan  <aldug@astrolinux.com>
	
	* configure.in: Require glib/gtk+ 2.3.1
	Fixes bug #129713
	
2004-01-07  Marcel Telka  <marcel@telka.sk>

	* configure.in (ALL_LINGUAS): Added sk.

2004-01-07  Alex Duggan  <aldug@astrolinux.com>

	* gnome-keyring-daemon-io.c: Use g_get_tmp_dir () instead of 
	hardcoding "/tmp"
	* .cvsignore: Add gnome-keyring-1.pc

2004-01-06  Kostas Papadimas <pkst@gnome.org>

        * configure.in: Added Greek (el) to ALL_LINGUAS.   

2004-01-05  Artur Flinta  <aflinta@cvs.gnome.org>
                                                                                                         
        * configure.in: Added pl to ALL_LINGUAS.

=== gnome-keyring 0.1.1 ===

2003-12-28  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in:
	Update for 0.1.1

2003-12-27  Hasbullah Bin Pit <sebol@ikhlas.com>
                                                                                
        * configure.in: Added 'ms' (Malay) to ALL_LINGUAS.

2003-12-24  Duarte Loreto <happyguy_pt@hotmail.com>

	* configure.in: Added Portuguese (pt) to ALL_LINGUAS.

2003-12-21  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>

	* configure.in: Added Spanish "es" to ALL_LINGUAS.

2003-12-19  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-daemon.c (main):
	Don't daemonize by default. gnome-keyring now dies with
	gnome-session. -d enables daemonization.

2003-12-17  Miloslav Trmac  <mitr@volny.cz>

	* configure.in: Added "cs" to ALL_LINGUAS.

2003-12-17  Christian Rose  <menthos@menthos.com>

	* configure.in: Added "sv" to ALL_LINGUAS.

2003-12-16  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-ask.c:
	(ask_for_item_read_write_acccess):
	Better wording for buttons

2003-12-16  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-ask.c (ask_for_new_keyring_password):
	Make the ask dialogs nicer.

2003-12-14  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Add norwegian translation.
	* po/no.po: Here too.

2003-12-15  Takeshi AIHANA <aihana@gnome.gr.jp>

	* configure.in: Added 'ja' Japanese into ALL_LINGUAS.

2003-12-10  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring.c (operation_io):
	Correct assertion

2003-12-09  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-daemon-io.c:
	FreeBSD patches from Joe Marcus Clarke
	
2003-12-08  Alex Duggan  <aldug@astrolinux.com>

	* configure.in:
	* Makefile.am:
	Build fixes to make gnome-keyring build with jhbuild again.

2003-12-08  Alexander Larsson  <alexl@redhat.com>

	* mkdtemp.[ch]:
	* Makefile.am:
	replacement for suffering OSes (from gettext)

	* configure.in:
	* gnome-keyring-daemon.c:
	portability fixes
	
2003-12-08  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Make the version 0.1.0 so next version is 0.1.1

=== gnome-keyring 0.1 ===

2003-12-08  Alexander Larsson  <alexl@redhat.com>

	* AUTHORS: 
	* TODO: 
	* README: 
	* NEWS:
	Some text for the 0.1 release

2003-12-06  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-daemon.c: (close_stdinout), (main):
	Print daemon pid on startup
	remove old test code
	correct envvar name
	
	* gnome-keyring.c: (connect_to_daemon):
	correct envvar name

2003-12-06  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-daemon.c (main):
	Close stdin/stdout in daemon process.
	
2003-12-06  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-daemon.c (main):
	Spawn in background unless -f specified
	clean up socket dir on exit

2003-12-05  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	remove AC_C_BIGENDIAN

2003-12-05  Alexander Larsson  <alexl@redhat.com>

	* TODO:
	update
	* gnome-keyring-daemon.c: (op_find_execute):
	fix typo
	
	* test.c: (print_attributes), (find_items_cb),
	(print_attributes_cb), (show_item):
	better find test

2003-12-05  Alexander Larsson  <alexl@redhat.com>

	* Makefile.am:
	* sha256.[ch]:
	* beecrypt_compat.h:
	Added sha256 from beecrypt
	
	* file-format.txt:
	* gnome-keyring-daemon-file.c:
	* gnome-keyring-daemon.[ch]:
	Use sha256 to get key and iv for aes crypto
	Add salt and hash rounds count.
	Warning: This changes the file format.
	
	* gnome-keyring-proto.[ch]:
	New function gnome_keyring_proto_get_bytes

2003-12-04  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring.c (operation_io):
	Fix type issue.

2003-12-04  Alexander Larsson  <alexl@redhat.com>

	* configure.in: 
	* Makefile.am (libgnomekeyringincludedir): 
	* gnome-keyring-1.0.pc.in: 
	* gnome-keyring-1.pc.in:
	1.0 -> 1

2003-12-04  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring.c (find_network_password_callback):
	Pass the right user data
	
2003-12-04  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-proto.c:
	(gnome_keyring_proto_decode_result_integer_reply):
	Allow NULL integer
	
	* gnome-keyring.[ch]:
	Sync item creation
	
	* test.c:
	More tests

2003-12-04  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring.[ch]:
	Add gnome_keyring_is_availible.

	* gnome-keyring-daemon-io.c (create_master_socket):
	Only use 6 X:es in socket name

2003-12-03  Alexander Larsson  <alexl@redhat.com>

	* TODO:
	Updated
	
	* gnome-keyring-daemon.c:
	Clean up acl setting
	Implement update_if_exists for create_item
	Order find results least specific first
	
	* gnome-keyring-proto.[ch]:
	Implement update_if_exists for create_item
	
	* gnome-keyring-utils.c: (gnome_keyring_found_list_free):
	implement
	
	* gnome-keyring.[ch]:
	Implement sync find ops
	Make valist ops don't ignore NULL/0 attributes
	Implement network password helpers
	
	* test.c:
	some more tests

2003-12-01  Alexander Larsson  <alexl@redhat.com>

	* Makefile.am:
	* file-format.txt:
	* md5.[ch]:
	* sha1.[ch]:
	Switch from sha1 to md5 to get a right size key for AES.

	* gnome-keyring-daemon-file.c:
	md5 update

	* gnome-keyring-daemon.c:
	md5 update.
	append new items instead of prepending
	
	* TODO:
	Update
	
	* test.c:
	Fix up set default command name

2003-11-29  Danilo Šegan  <dsegan@gmx.net>

	* configure.in: Added "sr" and "sr@Latn" to ALL_LINGUAS.

2003-11-28  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-daemon.c:
	* gnome-keyring-proto.c: 
	* gnome-keyring-proto.h:
	implement set_info and set_attributes
	
	* gnome-keyring.h:
	* gnome-keyring-utils.c:
	Add gnome_keyring_item_info_new
	
	* test.c:
	generic ok callback
	more tests

2003-11-28  Alexander Larsson  <alexl@redhat.com>

	* Makefile.am:
	Install header files and .pc file
	
	* configure.in:
	* gnome-keyring-1.0.pc.in:
	pkg-config file for gnome-keyring
	
	* gnome-keyring.h:
	add some comments about the unfinished part

2003-11-28  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-daemon-file.c: (set_default_keyring):
	Handle setting to NULL.
	
	* gnome-keyring-daemon-io.c:
	(gnome_keyring_client_fixup_for_deleted),
	(gnome_keyring_client_state_machine):
	Clean up clients outstanding access requests when
	items/keyring are deleted
	
	* gnome-keyring-daemon.c:
	Clean up outstanding ask access requests when
	items/keyring are deleted.
	Fix up item/keyring destruction paths
	implement lock, lock_all & delete_item
	
	* gnome-keyring-daemon.h:
	New functions
	
	* gnome-keyring-proto.h:
	Remove unnecessary enum value
	
	* gnome-keyring.c: (gnome_keyring_item_delete):
	Fix opcode for delete_item
	
	* test.c:
	Make usable

2003-11-28  Alexander Larsson  <alexl@redhat.com>

	* .cvsignore:
	* Makefile.am:
	* test.c:
	Add cheesy test app

	* gnome-keyring-daemon-file.c:
	fix errno bugs
	New function set_default_keyring
	Read the default keyring on update_keyrings
	
	* gnome-keyring-daemon.c:
	Reset default_keyring to NULL when its destroyed
	implement set_default_keyring
	fix errno bugs
	
	* gnome-keyring-daemon.h:
	Export new stuff and clean up indention a bit
	
	* list-keyrings.c:
	Nicer output

2003-11-28  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-utils.c (gnome_keyring_item_info_free):
	Don't crash if info is NULL

	* gnome-keyring-daemon.c:
	Implement gnome_keyring_ask_cancel

	* gnome-keyring-daemon-io.c (gnome_keyring_client_state_machine):
	Avoid crash on gnome_keyring_ask reentrancy
	
2003-11-28  Alexander Larsson  <alexl@redhat.com>

	* gnome-keyring-ask.c:
	Fix gettext include

2003-11-28  Alexander Larsson  <alexl@redhat.com>

	* COPYING.LIB:
	Add LGPL file
	
	* gnome-keyring-ask.c:
	Fix up gettext defines
	
	* gnome-keyring-ask.c:
	* gnome-keyring-daemon-file.c:
	* gnome-keyring-daemon-io.c:
	* gnome-keyring-daemon.c:
	* gnome-keyring-daemon.h:
	* gnome-keyring-private.h:
	* gnome-keyring-proto.c:
	* gnome-keyring-proto.h:
	* gnome-keyring-utils.c:
	* gnome-keyring.c:
	* gnome-keyring.h:
	* list-keyrings.c:
	Add GPL/LGPL headers.
	Library is LGPL, daemon and gui is GPL.