Thu, 30 Dec 2021 12:47:12 +0100
Updated version info to indicate relation to eric7.
--- a/ChangeLog Thu Dec 30 11:20:06 2021 +0100 +++ b/ChangeLog Thu Dec 30 12:47:12 2021 +0100 @@ -1,6 +1,6 @@ ChangeLog --------- -Version 1.0.0: +Version 10.0.0: - first release of the eric7 variant ************************************************************
--- a/PluginToolGenerateHash.py Thu Dec 30 11:20:06 2021 +0100 +++ b/PluginToolGenerateHash.py Thu Dec 30 12:47:12 2021 +0100 @@ -23,7 +23,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "1.0.0" +version = "10.0.0" className = "ToolGenerateHashPlugin" packageName = "ToolGenerateHash" shortDescription = "Generate a hash for a selectable file or directory" @@ -148,16 +148,16 @@ Private method to initialize the hash generation menus. """ self.__fileMenu = QMenu(self.tr("Generate File Hash")) - for hash in self.Hashes: + for hashName in self.Hashes: self.__fileMenu.addAction( - hash.upper().replace("_", ":")).setData(hash) + hash.upper().replace("_", ":")).setData(hashName) self.__fileMenu.setEnabled(False) self.__fileMenu.triggered.connect(self.__hashFile) self.__dirMenu = QMenu(self.tr("Generate Directory Hash")) - for hash in self.Hashes: + for hashName in self.Hashes: self.__dirMenu.addAction( - hash.upper().replace("_", ":")).setData(hash) + hash.upper().replace("_", ":")).setData(hashName) self.__dirMenu.setEnabled(False) self.__dirMenu.triggered.connect(self.__hashDirectory)
--- a/ToolGenerateHash/Documentation/source/Plugin_Tools_GenerateHash.PluginToolGenerateHash.html Thu Dec 30 11:20:06 2021 +0100 +++ b/ToolGenerateHash/Documentation/source/Plugin_Tools_GenerateHash.PluginToolGenerateHash.html Thu Dec 30 12:47:12 2021 +0100 @@ -2,21 +2,7 @@ <html><head> <title>Plugin_Tools_GenerateHash.PluginToolGenerateHash</title> <meta charset="UTF-8"> -<style> -body { - background: #EDECE6; - margin: 0em 1em 10em 1em; - color: black; -} - -h1 { color: white; background: #85774A; } -h2 { color: white; background: #85774A; } -h3 { color: white; background: #9D936E; } -h4 { color: white; background: #9D936E; } - -a { color: #BA6D36; } - -</style> +<link rel="stylesheet" href="styles.css"> </head> <body> <a NAME="top" ID="top"></a>
--- a/ToolGenerateHash/Documentation/source/index-Plugin_Tools_GenerateHash.ToolGenerateHash.html Thu Dec 30 11:20:06 2021 +0100 +++ b/ToolGenerateHash/Documentation/source/index-Plugin_Tools_GenerateHash.ToolGenerateHash.html Thu Dec 30 12:47:12 2021 +0100 @@ -2,21 +2,7 @@ <html><head> <title>Plugin_Tools_GenerateHash.ToolGenerateHash</title> <meta charset="UTF-8"> -<style> -body { - background: #EDECE6; - margin: 0em 1em 10em 1em; - color: black; -} - -h1 { color: white; background: #85774A; } -h2 { color: white; background: #85774A; } -h3 { color: white; background: #9D936E; } -h4 { color: white; background: #9D936E; } - -a { color: #BA6D36; } - -</style> +<link rel="stylesheet" href="styles.css"> </head> <body> <h1>Plugin_Tools_GenerateHash.ToolGenerateHash</h1>
--- a/ToolGenerateHash/Documentation/source/index-Plugin_Tools_GenerateHash.html Thu Dec 30 11:20:06 2021 +0100 +++ b/ToolGenerateHash/Documentation/source/index-Plugin_Tools_GenerateHash.html Thu Dec 30 12:47:12 2021 +0100 @@ -2,21 +2,7 @@ <html><head> <title>Plugin_Tools_GenerateHash</title> <meta charset="UTF-8"> -<style> -body { - background: #EDECE6; - margin: 0em 1em 10em 1em; - color: black; -} - -h1 { color: white; background: #85774A; } -h2 { color: white; background: #85774A; } -h3 { color: white; background: #9D936E; } -h4 { color: white; background: #9D936E; } - -a { color: #BA6D36; } - -</style> +<link rel="stylesheet" href="styles.css"> </head> <body> <h1>Plugin_Tools_GenerateHash</h1>
--- a/ToolGenerateHash/Documentation/source/index.html Thu Dec 30 11:20:06 2021 +0100 +++ b/ToolGenerateHash/Documentation/source/index.html Thu Dec 30 12:47:12 2021 +0100 @@ -2,21 +2,7 @@ <html><head> <title>Table of contents</title> <meta charset="UTF-8"> -<style> -body { - background: #EDECE6; - margin: 0em 1em 10em 1em; - color: black; -} - -h1 { color: white; background: #85774A; } -h2 { color: white; background: #85774A; } -h3 { color: white; background: #9D936E; } -h4 { color: white; background: #9D936E; } - -a { color: #BA6D36; } - -</style> +<link rel="stylesheet" href="styles.css"> </head> <body> <h1>Table of contents</h1>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ToolGenerateHash/Documentation/source/styles.css Thu Dec 30 12:47:12 2021 +0100 @@ -0,0 +1,12 @@ +body { + color: black; + background: #EDECE6; + margin: 0em 1em 10em 1em; +} + +h1 { color: white; background: #85774A; } +h2 { color: white; background: #85774A; } +h3 { color: white; background: #9D936E; } +h4 { color: white; background: #9D936E; } + +a { color: #BA6D36; }