Skip to content
This repository was archived by the owner on Jul 9, 2024. It is now read-only.

feat(code gen GUI): Added 3 retries of SMS PIN (if attempt failed) #432

Merged
merged 44 commits into from
Jun 12, 2021
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
fec582b
Draft for Code gen over GUI
IAmWebSA Jun 8, 2021
951d1d1
Update tools/gui/qtcodegen.py
IAmWebSA Jun 8, 2021
b2782b8
Update tools/gui/qtcodegen.py
IAmWebSA Jun 8, 2021
c7a1151
Update tools/gui/qtcodegen.py
IAmWebSA Jun 8, 2021
01c7a20
Update qtcodegen.py
IAmWebSA Jun 8, 2021
942fdf2
Merge branch 'ownBeta' of https://github.com/IAmWebSA/vaccipy into ow…
IAmWebSA Jun 8, 2021
fbee7a6
Thread cancel optimization
IAmWebSA Jun 8, 2021
40753bd
update now checking missing kontakt data
IAmWebSA Jun 9, 2021
d5b3faa
remove help icon
IAmWebSA Jun 9, 2021
3bf7b6f
added CodeGEn Checkbox to Kontaktdaten
IAmWebSA Jun 9, 2021
c81ca8d
Update qtcodegen.py
IAmWebSA Jun 9, 2021
b883a40
Update qtcodegen.py
IAmWebSA Jun 9, 2021
89b58c2
Revert "added CodeGEn Checkbox to Kontaktdaten"
IAmWebSA Jun 9, 2021
fa40b67
added QtCodeGen to SubProcess
IAmWebSA Jun 9, 2021
297d027
Merge branch 'beta' into ownBeta
IAmWebSA Jun 9, 2021
2d2a276
adapted to mainline beta and further improvements
IAmWebSA Jun 9, 2021
8f082c5
Update main.py
IAmWebSA Jun 9, 2021
a6b790a
Update utils.py
IAmWebSA Jun 9, 2021
53396a4
Update qtcodegen.py
IAmWebSA Jun 9, 2021
9571de7
Merge branch 'beta' into ownBeta
IAmWebSA Jun 9, 2021
a00b889
Revert "Update main.py"
IAmWebSA Jun 9, 2021
4dac118
file permission fix
IAmWebSA Jun 9, 2021
2d3e2b9
File permissin change revert
IAmWebSA Jun 9, 2021
f7a0fb7
Update gui.py
IAmWebSA Jun 9, 2021
21e5567
Merge branch 'beta' into ownBeta
IAmWebSA Jun 9, 2021
b01e5d5
Update tools/gui/qtcodegen.py
IAmWebSA Jun 10, 2021
3c32efc
Update tools/gui/qtcodegen.py
IAmWebSA Jun 10, 2021
a0a9932
Update tools/gui/qtcodegen.py
IAmWebSA Jun 10, 2021
2db27b8
Update tools/gui/qtcodegen.py
IAmWebSA Jun 10, 2021
17f02d1
Merge branch 'beta' into ownBeta
IAmWebSA Jun 10, 2021
f3d3985
keep all data kontaktdaten.json and just set a dummy code for code ge…
IAmWebSA Jun 10, 2021
6a5354a
Update gui.py
IAmWebSA Jun 10, 2021
aa9e29f
Update tools/gui/qtcodegen.py
IAmWebSA Jun 10, 2021
b84ca51
Update gui.py
IAmWebSA Jun 10, 2021
7e719ec
Update qtkontakt.py
IAmWebSA Jun 10, 2021
cb67518
Merge branch 'beta' into ownBeta
IAmWebSA Jun 10, 2021
fe4d9f5
Revert "Merge branch 'beta' into ownBeta"
IAmWebSA Jun 10, 2021
902cad6
Revert "Revert "Merge branch 'beta' into ownBeta""
IAmWebSA Jun 10, 2021
c2bee2b
logger conflicts with redirect of qtgui
IAmWebSA Jun 10, 2021
18d09ea
added fix from TIm Reibe
IAmWebSA Jun 10, 2021
4d09c5d
Merge branch 'beta' into ownBeta
IAmWebSA Jun 10, 2021
68fc0e0
Merge branch 'beta' into ownBeta
IAmWebSA Jun 11, 2021
ba52bb3
Added 3 Input Dlg retries if SMS PIN was wrong
IAmWebSA Jun 11, 2021
8a989a9
Merge branch 'beta' into ownBeta
IAmWebSA Jun 11, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update tools/gui/qtcodegen.py
THX

Co-authored-by: Florian Glaser <[email protected]>
IAmWebSA and Floskinner authored Jun 10, 2021
commit b01e5d57bbbff148c92b389a9bcf8d1923aeb4a4
4 changes: 2 additions & 2 deletions tools/gui/qtcodegen.py
Original file line number Diff line number Diff line change
@@ -193,7 +193,7 @@ def setupUi(self, QtCodeGen):
self.setModal(False)
self.resize(700, 300)
self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint);

self.setWindowIcon(QIcon(os.path.join(ROOT_PATH, "images/spritze.ico")))

def setup_thread(self):
"""
@@ -332,4 +332,4 @@ def start_code_gen(kontaktdaten: dict, ROOT_PATH: str):
app = QtWidgets.QApplication(list())
window = QtCodeGen(kontaktdaten, ROOT_PATH)
app.exec_()