Skip to content

Commit dbb218a

Browse files
committed
fix #1017
fix #1014 bump version Tag v3.0.1 stable
1 parent 6470b9a commit dbb218a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+460
-259
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,4 @@ __pycache__/
3636
/pyproject.toml
3737
/dtt4all_data/inno-win-setup/Output/
3838
/dtt4all_data/config.json
39+
/dtt4all_data/inno-win-setup/version.h

dataeditor.py

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,6 @@
1515
import PyQt5.QtCore as core
1616
import PyQt5.QtWidgets as widgets
1717

18-
__author__ = version.__author__
19-
__copyright__ = version.__copyright__
20-
__credits__ = version.__credits__
21-
__license__ = version.__license__
22-
__version__ = version.__version__
23-
__maintainer__ = version.__maintainer__
24-
__email__ = version.__email__
25-
__status__ = version.__status__
26-
2718
_ = options.translator('ddt4all')
2819

2920

@@ -1090,7 +1081,7 @@ def remove_selected(self):
10901081
msgbox = widgets.QMessageBox()
10911082
appIcon = gui.QIcon("dtt4all_data/icons/obd.png")
10921083
msgbox.setWindowIcon(appIcon)
1093-
msgbox.setWindowTitle("DTT4ALL")
1084+
msgbox.setWindowTitle(version.__appname__)
10941085
msgbox.setText(_("Data is used by request %s") % reqname)
10951086
msgbox.exec_()
10961087
return
@@ -1099,7 +1090,7 @@ def remove_selected(self):
10991090
msgbox = widgets.QMessageBox()
11001091
appIcon = gui.QIcon("dtt4all_data/icons/obd.png")
11011092
msgbox.setWindowIcon(appIcon)
1102-
msgbox.setWindowTitle("DTT4ALL")
1093+
msgbox.setWindowTitle(version.__appname__)
11031094
msgbox.setText(_("Data is used by request %s") % reqname)
11041095
msgbox.exec_()
11051096
return

displaymod.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,6 @@
1414
def unicode(a):
1515
return str(a)
1616

17-
18-
__author__ = version.__author__
19-
__copyright__ = version.__copyright__
20-
__credits__ = version.__credits__
21-
__license__ = version.__license__
22-
__version__ = version.__version__
23-
__maintainer__ = version.__maintainer__
24-
__email__ = version.__email__
25-
__status__ = version.__status__
26-
2717
_ = options.translator('ddt4all')
2818

2919

dtt4all_data/icons/autorefresh.png

3.12 KB
Loading

dtt4all_data/icons/bt.png

226 Bytes
Loading

dtt4all_data/icons/checkbox-n.png

225 Bytes
Loading

dtt4all_data/icons/checkbox.png

3.72 KB
Loading

dtt4all_data/icons/command.png

1.53 KB
Loading

dtt4all_data/icons/down_arrow.png

2.05 KB
Loading

dtt4all_data/icons/dtc.png

3.67 KB
Loading

0 commit comments

Comments
 (0)