2 |
2 |
3 # Copyright (c) 2004 - 2024 Detlev Offenbach <detlev@die-offenbachs.de> |
3 # Copyright (c) 2004 - 2024 Detlev Offenbach <detlev@die-offenbachs.de> |
4 # |
4 # |
5 |
5 |
6 """ |
6 """ |
7 Module implementing some common configuration stuf for the XML package. |
7 Module implementing some common configuration stuff for the XML package. |
8 """ |
8 """ |
9 |
|
10 # version number of the multi project file |
|
11 multiProjectFileFormatVersion = "5.1" |
|
12 |
|
13 # version numbers of the project file |
|
14 projectFileFormatVersion = "6.5" |
|
15 projectFileFormatVersionRcc = "6.4" |
|
16 projectFileFormatVersionUic = "6.3" |
|
17 projectFileFormatVersionIdl = "6.2" |
|
18 projectFileFormatVersionMake = "6.1" |
|
19 projectFileFormatVersionProto = "6.0" |
|
20 projectFileFormatVersionAlt = "5.1" |
|
21 |
|
22 # version number of the user project file |
|
23 userProjectFileFormatVersion = "4.0" |
|
24 |
|
25 # version number of the project session file |
|
26 sessionFileFormatVersion = "6.4" |
|
27 |
|
28 # version number of the shortcuts file |
|
29 shortcutsFileFormatVersion = "3.6" |
|
30 |
|
31 # version number of the tasks file |
|
32 tasksFileFormatVersion = "6.0" |
|
33 |
|
34 # version number of the debugger properties file |
|
35 debuggerPropertiesFileFormatVersion = "6.0" |
|
36 |
|
37 # version number of the templates file |
|
38 templatesFileFormatVersion = "4.0" |
|
39 |
9 |
40 # version number of the plugin repository file |
10 # version number of the plugin repository file |
41 pluginRepositoryFileFormatVersion = "4.2" |
11 pluginRepositoryFileFormatVersion = "4.2" |
42 |
12 |
43 # version number of the highlighting styles file |
|
44 highlightingStylesFileFormatVersion = "6.0" |
|
45 |
|
46 # version number of the web browser spell check dictionaries list file |
13 # version number of the web browser spell check dictionaries list file |
47 dictionariesListFileFormatVersion = "1.0" |
14 dictionariesListFileFormatVersion = "1.0" |