File: Changes

package info (click to toggle)
openpgp-applet 1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,164 kB
  • sloc: perl: 1,047; sh: 77; makefile: 68
file content (986 lines) | stat: -rw-r--r-- 30,782 bytes parent folder | download | duplicates (2)
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
==================================================
Changes from 1744-05-14 00:00:00 +0000 to present.
==================================================

----------------------------------------
version 1.1 at 2018-02-26 13:21:55 +0000
----------------------------------------

  Change: 1fb20129f31b85e7fa1176cd00d674e7e94abec8
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2018-02-26 14:21:38 +0000

    Release 1.1 

  Change: bde2bd06b824514bdefaa4e770d1ae127df8dbe5
  Author: intrigeri <intrigeri@debian.org>
  Date : 2018-02-26 08:28:33 +0000

    Merge branch 'feature/move_to_salsa' into 'master'

    Feature/move to salsa

    See merge request openpgp-applet-team/openpgp-applet!4 

  Change: 2386f31c1e9d3e018ae6d4d41eb38313c3a208bb
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2018-02-26 08:27:13 +0000

    dist.ini: move to Salsa 

  Change: 780e813e73fa9a60023f4b982fe3f9ef8cb2a397
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2018-02-26 08:27:13 +0000

    README: fix line wrap and remove trailing spaces 

  Change: 8e5e273e3cf14ab29e656c67a669c4853cfd6d8a
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2018-02-26 08:27:12 +0000

    fix indent (4 spaces instead of tabs) 

  Change: 42e7a696627679dcf59b6fac95567f34914109a9
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2018-02-26 08:27:12 +0000

    README: update information wrt homepage/issue tracker 

  Change: 400653153012e577e95a333fc0b144956f03c39f
  Author: intrigeri <intrigeri@debian.org>
  Date : 2018-02-26 08:26:50 +0000

    Merge branch 'remove_unused_wip_code' into 'master'

    Remove unused sub

    See merge request openpgp-applet-team/openpgp-applet!5 

  Change: 36d4ea0c0d4552abbf78cc79be066c255bd71c21
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2018-02-26 08:26:29 +0000

    remove unused sub

    The make_pub_key_tree is the result from a bad merge. It belongs in a
    WIP to get rid of Gtk3::SimpleList. 

  Change: 5bacfe317f440fe741a9091a409d037c6c6a679a
  Author: intrigeri <intrigeri@debian.org>
  Date : 2018-02-26 08:23:34 +0000

    Merge branch 'update_translations' into 'master'

    update translations

    See merge request openpgp-applet-team/openpgp-applet!6 

  Change: 50095813516d256963e887a3c51f8444405ef82d
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2018-02-25 20:40:54 +0000

    update translations 

  Change: 5ad109afc7a24271abcba4d07e9910205ffe9907
  Author: Clément Hermann <nodens@nodens.org>
  Date : 2018-02-25 14:28:54 +0000

    Merge branch 'feature/update_copyright_year' into 'master'

    bump copyright year to 2018

    See merge request openpgp-applet-team/openpgp-applet!3 

  Change: 87ee29e1e5cfd1aeb5d2ec0c7621bb00d81d6d9d
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2018-02-05 12:34:10 +0000

    bump copyright year to 2018 

  Change: 67cec94e533f2b0b35fb2d9487081b889491f48c
  Author: intrigeri <intrigeri@debian.org>
  Date : 2018-01-28 18:34:52 +0000

    Merge branch 'feature/update_translations_and_workflow' into 'master'

    Feature/update translations and workflow

    See merge request openpgp-applet-team/openpgp-applet!2 

  Change: 319c322f3de9592705c10035daaef8e4671b7d75
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2018-01-28 18:33:52 +0000

    .gitignore: add import-translation tmp files 

  Change: 0e64ae15d0c280dc553c385643a234e417b11ffa
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2018-01-28 18:33:52 +0000

    remove temp files from git 

  Change: e329c53075c153ad2f55fa739d1445877606e2e1
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2018-01-28 18:33:52 +0000

    update translations 

  Change: c5a313851470864505b6edc71cd3e533099db9ce
  Author: Clément Hermann <nodens@nodens.org>
  Date : 2018-01-28 15:41:17 +0000

    Revert "Add .gitlab-ci.yml (default version for now)"

    This reverts commit 77323e44cfc92d218ae054c0eabe8f3d833ff1b4 

  Change: 77323e44cfc92d218ae054c0eabe8f3d833ff1b4
  Author: Clément Hermann <nodens@nodens.org>
  Date : 2018-01-28 15:39:15 +0000

    Add .gitlab-ci.yml (default version for now) 

  Change: 84ca379130e56bac85151f524ce437ea12309c9a
  Author: Clément Hermann <nodens@nodens.org>
  Date : 2018-01-16 11:28:37 +0000

    Merge branch 'fix-typo' into 'master'

    Fix typo.

    See merge request openpgp-applet-team/openpgp-applet!1 

  Change: 3cf189c481c5b33bd7782d56691acf00b4dbfb53
  Author: intrigeri <intrigeri@boum.org>
  Date : 2018-01-16 11:21:50 +0000

    Fix typo. 

  Change: 42ff5aadbe14115f589d83d8a12abad9331bfcfc
  Author: intrigeri <intrigeri@boum.org>
  Date : 2017-12-03 12:50:09 +0000

    Add link to the upstream development mailing list 

  Change: 595647f2fe2ac918224c5ce1cf097eb290c38ebd
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2017-10-17 10:28:10 +0000

    Sort 'use <module> calls'

    except for Locale stuff which makes more sense appart IMO 

  Change: 4802587d89c5ba42f80d86ed5cfc2c685f866098
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2017-10-17 10:25:10 +0000

    take value from env 

  Change: f46b5c8109124ca40695210d4795d5d669dcc24e
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2017-10-09 21:19:36 +0000

    Fix long-standing bug #6398 - hangs on large text

    Adapt fix from Nyko Tyni <ntyni@debian.org> for Mail::GnuPG

    (https://rt.cpan.org/Public/Bug/Display.html?id=21276#txn-407915).

    That is: using select(2) based loop to communicate with gpg process,

    interleaving reads and write, thus eliminating any buffer problem.

    As a side effect, eliminates the need for read_err_out(). 

  Change: 61d4e242a6f2c8a82c257940d180e06d6b8b9383
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2017-08-05 16:32:30 +0000

    update Translations 

  Change: 8e16a6f594118a9ee778c49de645e615d21b634f
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2017-08-05 16:30:21 +0000

    add script for updating translation from Transifex

    (based on Tails' one) 

  Change: b6fca4e493738483de1167643121fab18fee09d7
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2016-09-19 01:11:35 +0000

    update translations from Transifex

    Using a slightly modified update-translations script 

  Change: fa080149f637f756ea2c25e14a61217a8e6b42ec
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2016-09-13 11:46:33 +0000

    prepare release: update version + copyright year 

  Change: 07844c34b6d67cea5a5d24fb44190bc31528ff46
  Author: intrigeri <intrigeri@boum.org>
  Date : 2016-08-29 10:52:41 +0000

    Merge branch 'master' into feature/7711-Gtk3 

  Change: a8411990eeee53e7d1ba5e249dc737cb4b0e3af0
  Author: intrigeri <intrigeri@boum.org>
  Date : 2016-08-29 10:51:57 +0000

    dist.ini: make the dependency on gpg2 explicit. 

  Change: 88e90dde7ce47f8084d1d510ab4b42e16add5871
  Author: intrigeri <intrigeri@boum.org>
  Date : 2016-08-29 10:51:07 +0000

    Drop dependency on xclip: GTK+ 3 is now able to set the clipboard's
    content correctly. 

  Change: de3330e0bdbb234d1a63b093792378148ede9736
  Author: intrigeri <intrigeri@boum.org>
  Date : 2016-08-29 10:15:34 +0000

    Merge branch 'master' into feature/7711-Gtk3 

  Change: 535ece13634cead19deb73b1449a5734a274bc6a
  Author: intrigeri <intrigeri@boum.org>
  Date : 2016-08-29 10:15:05 +0000

    Add a basic test that checks syntax and ensures that all libraries
    can be loaded. 

  Change: d581f5dbe7c8ea01f838ffc7d65dccef09a34b69
  Author: intrigeri <intrigeri@boum.org>
  Date : 2016-08-29 09:52:39 +0000

    Merge branch 'master' into feature/7711-Gtk3 

  Change: 921c580adf4b80722b591113d13e934accc65cd7
  Author: intrigeri <intrigeri@boum.org>
  Date : 2016-08-29 09:51:49 +0000

    Use gpg2, for improved compatibility with smartcards and modern
    crypto. 

  Change: 0dedfee27852b7eba350566977d3afba54d7d29f
  Author: intrigeri <intrigeri@boum.org>
  Date : 2016-08-29 09:41:14 +0000

    Public key selection dialog: finish porting key press event handling
    to GTK+ 3. 

  Change: b77baf01665603b4ddb061f24a36ced1987dd951
  Author: intrigeri <intrigeri@boum.org>
  Date : 2016-08-29 09:26:39 +0000

    Make display_error compatible with GTK+ 3.

    This is a follow-up to commit 3eb7914, that did this change
    everywhere else but not in display_error. 

  Change: 322e0110f1032c23d3581c7a408d4b86c53fae0b
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2016-07-05 20:05:05 +0000

    key selection - fix tooltip (id display)

    one level too much of indirection with the old Gtk2 method (thx
    intrigeri) 

  Change: 3eb7914da2a499306875f7470952cb4213402b9a
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-10-17 15:03:06 +0000

    Gtk3: Fix deciphering clipboard

    by changing the way secondary text is displayed in dialog

    Fixes 'Can't locate object method "set_secondary_text" via package
    "Gtk3::MessageDialog"' 

  Change: 894aeb6d23f2ff20fa04f0dd2ffbb5e471487136
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-10-17 14:47:30 +0000

    Gtk3: fix encrypt from clipboard. Also, now Gtk takes encoded text
    properly 

  Change: 4324567a517eed7b0dd1c2982a81e5b878c72947
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-10-06 23:01:21 +0000

    Gtk3: remove STATUS file

    log is in the redmine issue, where it belongs:
    https://labs.riseup.net/code/issues/7711 

  Change: 8cc4713a401ba7eb2b9b1bafbfbceb032308319e
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-10-05 17:01:14 +0000

    add file to follow progress of Gtk3 Porting 

  Change: 913921b2f6300f828523602cbc2dfce40d2b3950
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-10-05 16:26:00 +0000

    Gtk3: prevent menu to be destroyed after popup

    in Gtk3, $action_menu is destroyed just after popup, and so unusable.
    using a global var to prevent this (creating the var outside the main
    subrouting and passing it to button_press_event would work, too).

    See http://comments.gmane.org/gmane.comp.gnome.gtk+.perl/13337 

  Change: e2e951057f0e739598dabe96b2be46e1afe77ce6
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-08-21 17:43:02 +0000

    Gtk3: change icon handling 

  Change: 62ea32a79e402776ec911f95280daf90f9a1d2fd
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-08-21 12:43:40 +0000

    Use Gtk3::MenuItem->new_with_mnemonic (->new('label') is not
    supported in Gtk3). 

  Change: 9b246e65dfa42887a5f1d7dc132f0a3e4e3ac524
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-08-21 12:34:02 +0000

    Revert "change syntax for class-static methods calls"

    This reverts commit 70ca264850245f02bdd0c6244bf4913abe24e300. 

  Change: 70ca264850245f02bdd0c6244bf4913abe24e300
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-08-21 12:24:29 +0000

    change syntax for class-static methods calls 

  Change: c1ff2b945feab0a5b6ff38f76a7d7b13db615ac5
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-08-20 16:30:12 +0000

    missed a Gtk2 function 

  Change: 9f0104020b7f87fb5ad4818ca93213f1b1a6b26d
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-08-20 16:29:09 +0000

    convert clipboard call to Gtk3 

  Change: df9a2ba037d16e11d2f8857d744ef00824617b4b
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-08-20 14:20:18 +0000

    First pass : s/Gtk2/Gtk3/, obvious functions

    + some specific FIXME tags 

  Change: e66105ce3dad0f88a409385ca1439d7c2bcbe366
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-08-17 11:57:36 +0000

    Release 0.9.1 

  Change: 3f268843e5b77398334c546226e40d8edce3fd78
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-08-17 11:56:25 +0000

    Remove VersionFromGit dzil plugin

    (as it messes up with versioning) 

  Change: 6412304c8418612f29e959bf85e63aa33dbbd10b
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-08-17 11:52:33 +0000

    Revert "Release 0.9.1"

    Problem with versioning (v0.9.1 in tarball name) This reverts commit
    10f394a1ead26885f59c28368f34b72ad15fa2fb. 

  Change: 10f394a1ead26885f59c28368f34b72ad15fa2fb
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-08-17 11:21:40 +0000

    Release 0.9.1 

  Change: 1b383621b62ce14ff6b69a506d3c29abe0bdd63d
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-08-11 23:35:59 +0000

    Use Git dzil bundle:

    - includes Git::Check plugin - add Git::Tag plugin to auto tag
    releases 

  Change: 54808ac22b0929034c192eea1e64fe47c8f21163
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-08-11 22:31:38 +0000

    perlcritic : remove uneeded prototypes from subs 

  Change: e858cc94bdbe0e98f5a695937e19f508624f83e7
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-08-10 23:06:54 +0000

    Update translations

    (from Tails' main repo) 

  Change: 91b53b87d26cdebb0d5dc6c3695382f6bafff37a
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-08-10 23:06:54 +0000

    Update Copyright to 2015 

  Change: f7df95bbf6645f38cfb7c31d48df98dcf3486a9f
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-08-10 23:06:54 +0000

    Release 0.9 

  Change: 9d2c398e1e221560d3617ff1a0cf2438df1e488e
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-08-10 13:26:30 +0000

    update translations

    (from tail git tree) 

  Change: c6ad4f406d12ed22f721dcd5272bc619ae49f4b1
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-08-08 10:40:57 +0000

    Merge branch 'feature/9069-Add_menu_entry_open_text_editor'

    Fix-commited: #9069 

  Change: 50ed43ac78ffb2505bd088ed867492b7ac163fb6
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-08-08 10:31:12 +0000

    Revert "Add menu entry to open text editor"

    This reverts commit 8e46a34aa715721971c131cc2ae90c3eccb09f82.

    (need proper merge. And coffee.) 

  Change: 8e46a34aa715721971c131cc2ae90c3eccb09f82
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-08-08 10:27:49 +0000

    Add menu entry to open text editor

    Patch from IvanBliminse (slightly adapted) will-fix: #9069 

  Change: d2ef02dfa0772ef4dfb6bbfde5f22a878bc24cbe
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2015-03-19 10:53:15 +0000

    Add menu entry to open text editor

    Patch from IvanBliminse (slightly adapted) will-fix: #9069 

  Change: f65fa2a15ad8acb53f981a0313da39d7aee198aa
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-12-08 09:53:56 +0000

    Merge branch 'bugfix/8319-Add_a_confirmation_on_exit'

    fix-commited: #8319 

  Change: 1f30a1787fc08a52a8349e91ea3cc1bbe9e33e12
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-12-06 22:01:32 +0000

    Perl::Critic - correct severe violations

    public_crypto : Variables shouldn't be declared in conditionnal
    statement, as it is confusing. Afterwards, it's checked in scalar
    context so it should be OK if it is defined but empty. 

  Change: db82349f9dd426ff185f95247a090bbcf754b896
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-12-06 21:26:20 +0000

    add a parameter (dialog parent window) to app_exit() 

  Change: c8313788133897f2c5f7c50a511f9a7f1a83b46e
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-30 23:43:45 +0000

    Correct License for pixmaps/icons in About dialog 

  Change: 5d324c5388e1df61bb5c123490a35144f9ec90d4
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-29 13:17:02 +0000

    Add confirmation dialog on exit

    Simple MessageDialog Gtk2 object, default to no. Fixes #8319 : Tails
    OpenPGP Applet : Add a confirmation dialog on exit 

  Change: 9a7a2a97cd99e555280aa10f0441ae1ef07ec288
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-29 10:54:04 +0000

    Merge branch 'bugfix/7450-too_easy_to_exit' 

  Change: fdfeae8c6d656911ba5e82ef01d87a39eb32e15a
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-28 23:23:39 +0000

    Merge branch 'feature/add_i18n'

    Conflicts:

    bin/openpgp-applet (due to c87fb47b1db3dbf92a941f9d3a55fd7f74739034) 

  Change: 9846a5abd9462a2e4e875f0f10215919ae120f63
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-28 22:49:48 +0000

    Use __("string") syntax everywhere

    - More consistent with __n() and __x() strings - Same as in C -
    Clearer 

  Change: 76042b179cd2f606ef48d26e7d95d99e166297c1
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-28 22:41:04 +0000

    Refresh and clean po files 

  Change: 3f8328bf00d49c32fdf5ad6659c3c931931e92f4
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-28 20:29:51 +0000

    Remove bogus file 

  Change: 4c7320c12e96cb8c297cdcc71c6c1ecdf17361ca
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-28 13:38:05 +0000

    Coding style : replace tabs with space (again)

    ... But finally fixing my .vimrc to avoid this. 

  Change: 33581ce9b3d9cd1efed28102b1a401f35e6c7d3d
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-28 12:58:33 +0000

    Merge branch 'bugfix/7742-Non-DFSG_compliant_images'

    No objections to the new icons (they are indeed very similar to the
    old ones, that was the point). QA check passed. 

  Change: c87fb47b1db3dbf92a941f9d3a55fd7f74739034
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-28 12:54:25 +0000

    replace Switch module with suitable for() block

    Switch module is deprecated since perl 5.14, and given/when is
    experimental. This is the safe, compatible way according to perl
    documentation. 

  Change: a3aa1b67fce5ce25b726beeb4c2b7b7e87736c59
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-24 15:46:22 +0000

    Invert Exit and About menu

    This is a short-term workaround for Bug #7450 - Tails OpenPGP Applet
    is too easy to exit. A double right-click doesn't exit the applet
    anymore. 

  Change: bdf8c7b5ed30eb826e8c600057cbf939ddac643e
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-24 15:45:22 +0000

    Revert "Invert Exit and About menu"

    This reverts commit 7232ffa2ab398b9f7f2e45de4b8e7b799f546138.

    Wrong branch ! 

  Change: 7232ffa2ab398b9f7f2e45de4b8e7b799f546138
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-24 15:40:07 +0000

    Invert Exit and About menu

    This is a short-term workaround for Bug #7450 - Tails OpenPGP Applet
    is too easy to exit. A double right-click doesn't exit the applet
    anymore. 

  Change: 963111f85e088ec38aa4ff7271eb855a0e06277a
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-24 15:08:35 +0000

    Correct TextDomain definition

    somehow not applied in last i18n branch cleaning. 

  Change: 36b0c4ee1d9a407d3838cb4fc51d14084fec2602
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-23 11:22:44 +0000

    Update translations 

  Change: 273a614c969130f260d51d1f35a3b4885288b653
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-23 11:22:29 +0000

    Add Dist::Zilla module for Locale::TextDomain

    ... Wich adds nice dzil commands for po/mo files management. See
    http://search.cpan.org/~dwheeler/Dist-Zilla-LocaleTextDomain-0.90/lib
    /Dist/Zilla/LocaleTextDomain.pm (Yes, this is the real reason for the
    switch to Locale::TextDomain) 

  Change: 4b7d9f71a47dfdc8d5e594ae40c44745c000a595
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-23 11:22:00 +0000

    use Locale::TextDomain (from libperl-intl)

    ... Instead of plain old Locale::gettext. This is mainly to offer
    easier distribution (dist::zilla plugin, allows to search .mo files
    both in File::Sharedir and standard GNU gettext directories), but it
    has interesting side-effects : - Easier to write/read translated
    strings (__"string" notation) - Has a pure perl implementation as
    well as XS one (portability) - according to some, MAY be faster than
    Locale::gettext. 

  Change: 11b962314b8c7bfeb72a49467065a7676dc84e3d
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-23 11:21:08 +0000

    Import translations from tails' main repo

    - get current translations from main repo - update .po files,
    cleaning everything not related to OpenPGP Applet 

  Change: 8e1aca42818a773a2af020d49eca59b902c66c06
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-23 11:20:50 +0000

    Add i18n infrastructure

    (using iuk as example) - po/ directory and Makefiles - dist::zilla mo
    files generation - change i18n domain from tails to OpenPGP_Applet
    (i.e. dist name) - generate pot file 

  Change: 871c7bfc33f3e3d3926675599f2ca33d25f10640
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-23 03:04:50 +0000

    Correct bug in GnuPG::Interface subclassing

    Extends does not support versioning in Moo (unlike Moose) So
    versioning is finally added as a prereq. 

  Change: 7a1c22972125f8b0d358ec3aaa07787d3b119f6b
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-16 10:32:58 +0000

    Merge branch 'bugfix/7968-cant-clearsign-non-ascii-text'

    Since it was reviewed and merged on Tails repo. 

  Change: 0e9f69f1bae1fb0cd60a0c586687c43a57f79866
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-16 10:31:45 +0000

    Coding Style : replace <TAB> by 4 spaces

    (in last commit, for consistency) 

  Change: 49cc3aaf8f68a987198d06aedcaf6db348bd7052
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-13 14:49:54 +0000

    remove perlcritic.rc (useless since feature/UseMoo) 

  Change: b677eb62ff5d50e349cc81ff97fa88098cf0662e
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-13 14:15:09 +0000

    Merge branch 'feature/UseMoo' 

  Change: a2a1692b97498a4e60069987fd0b42401f9f15b7
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-13 14:14:46 +0000

    add empty perlcritic.rc before merging 

  Change: af1dfff0cabb706d255fedfc45fef0baef35d8c7
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-11-11 18:18:15 +0000

    Don't pass already encoded data to GTK2.

    ... Or it will be encoded twice. This fixes #7968 - "Tails OpenPGP
    Applet can't clearsign text including non-ASCII characters" Only
    affects clearsign, as PGP armored data is always ASCII. 

  Change: ee5df814ecd92a21c35a88b791a38abfacea2182
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-09-27 16:12:56 +0000

    Replace non-DFSG compliant icons (#7742)

    - create new icons using the last Tango Icon Library version (CC0) -
    change metadata to list Tails Developpers as author - point to the
    Tango Freedesktop.org project page as source - replace text
    accordingly in LICENSE and README 

  Change: 0036ca1cc05c4adc80ed9dad7e001e12c83f337f
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-08-15 19:33:56 +0000

    Adjust Perl::Critic modifications

    - Any::Moose already enables strict. - adds a proper perlcritic.rc to
    ignore it 

  Change: 82d79588bd73483d11eccdf7614415992457a89a
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-08-15 19:21:59 +0000

    specify minimum version for GnuPG::Interface

    GnuPG::Interface supports using Moo starting from 0.50 version 

  Change: 1c68b7ad196cd6d6c8c2bbc38fd2c2f2e9b48b92
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-08-08 21:15:07 +0000

    replace Any::Moose with Moo 

  Change: abe7d27f41325177a983dddbe15509a9c9853932
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-08-08 21:11:58 +0000

    add AutoPrereqs to dist.ini 

  Change: 18a6b38290647c91802d65466eee9b4e4219f9b9
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-08-08 15:47:17 +0000

    Merge branch 'feature/CryptNamespace' 

  Change: 7c91bd2ed07a6a6f1be44f55f45e60ae3702a03f
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-08-08 15:39:37 +0000

    Follow some Test::Perl::Critic recommandations 

  Change: c54791e3d85e437dc3bc7aec24863ae46ca780bc
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-08-06 19:16:13 +0000

    correct pixmap dirs 

  Change: 67facd77fa25ce3b45fb280d9a43223abf728def
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-08-06 19:12:13 +0000

    Merge branch 'feature/CryptNamespace' of
    git.tails.boum.org:nodens/openpgp-applet into feature/CryptNamespace 

  Change: 7cf4e94560ca5b8ff2c0c50288362dd25a1243cb
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-08-06 19:10:49 +0000

    Revert "mv OpenPGP_Applet to Crypt namespace"

    This reverts commit 3342ae97cc35951184eb81fd8ebb58e6567e9311. 

  Change: 3342ae97cc35951184eb81fd8ebb58e6567e9311
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-08-06 19:07:04 +0000

    mv OpenPGP_Applet to Crypt namespace 

  Change: 7d4457a17fd7aca441730c1c38a01c18cbbe697c
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-08-06 18:19:00 +0000

    mv OpenPGP_Applet to Crypt namespace 

  Change: 49b8f3ce63f335fdad218bcbdc5cdade940db43c
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-08-05 15:57:27 +0000

    Move OpenPGP_Applet.pm to Crypt Namespace 

  Change: 9904cb410eda3b57314265af4fd8bde6ea7208cc
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-08-05 00:03:23 +0000

    Migrate to Dist::Zilla as a build system 

  Change: 88e3b090722b616189e5894ad1f36ac114050736
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-08-02 03:38:35 +0000

    specify dependency to xclip in Doc and Makefile.PL 

  Change: 467331efb01a79d7898b37553793bde3221ec2f5
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-08-02 01:22:31 +0000

    removing META.yml and inc/ from master 

  Change: f836ce04382d148ef294e5e5fb3c78f874986c84
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-08-02 00:28:20 +0000

    correct name in description / About 

  Change: 2c604beed3f9de6ec27b41514777b08c917616ea
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-08-02 00:26:55 +0000

    correct license in About 

  Change: 2fb80a61f4f2430d33b2eb747d55b3ece6d163d2
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-08-01 22:46:05 +0000

    Merge branch 'master' of git.tails.boum.org:nodens/openpgp-applet 

  Change: 8b13b488d593a6972f1fbef1fe2f78558861595f
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-08-01 22:45:39 +0000

    add License information for pixmaps + cosmetic

    - pixmaps are CC-BY-SA-2.0 - s/gnome/GNOME/ in the README. 

  Change: d59b50e90a6f3705ef0d8b9628da1291707292d8
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-08-01 22:41:49 +0000

    add License information for pixmaps + cosmetic

    - pixmaps are CC-BY-SA-2.0 - s/gnome/GNOME/ in the README. 

  Change: 57e4b220844c1de56b0ee46629ddf53be401b289
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-07-31 21:31:07 +0000

    script->bin for better consistency

    (with other Tails perl packages) 

  Change: 6d58acb6ba285be4e2dc26fe908069f78cc51626
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-07-31 19:54:30 +0000

    Documentation : grammar/spelling/syntax 

  Change: 2e5241d987e92605e3a9aca81fe416cd96e5d327
  Author: Clément Hermann (nodens) <nodens@nodens.org>
  Date : 2014-07-31 19:35:17 +0000

    Correct some license bits

    - LICENSE file - s/COPYRIGHT/LICENSE/ in POD 

  Change: ea9ea83ed36b6de41cceaec11e14e2c9da9c34f5
  Author: Tails developers <tails@boum.org>
  Date : 2014-07-29 14:18:38 +0000

    correct NAME in POD 

  Change: d25b25a0e9a740dd9f3532f4220d7d0ba2aaec74
  Author: Tails developers <tails@boum.org>
  Date : 2014-07-29 13:03:42 +0000

    add MANIFEST 

  Change: ba02389bcedf59948ed934ad21d04b8f33b26712
  Author: Tails developers <tails@boum.org>
  Date : 2014-07-29 12:29:52 +0000

    Mimic Tails-perl5lib for version info 

  Change: df95836090df34a62f8fd48ebf0001e0aeec94c2
  Author: nodens <nodens@nodens.org>
  Date : 2014-07-28 22:21:47 +0000

    Add info about missing I18N, version change 

  Change: c4d36ad834b0d1f30755228c8c448311e3d5c1e7
  Author: Tails developers <tails@boum.org>
  Date : 2014-07-28 21:44:22 +0000

    Add .gitignore and inc/ 

  Change: 2124a014ec1f24eb1ca55d6aa69e925d4db97f5b
  Author: Tails developers <tails@boum.org>
  Date : 2014-07-28 00:44:04 +0000

    Add documentation and copyright information

    - README - LICENSE 

  Change: d81a50f06719d970cf5b551d7c6e683b80ddd034
  Author: Tails developers <tails@boum.org>
  Date : 2014-07-28 00:12:47 +0000

    Add relevant information inline as POD

    - AUTHOR, VERSION, ABSTACT, COPYRIGHT etc moved into the main script,

    added when needed, 

  Change: 241942d4ec0fc377e72529f43e50588a99ee8e06
  Author: Tails developers <tails@boum.org>
  Date : 2014-07-27 18:09:31 +0000

    Package with Module::Install

    - use File::ShareDir along with Module::Install:Share,

    removing the /usr/share/pixmaps hardcoded path

    - create a minimalist Makefile.PL with some metadata

    and CPAN deps 

  Change: 74e7283c283b1fc4c4198b5aadfd47c945534ce5
  Author: Tails developers <tails@boum.org>
  Date : 2014-07-27 15:44:01 +0000

    Rename to OpenPGP_Applet

    - rename script to openpgp-applet - rename module to OpenPGP_Applet -
    adjust code accordingly 

  Change: 692d536b6b2dd6ed8ca6df5e31cc32d80ffd2d64
  Author: Tails developers <tails@boum.org>
  Date : 2014-07-27 14:43:01 +0000

    Initial import of gpgApplet from tails

    Everything taken from tails/config/chroot_local-includes

    * script/gpgApplet from usr/local/bin/

    * lib/gpgApplet from usr/local/lib/site_perl/

    * share/pixmaps/gpgApplet from usr/share/pixmaps 

================
End of releases.
================