E5XML/Config.py

Sun, 15 Apr 2018 11:36:43 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 15 Apr 2018 11:36:43 +0200
branch
make_support
changeset 6251
02afc7d22c41
parent 6052
8b49d3e0b4c8
child 6265
56bd09c4c297
permissions
-rw-r--r--

Introduced a new project file format version and added reader and writer support for the 'make' parameter set.

# -*- coding: utf-8 -*-

# Copyright (c) 2004 - 2018 Detlev Offenbach <detlev@die-offenbachs.de>
#

"""
Module implementing some common configuration stuf for the XML package.
"""

# version number of the multi project file
multiProjectFileFormatVersion = "5.1"

# version numbers of the project file
projectFileFormatVersion ="6.1"
projectFileFormatVersionProto = "6.0"
projectFileFormatVersionAlt = "5.1"

# version number of the user project file
userProjectFileFormatVersion = "4.0"

# version number of the project session file
sessionFileFormatVersion = "6.1"

# version number of the shortcuts file
shortcutsFileFormatVersion = "3.6"

# version number of the tasks file
tasksFileFormatVersion = "6.0"

# version number of the debugger properties file
debuggerPropertiesFileFormatVersion = "3.9"

# version number of the templates file
templatesFileFormatVersion = "4.0"

# version number of the plugin repository file
pluginRepositoryFileFormatVersion = "4.2"

# version number of the highlighting styles file
highlightingStylesFileFormatVersion = "4.3"

# version number of the web browser spell check dictionaries list file
dictionariesListFileFormatVersion = "1.0"

#
# eflag: noqa = M702

eric ide

mercurial