Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ccbogel authored Aug 13, 2020
1 parent 9859846 commit 5564ebc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions qualcoder/information.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def __init__(self, app, title, html="", parent=None):
self.setStyleSheet(font)
self.setWindowTitle(title)
if html == "":
self.setHtml(a)
self.setHtml(about.replace("QualCoderVersion", app.version))
else:
self.setHtml(html)

Expand All @@ -91,9 +91,9 @@ def accepted(self):
self.information = self.ui.textEdit.toPlainText()
self.ui.Dialog_information.accept()

a = '<h1 class="western">About QualCoder</h1>\
about = '<h1 class="western">About QualCoder</h1>\
<h2 class="western">Version:</h2>\
<p>QualCoder 1.9 2020 March 11</p>\
<p>QualCoderVersion</p>\
<p>Depends on python 3.x, pyqt5 lxml Pillow ebooklib ply chardet pdfminer.six openpyxl</p>\
<p>VLC should also be installed.</p>\
<p>Tested on: Linux Mint 18.04, Ubuntu 19.04, Lubuntu 18.04, mostly tested on Windows 10, partly tested on Mac OS.</p>\
Expand All @@ -111,7 +111,7 @@ def accepted(self):
<p>QualCoder creates a .qualcoder folder inside your home directory. \
This contains QualCoder.log, config.ini (for settings) and \
recent_project.txt. The config file contains the name of the current coder, \
default working directory and selected font.</p>\
default working directory, selected font and other parameters.</p>\
<p>QualCoder is written in python 3 using Qt5 for the graphical interface.</p>\
<p>The REFI-QDA Project import and export are experimental and should not be relied upon. </p>\
<h2 class="western">License</h2>\
Expand Down
1 change: 1 addition & 0 deletions qualcoder/qualcoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ class App(object):
Savable settings does not contain project name, project path or db connection.
"""

version = qualcoder_version
conn = None
project_path = ""
project_name = ""
Expand Down

0 comments on commit 5564ebc

Please sign in to comment.