Skip to content

Commit 3c162f4

Browse files
committed
Fix export menu and documentation.
1 parent eae3316 commit 3c162f4

4 files changed

Lines changed: 8 additions & 7 deletions

File tree

README.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,10 @@ deselects it. Double-clicking on an entry selects it and copies the current
129129
code for it to the clipboard. The toolbar contains a tool for copying the
130130
code of the currently-selected entry to the clipboard, and tools to move the
131131
currently-selected entry up and down in the list so you can order entries the
132-
way you want them
132+
way you want them. Right-clicking on an item brings up a context menu to let
133+
you copy the provisioning URI for the entry to the clipboard or display the
134+
QR code representation of the provisioning URI for scanning into another
135+
authenticator app.
133136

134137
When you run PyAuth with an empty database of authentication entries, it'll
135138
display a single dummy entry with a fake code that won't change. The first new

VERSIONS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# PyAuth version history:
22

3+
* 1.1.1 - Minor fixes to menus and documentation related to provisioning URIs and QR codes
4+
35
* 1.1.0 - Provisioning URIs
46
- Generate provisioning URIs.
57
- Display the QR code representation of the provisioning URI for scanning.

pyauth/AuthFrame.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -883,14 +883,10 @@ def create_menu_bar( self ):
883883

884884
# Export submenu
885885
export_menu = wx.Menu()
886-
mi = wx.MenuItem( export_menu, wx.ID_ANY, "Provisioning URIs",
886+
mi = wx.MenuItem( export_menu, wx.ID_ANY, "Provisioning URIs to clipboard",
887887
"Copy all provisioning URIs to the clipboard" )
888888
self.MENU_EXPORT_PROVISIONING_URIS = mi.GetId()
889889
export_menu.AppendItem( mi )
890-
mi = wx.MenuItem( export_menu, wx.ID_ANY, "QR code URLs",
891-
"Copy all QR code image URLs to the clipboard" )
892-
self.MENU_EXPORT_QRCODE_URLS = mi.GetId()
893-
export_menu.AppendItem( mi )
894890

895891
# File menu
896892
menu = wx.Menu()

pyauth/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
__program_name__ = "PyAuth"
2121

2222
# Version info
23-
__version__ = '1.1.0'
23+
__version__ = '1.1.1'
2424
__version_tag__ = ''
2525
__version_status__ = ''

0 commit comments

Comments
 (0)