fix about dialog

This commit is contained in:
St.Huang 2018-07-02 21:04:57 +08:00
parent 62d3e2119d
commit 71e77257b2
2 changed files with 7 additions and 12 deletions

View File

@ -21,25 +21,20 @@
from .lang import _
VERSION = '1.0.0'
VERSION = 'v1.0.0'
class Endpoint:
repository = u' https://github.com/sth2018/FastWordQuery'
repository = u'https://github.com/sth2018/FastWordQuery'
feedback_issue = u'https://github.com/sth2018/FastWordQuery/issues'
feedback_mail = u'wenhonghuang@gmail.com'
check_version = u'https://raw.githubusercontent.com/sth2018/FastWordQuery/gh-pages/version'
new_version = u' https://github.com/sth2018/FastWordQuery'
check_version = u'sth2018/FastWordQuery'
user_guide = u'https://sth2018.github.io/FastWordQuery/'
class Template:
tmpl_about = u'<b>{t0}</b><br />{version}<br /><b>{t1}</b><br /><a href="{url}">{url}</a><br /><b>{t2}</b><br /><a href="{feedback0}">{feedback0}</a><br /><a href="mailto:{feedback1}">{feedback1}</a>'.format(
t0=_('VERSION'), version=VERSION, t1=_('REPOSITORY'), url=Endpoint.repository,
tmpl_about = u'<b>{t0}</b><br/>{version}<br/><b>{t1}</b><br/><a href="{url}">{url}</a><br/><b>{t2}</b><br/><a href="{feedback0}">{feedback0}</a><br/><a href="mailto:{feedback1}">{feedback1}</a>'.format(
t0=_('VERSION'), version=VERSION,
t1=_('REPOSITORY'), url=Endpoint.repository,
t2=_('FEEDBACK'), feedback0=Endpoint.feedback_issue, feedback1=Endpoint.feedback_mail)
new_version = u'{info} <a href="{url}">V{version}</a>'.format(
info=_('NEW_VERSION'), url=Endpoint.new_version, version='{version}')
latest_version = _('LATEST_VERSION')
abnormal_version = _('ABNORMAL_VERSION')
check_failure = u'{msg}'
miss_css = u'MDX dictonary <b>{dict}</b> misses css file <b>{css}</b>. <br />Please choose the file.'

View File

@ -463,7 +463,7 @@ class OptionsDialog(QDialog):
def check_updates():
try:
from .libs import ankihub
if not ankihub.update(['sth2018/FastWordQuery']):
if not ankihub.update([Endpoint.check_version]):
showInfo(_('LATEST_VERSION'))
except:
showInfo(_('CHECK_FAILURE'))