Sun, 08 Feb 2015 16:13:27 +0100
Fixed forgotten references to '.e5m' files.
--- a/APIs/Python3/eric6.bas Sun Feb 08 13:28:38 2015 +0100 +++ b/APIs/Python3/eric6.bas Sun Feb 08 16:13:27 2015 +0100 @@ -60,7 +60,7 @@ ChangeBookmarkCommand QUndoCommand ChatWidget QWidget Ui_ChatWidget ChromeImporter BookmarksImporter -Class ClbrBaseClasses.Class VisibilityMixin +Class ClbrBase ClassItem UMLItem ClassModel UMLModel ClbrBase _ClbrBase
--- a/Documentation/Source/eric6.UI.UserInterface.html Sun Feb 08 13:28:38 2015 +0100 +++ b/Documentation/Source/eric6.UI.UserInterface.html Sun Feb 08 16:13:27 2015 +0100 @@ -2175,7 +2175,7 @@ for the debugger. All files named before the '--' option are opened in a text editor, unless the argument ends in .e4p, then it is opened as a project file. If it ends in - .e4m, it is opened as a multiproject. + .e4m or .e5m, it is opened as a multiproject. </dd> </dl><a NAME="UserInterface.registerToolbar" ID="UserInterface.registerToolbar"></a> <h4>UserInterface.registerToolbar</h4>
--- a/Documentation/Source/index-eric6.MultiProject.html Sun Feb 08 13:28:38 2015 +0100 +++ b/Documentation/Source/index-eric6.MultiProject.html Sun Feb 08 16:13:27 2015 +0100 @@ -24,7 +24,7 @@ Package implementing the multi project management module of eric6. </p><p> The multi project management module consists of the main part, which is -used for reading and writing of eric6 multi project files (*.e4m) and +used for reading and writing of eric6 multi project files (*.e5m) and for performing all operations on the multi project. It is accompanied by various UI related modules implementing different dialogs and a browser for the display of projects belonging to the current multi project.
--- a/MultiProject/__init__.py Sun Feb 08 13:28:38 2015 +0100 +++ b/MultiProject/__init__.py Sun Feb 08 16:13:27 2015 +0100 @@ -7,7 +7,7 @@ Package implementing the multi project management module of eric6. The multi project management module consists of the main part, which is -used for reading and writing of eric6 multi project files (*.e4m) and +used for reading and writing of eric6 multi project files (*.e5m) and for performing all operations on the multi project. It is accompanied by various UI related modules implementing different dialogs and a browser for the display of projects belonging to the current multi project.
--- a/UI/BrowserModel.py Sun Feb 08 13:28:38 2015 +0100 +++ b/UI/BrowserModel.py Sun Feb 08 16:13:27 2015 +0100 @@ -1232,7 +1232,7 @@ @return flag indicating an eric project file (boolean) """ - return self.fileext in ['.e4m'] + return self.fileext in ['.e4m', '.e5m'] def isIdlFile(self): """
--- a/UI/UserInterface.py Sun Feb 08 13:28:38 2015 +0100 +++ b/UI/UserInterface.py Sun Feb 08 16:13:27 2015 +0100 @@ -1044,7 +1044,7 @@ for the debugger. All files named before the '--' option are opened in a text editor, unless the argument ends in .e4p, then it is opened as a project file. If it ends in - .e4m, it is opened as a multiproject. + .e4m or .e5m, it is opened as a multiproject. """ # no args, return if args is None: @@ -1103,7 +1103,7 @@ if ext in ['.e4p']: self.project.openProject(arg) opens += 1 - elif ext in ['.e4m']: + elif ext in ['.e4m', '.e5m']: self.multiProject.openMultiProject(arg) opens += 1 else: