This repository has been archived by the owner on Oct 29, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
ChangeLog
1644 lines (956 loc) · 45.1 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2016-11-22 Dag Heyman <[email protected]>
* NEWS: Update NEWS
2016-11-22 Dag Heyman <[email protected]>
* NEWS, yubioath/__init__.py: Update NEWS and version number
2016-11-22 Dag Heyman <[email protected]>
* vendor/yubicommon: Update yubicommon
2016-09-29 Dag Heyman <[email protected]>
* README: Add new row in README
2016-09-29 Dag Heyman <[email protected]>
* README: Add travis badge
2016-09-29 Dag Heyman <[email protected]>
* .travis.yml: No tests in travis for now
2016-09-29 Dag Heyman <[email protected]>
* vendor/yubicommon: Update yubicommon
2016-09-29 Dag Heyman <[email protected]>
* .travis.yml: Travis: only flake8 for now
2016-09-29 Dag Heyman <[email protected]>
* .travis.yml: Add a travis file
2016-09-29 Dag Heyman <[email protected]>
* setup.py, yubioath/cli/__main__.py, yubioath/core/standard.py,
yubioath/core/utils.py, yubioath/gui/__init__.py,
yubioath/gui/__main__.py, yubioath/gui/controller.py,
yubioath/gui/messages.py, yubioath/gui/qrdecode.py,
yubioath/gui/view/add_cred.py,
yubioath/gui/view/add_cred_legacy.py, yubioath/gui/view/codes.py:
Cleanup to pass flake8
2016-09-28 Dag Heyman <[email protected]>
* vendor/yubicommon: Update yubicommon
2016-09-28 Dag Heyman <[email protected]>
* : Merge pull request #102
2016-09-27 Dain Nilsson <[email protected]>
* yubioath/gui/ccid_poll.py, yubioath/gui/controller.py: Minor
cleanups.
2016-09-23 Dain Nilsson <[email protected]>
* : Merge pull request #99 from tycho/add-search-box.
2016-09-23 Dain Nilsson <[email protected]>
* : Merge pull request #103 from tycho/fix-ui-hitches.
2016-09-13 Steven Noonan <[email protected]>
* yubioath/gui/view/codes.py: yubioath-gui: set completion mode to
"inline" The popup was eating hotkey events and I couldn't figure out a
sensible way around that. Signed-off-by: Steven Noonan <[email protected]>
2016-09-12 Steven Noonan <[email protected]>
* yubioath/gui/controller.py: yubioath-gui: do expensive
refresh_codes() logic in background worker This prevents the user interface from hitching when refreshing the
codes list. Signed-off-by: Steven Noonan <[email protected]>
2016-09-10 Steven Noonan <[email protected]>
* yubioath/gui/view/codes.py: yubioath-gui: add auto-completion to
search box Signed-off-by: Steven Noonan <[email protected]>
2016-09-10 Steven Noonan <[email protected]>
* yubioath/gui/messages.py, yubioath/gui/view/codes.py:
yubioath-gui: add search box for codes list Signed-off-by: Steven Noonan <[email protected]>
2016-09-12 Steven Noonan <[email protected]>
* yubioath/gui/__main__.py, yubioath/gui/messages.py: yubioath-gui:
add shortcut Command+W to close the window The typical OS X shortcuts mostly work: Command+Q, Command+H... But
Command+W, the shortcut for closing the current window, does not
currently do anything. This hooks the Command+W key sequence up to
the window.close function. Signed-off-by: Steven Noonan <[email protected]>
2016-09-09 Steven Noonan <[email protected]>
* yubioath/cli/__main__.py: yubioath cli: allow funny Steam otpauth
URIs otpauth URIs exported by WinAuth add 'digits=5' for SteamGuard
tokens, which is invalid in all cases except for Steam. Since the
YubiKey will reject a value of '5', just patch it to '6' like we do
in the GUI. Signed-off-by: Steven Noonan <[email protected]>
2016-09-09 Steven Noonan <[email protected]>
* yubioath/cli/__main__.py: yubioath cli: add support for
HMAC-SHA256 This also adds value correctness checking for the OATH type and
number of digits. Signed-off-by: Steven Noonan <[email protected]>
2016-09-09 Steven Noonan <[email protected]>
* yubioath/cli/__main__.py: yubioath cli: use better description for
oath-type Since the "algorithm" is the HMAC variant. Signed-off-by: Steven Noonan <[email protected]>
2016-09-09 Steven Noonan <[email protected]>
* yubioath/cli/__main__.py: yubioath cli: fix handling of otpauth
URIs If we use the 'or's here we incorrectly pull a bunch of values from
the command-line arguments instead of from the parsed URL. Even if
the user doesn't specify these values (e.g. digits) on the command
line, they already have Click-defined default values. So regardless
of the 'digits' value in the otpauth:// URI, '6' would always be
used. Signed-off-by: Steven Noonan <[email protected]>
2016-09-09 Steven Noonan <[email protected]>
* yubioath/gui/messages.py, yubioath/gui/view/add_cred.py:
yubioath-gui: add more error checking for parsed QR codes We now verify that the type, number of digits, and algorithm are
valid choices. Signed-off-by: Steven Noonan <[email protected]>
2016-09-09 Steven Noonan <[email protected]>
* yubioath/gui/__main__.py, yubioath/gui/messages.py,
yubioath/gui/view/add_cred.py: yubioath-gui: implement HMAC-SHA256
support in UI Signed-off-by: Steven Noonan <[email protected]>
2016-09-08 Dain Nilsson <[email protected]>
* : Merge pull request #94 from tycho/fix-for-qr-decode qrdecode: fix error where float was used as a string index
2016-06-15 Dag Heyman <[email protected]>
* resources/yubioath.desktop: Update desktop icon command
2016-06-13 Dain Nilsson <[email protected]>
* yubioath/__init__.py: Bump version.
2016-06-13 Dain Nilsson <[email protected]>
* NEWS, yubioath/__init__.py: Update NEWS and version for release.
2016-06-13 Dain Nilsson <[email protected]>
* vendor/yubicommon: Update yubicommon.
2016-06-13 Dain Nilsson <[email protected]>
* yubioath/cli/__main__.py: Fix "yubioath gui" command when run fron
PyInstaller.
2016-06-13 Dain Nilsson <[email protected]>
* resources/win-installer.nsi: Fix command names in Windows
installer.
2016-06-09 Dain Nilsson <[email protected]>
* man/yubioath-gui.1.adoc, man/yubioath.1.adoc: Fix headers for man
pages.
2016-06-09 Dain Nilsson <[email protected]>
* yubioath/cli/__main__.py: Minor CLI fixes.
2016-06-09 Dain Nilsson <[email protected]>
* man/yubioath-cli.1.adoc, man/yubioath-gui.1.adoc,
man/yubioath.1.adoc: Update man pages.
2016-06-09 Dag Heyman <[email protected]>
* NEWS, yubioath/__init__.py: Prepare for release 3.0.0
2016-06-09 Dain Nilsson <[email protected]>
* NEWS, README, doc/Building_Binaries.adoc: Updated README, moved
binary build instructions.
2016-06-09 Dag Heyman <[email protected]>
* resources/linux-patch-ccid: Try systemd syntax if pcscd restart
fails Closes #75
2016-06-09 Dag Heyman <[email protected]>
* yubioath/core/standard.py: Less general variable name for showing
hidden credentials
2016-06-09 Dag Heyman <[email protected]>
* yubioath/cli/__main__.py, yubioath/gui/messages.py: Better
language in no space left-message.
2016-06-09 Dain Nilsson <[email protected]>
* yubioath/core/legacy_otp.py: Fix indentation issue.
2016-06-09 Dain Nilsson <[email protected]>
* vendor/yubicommon, yubioath/core/legacy_otp.py: Update yubicommon
and refactor ctypes code.
2016-06-08 Dain Nilsson <[email protected]>
* vendor/yubicommon, yubioath/core/legacy_otp.py: Update yubicommon,
switch to use_library.
2016-06-08 Dain Nilsson <[email protected]>
* vendor/yubicommon: Update yubicommon.
2016-06-08 Dain Nilsson <[email protected]>
* setup.py: Don't require PySide without gui.
2016-06-08 Dag Heyman <[email protected]>
* yubioath/gui/view/systray.py: Focus the window when activating
from systray
2016-06-08 Dain Nilsson <[email protected]>
* yubioath/core/standard.py: Hide _hidden credentials.
2016-06-08 Dain Nilsson <[email protected]>
* yubioath/cli/__main__.py, yubioath/gui/view/codes.py: Revert "Hide
credentials with the issuer "_hidden:"." This reverts commit cdfc77e0f35b13fde5a123591d14393d29e67a7f.
2016-06-08 Dain Nilsson <[email protected]>
* yubioath/core/standard.py: Formatting.
2016-06-08 Dain Nilsson <[email protected]>
* yubioath/cli/__main__.py, yubioath/gui/view/codes.py: Hide
credentials with the issuer "_hidden:".
2016-06-08 Dain Nilsson <[email protected]>
* yubioath/cli/__main__.py: Launch GUI using "yubioath gui".
2016-06-08 Dain Nilsson <[email protected]>
* : Merge pull request #84 from Yubico/no-space Handle case when no space left on YubiKey
2016-06-08 Dain Nilsson <[email protected]>
* yubioath/cli/__main__.py: Default to "show" when no subcommand is
given.
2016-06-07 Dain Nilsson <[email protected]>
* setup.py, yubioath/cli/__main__.py: Use click instead of argparse.
2016-06-07 Dag Heyman <[email protected]>
* doc/osx-compiling.adoc: Different order in the Swig installation.
2016-06-07 Dag Heyman <[email protected]>
* doc/osx-compiling.adoc, doc/qt4-8-6-on-osx.patch: Add docs for
building compatible binaries on OS X To build backwards compatible binaries on OS X, everything needs to
be compiled with a CFLAGS variable set. Add documentation for this
and a .patch file needed for building Qt 4.
2016-06-03 Dag Heyman <[email protected]>
* NEWS: Language adjustments in the release notes
2016-06-03 Dag Heyman <[email protected]>
* : Merge pull request #83 from Yubico/steam-yubikey4-calculation Recalculate codes for Steam credentials
2016-06-03 Dag Heyman <[email protected]>
* NEWS: Update NEWS for upcoming release
2016-06-03 Dag Heyman <[email protected]>
* .gitignore: Add lib folder to .gitignore
2016-06-02 Dag Heyman <[email protected]>
* vendor/yubicommon: Update Yubicommon
2016-05-31 Dag Heyman <[email protected]>
* : Merge pull request #82 from Yubico/scrolling-as-needed Vertical scrolling when needed
2016-05-31 Dain Nilsson <[email protected]>
* : Merge pull request #81 from Yubico/split-issuer UX enhancements
2016-05-30 Dag Heyman <[email protected]>
* yubioath/gui/view/codes.py: Split up issuer and name in the GUI Show issuer and name of entry in two different labels in the GUI.
Hide issuer label if no issuer exists in the entry. Closes #73.
2016-05-30 Dag Heyman <[email protected]>
* yubioath/core/utils.py: Avoid TypeError when checking pids Add string decoding when checking for pids on OS X. A TypeError
occured when inserting the Yubikey and the program was running under
Python 3.
2016-05-27 Dag Heyman <[email protected]>
* yubioath/gui/view/add_cred.py: Use deafult Qt dialog in overwrite
confirmation When asking for a overwrite-confirmation, instead of creating a new
custom QMessageBox, use the default static method for question
dialogs as used in other parts of the applicaation.
2016-05-26 Dain Nilsson <[email protected]>
* : Merge pull request #80 from Yubico/confirm-overwriting Add confirmation when overwriting entries
2016-05-24 Dag Heyman <[email protected]>
* yubioath/core/standard.py: Send the actual algorithm when
shortening the HMAC-SHA256 keys. It was not possible to add new
credentials.
2016-05-24 Dag Heyman <[email protected]>
* vendor/yubicommon: Update Yubicommon.
2016-05-10 Dain Nilsson <[email protected]>
* yubioath/core/standard.py: Correclty shorten HMAC-SHA256 keys that
are too long.
2016-03-31 Dain Nilsson <[email protected]>
* yubioath/gui/qrparse.py: Remove unneeded cast to float.
2016-03-31 Dain Nilsson <[email protected]>
* yubioath/gui/qrdecode.py, yubioath/gui/qrparse.py: Ensure
consistent division.
2016-03-31 Dain Nilsson <[email protected]>
* yubioath/core/legacy_otp.py: Python 3 fixes.
2016-03-31 Dain Nilsson <[email protected]>
* yubioath/gui/qrdecode.py, yubioath/gui/qrparse.py: Fixed QR
parsing.
2016-03-31 Dain Nilsson <[email protected]>
* yubioath/cli/__main__.py, yubioath/cli/keystore.py,
yubioath/core/ccid.py, yubioath/core/legacy_ccid.py,
yubioath/core/legacy_otp.py, yubioath/core/standard.py,
yubioath/core/utils.py, yubioath/gui/controller.py: Python 3 fixes.
2016-03-31 Dain Nilsson <[email protected]>
* yubioath/core/standard.py: Calculate Steam Guard codes for
credentials with Steam: prefix.
2016-03-31 Dain Nilsson <[email protected]>
* yubioath/core/utils.py: Fix windows regex for PID.
2016-03-31 Dain Nilsson <[email protected]>
* yubioath/gui/controller.py: Suppress unused variable warning.
2016-03-31 Dain Nilsson <[email protected]>
* yubioath/cli/__main__.py, yubioath/core/controller.py,
yubioath/core/legacy_otp.py, yubioath/gui/controller.py: Implement
deletion of slot based credentials.
2016-03-31 Dain Nilsson <[email protected]>
* yubioath/core/utils.py, yubioath/gui/messages.py: Made CCID
disabled detection not rely on pyusb.
2016-03-31 Dain Nilsson <[email protected]>
* vendor/yubicommon: Updated yubicommon.
2015-12-02 Dain Nilsson <[email protected]>
* vendor/yubicommon, yubioath/gui/__main__.py: Allow package
version.
2015-11-20 Dain Nilsson <[email protected]>
* resources/osx-installer.pkgproj, resources/osx-patch-ccid: Remove
osx-patch-ccid (use ifd-yubico instead).
2015-11-20 Dain Nilsson <[email protected]>
* NEWS, yubioath/__init__.py: Prepare for release.
2015-11-19 Dain Nilsson <[email protected]>
* NEWS, yubioath/__init__.py: Update version and NEWS.
2015-11-19 Dain Nilsson <[email protected]>
* yubioath/gui/__main__.py, yubioath/gui/controller.py,
yubioath/gui/view/add_cred.py: Support programming touch credentials
in GUI.
2015-11-19 Dain Nilsson <[email protected]>
* yubioath/gui/view/codes.py: Fix double-click to calculate, copy,
and close.
2015-11-19 Dain Nilsson <[email protected]>
* yubioath/gui/controller.py: Handle touch HOTP.
2015-11-19 Dain Nilsson <[email protected]>
* yubioath/gui/controller.py, yubioath/gui/view/codes.py: Better
support for touch credentials and HOTP.
2015-11-18 Dain Nilsson <[email protected]>
* yubioath/core/controller.py, yubioath/core/legacy_otp.py,
yubioath/gui/controller.py, yubioath/gui/view/codes.py: Initial
support for touch credentials in GUI.
2015-11-19 Dain Nilsson <[email protected]>
* yubioath/core/controller.py, yubioath/core/legacy_otp.py: Improved
handing of OTP credentials.
2015-11-18 Dain Nilsson <[email protected]>
* yubioath/cli/__main__.py, yubioath/core/ccid.py,
yubioath/core/legacy_otp.py, yubioath/core/standard.py: Added
support for touch credentials to CLI.
2015-11-16 Dain Nilsson <[email protected]>
* NEWS, yubioath/gui/__main__.py, yubioath/gui/controller.py,
yubioath/gui/keystore.py: Clear password cache on hide.
2015-11-13 Dain Nilsson <[email protected]>
* vendor/yubicommon: Update yubicommon.
2015-10-13 Henrik Stråth <[email protected]>
* : Merge pull request #56 from jsha/patch-1 Correct typo in source build instructions
2015-10-12 Dain Nilsson <[email protected]>
* NEWS, yubioath/gui/controller.py: Fixed issue with timer drift.
2015-10-05 Dain Nilsson <[email protected]>
* NEWS, vendor/yubicommon, yubioath/__init__.py: Updated yubicommon
and bumped version.
2015-10-05 Dain Nilsson <[email protected]>
* yubioath/cli/__main__.py: Test for exact match when filtering.
2015-10-05 Dain Nilsson <[email protected]>
* man/yubioath-cli.1.adoc, yubioath/cli/__main__.py: Default to 6
digits if not specified (CLI).
2015-10-05 Dain Nilsson <[email protected]>
* man/yubioath-cli.1.adoc: Fix typo in man page.
2015-09-29 Dain Nilsson <[email protected]>
* : Merge pull request #52 from Yubico/ccid-disabled-warning Added warning dialog when YK with CCID disabled is inserted
2015-09-16 Henrik Stråth <[email protected]>
* yubioath/core/utils.py, yubioath/gui/__main__.py,
yubioath/gui/controller.py, yubioath/gui/utils.py,
yubioath/gui/view/dialogs.py: Added warning dialog when YK with CCID
disabled is inserted
2015-09-11 Henrik Stråth <[email protected]>
* .gitignore: Added entry to .gitignore
2015-09-10 Henrik Stråth <[email protected]>
* README: Mentioned minimal OS X version in README
2015-08-21 Dain Nilsson <[email protected]>
* yubioath/core/utils.py: Unquote otpauth URLs (fixes #44).
2015-08-21 Henrik Stråth <[email protected]>
* README: Screenshot replaced by usage.gif
2015-08-20 Dain Nilsson <[email protected]>
* setup.py, vendor/yubicommon: Updated yubicommon.
2015-08-20 Dain Nilsson <[email protected]>
* setup.py, vendor/yubicommon: Updated yubicommon.
2015-08-20 Dain Nilsson <[email protected]>
* NEWS, yubioath/__init__.py: Updated NEWS for release.
2015-08-20 Dain Nilsson <[email protected]>
* yubioath/core/utils.py: Handle whitespace surrounding OTP URL.
2015-08-20 Dain Nilsson <[email protected]>
* yubioath/__init__.py, yubioath/gui/view/add_cred.py: Fix not
decoding secrets from base32.
2015-08-19 Dain Nilsson <[email protected]>
* vendor/yubicommon: Updated yubicommon.
2015-08-18 Dain Nilsson <[email protected]>
* : Merge pull request #42 from pelme/patch-1 Fix typo in README
2015-08-18 Dain Nilsson <[email protected]>
* NEWS, yubioath/__init__.py: Updated NEWS and version for release.
2015-08-18 Dain Nilsson <[email protected]>
* vendor/yubicommon, yubioath/gui/messages.py: Updated yubicommon.
2015-08-18 Andreas Pelme <[email protected]>
* README: Fix typo in README
2015-08-17 Dain Nilsson <[email protected]>
* README: Added note about CCID mode in README.
2015-08-17 Dain Nilsson <[email protected]>
* yubioath/gui/messages.py, yubioath/gui/view/add_cred.py,
yubioath/gui/view/add_cred_legacy.py: Added QR icon.
2015-08-17 Dain Nilsson <[email protected]>
* yubioath/gui/qrparse.py: Rewrote QR code parsing.
2015-08-14 Dain Nilsson <[email protected]>
* NEWS: Updated NEWS.
2015-08-14 Dain Nilsson <[email protected]>
* vendor/yubicommon: Updated yubicommon.
2015-08-14 Dain Nilsson <[email protected]>
* yubioath/gui/__main__.py, yubioath/gui/messages.py,
yubioath/gui/qrparse.py, yubioath/gui/view/add_cred.py,
yubioath/gui/view/add_cred_legacy.py: Added initial support for
scanning QR codes.
2015-08-14 Dain Nilsson <[email protected]>
* yubioath/gui/qrdecode.py, yubioath/gui/qrparse.py: Added QR
parsing/decoding.
2015-08-06 Dain Nilsson <[email protected]>
* NEWS, yubioath/gui/__main__.py: Added option to start minimized to
tray (fixes #34).
2015-08-06 Dain Nilsson <[email protected]>
* NEWS, yubioath/gui/__main__.py, yubioath/gui/view/settings.py:
Make systray icon diabled by default.
2015-08-06 Dain Nilsson <[email protected]>
* resources/osx-patch-ccid: Made osx-patch-ccid fail gracefully. Throwing an exception causes the installer to fail, which we don't
want.
2015-08-06 Dain Nilsson <[email protected]>
* vendor/yubicommon: Updated yubicommon.
2015-08-06 Dain Nilsson <[email protected]>
* NEWS: Updated NEWS.
2015-08-06 Dain Nilsson <[email protected]>
* vendor/yubicommon: Updated yubicommon to enable executable builds
again.
2015-08-06 Dain Nilsson <[email protected]>
* yubioath/gui/ccid.py: Don't crash of PC/SC isn't available.
2015-08-06 Dain Nilsson <[email protected]>
* scripts/yubioath, scripts/yubioath-cli, setup.py,
yubioath/cli/{main.py => __main__.py}, yubioath/gui/{main.py =>
__main__.py}: Use entry_points instead of scripts.
2015-08-05 Dain Nilsson <[email protected]>
* yubioath/gui/messages.py, yubioath/gui/view/settings.py: Added
tooltips to settings fields.
2015-07-02 Dain Nilsson <[email protected]>
* NEWS, yubioath/__init__.py: Bumped version.
2015-07-02 Dain Nilsson <[email protected]>
* yubioath/gui/view/add_cred.py: Permit (but ignore) spaces in keys
(fixes #33).
2015-07-02 Dain Nilsson <[email protected]>
* .gitignore, man/yubioath.1.adoc: man page formatting.
2015-07-02 Dain Nilsson <[email protected]>
* NEWS, yubioath/__init__.py: Updated NEWS and version for release.
2015-07-02 Dain Nilsson <[email protected]>
* resources/win-installer.nsi: Nicer close.
2015-07-02 Dain Nilsson <[email protected]>
* resources/win-installer.nsi: Kill process in installer and
uninstaller (fixes #30).
2015-07-02 Dain Nilsson <[email protected]>
* NEWS, yubioath/core/controller.py: Fix bug with non-CCId devices
(fixes #32).
2015-07-01 Dain Nilsson <[email protected]>
* yubioath/cli/main.py: Added --version to CLI.
2015-07-01 Dain Nilsson <[email protected]>
* vendor/yubicommon: Updated yubicommon.
2015-06-30 Dain Nilsson <[email protected]>
* man/yubioath-cli.1.adoc: man page fixes.
2015-06-30 Dain Nilsson <[email protected]>
* man/yubioath-cli.1.adoc: Man page formatting.
2015-06-30 Dain Nilsson <[email protected]>
* .gitignore, MANIFEST.in, {scripts => man}/yubioath-cli.1.adoc,
{scripts => man}/yubioath.1.adoc, vendor/yubicommon: Moved man
files.
2015-06-30 Dain Nilsson <[email protected]>
* scripts/{yubioath-cli.adoc => yubioath-cli.1.adoc},
scripts/{yubioath.adoc => yubioath.1.adoc}: Rename mans.
2015-06-30 Dain Nilsson <[email protected]>
* NEWS: Updated NEWS.
2015-06-30 Dain Nilsson <[email protected]>
* scripts/yubioath-cli.adoc, scripts/yubioath.adoc: Added man pages.
2015-06-30 Dain Nilsson <[email protected]>
* .gitignore, MANIFEST.in, setup.py, vendor/yubicommon: Setup for
generating man pages from .adoc.
2015-06-26 Dain Nilsson <[email protected]>
* yubioath/__init__.py: Bump version for development.
2015-06-26 Dain Nilsson <[email protected]>
* NEWS, yubioath/__init__.py: Prepare for release.
2015-06-26 Dain Nilsson <[email protected]>
* NEWS: Updated NEWS.
2015-06-24 Dain Nilsson <[email protected]>
* yubioath/cli/main.py: Added support for specifying digits and imf
in CLI.
2015-06-24 Dain Nilsson <[email protected]>
* yubioath/core/controller.py: Only close device if needed in
read_creds.
2015-06-24 Dain Nilsson <[email protected]>
* yubioath/cli/controller.py, yubioath/cli/main.py,
yubioath/core/controller.py: Added reset to CLI.
2015-06-24 Dain Nilsson <[email protected]>
* yubioath/cli/main.py: Cleaned upp password command.
2015-06-24 Dain Nilsson <[email protected]>
* yubioath/cli/main.py: save -> remember.
2015-06-24 Dain Nilsson <[email protected]>
* yubioath/cli/keystore.py, yubioath/cli/main.py: Added option to
purge saved passwords.
2015-06-24 Dain Nilsson <[email protected]>
* yubioath/cli/main.py: Use parent parsers for global options.
2015-06-24 Dain Nilsson <[email protected]>
* NEWS, yubioath/cli/controller.py, yubioath/cli/main.py: Added
set/unset password to CLI.
2015-06-24 Dain Nilsson <[email protected]>
* yubioath/cli/main.py: Added delete to CLI.
2015-06-24 Dain Nilsson <[email protected]>
* scripts/yubioath-cli, yubioath/cli/controller.py,
yubioath/cli/main.py, yubioath/core/controller.py,
yubioath/core/utils.py, yubioath/gui/controller.py: Added put to
CLI.
2015-06-22 Dain Nilsson <[email protected]>
* NEWS, vendor/yubicommon, yubioath/gui/controller.py,
yubioath/gui/main.py, yubioath/gui/view/codes.py: Improved composite
mode handling.
2015-06-22 Dain Nilsson <[email protected]>
* yubioath/core/legacy_otp.py, yubioath/gui/controller.py,
yubioath/gui/main.py, yubioath/gui/messages.py,
yubioath/gui/view/add_cred.py, yubioath/gui/view/add_cred_legacy.py:
Add programming of slots.
2015-06-18 Dain Nilsson <[email protected]>
* yubioath/core/legacy_otp.py: Read slot status.
2015-06-18 Dain Nilsson <[email protected]>
* yubioath/core/legacy_otp.py, yubioath/gui/main.py,
yubioath/gui/view/add_cred.py: Added API support for programming
slot based credentials.
2015-06-18 Dain Nilsson <[email protected]>
* yubioath/gui/controller.py, yubioath/gui/messages.py: Better
handling of legacy otp devices.
2015-06-18 Dain Nilsson <[email protected]>
* yubioath/gui/controller.py: Avoid clearing credentials on refresh
for legacy OTP mode.
2015-06-18 Dain Nilsson <[email protected]>
* NEWS, yubioath/__init__.py: Bumped version.
2015-06-18 Dain Nilsson <[email protected]>
* yubioath/core/utils.py, yubioath/gui/main.py,
yubioath/gui/messages.py, yubioath/gui/view/settings.py: Added
setting to kill scdaemon on show.
2015-06-17 Dain Nilsson <[email protected]>
* README: Remove TODO.
2015-06-17 Dain Nilsson <[email protected]>
* resources/win-installer.nsi, vendor/yubicommon,
yubioath/__init__.py: Updated yubicommon (closes #27).
2015-06-17 Dain Nilsson <[email protected]>
* README: Mention rebooting the computer. Remove PPA.
2015-06-16 Henrik Stråth <[email protected]>
* README: Added screenshot to README
2015-06-16 Dain Nilsson <[email protected]>
* NEWS: Updated NEWS for new release.
2015-06-16 Dain Nilsson <[email protected]>
* setup.py, vendor/yubicommon, yubioath/__init__.py: Updated
yubicommon.
2015-06-16 Dain Nilsson <[email protected]>
* NEWS, yubioath/__init__.py: Updated NEWS and version for release.
2015-06-16 Dain Nilsson <[email protected]>
* yubioath/gui/messages.py, yubioath/gui/view/systray.py: Add a
"show" command to systray context menu.
2015-06-16 Dain Nilsson <[email protected]>
* setup.py, vendor/yubicommon: Updated yubicommon.
2015-06-15 Dain Nilsson <[email protected]>
* NEWS: Added NEWS for release.
2015-06-15 Dain Nilsson <[email protected]>
* yubioath/core/ccid.py, yubioath/gui/ccid.py,
yubioath/gui/ccid_poll.py, yubioath/gui/controller.py,
yubioath/gui/main.py, yubioath/gui/messages.py,
yubioath/gui/view/codes.py: Handle device in use better.
2015-06-15 Dain Nilsson <[email protected]>
* yubioath/core/ccid.py, yubioath/core/controller.py,
yubioath/gui/ccid.py, yubioath/gui/ccid_poll.py,
yubioath/gui/controller.py: Release CCID device between reads and
don't read while hidden.
2015-06-15 Dain Nilsson <[email protected]>
* yubioath/core/ccid.py, yubioath/gui/ccid.py, yubioath/{core =>
gui}/ccid_poll.py, yubioath/gui/controller.py: Move observing CCID
code to gui.
2015-06-15 Dain Nilsson <[email protected]>
* NEWS, README, yubioath/__init__.py: Fix deps.
2015-06-15 Dain Nilsson <[email protected]>
* README, resources/linux-patch-ccid: Added instructions for libccid
to README.
2015-06-12 Dain Nilsson <[email protected]>
* resources/yubioath.xpm: Added XPM icon.
2015-06-12 Dain Nilsson <[email protected]>
* resources/yubioath.desktop, setup.py: Added .desktop file.
2015-06-12 Dain Nilsson <[email protected]>
* README: Updated README.
2015-06-12 Dain Nilsson <[email protected]>
* yubioath/gui/view/add_cred.py: Better validation for b32 keys.
2015-06-12 Dain Nilsson <[email protected]>
* yubioath/gui/controller.py, yubioath/gui/main.py: Better handling
of password protected keys inserted while minimized.
2015-06-12 Dain Nilsson <[email protected]>
* yubioath/gui/messages.py, yubioath/gui/view/codes.py: Added
confirmation for deletes.
2015-06-12 Dain Nilsson <[email protected]>
* vendor/yubicommon, yubioath/gui/main.py: Only allow a single
running instance.
2015-06-12 Dain Nilsson <[email protected]>
* yubioath/core/ccid.py, yubioath/gui/controller.py,
yubioath/gui/view/codes.py: Only using polling API for Windows.
2015-06-11 Dain Nilsson <[email protected]>
* README, resources/osx-installer.pkgproj,
resources/osx-patch-ccid, vendor/yubicommon: Added osx installer.
2015-06-10 Dain Nilsson <[email protected]>
* resources/win-installer.nsi: Added NSIS installer script.
2015-06-10 Dain Nilsson <[email protected]>
* README: Updated README.
2015-06-10 Dain Nilsson <[email protected]>
* README, README.adoc: Added README.adoc symlink for Github.
2015-06-10 Dain Nilsson <[email protected]>
* : commit 39230a64d5d0aaa7d3b11e602c8140a37a3cba41 Author: Dain
Nilsson <[email protected]> Date: Wed Jun 10 16:36:38 2015 +0200
2015-06-10 Dain Nilsson <[email protected]>
* : Fixed Windows icon.
2015-06-10 Dain Nilsson <[email protected]>
* yubioath/gui/main.py, yubioath/gui/view/systray.py: Systray icon
fixes.
2015-06-10 Dain Nilsson <[email protected]>
* vendor/yubicommon: Updated yubicommon.
2015-06-10 Dain Nilsson <[email protected]>
* : Added icons.
2015-06-10 Dain Nilsson <[email protected]>
* vendor/yubicommon: Updated yubicommon.
2015-06-10 Dain Nilsson <[email protected]>
* yubioath/core/legacy_otp.py: Fix wrong return type for
_yk_errno_location.
2015-06-09 Dain Nilsson <[email protected]>
* vendor/yubicommon: Updated yubicommons.
2015-06-09 Dain Nilsson <[email protected]>
* yubioath/core/ccid.py, yubioath/core/ccid_poll.py: Added polling
low-level backend for Windows.
2015-06-08 Dain Nilsson <[email protected]>
* setup.py, vendor/yubicommon, yubioath/core/ccid.py,
yubioath/gui/controller.py: Move pyscard logic from controller.
2015-06-05 Dain Nilsson <[email protected]>
* vendor/yubicommon, yubioath/gui/view/codes.py: Copy and close on
double-click.
2015-06-05 Dain Nilsson <[email protected]>
* yubioath/gui/controller.py, yubioath/gui/main.py,
yubioath/gui/messages.py, yubioath/gui/view/settings.py: Only poll
YubiKey when in foreground.
2015-06-05 Dain Nilsson <[email protected]>
* yubioath/gui/unlocker.py: Remove unused file.
2015-06-05 Dain Nilsson <[email protected]>
* yubioath/gui/main.py, yubioath/gui/view/systray.py: Fix systray
window positioning.
2015-06-05 Dain Nilsson <[email protected]>
* vendor/yubicommon: Newer yubicommon.
2015-06-05 Dain Nilsson <[email protected]>