eric6/E5XML/Config.py

changeset 6942
2602857055c5
parent 6863
e900929889dd
child 7360
9190402e4505
equal deleted inserted replaced
6941:f99d60d6b59b 6942:2602857055c5
1 # -*- coding: utf-8 -*-
2
3 # Copyright (c) 2004 - 2019 Detlev Offenbach <detlev@die-offenbachs.de>
4 #
5
6 """
7 Module implementing some common configuration stuf for the XML package.
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.4"
15 projectFileFormatVersionUic = "6.3"
16 projectFileFormatVersionIdl = "6.2"
17 projectFileFormatVersionMake = "6.1"
18 projectFileFormatVersionProto = "6.0"
19 projectFileFormatVersionAlt = "5.1"
20
21 # version number of the user project file
22 userProjectFileFormatVersion = "4.0"
23
24 # version number of the project session file
25 sessionFileFormatVersion = "6.2"
26
27 # version number of the shortcuts file
28 shortcutsFileFormatVersion = "3.6"
29
30 # version number of the tasks file
31 tasksFileFormatVersion = "6.0"
32
33 # version number of the debugger properties file
34 debuggerPropertiesFileFormatVersion = "6.0"
35
36 # version number of the templates file
37 templatesFileFormatVersion = "4.0"
38
39 # version number of the plugin repository file
40 pluginRepositoryFileFormatVersion = "4.2"
41
42 # version number of the highlighting styles file
43 highlightingStylesFileFormatVersion = "6.0"
44
45 # version number of the web browser spell check dictionaries list file
46 dictionariesListFileFormatVersion = "1.0"
47
48 #
49 # eflag: noqa = M702

eric ide

mercurial