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

Thu, 13 Jul 2023 13:56:11 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Thu, 13 Jul 2023 13:56:11 +0200
changeset 23
7bfac64d06ff
parent 22
ed2d8f5eaa66
child 24
ce893990553b

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

ExtensionProtobuf/ProjectProtocolsBrowser.py file | annotate | diff | comparison | revisions
PluginExtensionProtobuf.py file | annotate | diff | comparison | revisions
PluginExtensionProtobuf.zip file | annotate | diff | comparison | revisions
changelog.md file | annotate | diff | comparison | revisions
--- a/ExtensionProtobuf/ProjectProtocolsBrowser.py	Sat Dec 31 16:27:43 2022 +0100
+++ b/ExtensionProtobuf/ProjectProtocolsBrowser.py	Thu Jul 13 13:56:11 2023 +0200
@@ -534,7 +534,7 @@
             dn = itm.dirName()
         else:
             dn = None
-        self.project.addFiles("protocol", dn)
+        self.project.addFiles("PROTOCOLS", dn)
 
     def __addProtocolsDirectory(self):
         """
@@ -551,7 +551,7 @@
             dn = itm.dirName()
         else:
             dn = None
-        self.project.addDirectory("protocol", dn)
+        self.project.addDirectory("PROTOCOLS", dn)
 
     def __deleteFile(self):
         """
--- a/PluginExtensionProtobuf.py	Sat Dec 31 16:27:43 2022 +0100
+++ b/PluginExtensionProtobuf.py	Thu Jul 13 13:56:11 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 = "ProtobufExtensionPlugin"
 packageName = "ExtensionProtobuf"
 shortDescription = "Support for the development of Protobuf and gRPC projects"
Binary file PluginExtensionProtobuf.zip has changed
--- a/changelog.md	Sat Dec 31 16:27:43 2022 +0100
+++ b/changelog.md	Thu Jul 13 13:56:11 2023 +0200
@@ -1,6 +1,10 @@
 ChangeLog
 ---------
 
+__Version 10.1.5__
+
+- bug fixes
+
 __Version 10.1.4__
 
 - updated Russian translations

eric ide

mercurial