Fixed an issue related to adding files and directories to a project. release-10.1.5

Thu, 13 Jul 2023 13:52:50 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Thu, 13 Jul 2023 13:52:50 +0200
changeset 33
782792ab98fb
parent 32
cab6795a8df6
child 34
2492f41bd226

Fixed an issue related to adding files and directories to a project.

ExtensionCorba/ProjectInterfacesBrowser.py file | annotate | diff | comparison | revisions
PluginExtensionCorba.py file | annotate | diff | comparison | revisions
PluginExtensionCorba.zip file | annotate | diff | comparison | revisions
changelog.md file | annotate | diff | comparison | revisions
--- a/ExtensionCorba/ProjectInterfacesBrowser.py	Sat Dec 31 16:27:42 2022 +0100
+++ b/ExtensionCorba/ProjectInterfacesBrowser.py	Thu Jul 13 13:52:50 2023 +0200
@@ -533,7 +533,7 @@
             dn = itm.dirName()
         else:
             dn = None
-        self.project.addFiles(self.FileFilter, dn)
+        self.project.addFiles("INTERFACES", dn)
 
     def __addInterfacesDirectory(self):
         """
@@ -550,7 +550,7 @@
             dn = itm.dirName()
         else:
             dn = None
-        self.project.addDirectory(self.FileFilter, dn)
+        self.project.addDirectory("INTERFACES", dn)
 
     def __deleteFile(self):
         """
--- a/PluginExtensionCorba.py	Sat Dec 31 16:27:42 2022 +0100
+++ b/PluginExtensionCorba.py	Thu Jul 13 13:52:50 2023 +0200
@@ -23,7 +23,7 @@
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "10.1.4"
+version = "10.1.5"
 className = "CorbaExtensionPlugin"
 packageName = "ExtensionCorba"
 shortDescription = "Support for the development of CORBA projects"
Binary file PluginExtensionCorba.zip has changed
--- a/changelog.md	Sat Dec 31 16:27:42 2022 +0100
+++ b/changelog.md	Thu Jul 13 13:52:50 2023 +0200
@@ -1,6 +1,10 @@
 ChangeLog
 ---------
 
+__Version 10.1.5__
+
+- bug fixes
+
 __Version 10.1.4__
 
 - updated Russian translations

eric ide

mercurial