From e88062cd0e2b266ce84996205cc6129fc641b1e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Cort=C3=A9z?= Date: Wed, 23 Mar 2016 11:14:47 -0600 Subject: [PATCH] Added phone number in documentation and GUI --- README.md | 2 +- src/sessionmanager/wxUI.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0941bf2..bf08f75 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ I have started this effort as an open source project on Feb 13, 2016. Pull requ ## Running -Just open the main.py file with the python interpreter. This file is located in the src directory. If you haven't configured your VK account, you will see a dialogue, just press yes and a new dialogue will prompt for an user email and the password for your account. Take into account that the provided information will be saved in a config file as plain text. This application will need your email and password for renegotiating the access token when it expires. +Just open the main.py file with the python interpreter. This file is located in the src directory. If you haven't configured your VK account, you will see a dialogue, just press yes and a new dialogue will prompt for an user email or phone number and the password for your account. Take into account that the provided information will be saved in a config file as plain text. This application will need your information for renegotiating the access token when it expires. ## Main interface diff --git a/src/sessionmanager/wxUI.py b/src/sessionmanager/wxUI.py index 4262a6c..ff14713 100644 --- a/src/sessionmanager/wxUI.py +++ b/src/sessionmanager/wxUI.py @@ -9,7 +9,7 @@ class newSessionDialog(widgetUtils.BaseDialog): def __init__(self): super(newSessionDialog, self).__init__(parent=None, id=wx.NewId(), title=_(u"Authorise VK")) panel = wx.Panel(self) - lbl1 = wx.StaticText(panel, -1, _(u"&Email address")) + lbl1 = wx.StaticText(panel, -1, _(u"&Email or phone number")) self.email = wx.TextCtrl(panel, -1) lbl2 = wx.StaticText(panel, -1, _(u"&Password")) self.passw = wx.TextCtrl(panel, -1, style=wx.TE_PASSWORD)