forked from GNOME/seahorse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
1552 lines (1277 loc) · 50.9 KB
/
NEWS
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
seahorse 3.32.0
---------------
* Fix regression: no more context menu in sidebar [!62]
* gkr: Fix crash when renaming keyring [!70]
* pgp: Don't use a custom person icon [!69]
* gpgme: Don't use gpgme_op_edit for exporting or making a UID primary [!66]
* Port more GSimpleAsyncResult to GTask [!67]
* flatpak: fix network permissions [!65]
* Updated translations
seahorse 3.31.91
---------------
* Remove deprecated g_type_class_add_private [!60]
* flatpak: Add dependencies for key sharing/importing [!59]
* gkr: Recognize GNOME Web (Epiphany) passwords and adjust UI [!58]
* gkr: Recognize user-specific Wi-Fi passwords [!58]
* gkr: Use application icon for password of known installed app [!58]
* gkr: Fix Chrome password recognition [!58]
* gkr: Add password strength indicator when adding a new password [!55]
* pgp: Always use gpgme_op_export_start when exporting [!56]
* pgp: Cleanup the UI of the key properties dialog [!43,!45,!46]
* Add an empty state indicator [!47]
* Add <ctrl>f as an accelerator for the search bar [!44]
* Start migration of GSimpleAsyncResult to GTask [!52]
* Migrate some widget from SeahorseWidget to GtkTemplate [!50,!53,!54]
seahorse 3.31.1
---------------
* Port most uses of Gtk.Action to GLib.Action [!38]
* New app icon [!3]
* Use a header bar [#95]
* Updated password properties dialog [!28]
* Updated SSH key properties dialog [!30]
* Update view when new item is added [!22]
* UI tweaks to the KeyManager list
* pgp: small cleanups
* Vala fixes [#206, !31]
* Updated translations
seahorse 3.30.0
---------------
* Fix no window when launched from .desktop [#192,!16]
* Show active window if available on launch [!18]
* Add debug logging for filtering
* Make yelp documentation optional [!17]
* Drop Continuous' configure script [!12]
* Fix build on debian [#190]
* Updated translations
seahorse 3.29.92
----------------
* Add a Flatpak manifest and use it for CI purposes [#7]
* gkr: fix segfault when trying to change default keyring password [#182]
* Fix - Cannot delete multi-selected SSH keys [#105, !9]
* pgp: Seahorse again correctly filters keys for signing [!11]
* pgp: Search keys dialog now properly lists key servers again [!10]
* Removed ChangeLog files in favor of NEWS file and git history
* gkr: Fix lock/unlock button tooltip text in keyring properties [!5]
* Get rid of SeahorseCollection in favor of Gcr.FilterCollection [#179]
* More cleaning up of deprecated GTK+ stuff
* Updated translations
seahorse 3.29.91
----------------
* pgp: remove non-working Help button [#164]
* gkr: Fix lock/unlock button in keyring properties [!4]
* ssh: upload button didn't work
* Clean up deprecated GTK+ stuff
* Use header bars more consistently
* Implement more widgets using GtkTemplates
* Updated translations
seahorse 3.29.90
----------------
* pgp: don't use unsupported "stock_calendar" as icon name [bgo#757237]
* pgp: add hint when 'Full name' is not long enough [bgo#395805]
* Update README.md with GitLab links and more
* Add previously implicit gio-unix dependency to meson.build [#8]
* Several small documentation fixes [!1,!2]
* Better decoupling of the sources in src and lib
* Require GTK+ >= 3.22
* gkr: ask for confirmation when saving changes [bgo#712348]
* Updated AboutDialog [bgo#609418]
* ssh: modify the key length options based on the type of encryption
* ssh: add basic support for ECDSA and ED25519 keys [bgo#754028]
* GTK: remove most uses of Gtk.Stock, use more GtkTemplates
* Migrated from autotools to Meson [bgo#788453]
* SSH support is now mandatory
* Continue the Vala migration, several Vala fixes [bgo#777546,#779948,#785849]
* Migrated from intltool to gettext
* Updated doap file
* gpg: Ignore KEY_CONSIDERED line introduced in gpg 2.1.13 [bgo#778607]
* gkr: Don't update key description if it doesn't change [bgo#777802]
* Use Unicode in translations [bgo#772532]
* Updated translations
seahorse 3.20.0
---------------
* Updated translations
* Update AppData spec file
seahorse 3.19.4
---------------
* Build fixes [#758472]
* Updated translations
seahorse 3.18.0
---------------
* Use the application name in the software center
* Updated translations
seahorse 3.17.4
---------------
* Avoid binding seahorse to the build-time version of GnuPG [#750468]
* Fix seahorse shell search provider [#704619]
* Use GResource to load UI resources [#752516]
* Build fixes [#744503] [#752990]
* Updated translations
seahorse 3.16.0
---------------
* Provide a symbolic variant of the app icon [#747244]
* Updated translations
seahorse 3.15.92
----------------
* Don't use deprecated GtkArrow [#744195]
* Updated translations
seahorse 3.15.90
----------------
* Refactoring and revamping help files
* Work around for breakage with gnupg2
* Fix invalid UI files [#740138]
* Don't hide GtkBuilder errors [#740138]
* Updated translations
seahorse 3.14.0
---------------
* Fix crash in search provider [#733957]
* Display 'Certify' and 'Authenticate' names for GPG key flags [#733920]
* Prettify fingerprint downloaded from key server [#719872]
* When searching for keys request full fingerprint [#719872]
* Show whether subkeys can be used for signing/encryption [#730044]
* Remove incorrect tooltip from 'New Keyring' dialog [#733399]
* Updated translations
* Build fixes [#732396, ...]
seahorse 3.12.2
---------------
* Allow scrolled windows to grow when properties window resized [#727850]
* Don't open keyserver results behind main seahorse window [#727926]
* Prettify fingerprints in a smarter way [#719872]
* Documentation fixes
* Updated translations
* Build fixes [#725728]
seahorse 3.12.0
---------------
* New help pages from the malard documentation project
* Updated translations
* Build fixes
seahorse 3.11.92
----------------
* Updated translations
seahorse 3.11.91
----------------
* Fix SSH key generation [#715051]
* Fix pgp/ssh key export [#707014]
* Fix segfault in the search provider code [#724659]
* Port some more seahorse code to vala code
* Build fixes. No libtool [#722023 #712538 #712538 ...]
* Non-recursive Makefile
* Updated FSF's address
* Add AppData file
* Updated translations
seahorse 3.10.1
---------------
* Fix generate-select dialog for GTK+ changes [#703825]
* Try to make as many password dialogs transient as possible
* Updated translations
* Build fixes [#708827, #710069]
seahorse 3.10.0
---------------
* Translation fixes [#707420]
* Updated translations
seahorse 3.9.91
---------------
* Documentation fixes [#707135]
* Updated translations
seahorse 3.9.90
---------------
* Show the sidebar by default [#705592]
* ssh: Bump the minimum key size to 768 bits [#705561]
* Add "DesktopSettings;X-XFCE-SettingsDialog;" to .desktop categories [#704981]
* pgp: Put the 'Comment' field in the advanced section of PGP key gen [#703766]
* Only permit import from clipboard when data is available [#703394]
* soup: use the SoupProxyResolverDefault feature [#682495]
* pgp: Fix uninitialized memory access
* Port some of seahorse to vala code
* Build fixes [#702602, #699147, ...]
* Translation fixes [#699116, ...]
* Updated translations
seahorse 3.9.1
--------------
* Add a shell search provider for passwords and keys [#694606]
* Start using vala for internal interfaces
* Updated interfaces [cz el ml es]
* Build fixes
seahorse 3.8.1
--------------
* Updated translations
seahorse 3.8.0
--------------
* Updated translations
* Translation fixes
seahorse 3.7.92
---------------
* Updated translations
* Build fixes
seahorse 3.7.91
---------------
* Don't show preferences when no preferences are available [#694678]
* Don't conflict with seahorse-daemon DBus name [#694053]
* Updated translations [el lt vi ru cs pa fr pl sr ml gl]
* Fix command line options parsing [#686980]
* Build fixes
seahorse 3.7.5
--------------
* Added keywords to .desktop file
* Updated translation
* Build fixes
seahorse 3.7.2
--------------
* Build fixes
seahorse 3.7.1
--------------
* Fix problem where keyring items overwrite one another
* Correct capitalization of ElGamal
* Build fixes
seahorse 3.6.3
--------------
* Display item labels even if they don't match formatters
* Fix crashers
* Updated translations
seahorse 3.6.2
--------------
* Fix problem where keyring items overwrite one another
seahorse 3.6.1
--------------
* Strip DBus errors before displaying them
* Fix regression for changing a keyring master password
* Updated translations
seahorse 3.6.0
--------------
* Updated translations
seahorse 3.5.92
---------------
* Port to new documentation infrastructure
* Updated translations
seahorse 3.5.91
---------------
* Updated translations
seahorse 3.5.90
---------------
* Updated translations
seahorse 3.5.4
--------------
* No keyring UI bits if failed to connect to Secret Service
* When Ctrl-F pressed in the main window, focus the filter box
* Add suggestion to generate entropy while generating a key
* Use libsecret instead of libgnome-keyring
* Use GcrSecureEntryBuffer and remove duplicate code.
* Align keyids with name/signatures in key properties.
* Unavailable entries were displayed incorrectly for signatures
* Fix icon sizes
* Remove unused code
* Migrate to GtkApplication
* Other bug fixes
* Updated translations
* Build fixes
seahorse 3.4.1
--------------
* Fix crash during failed HKP exports
* Fix memory errors when searching for keys
* Updated translations
* Build fixes
seahorse 3.4.0
--------------
* Updated translations
seahorse 3.3.92
---------------
* Fix warning cancelling the signing dialog
* If multiple keys with some label in signer list, add hex keyid
* Updated translations, and fixes
* Build fixes
seahorse 3.3.91
---------------
* Fix regression of configure ssh keys
* Fix line on top of the sidebar
* Updated translations
seahorse 3.3.5
--------------
* Maximum and minimum sidebar pane position
* Fix icons for filter entry
* Fix uninitialized memory usage
* Clearer wording for various keyrings
* Updated translations
* Build fixes
seahorse 3.3.4
--------------
* Remove limitation of max keyring item description characters
* Updated translations
* Build fixes
seahorse 3.3.3
--------------
* Support for PKCS#11 key generation
* Support for creating certificate requests
* Certificate actions happen from certificate window.
* Reimplement export functionality
* Refactor deletion, unlocking, refreshing, and showing properties
* Add way to lookup places, and refresh appropriate place after import
* Fixes for glib 2.31.x deprecations
* Fix bugs, build issues, translations
seahorse 3.3.2
--------------
* Refactoring of how actions work
* Add ability to lock and unlock places from the sidebar
* Implement login to smart cards and PKCS#11 tokens
* Remove experimental check selection on sidebar
* Listing of private keys on smart cards and PKCS#11 tokens
* Showing matching keys and certificates together, in listing and properties
* Translation, build fixes
* Don't crash if gpg or gpg2 don't run correctly.
* Fix problems editing PGP key servers
* Don't load key signatures unless showing key properties
* Updated translations
seahorse 3.3.1.1
----------------
* Fix build issues when pgp, ssh, or pkcs11 backends are disabled
* Updated translations
seahorse 3.3.1
--------------
* Major refactoring of look and behavior of seahorse
* Passwords, keys, certs are displayed together in the main window
* Places sidebar, which can be shown, to access where various objects come from
* Asynchronously initialize PKCS#11 modules
* Use the new importer infrastructure in libgcr
* Blacklist certain PKCS#11 tokens from showing up in seahorse
* Code cleanup and refactoring
* Build, translation fixes
* Updated translations
seahorse 3.2.2
--------------
* Don't load PGP signatures unless showing key properties
* Fix crash, issues adding key servers
* With gpg2 key loading takes longer, so adjust behavior
* Updated translations
* Build fixes
seahorse 3.2.1
--------------
* Updated translations
seahorse 3.2.0
--------------
* Fix DNS-SD key sharing crasher and make compatible with seahorse-sharing
* Removed unused spec file
* Updated translations
seahorse 3.1.92
---------------
* Fix the SSH password prompting and uploading of keys
* Fix behavior of password prompts when enter is pressed
* Fix GtkComboText GTK+3 problems
* Fix crasher when closing
* Build and documentation fixes
* Updated translations
seahorse 3.1.91
---------------
* Fix up for recent GTK+3 changes.
* Code cleanup, removing unused code.
* Remove old GTK+2 code that was missed earlier.
* Updated translations
seahorse 3.1.90
---------------
* Change application name to shorter 'Passwords and Keys'
* Fix drop downs in key generation dialogs
* Don't distribute internal libseahorse documentation
* Match changes in libgck and libgcr
* Remove old operation code, and replace with newer gio style async
* Remove unused code and cleanup
* Port to GSettings (instead of using GConf)
* Add Glib style debug messages, activated with SEAHORSE_DEBUG=all
* Translation and build fixes
seahorse 3.1.4
--------------
* Create new keyring items in the right keyring.
* Remove dependency on GTK+ 2.x
* Split out libcryptui into its own module.
seahorse 3.1.1
--------------
* Fix up use of GcrCertificate
* Translations and translation fixes.
* Build fixes.
* Use pool.sks-keyservers.net instead of pgp.mit.edu
seahorse 3.0.1
--------------
* Now builds with GTK+ 3.x by default
* Fix build issues on GTK+ 3.x
* Fix problem importing SSH keys.
* Translations updated
seahorse 3.0.0
--------------
* Translations updated
seahorse 2.91.93
----------------
* Set the primary-toolbar style class on the toolbar [Cosimo Cecchi]
seahorse 2.91.92
----------------
* About dialog is transient for main window. [Cosimo Cecchi]
* When changing a PGP key's passpharse, ask for confirmation.
* Fix crash in SSH key parsing.
* Update icons [Jakub Steiner]
* Build fixes
seahorse 2.91.91
----------------
* Fix infinute loop when a keyring item is open.
* Don't display underlines as keys for a PGP uid.
* Escape keyring attribute names properly.
* Add context to translatable strings.
seahorse 2.91.4
---------------
* Update to work with GTK+3 [Matthias Clasen]
* Fix build issues with GCR updates [Stef Walter]
* More info when --version is specified [Pablo Castellano]
* Fix setting key trust to "never" [nobled]
* Define default key length for each algorithm [nobled]
* Show information when you sign an UID twice... [Pablo Castellano]
seahorse 2.91.2
---------------
* Escape markup when displaying keyring item attributes [Stef Walter]
* Fixes for new GTK+3 GtkComboText class and libnotify [Stef Walter]
seahorse 2.91.1.1
-----------------
* Fix build with libnotify 0.7 [Stef Walter]
* Migrate to new GtkComboBoxText widget in GTK3 [Matthias Clasen]
* Fix build issues on gtk+-3.0 [Tomas Bzatek]
* Build with latest gcr [Martin Paljak]
* Add icons and clear action to the filter entry [Diego Escalante Urrelo]
* Avoid hard-coding Gtk+ API version in gir generation [Andreas Henriksson]
seahorse 2.91.1
---------------
* Migration to GTK+ 3.0 [Stef Walter]
* Fix compiler warnings.
* Use new gck library instead of old gp11. [Stef Walter]
seahorse 2.91.0
---------------
* Move DNS-SD key sharing to separate project [Stef Walter]
seahorse 2.32.0
---------------
* Make builds silent by default [Stef Walter]
seahorse 2.31.91
----------------
* Documentation [Thorsten Sick]
* Use GDK accessor functions [Adam Schreiber]
* Use smaller icons in "new" dialog [Adam Schreiber]
* Build fixes [Adam Schreiber, Pablo Castellano, Matthias Ferdinand]
seahorse 2.30.1
---------------
* Fixes all but one issue for compiling with -DGSEAL_ENABLE. [Andre Klapper]
* Remove deprecated GTK+ symbol [Javier Jardón]
Translations:
* Catalan [Jordi Serratosa]
* Catalan (Valencian) [Carles Ferrando]
* Indonesian [Andika Triwidada]
* Latvian [Peteris Krisjanis]
* Spanish [Jorge González]
seahorse 2.30.0
---------------
* Source Documentation [Thorsten Sick]
Translations:
* Bengali [Jamil Ahmed]
* Basque [Inaki Larranaga Murgoitio]
* Brazilian Portuguese [Antonio Fernandes C. Neto]
* British English [Bruce Cowan]
* Bulgarian [Alexander Shopov]
* Catalan [Gil Forcada]
* Czech [Marek Černocký]
* Danish [Ask H. Larsen]
* Dutch [Wouter Bolsterlee]
* Finnish [Tommi Vainikainen]
* Greek [Nikos Bakaoukas, Simos Xenitellis]
* Hungarian [Gabor Kelemen]
* Korean [Changwoo Ryu]
* Latvian [Peteris Krisjanis]
* Lithuanian [Gintautas Miliauskas]
* Polish [Piotr Drąg]
* Portuguese [Duarte Loreto]
* Punjabi [A S Alam]
* Russian [Leonid Kanter]
* Serbian [Branko Kokanović]
* Swedish [Daniel Nylander]
* Ukrainian [Maxim V. Dziumanenko]
seahorse 2.29.91
----------------
* Change default key lengths for subkey generation. [Adam Schreiber]
* Remove unused variables [Pablo Castellano]
* Revoking subkey now works again. Also minor documentation changes. [Pablo Castellano]
* Don't show the passphrase in plaintext. [Pablo Castellano]
* Check the OpenPGP engine only [nobled]
* Fixed wrong variable names in comments [Pablo Castellano]
* Clean up version constants [nobled]
* Fixed two warnings at compile time [Pablo Castellano]
* Unescape URI's before presenting them to the user. [Adam Schreiber]
* Updated year in the copyright string of the about dialog [Pablo Castellano]
* Fixed incorrect signal name [Pablo Castellano]
* Fixed bug in the public key properties GUI. [Pablo Castellano]
Translations:
* Basque [Inaki Larranaga Murgoitio]
* Estonian [Ivar Smolin]
* French [Bruno Brouard]
* Galician [Fran Diéguez]
* Italian [Milo Casagrande]
* Norwegian bokmål [Kjartan Maraas]
* Romanian [Lucian Adrian Grijincu]
* Slovenian [Matej Urbančič]
* Tamil [vasudeven]
* Traditional Chinese (Hong Kong and Taiwan) [Chao-Hsiung Liao]
seahorse 2.29.90
----------------
* pgp: Make subkey creation more robust [nobled]
* Drop daemon autostart file [Martin Pitt]
* Update eggdesktopfile.[ch] from libegg/smclient [Adam Schreiber]
* Various fixes [Christian Kirbach]
Translations:
* Bengali [Jamil Ahmed]
* Estonian [Ivar Smolin]
* German [Christian Kirbach, Mario Blättermann]
* Slovenian [Matej Urbančič]
* Spanish [Jorge González]
* Thai [Theppitak Karoonboonyanan]
seahorse 2.29.4
---------------
* Experimental support for introspection of libcryptui [Adam Schreiber]
* Full documentation for seahorse-context.c [Thorsten Sick]
* Do not use fixed MAXPATHLEN size buffers for portability [Emilio Pozuelo
Monfort]
* Add seahorse man page [Pablo Castellano]
* Fix build with latest gp11 [Vincent Untz]
Translations:
* Romanian [Adi Roiban]
* Chinese [Tao Wei]
seahorse 2.29.3
---------------
* Set default key length to 2048 bits [Adam Schreiber]
* Generate RSA-sign/RSA-encrypt key in one pass [nobled]
* Support GPG 2.0 [Jeff Cai]
* Fix window signals [Pablo Castellano]
* GTK-doc comments [Thorsten Sick]
* SSH Key importing fix [Jeff Cai]
Translations:
* Romanian [Adi Roiban]
* Shavian [Thomas Thurman]
* Latvian [Peteris Krisjanis]
* Catalan [Carles Ferrando]
* Japanese [Takayuki KUSANO]
seahorse 2.29.1
---------------
* None
seahorse 2.28.1
---------------
* Prevent opening help window twice. [Pablo Castellano]
* Set bits setting properly when creating SSH key. [Stef Walter]
* Add support for GnuPG DSA2 keys. [nobled]
* Fix subkey creation on newer GnuPG versions [nobled]
* Fix location label in SSH key properties. [Stef Walter]
* Fix assertion on exit. [Stef Walter]
* Fix pasting into filter field. [Adam Schreiber]
* Set key usage flags properly. [nobled]
* Fix property bindings. [Bastien Nocera]
* Internal documentation. [Thorsten Sick]
* Translation fixes. [Stef Walter]
* Build fixes. [Stef Walter]
seahorse 2.28.0
---------------
* void function should not return a value. [Jeff Cai]
seahorse 2.27.92
----------------
* Include config.h to avoid build breakage when gpgme is
compiled with LFS [Vincent Untz]
* Fix problems with gtk-builder UI files. [Pablo Castellano]
* Fix problem with 'Type:' label of SSH key displaying
location. [Stef Walter]
* Update context menu display after keyring op. [Stef Walter]
* Fix more compiler warnings. [Stef Walter, Pablo Castellano]
* Optionally use silent automake build rules. [Pablo Castellano]
* Clean up old libglade and CVS files. [Pablo Castellano]
* Respect the button-images setting, and cleanup gtkbuilder
xml. [Matthias Clasen]
* Add keyring docs. [Paul Cutler]
* Lots of documentation work. [Adam Schreiber, Thorsten Sick]
seahorse 2.27.90
----------------
* Fix problem with missing password tab.
seahorse 2.27.5
---------------
* Fix logic for setting owner trust combo.
* More Code and API documentation.
* Old result in search dialog is selected.
* seahorse-daemon should autostart by default
* Add a --version parameter to seahorse.
* No longer daemonizes when autostarted by D-Bus.
* Gray out displayed non-trusted keys.
* Remove the 'trusted keys' tab and combine with 'other keys'.
* Use GtkBuilder instead of libglade.
* Add support for adding manual keyring secrets.
* Move password tab to first place.
* Remove unportable test(1) construct in configure script.
seahorse 2.27.1
---------------
* Distribute earlier ChangeLogs [Adam Schreiber]
* Fix importing context menus in search dialogs [Adam Schreiber]
Translations
* Spanish [Jorge Gonzalez Gonzalez]
* Catalan [Jordi Mas i Hernandez]
* Estonian [Ivar Smolin]
* Ukrainian [Maxim V. Dziumanenko]
seahorse 2.26.1
---------------
* PGP UIDs display in order reported by key server, and fix
parsing of HKP PGP search UIDs. [Adam Schreiber]
* Fix problem opening preferences window twice. [Adam Schreiber]
* Set authorized_keys properly when sending SSH keys to a
remote system. [Andreas Moog, Stef Walter]
* Fix crash when entering hkp: url manually. [Stef Walter]
seahorse 2.26.0
---------------
* Fix cancel button in 'Add keyring' dialog. [Stef Walter]
* Update GUI before showing window, to avoid GUI changes
when selection is initialized. [Stef Walter]
* Allow multiple "Sync and Publish" windows to open. [Stef Walter]
* Disable input method in password prompt. [Takao Fujiwara]
* Fix various crashers, and smaller bugs. [Stef Walter]
seahorse 2.25.92
----------------
* Fix crash when typing in a custom key server URL. [Stef Walter]
* Searching by key identifiers now shows results. [Stef Walter]
* Don't crash when loading a PGP key that loads the secret
part before the public part. [Stef Walter]
* Disable interactive tree search in key manager. [Stef Walter]
* Fix issues with object IDs, crashes and other inconsistencies
when accessed via DBus. [Adam Schreiber, Stef Walter]
* Add libcryptui documentation [Adam Schreiber]
* Reference counting fixes. [Adam Schreiber]
* Remove use of GTK+ deprecated symbols. [Adam Schreiber,
Thomas Anderson]
* Use proper GTK+ stock item names. [Gabor Kelemen]
* Translation fixes. [Adam Schreiber, Wouter Bolsterlee]
* Collapse 'Advanced Options' in PGP key generate dialog
by default. [Stef Walter]
seahorse 2.25.91
----------------
* Display keyring creation dialog properly. [Stef Walter]
* Prompt before deleting a keyring. [Stef Walter]
* Refresh after adding a keyring. [Stef Walter]
* Translation and doc fixes. [Adam Schreiber]
* Build PKCS#11 support properly. [Stef Walter]
* 64-bit fixes [Joe Marcus Clarke, Scott McVittie]
* Only autostart seahorse-daemon when key sharing is
enabled. [Adam Schreiber]
* seahorse-daemon no longer times out login of
session. [Adam Schreiber]
* Fix libcryptui regressions. [Stef Walter]
* Remove explicit line breaks from glade files. [Gabor Kelemen]
* Build fixes
seahorse 2.25.90
----------------
* Removed libtasn1 dependency [Stef Walter]
* Additional refactoring [Stef Walter]
* seahorse-daemon registers with session manager properly [Adam Schreiber]
* gtk-doc for libcryptui [Adam Schreiber]
* Remove bits of libcryptui that are now handled by the gcr library
from gnome-keyring. [Stef Walter]
Translations
* es.po: [Jorge Gonzalez]
* sv.po: [Daniel Nylander]
* nb.po: [Kjartan Maraas]
* ko.po: [Changwoo Ryu]
* pt_BR.po: [Henrique P. Machado]
seahorse 2.25.4
---------------
* Fix crash when uploading ssh keys [Jeff Cai]
* Code update for gp11 library changes [Stef Walter]
* Require gnome-keyring 2.25.4
Translations
* es.po [Jorge Gonzalez]
seahorse 2.25.3
---------------
* Massive refactoring [Stef Walters]
* Use g_timeout_add_seconds instead of g_timeout_add [Debarshi Ray]
* Fix display of expiry date time. [Adam Schreiber]
* Autostart seahorse-daemon [F. Steinel]
* Various fixes [Jeff Cai]
* Fix connecting to ssh servers not on port 22 [Adam Schreiber]
Translations
* pt_BR.po [Leonardo Ferreira Fontenelle]
* es.po [Jorge Gonzalez]
* cs.po [Petr Kovar]
seahorse 2.25.1
---------------
* Clean up GLib and GTK+ includes (GNOME Goal) [Adam Schreiber]
* Clean up errors in declaration of signal handlers. [Adam Schreiber]
Translations
* ar [Usama Akkad]
* el [Nick Agianniotis]
* pt_BR [Leonardo Ferreira Fontenelle]
seahorse 2.24.1
---------------
* Fix problems with seahorse crashing when searching for
remote keys. [Adam Schreiber]
* Build fixes on Solaris [Jeff Cai]
* Fix selection of keys in libcryptui. [Philip Withnall]
* I18n fixes. [Adam Schreiber]
seahorse 2.24.0
---------------
* Some tweaks to the password prompt window, including allowing
minimizing to release the keyboard grab.
* Fix compiler warnings for gcc 4.3.
* Return a 'cancelled' error when from the daemon crypto dbus
methods when a user cancels out of a password prompt.
* Show revoked subkeys properly in details view of PGP keys.
* Fix problem deleting SSH keys.
* Fix dialog prompt column widths, and elipsize long text in
key listing. [Adam Schreiber]
* Fix problem with 'no keys available' when trying to sign a
PGP key from within the key manager.
* Add 'exportable' flag to objects/keys and don't enable export
UI if selected objects are not exportable.
* Build fixes [Joe Orton, Adam Schreiber]
* Crash and other fixes. [Christian Persch]
seahorse 2.23.92
----------------
* Fix crash when changing a stored Gnome Keyring password.
* Fix certain crashes on syncing, searching and other operations.
* Fix dumb 'Couldn't import keys' error message when success.
seahorse 2.23.91
----------------
* Fix copying keys to the clipboard. [Adam Schreiber]
* Fix double free crash when importing keys.
* Fix crasher when deleting a key.
* Don't add extra null bytes to SSH authorized_keys and
similar files. [Adam Schreiber]
* Documentation fixes. [Adam Schreiber]
* Don't repeatedly load gnome-keyring items. [Adam Schreiber]
* Make help button in 'First Time Options' work proprely. [Adam Schreiber]
* Better wording for options in PGP key dialogs. [Adam Schreiber]
seahorse 2.23.90
----------------
* Icon makeover. [Michael Monreal]
seahorse 2.23.6
---------------
* Initial PKCS#11 certificate listing implementation.
* Internal code refactoring.
* Fix problems with reference counting on operations.
* Use base64 functions in glib, rather than rolling our own.
* Don't use deprecated LDAP functions. [Adam Schreiber]
* String operation fixes. [Adam Schreiber]
* Build fixes [Jeff Cai]
seahorse 2.23.5
---------------
* Fix importing keys from key servers [Mackenzie Morgan]
* Factor out seahorse-plugins to a different module.
* Add XDS drag and drop support.
* Remove gnome-vfs dependency and use gio instead.
* Return key id of signer from DBus service even when key
is not found locally [Adam Schreiber]
* Refactor UI code internally into modules.
* Remove hard GPG and GPGME dependency.
* Replace signer drop down in key chooser with just a check
button when only one secret key exists. [Adam Schreiber]
* Set sync button insensitive when no server is selected.
[Adam Schreiber]
* Test for secure memory before using it. [Coleman Kane]
* Change trust model used to match GPG's. [Adam Schreiber]
* Remove libgnome and libgnomeui dependencies. [Saleem Abdulrasool]
* Grab keyboard focus when prompting for password.
[Josselin Mouette]
* Use the vala programming language for some code.
* Add initial infrastructure for PKCS#11 key/certificate support.
* Save and load window sizes from gconf. [Adam Schreiber]
* Build fixes [Brian Cameron, Saleem Abdulrasool, Alexis Ballier,
Christian Persch, Rodrigo Moya]
seahorse 2.22.0
---------------
(no changes)
seahorse 2.21.92
----------------
* Translation fixes [Adam Schreiber]
* Update manual [Jasper Lievisse Adriaanse]
seahorse 2.21.91
----------------
* Adapt to new Epiphany API for 2.21. People with GNOME 2.20.x or older
should not experience build problems. [Adam Schreiber]
seahorse 2.21.90
----------------
* Remove options that screw with gpg.conf on seahorse-agent startup,
since this was unsafe and naive.
* Update libsoup optional dependency to depend on 2.4.x [Dan Winship]
* Add icon for the gedit plugin [Adam Schreiber]
* Don't add extra dot to encrypted or compressed files [Kip Warner]
* Fix build problems with nautilus 2.21.x and later [Wouter Bolsterlee]
* Install nautilus extension to correct directory [Brian Pepple]
* Support better dropping of text keys onto main window [Christian Persch]
seahorse 2.21.4
---------------