Added phone number in documentation and GUI

This commit is contained in:
Manuel Cortez 2016-03-23 11:14:47 -06:00
parent 33b779887e
commit e88062cd0e
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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)