Fri, 03 Apr 2020 17:43:01 +0200
Added vector icons for the mercurial and subversion plug-ins.
--- a/eric6.e4p Wed Apr 01 19:50:41 2020 +0200 +++ b/eric6.e4p Fri Apr 03 17:43:01 2020 +0200 @@ -2146,15 +2146,17 @@ <Other>eric6/Plugins/VcsPlugins/vcsGit/icons/git.svg</Other> <Other>eric6/Plugins/VcsPlugins/vcsGit/icons/git92.svg</Other> <Other>eric6/Plugins/VcsPlugins/vcsGit/icons/preferences-git.svg</Other> - <Other>eric6/Plugins/VcsPlugins/vcsMercurial/icons/mercurial.png</Other> - <Other>eric6/Plugins/VcsPlugins/vcsMercurial/icons/preferences-mercurial.png</Other> - <Other>eric6/Plugins/VcsPlugins/vcsMercurial/icons/startServer.png</Other> - <Other>eric6/Plugins/VcsPlugins/vcsMercurial/icons/stopServer.png</Other> + <Other>eric6/Plugins/VcsPlugins/vcsMercurial/icons/mercurial.svg</Other> + <Other>eric6/Plugins/VcsPlugins/vcsMercurial/icons/preferences-mercurial.svg</Other> + <Other>eric6/Plugins/VcsPlugins/vcsMercurial/icons/startServer-dark.svg</Other> + <Other>eric6/Plugins/VcsPlugins/vcsMercurial/icons/startServer-light.svg</Other> + <Other>eric6/Plugins/VcsPlugins/vcsMercurial/icons/stopServer-dark.svg</Other> + <Other>eric6/Plugins/VcsPlugins/vcsMercurial/icons/stopServer-light.svg</Other> <Other>eric6/Plugins/VcsPlugins/vcsMercurial/templates/logBrowserBookmarkPhase.tmpl</Other> - <Other>eric6/Plugins/VcsPlugins/vcsPySvn/icons/preferences-subversion.png</Other> - <Other>eric6/Plugins/VcsPlugins/vcsPySvn/icons/pysvn.png</Other> - <Other>eric6/Plugins/VcsPlugins/vcsSubversion/icons/preferences-subversion.png</Other> - <Other>eric6/Plugins/VcsPlugins/vcsSubversion/icons/subversion.png</Other> + <Other>eric6/Plugins/VcsPlugins/vcsPySvn/icons/preferences-subversion.svg</Other> + <Other>eric6/Plugins/VcsPlugins/vcsPySvn/icons/pysvn.svg</Other> + <Other>eric6/Plugins/VcsPlugins/vcsSubversion/icons/preferences-subversion.svg</Other> + <Other>eric6/Plugins/VcsPlugins/vcsSubversion/icons/subversion.svg</Other> <Other>eric6/Plugins/ViewManagerPlugins/Listspace/preview.png</Other> <Other>eric6/Plugins/ViewManagerPlugins/Tabview/preview.png</Other> <Other>eric6/Plugins/WizardPlugins/SetupWizard/data/trove_classifiers.txt</Other>
--- a/eric6/E5Gui/E5Application.py Wed Apr 01 19:50:41 2020 +0200 +++ b/eric6/E5Gui/E5Application.py Fri Apr 03 17:43:01 2020 +0200 @@ -9,6 +9,7 @@ from PyQt5.QtCore import Qt, QCoreApplication +from PyQt5.QtGui import QPalette from PyQt5.QtWidgets import QApplication @@ -21,6 +22,7 @@ Constructor @param argv command line arguments + @type list """ try: QCoreApplication.setAttribute(Qt.AA_EnableHighDpiScaling) @@ -44,40 +46,47 @@ self.__objectRegistry = {} self.__pluginObjectRegistry = {} - + def registerObject(self, name, objectRef): """ Public method to register an object in the object registry. - @param name name of the object (string) + @param name name of the object + @type str @param objectRef reference to the object + @type any @exception KeyError raised when the given name is already in use """ if name in self.__objectRegistry: raise KeyError('Object "{0}" already registered.'.format(name)) else: self.__objectRegistry[name] = objectRef - + def getObject(self, name): """ Public method to get a reference to a registered object. - @param name name of the object (string) + @param name name of the object + @type str @return reference to the registered object + @type any @exception KeyError raised when the given name is not known """ if name in self.__objectRegistry: return self.__objectRegistry[name] else: raise KeyError('Object "{0}" is not registered.'.format(name)) - + def registerPluginObject(self, name, objectRef, pluginType=None): """ Public method to register a plugin object in the object registry. - @param name name of the plugin object (string) + @param name name of the plugin object + @type str @param objectRef reference to the plugin object - @keyparam pluginType type of the plugin object (string) + @type any + @param pluginType type of the plugin object + @type str @exception KeyError raised when the given name is already in use """ if name in self.__pluginObjectRegistry: @@ -85,22 +94,25 @@ 'Pluginobject "{0}" already registered.'.format(name)) else: self.__pluginObjectRegistry[name] = (objectRef, pluginType) - + def unregisterPluginObject(self, name): """ Public method to unregister a plugin object in the object registry. - @param name name of the plugin object (string) + @param name name of the plugin object + @type str """ if name in self.__pluginObjectRegistry: del self.__pluginObjectRegistry[name] - + def getPluginObject(self, name): """ Public method to get a reference to a registered plugin object. - @param name name of the plugin object (string) + @param name name of the plugin object + @type str @return reference to the registered plugin object + @rtype any @exception KeyError raised when the given name is not known """ if name in self.__pluginObjectRegistry: @@ -108,25 +120,28 @@ else: raise KeyError( 'Pluginobject "{0}" is not registered.'.format(name)) - + def getPluginObjects(self): """ Public method to get a list of (name, reference) pairs of all registered plugin objects. @return list of (name, reference) pairs + @rtype list of (str, any) """ objects = [] for name in self.__pluginObjectRegistry: objects.append((name, self.__pluginObjectRegistry[name][0])) return objects - + def getPluginObjectType(self, name): """ Public method to get the type of a registered plugin object. - @param name name of the plugin object (string) - @return type of the plugin object (string) + @param name name of the plugin object + @type str + @return type of the plugin object + @rtype str @exception KeyError raised when the given name is not known """ if name in self.__pluginObjectRegistry: @@ -134,5 +149,17 @@ else: raise KeyError( 'Pluginobject "{0}" is not registered.'.format(name)) + + def usesDarkPalette(self): + """ + Public method to check, if the application uses a palette with a dark + background. + + @return flag indicating the use of a palette with a dark background + @rtype bool + """ + palette = self.palette() + lightness = palette.color(QPalette.Window).lightness() + return lightness <= 128 e5App = QCoreApplication.instance
--- a/eric6/Plugins/PluginVcsMercurial.py Wed Apr 01 19:50:41 2020 +0200 +++ b/eric6/Plugins/PluginVcsMercurial.py Fri Apr 03 17:43:01 2020 +0200 @@ -131,7 +131,7 @@ "zzz_mercurialPage": [QCoreApplication.translate("VcsMercurialPlugin", "Mercurial"), os.path.join("VcsPlugins", "vcsMercurial", "icons", - "preferences-mercurial.png"), + "preferences-mercurial.svg"), createConfigurationPage, "vcsPage", None], }
--- a/eric6/Plugins/PluginVcsPySvn.py Wed Apr 01 19:50:41 2020 +0200 +++ b/eric6/Plugins/PluginVcsPySvn.py Fri Apr 03 17:43:01 2020 +0200 @@ -126,7 +126,7 @@ "zzz_subversionPage": [QCoreApplication.translate("VcsPySvnPlugin", "Subversion"), os.path.join("VcsPlugins", "vcsPySvn", "icons", - "preferences-subversion.png"), + "preferences-subversion.svg"), createConfigurationPage, "vcsPage", None], }
--- a/eric6/Plugins/PluginVcsSubversion.py Wed Apr 01 19:50:41 2020 +0200 +++ b/eric6/Plugins/PluginVcsSubversion.py Fri Apr 03 17:43:01 2020 +0200 @@ -132,7 +132,7 @@ "zzz_subversionPage": [QCoreApplication.translate("VcsSubversionPlugin", "Subversion"), os.path.join("VcsPlugins", "vcsSubversion", "icons", - "preferences-subversion.png"), + "preferences-subversion.svg"), createConfigurationPage, "vcsPage", None], }
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py Wed Apr 01 19:50:41 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py Fri Apr 03 17:43:01 2020 +0200 @@ -113,9 +113,7 @@ self.__logTreeNormalFont.setBold(False) self.__logTreeBoldFont = self.logTree.font() self.__logTreeBoldFont.setBold(True) - self.__logTreeHasDarkBackground = ( - self.logTree.palette().color(QPalette.Window).lightness() < 128 - ) + self.__logTreeHasDarkBackground = e5App().usesDarkPalette() font = Preferences.getEditorOtherFonts("MonospacedFont") self.diffEdit.setFontFamily(font.family())
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py Wed Apr 01 19:50:41 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py Fri Apr 03 17:43:01 2020 +0200 @@ -227,9 +227,7 @@ self.__logTreeNormalFont.setBold(False) self.__logTreeBoldFont = self.logTree.font() self.__logTreeBoldFont.setBold(True) - self.__logTreeHasDarkBackground = ( - self.logTree.palette().color(QPalette.Window).lightness() < 128 - ) + self.__logTreeHasDarkBackground = e5App().usesDarkPalette() self.detailsEdit.anchorClicked.connect(self.__revisionClicked)
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py Wed Apr 01 19:50:41 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py Fri Apr 03 17:43:01 2020 +0200 @@ -34,7 +34,9 @@ Constructor @param vcs reference to the vcs object - @param path path of the repository to serve (string) + @type Hg + @param path path of the repository to serve + @type str @param parent reference to the parent widget (QWidget) """ super(HgServeDialog, self).__init__(parent) @@ -46,16 +48,21 @@ self.setWindowTitle(self.tr("Mercurial Server")) + if e5App().usesDarkPalette(): + iconSuffix = "dark" + else: + iconSuffix = "light" + self.__startAct = QAction( UI.PixmapCache.getIcon( os.path.join("VcsPlugins", "vcsMercurial", "icons", - "startServer.png")), + "startServer-{0}.svg".format(iconSuffix))), self.tr("Start Server"), self) self.__startAct.triggered.connect(self.__startServer) self.__stopAct = QAction( UI.PixmapCache.getIcon( os.path.join("VcsPlugins", "vcsMercurial", "icons", - "stopServer.png")), + "stopServer-{0}.svg".format(iconSuffix))), self.tr("Stop Server"), self) self.__stopAct.triggered.connect(self.__stopServer) self.__browserAct = QAction(
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py Wed Apr 01 19:50:41 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py Fri Apr 03 17:43:01 2020 +0200 @@ -279,7 +279,7 @@ act = menu.addAction( UI.PixmapCache.getIcon( os.path.join("VcsPlugins", "vcsMercurial", "icons", - "mercurial.png")), + "mercurial.svg")), self.vcs.vcsName(), self._VCSInfoDisplay) font = act.font() font.setBold(True) @@ -391,7 +391,7 @@ act = menu.addAction( UI.PixmapCache.getIcon( os.path.join("VcsPlugins", "vcsMercurial", "icons", - "mercurial.png")), + "mercurial.svg")), self.vcs.vcsName(), self._VCSInfoDisplay) font = act.font() font.setBold(True) @@ -475,7 +475,7 @@ act = menu.addAction( UI.PixmapCache.getIcon( os.path.join("VcsPlugins", "vcsMercurial", "icons", - "mercurial.png")), + "mercurial.svg")), self.vcs.vcsName(), self._VCSInfoDisplay) font = act.font() font.setBold(True) @@ -514,7 +514,7 @@ act = menu.addAction( UI.PixmapCache.getIcon( os.path.join("VcsPlugins", "vcsMercurial", "icons", - "mercurial.png")), + "mercurial.svg")), self.vcs.vcsName(), self._VCSInfoDisplay) font = act.font() font.setBold(True) @@ -609,7 +609,7 @@ act = menu.addAction( UI.PixmapCache.getIcon( os.path.join("VcsPlugins", "vcsMercurial", "icons", - "mercurial.png")), + "mercurial.svg")), self.vcs.vcsName(), self._VCSInfoDisplay) font = act.font() font.setBold(True)
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py Wed Apr 01 19:50:41 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py Fri Apr 03 17:43:01 2020 +0200 @@ -1455,7 +1455,7 @@ act = menu.addAction( UI.PixmapCache.getIcon( os.path.join("VcsPlugins", "vcsMercurial", "icons", - "mercurial.png")), + "mercurial.svg")), self.vcs.vcsName(), self._vcsInfoDisplay) font = act.font() font.setBold(True)
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/icons/mercurial.svg Fri Apr 03 17:43:01 2020 +0200 @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg id="svg48" width="22" height="22" preserveAspectRatio="xMidYMid" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <g id="g3745" transform="matrix(.086275 0 0 .087956 -.039425 -.015563)"> + <g id="g12" fill="#1b1a1b"> + <path id="path6" d="m239.15 190.97c45.729-76.034-9.6579-199.35-110.93-186.82-91.503 11.312-92.978 107.62-12.335 130.5 69.786 19.817 14.417 64.082 16.035 93.558 1.6247 29.472 60.669 40.165 107.23-37.239z"/> + <path id="path8" d="m81.333 238.91c21.074-5.5424 33.686-27.198 28.169-48.37-5.517-21.171-27.073-33.841-48.148-28.299s-33.686 27.198-28.169 48.37c5.517 21.171 27.073 33.841 48.148 28.299z"/> + <path id="path10" d="m23.781 90.969c-14.189 1.3798-24.576 14.042-23.202 28.297 1.3761 14.265 13.98 24.707 28.172 23.327 14.187-1.3979 24.583-14.057 23.203-28.313-1.379-14.245-13.981-24.691-28.173-23.311z"/> + </g> + <path id="path14" d="m239.34 187.56c45.442-75.902-9.5942-199-110.23-186.5-90.923 11.292-92.39 107.44-12.258 130.28 69.344 19.783 14.326 63.97 15.934 93.398 1.6162 29.418 60.283 40.09 106.55-37.18z" fill="#bfbfbf"/> + <path id="path16" d="m144.45 236.35c-2.7537-4.487 1.4573-9.4716 5.7858-9.0926 6.8901 0.60621 21.892-0.0812 33.729-6.8217 29.573-16.842 75.084-97.88 52.194-148.99-10.247-22.88-15.237-29.431-25.79-40.623-2.1528-2.2826-0.91694-2.1585 0.54087-1.3859 5.7068 3.0088 15.735 14.663 26.021 33.632 17.38 32.049 16.478 70.148 10.014 94.048-4.5025 16.626-20.011 54.239-42.722 70.501-22.763 16.3-49.398 25.649-59.773 8.7336z"/> + <path id="path18" d="m123.85 131.19c-15.494-4.6204-35.467-11.055-47.02-26.236-8.5168-11.193-12.84-23.41-13.944-30.337-0.39281-2.4717-0.72648-4.5338-0.01771-5.1029 0.32792-0.26429 6.3597 13.432 15.377 24.911 9.0153 11.482 21.616 18.197 32.113 20.637 9.3366 2.1684 28.677 6.9331 35.22 12.533 6.7271 5.7566 7.2886 18.194 5.0249 19.598-2.2829 1.4109-6.9119-10.09-26.753-16.004z"/> + <path id="path20" d="m155.79 238.55c-0.29904 3.5625 3.7741 4.2611 9.2569 3.4357 7.0275-1.0589 12.971-1.8539 21.059-5.9264 10.963-5.5192 22.057-13.414 30.183-24.066 24.243-31.775 32.828-69.371 31.506-74.78-0.44178 4.4664-6.2943 27.911-19.679 49.047-17.19 27.149-29.656 41.609-58.405 48.62-8.0008 1.9527-13.529-1.0207-13.921 3.669z" fill="#fff"/> + <path id="path22" d="m92.03 114.99c3.2744 2.7901 9.9834 6.508 23.184 10.857 15.944 5.2514 23.706 9.8056 26.957 11.988 3.4449 2.3175 5.6283 7.4886 5.844 2.8956 0.22495-4.598-2.5961-8.5518-8.8906-10.649-4.2586-1.4205-11.423-4.8034-18.29-6.165-4.4128-0.87505-11.592-2.6117-17.749-4.5055-3.3743-1.0419-6.8126-2.8668-11.056-4.4215z" fill="#fff"/> + <path id="path24" d="m81.323 235.83c20.991-5.5424 33.552-27.198 28.057-48.37-5.4951-21.171-26.966-33.841-47.957-28.299-20.991 5.5424-33.552 27.198-28.057 48.37 5.4951 21.171 26.966 33.841 47.957 28.299z" fill="#bfbfbf"/> + <path id="path26" d="m47.984 226.37c30.559 28.561 76.557-10.671 56.302-45.323-2.2744-3.8905-5.2274-6.8524-4.2563-3.8721 6.4731 19.925 0.49155 35.687-10.669 43.808-10.943 7.965-25.984 9.2976-38.025 3.0008-3.5361-1.8486-5.0027 0.84521-3.3512 2.3863z"/> + <path id="path28" d="m71.962 232.24c3.8907-0.82534 26.52-6.7365 31.836-25.509 1.6557-5.853 1.953-4.6772 1.4851-1.5056-2.3881 16.187-17.558 28.128-30.467 28.57-2.6195 0.27177-6.0565-0.88022-2.8541-1.5557z" fill="#fff"/> + <path id="path30" d="m23.999 87.889c-14.133 1.3798-24.478 14.042-23.11 28.297 1.37 14.262 13.924 24.707 28.057 23.327 14.133-1.3985 24.487-14.06 23.111-28.316-1.371-14.246-13.922-24.689-28.058-23.309z" fill="#bfbfbf"/> + <path id="path32" d="m12.335 133.42c0.15671 1.8321 2.6446 4.1858 6.5531 5.2664 3.3578 0.92841 12.014 3.3016 23.134-3.7775s12.402-26.014 7.3474-31.583c-1.5648-2.8209-3.5996-4.8746-1.9806-0.37261 4.0887 11.368-3.8563 22.001-10.709 26.925-6.8503 4.9232-15.538 2.5933-19.086 1.5024-3.5476-1.0909-5.4183 0.14713-5.2591 2.0397z"/> + <path id="path34" d="m26.685 135.96c1.0192-0.92549 6.1787-0.5472 10.837-3.074 4.6559-2.5262 10.19-8.0639 11.178-15.933 0.58175-4.6207 0.75646-3.4604 0.98806-0.94385-0.72263 13.082-12.65 20.308-19.472 21.261-1.8407 0.25748-5.0801 0.10033-3.5308-1.3106z" fill="#fff"/> + <path id="path36" d="m230.73 138.25c19.271-56.023-21.055-140.63-102.64-130.45-73.713 9.1923-74.902 87.445-9.9384 106.04 73.585 11.235 29.275 67.223 22.989 95.456-5.6351 25.309 59.467 29.474 89.584-71.044z" fill="#999"/> + <path id="path38" d="m180.31 182.01c-19.935-2.4881-48.622 42.907-21.573 37.59 27.045-5.3125-27.049 5.3163 0 0 13.001-1.9446 23.771-6.5743 33.413-17.674 12.572-14.47 31.352-45.726 36.783-65.922 4.5754-17.028 2.2756-43.409-2.441-18.622-4.8374 25.438-26.248 67.116-46.183 64.628z" fill="#f3f3f3"/> + <path id="path40" d="m46.4 218.32c4.6152 0.0782 7.4069 0.73357 12.08 4.0411 9.2385 3.872 26.22 1.4185 34.062-8.9937 7.8417-10.412 8.0992-24.758 5.1114-33.427-7.3089-21.216-38.359-20.841-52.231-3.2271-15.006 19.67-3.6384 41.529 0.97689 41.607z" fill="#999"/> + <path id="path42" d="m5.1831 120.01c0.91991 2.9218 3.2705 7.185 8.2341 7.8957 6.6283 0.94905 7.9834 3.9696 15.81 2.4026 7.8268-1.567 13.759-8.0364 16.133-15.192 2.7179-9.9017-1.3516-15.014-7.4764-19.578-6.1247-4.564-19.598-4.0732-27.638 3.3195-5.7141 5.2504-7.3027 14.039-5.0631 21.152z" fill="#999"/> + <path id="path44" d="m31.213 126.55c6.0139-1.5879 13.968-9.8532 10.019-16.164-4.8716-7.7755-18.444-1.1199-18.903 7.5369-0.46079 8.6599 2.5099 10.31 8.8839 8.6268z" fill="#f3f3f3"/> + <path id="path46" d="m76.37 219.84c5.1312-1.3549 20.851-7.8068 17.898-30.856-1.4943-11.675-7.8081 14.49-19.5 18.404-17.713 5.9286-15.723 17.027 1.6012 12.452z" fill="#f3f3f3"/> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/icons/preferences-mercurial.svg Fri Apr 03 17:43:01 2020 +0200 @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg id="svg48" width="22" height="22" preserveAspectRatio="xMidYMid" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <g id="g3745" transform="matrix(.086275 0 0 .087956 -.039425 -.015563)"> + <g id="g12" fill="#1b1a1b"> + <path id="path6" d="m239.15 190.97c45.729-76.034-9.6579-199.35-110.93-186.82-91.503 11.312-92.978 107.62-12.335 130.5 69.786 19.817 14.417 64.082 16.035 93.558 1.6247 29.472 60.669 40.165 107.23-37.239z"/> + <path id="path8" d="m81.333 238.91c21.074-5.5424 33.686-27.198 28.169-48.37-5.517-21.171-27.073-33.841-48.148-28.299s-33.686 27.198-28.169 48.37c5.517 21.171 27.073 33.841 48.148 28.299z"/> + <path id="path10" d="m23.781 90.969c-14.189 1.3798-24.576 14.042-23.202 28.297 1.3761 14.265 13.98 24.707 28.172 23.327 14.187-1.3979 24.583-14.057 23.203-28.313-1.379-14.245-13.981-24.691-28.173-23.311z"/> + </g> + <path id="path14" d="m239.34 187.56c45.442-75.902-9.5942-199-110.23-186.5-90.923 11.292-92.39 107.44-12.258 130.28 69.344 19.783 14.326 63.97 15.934 93.398 1.6162 29.418 60.283 40.09 106.55-37.18z" fill="#bfbfbf"/> + <path id="path16" d="m144.45 236.35c-2.7537-4.487 1.4573-9.4716 5.7858-9.0926 6.8901 0.60621 21.892-0.0812 33.729-6.8217 29.573-16.842 75.084-97.88 52.194-148.99-10.247-22.88-15.237-29.431-25.79-40.623-2.1528-2.2826-0.91694-2.1585 0.54087-1.3859 5.7068 3.0088 15.735 14.663 26.021 33.632 17.38 32.049 16.478 70.148 10.014 94.048-4.5025 16.626-20.011 54.239-42.722 70.501-22.763 16.3-49.398 25.649-59.773 8.7336z"/> + <path id="path18" d="m123.85 131.19c-15.494-4.6204-35.467-11.055-47.02-26.236-8.5168-11.193-12.84-23.41-13.944-30.337-0.39281-2.4717-0.72648-4.5338-0.01771-5.1029 0.32792-0.26429 6.3597 13.432 15.377 24.911 9.0153 11.482 21.616 18.197 32.113 20.637 9.3366 2.1684 28.677 6.9331 35.22 12.533 6.7271 5.7566 7.2886 18.194 5.0249 19.598-2.2829 1.4109-6.9119-10.09-26.753-16.004z"/> + <path id="path20" d="m155.79 238.55c-0.29904 3.5625 3.7741 4.2611 9.2569 3.4357 7.0275-1.0589 12.971-1.8539 21.059-5.9264 10.963-5.5192 22.057-13.414 30.183-24.066 24.243-31.775 32.828-69.371 31.506-74.78-0.44178 4.4664-6.2943 27.911-19.679 49.047-17.19 27.149-29.656 41.609-58.405 48.62-8.0008 1.9527-13.529-1.0207-13.921 3.669z" fill="#fff"/> + <path id="path22" d="m92.03 114.99c3.2744 2.7901 9.9834 6.508 23.184 10.857 15.944 5.2514 23.706 9.8056 26.957 11.988 3.4449 2.3175 5.6283 7.4886 5.844 2.8956 0.22495-4.598-2.5961-8.5518-8.8906-10.649-4.2586-1.4205-11.423-4.8034-18.29-6.165-4.4128-0.87505-11.592-2.6117-17.749-4.5055-3.3743-1.0419-6.8126-2.8668-11.056-4.4215z" fill="#fff"/> + <path id="path24" d="m81.323 235.83c20.991-5.5424 33.552-27.198 28.057-48.37-5.4951-21.171-26.966-33.841-47.957-28.299-20.991 5.5424-33.552 27.198-28.057 48.37 5.4951 21.171 26.966 33.841 47.957 28.299z" fill="#bfbfbf"/> + <path id="path26" d="m47.984 226.37c30.559 28.561 76.557-10.671 56.302-45.323-2.2744-3.8905-5.2274-6.8524-4.2563-3.8721 6.4731 19.925 0.49155 35.687-10.669 43.808-10.943 7.965-25.984 9.2976-38.025 3.0008-3.5361-1.8486-5.0027 0.84521-3.3512 2.3863z"/> + <path id="path28" d="m71.962 232.24c3.8907-0.82534 26.52-6.7365 31.836-25.509 1.6557-5.853 1.953-4.6772 1.4851-1.5056-2.3881 16.187-17.558 28.128-30.467 28.57-2.6195 0.27177-6.0565-0.88022-2.8541-1.5557z" fill="#fff"/> + <path id="path30" d="m23.999 87.889c-14.133 1.3798-24.478 14.042-23.11 28.297 1.37 14.262 13.924 24.707 28.057 23.327 14.133-1.3985 24.487-14.06 23.111-28.316-1.371-14.246-13.922-24.689-28.058-23.309z" fill="#bfbfbf"/> + <path id="path32" d="m12.335 133.42c0.15671 1.8321 2.6446 4.1858 6.5531 5.2664 3.3578 0.92841 12.014 3.3016 23.134-3.7775s12.402-26.014 7.3474-31.583c-1.5648-2.8209-3.5996-4.8746-1.9806-0.37261 4.0887 11.368-3.8563 22.001-10.709 26.925-6.8503 4.9232-15.538 2.5933-19.086 1.5024-3.5476-1.0909-5.4183 0.14713-5.2591 2.0397z"/> + <path id="path34" d="m26.685 135.96c1.0192-0.92549 6.1787-0.5472 10.837-3.074 4.6559-2.5262 10.19-8.0639 11.178-15.933 0.58175-4.6207 0.75646-3.4604 0.98806-0.94385-0.72263 13.082-12.65 20.308-19.472 21.261-1.8407 0.25748-5.0801 0.10033-3.5308-1.3106z" fill="#fff"/> + <path id="path36" d="m230.73 138.25c19.271-56.023-21.055-140.63-102.64-130.45-73.713 9.1923-74.902 87.445-9.9384 106.04 73.585 11.235 29.275 67.223 22.989 95.456-5.6351 25.309 59.467 29.474 89.584-71.044z" fill="#999"/> + <path id="path38" d="m180.31 182.01c-19.935-2.4881-48.622 42.907-21.573 37.59 27.045-5.3125-27.049 5.3163 0 0 13.001-1.9446 23.771-6.5743 33.413-17.674 12.572-14.47 31.352-45.726 36.783-65.922 4.5754-17.028 2.2756-43.409-2.441-18.622-4.8374 25.438-26.248 67.116-46.183 64.628z" fill="#f3f3f3"/> + <path id="path40" d="m46.4 218.32c4.6152 0.0782 7.4069 0.73357 12.08 4.0411 9.2385 3.872 26.22 1.4185 34.062-8.9937 7.8417-10.412 8.0992-24.758 5.1114-33.427-7.3089-21.216-38.359-20.841-52.231-3.2271-15.006 19.67-3.6384 41.529 0.97689 41.607z" fill="#999"/> + <path id="path42" d="m5.1831 120.01c0.91991 2.9218 3.2705 7.185 8.2341 7.8957 6.6283 0.94905 7.9834 3.9696 15.81 2.4026 7.8268-1.567 13.759-8.0364 16.133-15.192 2.7179-9.9017-1.3516-15.014-7.4764-19.578-6.1247-4.564-19.598-4.0732-27.638 3.3195-5.7141 5.2504-7.3027 14.039-5.0631 21.152z" fill="#999"/> + <path id="path44" d="m31.213 126.55c6.0139-1.5879 13.968-9.8532 10.019-16.164-4.8716-7.7755-18.444-1.1199-18.903 7.5369-0.46079 8.6599 2.5099 10.31 8.8839 8.6268z" fill="#f3f3f3"/> + <path id="path46" d="m76.37 219.84c5.1312-1.3549 20.851-7.8068 17.898-30.856-1.4943-11.675-7.8081 14.49-19.5 18.404-17.713 5.9286-15.723 17.027 1.6012 12.452z" fill="#f3f3f3"/> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/icons/startServer-dark.svg Fri Apr 03 17:43:01 2020 +0200 @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg id="svg6" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <defs id="defs3051"> + <style id="current-color-scheme" type="text/css">.ColorScheme-Text { + color:#eff0f1 + }</style> + </defs> + <path id="path4" d="m1 1v20h9v-6.25h-7.75v-1.25h7.75v-3.5h4.75v-0.25h5v0.25h1.25v-9h-20zm13.75 1.25h5v1.25h-5v-1.25zm-12.5 3.75h17.5v1.25h-17.5v-1.25z" color="#eff0f1" fill="currentColor"/> + <path id="path4-8" class="ColorScheme-Text" d="m11 11v10l10-5z" color="#232629" fill="#eff0f1"/> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/icons/startServer-light.svg Fri Apr 03 17:43:01 2020 +0200 @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg id="svg6" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <defs id="defs3051"> + <style id="current-color-scheme" type="text/css">.ColorScheme-Text { + color:#eff0f1 + }</style> + </defs> + <path id="path4" d="m1 1v20h9v-6.25h-7.75v-1.25h7.75v-3.5h4.75v-0.25h5v0.25h1.25v-9h-20zm13.75 1.25h5v1.25h-5v-1.25zm-12.5 3.75h17.5v1.25h-17.5v-1.25z" color="#eff0f1" fill="#232629"/> + <path id="path4-8" class="ColorScheme-Text" d="m11 11v10l10-5z" color="#232629" fill="#232629"/> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/icons/stopServer-dark.svg Fri Apr 03 17:43:01 2020 +0200 @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg id="svg6" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <defs id="defs3051"> + <style id="current-color-scheme" type="text/css">.ColorScheme-Text { + color:#eff0f1 + }</style> + </defs> + <path id="path4" d="m1 1v20h9v-6.25h-7.75v-1.25h7.75v-3.5h4.75v-0.25h5v0.25h1.25v-9h-20zm13.75 1.25h5v1.25h-5v-1.25zm-12.5 3.75h17.5v1.25h-17.5v-1.25z" color="#eff0f1" fill="currentColor"/> + <g id="g8" class="ColorScheme-NegativeText" transform="matrix(.625 0 0 .625 9.125 9.125)" color="#da4453" fill="currentColor"> + <path id="path4-6" d="m11 3c4.432 0 8 3.568 8 8 0 1.442-0.383 2.79-1.045 3.955l-0.738-0.738a6.985 6.985 0 0 0 0.783-3.217c0-3.878-3.122-7-7-7a6.985 6.985 0 0 0-3.217 0.783l-0.738-0.738a7.982 7.982 0 0 1 3.955-1.045m-6.955 4.045 0.738 0.738a6.985 6.985 0 0 0-0.783 3.217c0 3.878 3.122 7 7 7a6.985 6.985 0 0 0 3.217-0.783l0.738 0.738a7.982 7.982 0 0 1-3.955 1.045c-4.432 0-8-3.568-8-8 0-1.442 0.383-2.79 1.045-3.955"/> + <path id="path6" d="m7.5 9.998h7v2h-7z"/> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/icons/stopServer-light.svg Fri Apr 03 17:43:01 2020 +0200 @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg id="svg6" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <defs id="defs3051"> + <style id="current-color-scheme" type="text/css">.ColorScheme-Text { + color:#eff0f1 + }</style> + </defs> + <path id="path4" d="m1 1v20h9v-6.25h-7.75v-1.25h7.75v-3.5h4.75v-0.25h5v0.25h1.25v-9h-20zm13.75 1.25h5v1.25h-5v-1.25zm-12.5 3.75h17.5v1.25h-17.5v-1.25z" color="#eff0f1" fill="#232629"/> + <g id="g8" class="ColorScheme-NegativeText" transform="matrix(.625 0 0 .625 9.125 9.125)" color="#da4453" fill="currentColor"> + <path id="path4-6" d="m11 3c4.432 0 8 3.568 8 8 0 1.442-0.383 2.79-1.045 3.955l-0.738-0.738a6.985 6.985 0 0 0 0.783-3.217c0-3.878-3.122-7-7-7a6.985 6.985 0 0 0-3.217 0.783l-0.738-0.738a7.982 7.982 0 0 1 3.955-1.045m-6.955 4.045 0.738 0.738a6.985 6.985 0 0 0-0.783 3.217c0 3.878 3.122 7 7 7a6.985 6.985 0 0 0 3.217-0.783l0.738 0.738a7.982 7.982 0 0 1-3.955 1.045c-4.432 0-8-3.568-8-8 0-1.442 0.383-2.79 1.045-3.955"/> + <path id="path6" d="m7.5 9.998h7v2h-7z"/> + </g> +</svg>
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py Wed Apr 01 19:50:41 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py Fri Apr 03 17:43:01 2020 +0200 @@ -204,7 +204,7 @@ act = menu.addAction( UI.PixmapCache.getIcon( - os.path.join("VcsPlugins", "vcsPySvn", "icons", "pysvn.png")), + os.path.join("VcsPlugins", "vcsPySvn", "icons", "pysvn.svg")), self.vcs.vcsName(), self._VCSInfoDisplay) font = act.font() font.setBold(True) @@ -362,7 +362,7 @@ act = menu.addAction( UI.PixmapCache.getIcon( - os.path.join("VcsPlugins", "vcsPySvn", "icons", "pysvn.png")), + os.path.join("VcsPlugins", "vcsPySvn", "icons", "pysvn.svg")), self.vcs.vcsName(), self._VCSInfoDisplay) font = act.font() font.setBold(True) @@ -482,7 +482,7 @@ act = menu.addAction( UI.PixmapCache.getIcon( - os.path.join("VcsPlugins", "vcsPySvn", "icons", "pysvn.png")), + os.path.join("VcsPlugins", "vcsPySvn", "icons", "pysvn.svg")), self.vcs.vcsName(), self._VCSInfoDisplay) font = act.font() font.setBold(True) @@ -520,7 +520,7 @@ act = menu.addAction( UI.PixmapCache.getIcon( - os.path.join("VcsPlugins", "vcsPySvn", "icons", "pysvn.png")), + os.path.join("VcsPlugins", "vcsPySvn", "icons", "pysvn.svg")), self.vcs.vcsName(), self._VCSInfoDisplay) font = act.font() font.setBold(True) @@ -642,7 +642,7 @@ act = menu.addAction( UI.PixmapCache.getIcon( - os.path.join("VcsPlugins", "vcsPySvn", "icons", "pysvn.png")), + os.path.join("VcsPlugins", "vcsPySvn", "icons", "pysvn.svg")), self.vcs.vcsName(), self._VCSInfoDisplay) font = act.font() font.setBold(True)
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py Wed Apr 01 19:50:41 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py Fri Apr 03 17:43:01 2020 +0200 @@ -493,7 +493,7 @@ act = menu.addAction( UI.PixmapCache.getIcon( - os.path.join("VcsPlugins", "vcsPySvn", "icons", "pysvn.png")), + os.path.join("VcsPlugins", "vcsPySvn", "icons", "pysvn.svg")), self.vcs.vcsName(), self._vcsInfoDisplay) font = act.font() font.setBold(True)
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/icons/preferences-subversion.svg Fri Apr 03 17:43:01 2020 +0200 @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg id="svg2" width="22.009" height="22" version="1.0" viewBox="0 0 22.009 22" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g id="g46" transform="translate(0 -72.082)"><g id="Layer_1" transform="matrix(.20038 0 0 .23393 -3.9798 72.073)"><path id="path49" d="m129.44 0.875h-107.96v78.762h107.96v-78.762z" fill="#809cc9"/><g id="g51"><path id="path53" d="m130.37 0 1.662 6.583c-15.285 2.216-28.886 4.828-40.802 7.837-12.857 3.247-23.198 6.546-31.025 9.896-7.844 3.284-11.507 5.952-10.99 8 0.456 1.807 3.735 2.626 9.863 2.453 3.141-0.058 8.252-0.399 15.335-1.028 7.083-0.626 16.221-1.536 27.415-2.726 20.599-2.144 34.762-3.077 42.491-2.8 7.711 0.21 11.944 1.784 12.688 4.725 1.007 3.988-6.304 9.331-21.931 16.026-15.657 6.633-35.88 13.076-60.652 19.332-20.854 5.265-38.833 9.029-53.939 11.291l-1.645-6.51c17.868-2.555 33.937-5.633 48.205-9.236 13.326-3.364 23.594-6.629 30.8-9.799 7.205-3.169 10.533-5.84 9.983-8.019-0.477-1.886-3.805-2.849-9.973-2.891-3.159 0.034-7.51 0.257-13.062 0.668-5.566 0.414-12.479 1.056-20.739 1.923-12.814 1.375-23.462 2.415-31.93 3.121-8.48 0.709-14.801 1.051-18.976 1.03-8.01-0.074-12.39-1.62-13.15-4.628-1.024-4.061 5.74-9.195 20.295-15.403 14.707-6.268 34.63-12.576 59.795-18.93 17.404-4.394 34.164-8.032 50.282-10.915z" fill="#fff"/></g><g id="g55" fill="#fff"><path id="path57" d="m26.125 56.078c0.279 0 0.521 0.105 0.728 0.316 0.205 0.205 0.309 0.451 0.309 0.736 0 0.297-0.104 0.548-0.309 0.754-0.206 0.205-0.454 0.308-0.745 0.308-0.297 0-0.548-0.103-0.753-0.309-0.206-0.211-0.309-0.462-0.309-0.753 0-0.297 0.103-0.545 0.309-0.745 0.21-0.204 0.467-0.307 0.77-0.307zm0 6.803c0.279 0 0.521 0.107 0.728 0.318 0.205 0.207 0.309 0.456 0.309 0.748s-0.104 0.541-0.309 0.748c-0.217 0.201-0.465 0.301-0.745 0.301-0.148 0-0.287-0.027-0.415-0.082-0.128-0.054-0.241-0.128-0.338-0.223-0.098-0.095-0.173-0.206-0.228-0.336-0.055-0.129-0.081-0.268-0.081-0.417 0-0.292 0.103-0.542 0.309-0.748 0.21-0.206 0.467-0.309 0.77-0.309z"/><path id="path59" d="m29.779 56.078c0.28 0 0.522 0.105 0.728 0.316 0.206 0.205 0.309 0.451 0.309 0.736 0 0.297-0.103 0.548-0.309 0.754-0.205 0.205-0.453 0.308-0.744 0.308-0.297 0-0.549-0.103-0.754-0.309-0.206-0.211-0.309-0.462-0.309-0.753 0-0.297 0.103-0.545 0.309-0.745 0.211-0.204 0.468-0.307 0.77-0.307zm0 6.803c0.28 0 0.522 0.107 0.728 0.318 0.206 0.207 0.309 0.456 0.309 0.748s-0.103 0.541-0.309 0.748c-0.217 0.201-0.465 0.301-0.744 0.301-0.148 0-0.287-0.027-0.416-0.082-0.128-0.054-0.241-0.128-0.338-0.223s-0.173-0.206-0.227-0.336c-0.055-0.129-0.082-0.268-0.082-0.417 0-0.292 0.103-0.542 0.309-0.748 0.211-0.206 0.468-0.309 0.77-0.309z"/></g><path id="path61" d="m27.712 87.417c0 0.433-0.111 0.822-0.334 1.167s-0.549 0.615-0.979 0.811c-0.429 0.195-0.938 0.293-1.525 0.293-0.706 0-1.288-0.134-1.746-0.4-0.326-0.191-0.591-0.448-0.794-0.769-0.204-0.321-0.306-0.633-0.306-0.936 0-0.176 0.061-0.326 0.184-0.452 0.121-0.125 0.277-0.188 0.466-0.188 0.153 0 0.282 0.049 0.389 0.146s0.196 0.243 0.271 0.436c0.091 0.228 0.189 0.418 0.296 0.571 0.105 0.153 0.254 0.279 0.447 0.379 0.191 0.1 0.444 0.149 0.758 0.149 0.43 0 0.779-0.101 1.048-0.301s0.403-0.451 0.403-0.75c0-0.238-0.072-0.432-0.218-0.58-0.145-0.147-0.332-0.261-0.562-0.339s-0.537-0.161-0.922-0.249c-0.515-0.121-0.945-0.262-1.293-0.424-0.347-0.16-0.622-0.381-0.825-0.659-0.204-0.278-0.306-0.625-0.306-1.038 0-0.395 0.107-0.745 0.322-1.051 0.215-0.307 0.525-0.542 0.932-0.707 0.407-0.164 0.885-0.246 1.436-0.246 0.438 0 0.818 0.055 1.139 0.163 0.32 0.109 0.587 0.255 0.798 0.435 0.212 0.182 0.366 0.371 0.464 0.57 0.098 0.198 0.146 0.393 0.146 0.581 0 0.173-0.061 0.328-0.182 0.467-0.122 0.139-0.273 0.208-0.455 0.208-0.165 0-0.291-0.042-0.376-0.125-0.086-0.083-0.179-0.219-0.279-0.408-0.131-0.271-0.287-0.481-0.47-0.633s-0.476-0.227-0.88-0.227c-0.374 0-0.677 0.082-0.906 0.246-0.229 0.165-0.345 0.363-0.345 0.594 0 0.144 0.039 0.268 0.117 0.372s0.186 0.193 0.322 0.269 0.275 0.134 0.416 0.176c0.141 0.043 0.371 0.104 0.694 0.186 0.402 0.095 0.767 0.199 1.093 0.313s0.604 0.252 0.832 0.415c0.229 0.163 0.408 0.369 0.536 0.618s0.194 0.556 0.194 0.917z" fill="#809cc9"/><path id="path63" d="m33.464 86.604v-3.444c0-0.293 0.066-0.513 0.198-0.659s0.306-0.22 0.521-0.22c0.226 0 0.404 0.073 0.536 0.22s0.198 0.367 0.198 0.661v3.529c0 0.401 0.045 0.736 0.134 1.006s0.247 0.479 0.475 0.627c0.227 0.148 0.545 0.223 0.954 0.223 0.564 0 0.963-0.151 1.196-0.453s0.351-0.76 0.351-1.373v-3.559c0-0.297 0.065-0.519 0.195-0.664 0.131-0.145 0.305-0.217 0.523-0.217s0.396 0.072 0.531 0.217c0.135 0.146 0.203 0.366 0.203 0.663v3.448c0 0.561-0.055 1.028-0.164 1.403s-0.315 0.705-0.619 0.989c-0.26 0.238-0.562 0.412-0.906 0.521-0.346 0.109-0.748 0.165-1.21 0.165-0.55 0-1.022-0.061-1.419-0.179-0.396-0.119-0.721-0.303-0.971-0.552s-0.434-0.568-0.551-0.958c-0.117-0.388-0.175-0.853-0.175-1.394z" fill="#809cc9"/><path id="path65" d="m48.601 89.562h-2.19c-0.316 0-0.542-0.071-0.677-0.213-0.136-0.142-0.203-0.367-0.203-0.676v-5.38c0-0.315 0.069-0.542 0.208-0.681 0.138-0.139 0.362-0.207 0.672-0.207h2.323c0.342 0 0.639 0.021 0.89 0.062s0.476 0.123 0.675 0.242c0.169 0.101 0.318 0.229 0.448 0.383s0.229 0.325 0.298 0.512c0.068 0.188 0.103 0.385 0.103 0.593 0 0.716-0.357 1.239-1.073 1.571 0.939 0.3 1.41 0.884 1.41 1.751 0 0.401-0.103 0.763-0.308 1.083-0.205 0.321-0.481 0.559-0.829 0.712-0.219 0.091-0.47 0.154-0.754 0.191-0.284 0.039-0.615 0.057-0.993 0.057zm-1.618-6.078v1.859h1.33c0.361 0 0.641-0.035 0.838-0.104s0.348-0.199 0.453-0.393c0.081-0.137 0.122-0.291 0.122-0.461 0-0.363-0.129-0.604-0.387-0.724-0.257-0.119-0.65-0.179-1.178-0.179h-1.178zm1.511 2.891h-1.511v2.109h1.56c0.981 0 1.472-0.357 1.472-1.07 0-0.364-0.127-0.629-0.381-0.793-0.255-0.164-0.635-0.246-1.14-0.246z" fill="#809cc9"/><path id="path67" d="m58.295 83.232 1.618 4.799 1.624-4.833c0.085-0.254 0.147-0.431 0.19-0.529 0.042-0.099 0.111-0.188 0.209-0.269s0.231-0.119 0.4-0.119c0.123 0 0.238 0.03 0.344 0.092 0.105 0.062 0.188 0.145 0.248 0.247 0.061 0.103 0.091 0.206 0.091 0.311 0 0.071-0.01 0.149-0.029 0.231-0.02 0.084-0.044 0.165-0.073 0.245-0.029 0.079-0.059 0.162-0.088 0.246l-1.73 4.681c-0.062 0.179-0.124 0.35-0.186 0.511s-0.133 0.303-0.215 0.425c-0.081 0.122-0.189 0.223-0.324 0.301-0.135 0.077-0.3 0.117-0.494 0.117-0.195 0-0.36-0.039-0.495-0.115-0.136-0.076-0.244-0.178-0.327-0.303s-0.155-0.268-0.217-0.428c-0.062-0.159-0.123-0.329-0.186-0.508l-1.701-4.642c-0.029-0.084-0.06-0.167-0.091-0.249-0.03-0.081-0.057-0.169-0.077-0.264-0.021-0.094-0.032-0.174-0.032-0.239 0-0.166 0.066-0.317 0.2-0.454 0.133-0.137 0.301-0.205 0.502-0.205 0.247 0 0.422 0.075 0.524 0.227s0.208 0.392 0.315 0.724z" fill="#999"/><path id="path69" d="m73.338 83.516h-3.267v1.766h3.008c0.221 0 0.387 0.049 0.496 0.148 0.108 0.1 0.163 0.23 0.163 0.393s-0.054 0.296-0.161 0.398-0.273 0.154-0.498 0.154h-3.008v2.047h3.379c0.228 0 0.399 0.052 0.516 0.156 0.115 0.105 0.173 0.244 0.173 0.418 0 0.168-0.058 0.305-0.173 0.409-0.116 0.104-0.288 0.157-0.516 0.157h-3.941c-0.316 0-0.544-0.07-0.683-0.211-0.139-0.14-0.208-0.365-0.208-0.678v-5.38c0-0.208 0.031-0.378 0.093-0.51s0.159-0.228 0.291-0.288 0.301-0.09 0.507-0.09h3.829c0.231 0 0.403 0.051 0.515 0.152 0.113 0.102 0.169 0.234 0.169 0.399 0 0.168-0.056 0.303-0.169 0.404-0.112 0.105-0.284 0.156-0.515 0.156z" fill="#999"/><path id="path71" d="m81.732 86.5h-0.507v2.303c0 0.303-0.066 0.525-0.201 0.669-0.133 0.144-0.308 0.216-0.523 0.216-0.231 0-0.41-0.075-0.538-0.225-0.127-0.15-0.19-0.37-0.19-0.66v-5.508c0-0.312 0.07-0.539 0.21-0.68 0.14-0.14 0.366-0.209 0.679-0.209h2.357c0.325 0 0.604 0.014 0.835 0.041 0.23 0.027 0.439 0.083 0.625 0.166 0.224 0.095 0.423 0.23 0.595 0.406 0.173 0.176 0.304 0.38 0.393 0.612 0.09 0.233 0.135 0.479 0.135 0.74 0 0.534-0.15 0.96-0.451 1.279s-0.758 0.546-1.369 0.679c0.257 0.137 0.502 0.339 0.736 0.605 0.234 0.268 0.443 0.552 0.628 0.854 0.184 0.301 0.327 0.573 0.429 0.815 0.104 0.243 0.154 0.41 0.154 0.501 0 0.095-0.03 0.188-0.09 0.281-0.061 0.093-0.143 0.166-0.247 0.22s-0.224 0.081-0.36 0.081c-0.163 0-0.3-0.039-0.41-0.115-0.111-0.076-0.206-0.174-0.285-0.291-0.08-0.117-0.188-0.29-0.324-0.519l-0.581-0.968c-0.208-0.355-0.395-0.625-0.559-0.812-0.164-0.186-0.331-0.312-0.5-0.381s-0.384-0.1-0.641-0.1zm0.83-3.016h-1.336v1.984h1.297c0.348 0 0.641-0.031 0.878-0.092s0.419-0.164 0.544-0.31 0.188-0.348 0.188-0.604c0-0.2-0.051-0.377-0.151-0.529s-0.24-0.267-0.419-0.343c-0.17-0.07-0.503-0.106-1.001-0.106z" fill="#999"/><path id="path73" d="m96.914 87.417c0 0.433-0.111 0.822-0.334 1.167s-0.549 0.615-0.978 0.811c-0.43 0.195-0.938 0.293-1.527 0.293-0.705 0-1.287-0.134-1.745-0.4-0.326-0.191-0.591-0.448-0.794-0.769-0.204-0.321-0.306-0.633-0.306-0.936 0-0.176 0.062-0.326 0.183-0.452 0.123-0.125 0.278-0.188 0.467-0.188 0.153 0 0.283 0.049 0.389 0.146s0.196 0.243 0.271 0.436c0.091 0.228 0.189 0.418 0.295 0.571s0.256 0.279 0.447 0.379c0.193 0.1 0.445 0.149 0.758 0.149 0.431 0 0.779-0.101 1.049-0.301 0.269-0.2 0.403-0.451 0.403-0.75 0-0.238-0.072-0.432-0.218-0.58-0.145-0.147-0.332-0.261-0.562-0.339-0.229-0.078-0.536-0.161-0.921-0.249-0.515-0.121-0.945-0.262-1.292-0.424-0.348-0.16-0.623-0.381-0.826-0.659-0.204-0.278-0.306-0.625-0.306-1.038 0-0.395 0.107-0.745 0.322-1.051 0.215-0.307 0.525-0.542 0.932-0.707 0.407-0.164 0.886-0.246 1.435-0.246 0.439 0 0.819 0.055 1.14 0.163 0.32 0.109 0.587 0.255 0.798 0.435 0.212 0.182 0.366 0.371 0.464 0.57 0.098 0.198 0.146 0.393 0.146 0.581 0 0.173-0.061 0.328-0.183 0.467-0.121 0.139-0.272 0.208-0.454 0.208-0.165 0-0.29-0.042-0.376-0.125s-0.18-0.219-0.279-0.408c-0.131-0.271-0.287-0.481-0.47-0.633s-0.476-0.227-0.88-0.227c-0.375 0-0.677 0.082-0.906 0.246-0.23 0.165-0.345 0.363-0.345 0.594 0 0.144 0.039 0.268 0.117 0.372s0.186 0.193 0.323 0.269c0.137 0.075 0.275 0.134 0.415 0.176 0.14 0.043 0.371 0.104 0.694 0.186 0.402 0.095 0.767 0.199 1.093 0.313s0.604 0.252 0.833 0.415 0.406 0.369 0.535 0.618c0.129 0.25 0.193 0.556 0.193 0.917z" fill="#999"/><path id="path75" d="m102.71 88.803v-5.643c0-0.293 0.066-0.513 0.2-0.659s0.307-0.22 0.52-0.22c0.218 0 0.395 0.072 0.53 0.217 0.136 0.146 0.203 0.365 0.203 0.662v5.643c0 0.297-0.067 0.518-0.203 0.664s-0.312 0.221-0.53 0.221c-0.209 0-0.382-0.074-0.517-0.223-0.136-0.149-0.203-0.369-0.203-0.662z" fill="#999"/><path id="path77" d="m113.43 82.281c0.741 0 1.377 0.15 1.908 0.451 0.531 0.302 0.934 0.73 1.207 1.285 0.272 0.556 0.409 1.207 0.409 1.957 0 0.553-0.075 1.057-0.225 1.51-0.149 0.452-0.373 0.845-0.672 1.177-0.3 0.332-0.667 0.587-1.103 0.763-0.436 0.175-0.935 0.264-1.496 0.264-0.56 0-1.06-0.091-1.501-0.271-0.442-0.181-0.812-0.436-1.107-0.765s-0.519-0.725-0.67-1.187c-0.151-0.463-0.227-0.963-0.227-1.5 0-0.551 0.078-1.056 0.236-1.515 0.158-0.46 0.386-0.851 0.686-1.173 0.299-0.322 0.662-0.569 1.092-0.74s0.917-0.256 1.463-0.256zm2.055 3.684c0-0.527-0.084-0.984-0.254-1.37-0.168-0.386-0.409-0.679-0.723-0.876-0.313-0.198-0.674-0.297-1.079-0.297-0.289 0-0.556 0.055-0.802 0.164-0.244 0.109-0.456 0.27-0.633 0.479s-0.316 0.477-0.419 0.803-0.153 0.691-0.153 1.098c0 0.408 0.051 0.778 0.153 1.109 0.103 0.33 0.247 0.604 0.434 0.822 0.187 0.217 0.401 0.38 0.643 0.488 0.242 0.107 0.508 0.162 0.797 0.162 0.37 0 0.71-0.094 1.021-0.28s0.557-0.475 0.74-0.864c0.184-0.389 0.275-0.87 0.275-1.438z" fill="#999"/><path id="path79" d="m124.59 83.15 2.798 4.225v-4.264c0-0.276 0.059-0.484 0.178-0.623 0.118-0.139 0.277-0.207 0.479-0.207 0.208 0 0.371 0.068 0.492 0.207 0.119 0.139 0.18 0.346 0.18 0.623v5.633c0 0.629-0.26 0.943-0.78 0.943-0.13 0-0.247-0.02-0.351-0.057-0.104-0.038-0.202-0.097-0.293-0.179-0.091-0.081-0.176-0.177-0.254-0.286s-0.155-0.221-0.233-0.335l-2.729-4.175v4.199c0 0.274-0.063 0.481-0.19 0.621-0.128 0.141-0.29 0.211-0.489 0.211-0.205 0-0.37-0.071-0.494-0.213s-0.186-0.348-0.186-0.618v-5.525c0-0.234 0.025-0.418 0.078-0.552 0.062-0.146 0.164-0.267 0.309-0.359 0.143-0.093 0.298-0.139 0.465-0.139 0.13 0 0.242 0.021 0.335 0.063s0.174 0.099 0.244 0.171 0.142 0.164 0.216 0.278c0.071 0.116 0.146 0.235 0.225 0.358z" fill="#999"/><path id="path81" d="m20.979 93.582h108.26" fill="none" stroke="#809cc9"/></g></g></svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/icons/pysvn.svg Fri Apr 03 17:43:01 2020 +0200 @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg id="svg2" width="22.009" height="22" version="1.0" viewBox="0 0 22.009 22" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g id="g46" transform="translate(0 -72.082)"><g id="Layer_1" transform="matrix(.20038 0 0 .23393 -3.9798 72.073)"><path id="path49" d="m129.44 0.875h-107.96v78.762h107.96v-78.762z" fill="#809cc9"/><g id="g51"><path id="path53" d="m130.37 0 1.662 6.583c-15.285 2.216-28.886 4.828-40.802 7.837-12.857 3.247-23.198 6.546-31.025 9.896-7.844 3.284-11.507 5.952-10.99 8 0.456 1.807 3.735 2.626 9.863 2.453 3.141-0.058 8.252-0.399 15.335-1.028 7.083-0.626 16.221-1.536 27.415-2.726 20.599-2.144 34.762-3.077 42.491-2.8 7.711 0.21 11.944 1.784 12.688 4.725 1.007 3.988-6.304 9.331-21.931 16.026-15.657 6.633-35.88 13.076-60.652 19.332-20.854 5.265-38.833 9.029-53.939 11.291l-1.645-6.51c17.868-2.555 33.937-5.633 48.205-9.236 13.326-3.364 23.594-6.629 30.8-9.799 7.205-3.169 10.533-5.84 9.983-8.019-0.477-1.886-3.805-2.849-9.973-2.891-3.159 0.034-7.51 0.257-13.062 0.668-5.566 0.414-12.479 1.056-20.739 1.923-12.814 1.375-23.462 2.415-31.93 3.121-8.48 0.709-14.801 1.051-18.976 1.03-8.01-0.074-12.39-1.62-13.15-4.628-1.024-4.061 5.74-9.195 20.295-15.403 14.707-6.268 34.63-12.576 59.795-18.93 17.404-4.394 34.164-8.032 50.282-10.915z" fill="#fff"/></g><g id="g55" fill="#fff"><path id="path57" d="m26.125 56.078c0.279 0 0.521 0.105 0.728 0.316 0.205 0.205 0.309 0.451 0.309 0.736 0 0.297-0.104 0.548-0.309 0.754-0.206 0.205-0.454 0.308-0.745 0.308-0.297 0-0.548-0.103-0.753-0.309-0.206-0.211-0.309-0.462-0.309-0.753 0-0.297 0.103-0.545 0.309-0.745 0.21-0.204 0.467-0.307 0.77-0.307zm0 6.803c0.279 0 0.521 0.107 0.728 0.318 0.205 0.207 0.309 0.456 0.309 0.748s-0.104 0.541-0.309 0.748c-0.217 0.201-0.465 0.301-0.745 0.301-0.148 0-0.287-0.027-0.415-0.082-0.128-0.054-0.241-0.128-0.338-0.223-0.098-0.095-0.173-0.206-0.228-0.336-0.055-0.129-0.081-0.268-0.081-0.417 0-0.292 0.103-0.542 0.309-0.748 0.21-0.206 0.467-0.309 0.77-0.309z"/><path id="path59" d="m29.779 56.078c0.28 0 0.522 0.105 0.728 0.316 0.206 0.205 0.309 0.451 0.309 0.736 0 0.297-0.103 0.548-0.309 0.754-0.205 0.205-0.453 0.308-0.744 0.308-0.297 0-0.549-0.103-0.754-0.309-0.206-0.211-0.309-0.462-0.309-0.753 0-0.297 0.103-0.545 0.309-0.745 0.211-0.204 0.468-0.307 0.77-0.307zm0 6.803c0.28 0 0.522 0.107 0.728 0.318 0.206 0.207 0.309 0.456 0.309 0.748s-0.103 0.541-0.309 0.748c-0.217 0.201-0.465 0.301-0.744 0.301-0.148 0-0.287-0.027-0.416-0.082-0.128-0.054-0.241-0.128-0.338-0.223s-0.173-0.206-0.227-0.336c-0.055-0.129-0.082-0.268-0.082-0.417 0-0.292 0.103-0.542 0.309-0.748 0.211-0.206 0.468-0.309 0.77-0.309z"/></g><path id="path61" d="m27.712 87.417c0 0.433-0.111 0.822-0.334 1.167s-0.549 0.615-0.979 0.811c-0.429 0.195-0.938 0.293-1.525 0.293-0.706 0-1.288-0.134-1.746-0.4-0.326-0.191-0.591-0.448-0.794-0.769-0.204-0.321-0.306-0.633-0.306-0.936 0-0.176 0.061-0.326 0.184-0.452 0.121-0.125 0.277-0.188 0.466-0.188 0.153 0 0.282 0.049 0.389 0.146s0.196 0.243 0.271 0.436c0.091 0.228 0.189 0.418 0.296 0.571 0.105 0.153 0.254 0.279 0.447 0.379 0.191 0.1 0.444 0.149 0.758 0.149 0.43 0 0.779-0.101 1.048-0.301s0.403-0.451 0.403-0.75c0-0.238-0.072-0.432-0.218-0.58-0.145-0.147-0.332-0.261-0.562-0.339s-0.537-0.161-0.922-0.249c-0.515-0.121-0.945-0.262-1.293-0.424-0.347-0.16-0.622-0.381-0.825-0.659-0.204-0.278-0.306-0.625-0.306-1.038 0-0.395 0.107-0.745 0.322-1.051 0.215-0.307 0.525-0.542 0.932-0.707 0.407-0.164 0.885-0.246 1.436-0.246 0.438 0 0.818 0.055 1.139 0.163 0.32 0.109 0.587 0.255 0.798 0.435 0.212 0.182 0.366 0.371 0.464 0.57 0.098 0.198 0.146 0.393 0.146 0.581 0 0.173-0.061 0.328-0.182 0.467-0.122 0.139-0.273 0.208-0.455 0.208-0.165 0-0.291-0.042-0.376-0.125-0.086-0.083-0.179-0.219-0.279-0.408-0.131-0.271-0.287-0.481-0.47-0.633s-0.476-0.227-0.88-0.227c-0.374 0-0.677 0.082-0.906 0.246-0.229 0.165-0.345 0.363-0.345 0.594 0 0.144 0.039 0.268 0.117 0.372s0.186 0.193 0.322 0.269 0.275 0.134 0.416 0.176c0.141 0.043 0.371 0.104 0.694 0.186 0.402 0.095 0.767 0.199 1.093 0.313s0.604 0.252 0.832 0.415c0.229 0.163 0.408 0.369 0.536 0.618s0.194 0.556 0.194 0.917z" fill="#809cc9"/><path id="path63" d="m33.464 86.604v-3.444c0-0.293 0.066-0.513 0.198-0.659s0.306-0.22 0.521-0.22c0.226 0 0.404 0.073 0.536 0.22s0.198 0.367 0.198 0.661v3.529c0 0.401 0.045 0.736 0.134 1.006s0.247 0.479 0.475 0.627c0.227 0.148 0.545 0.223 0.954 0.223 0.564 0 0.963-0.151 1.196-0.453s0.351-0.76 0.351-1.373v-3.559c0-0.297 0.065-0.519 0.195-0.664 0.131-0.145 0.305-0.217 0.523-0.217s0.396 0.072 0.531 0.217c0.135 0.146 0.203 0.366 0.203 0.663v3.448c0 0.561-0.055 1.028-0.164 1.403s-0.315 0.705-0.619 0.989c-0.26 0.238-0.562 0.412-0.906 0.521-0.346 0.109-0.748 0.165-1.21 0.165-0.55 0-1.022-0.061-1.419-0.179-0.396-0.119-0.721-0.303-0.971-0.552s-0.434-0.568-0.551-0.958c-0.117-0.388-0.175-0.853-0.175-1.394z" fill="#809cc9"/><path id="path65" d="m48.601 89.562h-2.19c-0.316 0-0.542-0.071-0.677-0.213-0.136-0.142-0.203-0.367-0.203-0.676v-5.38c0-0.315 0.069-0.542 0.208-0.681 0.138-0.139 0.362-0.207 0.672-0.207h2.323c0.342 0 0.639 0.021 0.89 0.062s0.476 0.123 0.675 0.242c0.169 0.101 0.318 0.229 0.448 0.383s0.229 0.325 0.298 0.512c0.068 0.188 0.103 0.385 0.103 0.593 0 0.716-0.357 1.239-1.073 1.571 0.939 0.3 1.41 0.884 1.41 1.751 0 0.401-0.103 0.763-0.308 1.083-0.205 0.321-0.481 0.559-0.829 0.712-0.219 0.091-0.47 0.154-0.754 0.191-0.284 0.039-0.615 0.057-0.993 0.057zm-1.618-6.078v1.859h1.33c0.361 0 0.641-0.035 0.838-0.104s0.348-0.199 0.453-0.393c0.081-0.137 0.122-0.291 0.122-0.461 0-0.363-0.129-0.604-0.387-0.724-0.257-0.119-0.65-0.179-1.178-0.179h-1.178zm1.511 2.891h-1.511v2.109h1.56c0.981 0 1.472-0.357 1.472-1.07 0-0.364-0.127-0.629-0.381-0.793-0.255-0.164-0.635-0.246-1.14-0.246z" fill="#809cc9"/><path id="path67" d="m58.295 83.232 1.618 4.799 1.624-4.833c0.085-0.254 0.147-0.431 0.19-0.529 0.042-0.099 0.111-0.188 0.209-0.269s0.231-0.119 0.4-0.119c0.123 0 0.238 0.03 0.344 0.092 0.105 0.062 0.188 0.145 0.248 0.247 0.061 0.103 0.091 0.206 0.091 0.311 0 0.071-0.01 0.149-0.029 0.231-0.02 0.084-0.044 0.165-0.073 0.245-0.029 0.079-0.059 0.162-0.088 0.246l-1.73 4.681c-0.062 0.179-0.124 0.35-0.186 0.511s-0.133 0.303-0.215 0.425c-0.081 0.122-0.189 0.223-0.324 0.301-0.135 0.077-0.3 0.117-0.494 0.117-0.195 0-0.36-0.039-0.495-0.115-0.136-0.076-0.244-0.178-0.327-0.303s-0.155-0.268-0.217-0.428c-0.062-0.159-0.123-0.329-0.186-0.508l-1.701-4.642c-0.029-0.084-0.06-0.167-0.091-0.249-0.03-0.081-0.057-0.169-0.077-0.264-0.021-0.094-0.032-0.174-0.032-0.239 0-0.166 0.066-0.317 0.2-0.454 0.133-0.137 0.301-0.205 0.502-0.205 0.247 0 0.422 0.075 0.524 0.227s0.208 0.392 0.315 0.724z" fill="#999"/><path id="path69" d="m73.338 83.516h-3.267v1.766h3.008c0.221 0 0.387 0.049 0.496 0.148 0.108 0.1 0.163 0.23 0.163 0.393s-0.054 0.296-0.161 0.398-0.273 0.154-0.498 0.154h-3.008v2.047h3.379c0.228 0 0.399 0.052 0.516 0.156 0.115 0.105 0.173 0.244 0.173 0.418 0 0.168-0.058 0.305-0.173 0.409-0.116 0.104-0.288 0.157-0.516 0.157h-3.941c-0.316 0-0.544-0.07-0.683-0.211-0.139-0.14-0.208-0.365-0.208-0.678v-5.38c0-0.208 0.031-0.378 0.093-0.51s0.159-0.228 0.291-0.288 0.301-0.09 0.507-0.09h3.829c0.231 0 0.403 0.051 0.515 0.152 0.113 0.102 0.169 0.234 0.169 0.399 0 0.168-0.056 0.303-0.169 0.404-0.112 0.105-0.284 0.156-0.515 0.156z" fill="#999"/><path id="path71" d="m81.732 86.5h-0.507v2.303c0 0.303-0.066 0.525-0.201 0.669-0.133 0.144-0.308 0.216-0.523 0.216-0.231 0-0.41-0.075-0.538-0.225-0.127-0.15-0.19-0.37-0.19-0.66v-5.508c0-0.312 0.07-0.539 0.21-0.68 0.14-0.14 0.366-0.209 0.679-0.209h2.357c0.325 0 0.604 0.014 0.835 0.041 0.23 0.027 0.439 0.083 0.625 0.166 0.224 0.095 0.423 0.23 0.595 0.406 0.173 0.176 0.304 0.38 0.393 0.612 0.09 0.233 0.135 0.479 0.135 0.74 0 0.534-0.15 0.96-0.451 1.279s-0.758 0.546-1.369 0.679c0.257 0.137 0.502 0.339 0.736 0.605 0.234 0.268 0.443 0.552 0.628 0.854 0.184 0.301 0.327 0.573 0.429 0.815 0.104 0.243 0.154 0.41 0.154 0.501 0 0.095-0.03 0.188-0.09 0.281-0.061 0.093-0.143 0.166-0.247 0.22s-0.224 0.081-0.36 0.081c-0.163 0-0.3-0.039-0.41-0.115-0.111-0.076-0.206-0.174-0.285-0.291-0.08-0.117-0.188-0.29-0.324-0.519l-0.581-0.968c-0.208-0.355-0.395-0.625-0.559-0.812-0.164-0.186-0.331-0.312-0.5-0.381s-0.384-0.1-0.641-0.1zm0.83-3.016h-1.336v1.984h1.297c0.348 0 0.641-0.031 0.878-0.092s0.419-0.164 0.544-0.31 0.188-0.348 0.188-0.604c0-0.2-0.051-0.377-0.151-0.529s-0.24-0.267-0.419-0.343c-0.17-0.07-0.503-0.106-1.001-0.106z" fill="#999"/><path id="path73" d="m96.914 87.417c0 0.433-0.111 0.822-0.334 1.167s-0.549 0.615-0.978 0.811c-0.43 0.195-0.938 0.293-1.527 0.293-0.705 0-1.287-0.134-1.745-0.4-0.326-0.191-0.591-0.448-0.794-0.769-0.204-0.321-0.306-0.633-0.306-0.936 0-0.176 0.062-0.326 0.183-0.452 0.123-0.125 0.278-0.188 0.467-0.188 0.153 0 0.283 0.049 0.389 0.146s0.196 0.243 0.271 0.436c0.091 0.228 0.189 0.418 0.295 0.571s0.256 0.279 0.447 0.379c0.193 0.1 0.445 0.149 0.758 0.149 0.431 0 0.779-0.101 1.049-0.301 0.269-0.2 0.403-0.451 0.403-0.75 0-0.238-0.072-0.432-0.218-0.58-0.145-0.147-0.332-0.261-0.562-0.339-0.229-0.078-0.536-0.161-0.921-0.249-0.515-0.121-0.945-0.262-1.292-0.424-0.348-0.16-0.623-0.381-0.826-0.659-0.204-0.278-0.306-0.625-0.306-1.038 0-0.395 0.107-0.745 0.322-1.051 0.215-0.307 0.525-0.542 0.932-0.707 0.407-0.164 0.886-0.246 1.435-0.246 0.439 0 0.819 0.055 1.14 0.163 0.32 0.109 0.587 0.255 0.798 0.435 0.212 0.182 0.366 0.371 0.464 0.57 0.098 0.198 0.146 0.393 0.146 0.581 0 0.173-0.061 0.328-0.183 0.467-0.121 0.139-0.272 0.208-0.454 0.208-0.165 0-0.29-0.042-0.376-0.125s-0.18-0.219-0.279-0.408c-0.131-0.271-0.287-0.481-0.47-0.633s-0.476-0.227-0.88-0.227c-0.375 0-0.677 0.082-0.906 0.246-0.23 0.165-0.345 0.363-0.345 0.594 0 0.144 0.039 0.268 0.117 0.372s0.186 0.193 0.323 0.269c0.137 0.075 0.275 0.134 0.415 0.176 0.14 0.043 0.371 0.104 0.694 0.186 0.402 0.095 0.767 0.199 1.093 0.313s0.604 0.252 0.833 0.415 0.406 0.369 0.535 0.618c0.129 0.25 0.193 0.556 0.193 0.917z" fill="#999"/><path id="path75" d="m102.71 88.803v-5.643c0-0.293 0.066-0.513 0.2-0.659s0.307-0.22 0.52-0.22c0.218 0 0.395 0.072 0.53 0.217 0.136 0.146 0.203 0.365 0.203 0.662v5.643c0 0.297-0.067 0.518-0.203 0.664s-0.312 0.221-0.53 0.221c-0.209 0-0.382-0.074-0.517-0.223-0.136-0.149-0.203-0.369-0.203-0.662z" fill="#999"/><path id="path77" d="m113.43 82.281c0.741 0 1.377 0.15 1.908 0.451 0.531 0.302 0.934 0.73 1.207 1.285 0.272 0.556 0.409 1.207 0.409 1.957 0 0.553-0.075 1.057-0.225 1.51-0.149 0.452-0.373 0.845-0.672 1.177-0.3 0.332-0.667 0.587-1.103 0.763-0.436 0.175-0.935 0.264-1.496 0.264-0.56 0-1.06-0.091-1.501-0.271-0.442-0.181-0.812-0.436-1.107-0.765s-0.519-0.725-0.67-1.187c-0.151-0.463-0.227-0.963-0.227-1.5 0-0.551 0.078-1.056 0.236-1.515 0.158-0.46 0.386-0.851 0.686-1.173 0.299-0.322 0.662-0.569 1.092-0.74s0.917-0.256 1.463-0.256zm2.055 3.684c0-0.527-0.084-0.984-0.254-1.37-0.168-0.386-0.409-0.679-0.723-0.876-0.313-0.198-0.674-0.297-1.079-0.297-0.289 0-0.556 0.055-0.802 0.164-0.244 0.109-0.456 0.27-0.633 0.479s-0.316 0.477-0.419 0.803-0.153 0.691-0.153 1.098c0 0.408 0.051 0.778 0.153 1.109 0.103 0.33 0.247 0.604 0.434 0.822 0.187 0.217 0.401 0.38 0.643 0.488 0.242 0.107 0.508 0.162 0.797 0.162 0.37 0 0.71-0.094 1.021-0.28s0.557-0.475 0.74-0.864c0.184-0.389 0.275-0.87 0.275-1.438z" fill="#999"/><path id="path79" d="m124.59 83.15 2.798 4.225v-4.264c0-0.276 0.059-0.484 0.178-0.623 0.118-0.139 0.277-0.207 0.479-0.207 0.208 0 0.371 0.068 0.492 0.207 0.119 0.139 0.18 0.346 0.18 0.623v5.633c0 0.629-0.26 0.943-0.78 0.943-0.13 0-0.247-0.02-0.351-0.057-0.104-0.038-0.202-0.097-0.293-0.179-0.091-0.081-0.176-0.177-0.254-0.286s-0.155-0.221-0.233-0.335l-2.729-4.175v4.199c0 0.274-0.063 0.481-0.19 0.621-0.128 0.141-0.29 0.211-0.489 0.211-0.205 0-0.37-0.071-0.494-0.213s-0.186-0.348-0.186-0.618v-5.525c0-0.234 0.025-0.418 0.078-0.552 0.062-0.146 0.164-0.267 0.309-0.359 0.143-0.093 0.298-0.139 0.465-0.139 0.13 0 0.242 0.021 0.335 0.063s0.174 0.099 0.244 0.171 0.142 0.164 0.216 0.278c0.071 0.116 0.146 0.235 0.225 0.358z" fill="#999"/><path id="path81" d="m20.979 93.582h108.26" fill="none" stroke="#809cc9"/></g></g></svg>
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py Wed Apr 01 19:50:41 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py Fri Apr 03 17:43:01 2020 +0200 @@ -202,7 +202,7 @@ act = menu.addAction( UI.PixmapCache.getIcon( os.path.join("VcsPlugins", "vcsSubversion", "icons", - "subversion.png")), + "subversion.svg")), self.vcs.vcsName(), self._VCSInfoDisplay) font = act.font() font.setBold(True) @@ -357,7 +357,7 @@ act = menu.addAction( UI.PixmapCache.getIcon( os.path.join("VcsPlugins", "vcsSubversion", "icons", - "subversion.png")), + "subversion.svg")), self.vcs.vcsName(), self._VCSInfoDisplay) font = act.font() font.setBold(True) @@ -479,7 +479,7 @@ act = menu.addAction( UI.PixmapCache.getIcon( os.path.join("VcsPlugins", "vcsSubversion", "icons", - "subversion.png")), + "subversion.svg")), self.vcs.vcsName(), self._VCSInfoDisplay) font = act.font() font.setBold(True) @@ -518,7 +518,7 @@ act = menu.addAction( UI.PixmapCache.getIcon( os.path.join("VcsPlugins", "vcsSubversion", "icons", - "subversion.png")), + "subversion.svg")), self.vcs.vcsName(), self._VCSInfoDisplay) font = act.font() font.setBold(True) @@ -637,7 +637,7 @@ act = menu.addAction( UI.PixmapCache.getIcon( os.path.join("VcsPlugins", "vcsSubversion", "icons", - "subversion.png")), + "subversion.svg")), self.vcs.vcsName(), self._VCSInfoDisplay) font = act.font() font.setBold(True)
--- a/eric6/Plugins/VcsPlugins/vcsSubversion/ProjectHelper.py Wed Apr 01 19:50:41 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/ProjectHelper.py Fri Apr 03 17:43:01 2020 +0200 @@ -478,7 +478,7 @@ act = menu.addAction( UI.PixmapCache.getIcon( os.path.join("VcsPlugins", "vcsSubversion", "icons", - "subversion.png")), + "subversion.svg")), self.vcs.vcsName(), self._vcsInfoDisplay) font = act.font() font.setBold(True)
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/icons/preferences-subversion.svg Fri Apr 03 17:43:01 2020 +0200 @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg id="svg2" width="22.009" height="22" version="1.0" viewBox="0 0 22.009 22" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g id="g46" transform="translate(0 -72.082)"><g id="Layer_1" transform="matrix(.20038 0 0 .23393 -3.9798 72.073)"><path id="path49" d="m129.44 0.875h-107.96v78.762h107.96v-78.762z" fill="#809cc9"/><g id="g51"><path id="path53" d="m130.37 0 1.662 6.583c-15.285 2.216-28.886 4.828-40.802 7.837-12.857 3.247-23.198 6.546-31.025 9.896-7.844 3.284-11.507 5.952-10.99 8 0.456 1.807 3.735 2.626 9.863 2.453 3.141-0.058 8.252-0.399 15.335-1.028 7.083-0.626 16.221-1.536 27.415-2.726 20.599-2.144 34.762-3.077 42.491-2.8 7.711 0.21 11.944 1.784 12.688 4.725 1.007 3.988-6.304 9.331-21.931 16.026-15.657 6.633-35.88 13.076-60.652 19.332-20.854 5.265-38.833 9.029-53.939 11.291l-1.645-6.51c17.868-2.555 33.937-5.633 48.205-9.236 13.326-3.364 23.594-6.629 30.8-9.799 7.205-3.169 10.533-5.84 9.983-8.019-0.477-1.886-3.805-2.849-9.973-2.891-3.159 0.034-7.51 0.257-13.062 0.668-5.566 0.414-12.479 1.056-20.739 1.923-12.814 1.375-23.462 2.415-31.93 3.121-8.48 0.709-14.801 1.051-18.976 1.03-8.01-0.074-12.39-1.62-13.15-4.628-1.024-4.061 5.74-9.195 20.295-15.403 14.707-6.268 34.63-12.576 59.795-18.93 17.404-4.394 34.164-8.032 50.282-10.915z" fill="#fff"/></g><g id="g55" fill="#fff"><path id="path57" d="m26.125 56.078c0.279 0 0.521 0.105 0.728 0.316 0.205 0.205 0.309 0.451 0.309 0.736 0 0.297-0.104 0.548-0.309 0.754-0.206 0.205-0.454 0.308-0.745 0.308-0.297 0-0.548-0.103-0.753-0.309-0.206-0.211-0.309-0.462-0.309-0.753 0-0.297 0.103-0.545 0.309-0.745 0.21-0.204 0.467-0.307 0.77-0.307zm0 6.803c0.279 0 0.521 0.107 0.728 0.318 0.205 0.207 0.309 0.456 0.309 0.748s-0.104 0.541-0.309 0.748c-0.217 0.201-0.465 0.301-0.745 0.301-0.148 0-0.287-0.027-0.415-0.082-0.128-0.054-0.241-0.128-0.338-0.223-0.098-0.095-0.173-0.206-0.228-0.336-0.055-0.129-0.081-0.268-0.081-0.417 0-0.292 0.103-0.542 0.309-0.748 0.21-0.206 0.467-0.309 0.77-0.309z"/><path id="path59" d="m29.779 56.078c0.28 0 0.522 0.105 0.728 0.316 0.206 0.205 0.309 0.451 0.309 0.736 0 0.297-0.103 0.548-0.309 0.754-0.205 0.205-0.453 0.308-0.744 0.308-0.297 0-0.549-0.103-0.754-0.309-0.206-0.211-0.309-0.462-0.309-0.753 0-0.297 0.103-0.545 0.309-0.745 0.211-0.204 0.468-0.307 0.77-0.307zm0 6.803c0.28 0 0.522 0.107 0.728 0.318 0.206 0.207 0.309 0.456 0.309 0.748s-0.103 0.541-0.309 0.748c-0.217 0.201-0.465 0.301-0.744 0.301-0.148 0-0.287-0.027-0.416-0.082-0.128-0.054-0.241-0.128-0.338-0.223s-0.173-0.206-0.227-0.336c-0.055-0.129-0.082-0.268-0.082-0.417 0-0.292 0.103-0.542 0.309-0.748 0.211-0.206 0.468-0.309 0.77-0.309z"/></g><path id="path61" d="m27.712 87.417c0 0.433-0.111 0.822-0.334 1.167s-0.549 0.615-0.979 0.811c-0.429 0.195-0.938 0.293-1.525 0.293-0.706 0-1.288-0.134-1.746-0.4-0.326-0.191-0.591-0.448-0.794-0.769-0.204-0.321-0.306-0.633-0.306-0.936 0-0.176 0.061-0.326 0.184-0.452 0.121-0.125 0.277-0.188 0.466-0.188 0.153 0 0.282 0.049 0.389 0.146s0.196 0.243 0.271 0.436c0.091 0.228 0.189 0.418 0.296 0.571 0.105 0.153 0.254 0.279 0.447 0.379 0.191 0.1 0.444 0.149 0.758 0.149 0.43 0 0.779-0.101 1.048-0.301s0.403-0.451 0.403-0.75c0-0.238-0.072-0.432-0.218-0.58-0.145-0.147-0.332-0.261-0.562-0.339s-0.537-0.161-0.922-0.249c-0.515-0.121-0.945-0.262-1.293-0.424-0.347-0.16-0.622-0.381-0.825-0.659-0.204-0.278-0.306-0.625-0.306-1.038 0-0.395 0.107-0.745 0.322-1.051 0.215-0.307 0.525-0.542 0.932-0.707 0.407-0.164 0.885-0.246 1.436-0.246 0.438 0 0.818 0.055 1.139 0.163 0.32 0.109 0.587 0.255 0.798 0.435 0.212 0.182 0.366 0.371 0.464 0.57 0.098 0.198 0.146 0.393 0.146 0.581 0 0.173-0.061 0.328-0.182 0.467-0.122 0.139-0.273 0.208-0.455 0.208-0.165 0-0.291-0.042-0.376-0.125-0.086-0.083-0.179-0.219-0.279-0.408-0.131-0.271-0.287-0.481-0.47-0.633s-0.476-0.227-0.88-0.227c-0.374 0-0.677 0.082-0.906 0.246-0.229 0.165-0.345 0.363-0.345 0.594 0 0.144 0.039 0.268 0.117 0.372s0.186 0.193 0.322 0.269 0.275 0.134 0.416 0.176c0.141 0.043 0.371 0.104 0.694 0.186 0.402 0.095 0.767 0.199 1.093 0.313s0.604 0.252 0.832 0.415c0.229 0.163 0.408 0.369 0.536 0.618s0.194 0.556 0.194 0.917z" fill="#809cc9"/><path id="path63" d="m33.464 86.604v-3.444c0-0.293 0.066-0.513 0.198-0.659s0.306-0.22 0.521-0.22c0.226 0 0.404 0.073 0.536 0.22s0.198 0.367 0.198 0.661v3.529c0 0.401 0.045 0.736 0.134 1.006s0.247 0.479 0.475 0.627c0.227 0.148 0.545 0.223 0.954 0.223 0.564 0 0.963-0.151 1.196-0.453s0.351-0.76 0.351-1.373v-3.559c0-0.297 0.065-0.519 0.195-0.664 0.131-0.145 0.305-0.217 0.523-0.217s0.396 0.072 0.531 0.217c0.135 0.146 0.203 0.366 0.203 0.663v3.448c0 0.561-0.055 1.028-0.164 1.403s-0.315 0.705-0.619 0.989c-0.26 0.238-0.562 0.412-0.906 0.521-0.346 0.109-0.748 0.165-1.21 0.165-0.55 0-1.022-0.061-1.419-0.179-0.396-0.119-0.721-0.303-0.971-0.552s-0.434-0.568-0.551-0.958c-0.117-0.388-0.175-0.853-0.175-1.394z" fill="#809cc9"/><path id="path65" d="m48.601 89.562h-2.19c-0.316 0-0.542-0.071-0.677-0.213-0.136-0.142-0.203-0.367-0.203-0.676v-5.38c0-0.315 0.069-0.542 0.208-0.681 0.138-0.139 0.362-0.207 0.672-0.207h2.323c0.342 0 0.639 0.021 0.89 0.062s0.476 0.123 0.675 0.242c0.169 0.101 0.318 0.229 0.448 0.383s0.229 0.325 0.298 0.512c0.068 0.188 0.103 0.385 0.103 0.593 0 0.716-0.357 1.239-1.073 1.571 0.939 0.3 1.41 0.884 1.41 1.751 0 0.401-0.103 0.763-0.308 1.083-0.205 0.321-0.481 0.559-0.829 0.712-0.219 0.091-0.47 0.154-0.754 0.191-0.284 0.039-0.615 0.057-0.993 0.057zm-1.618-6.078v1.859h1.33c0.361 0 0.641-0.035 0.838-0.104s0.348-0.199 0.453-0.393c0.081-0.137 0.122-0.291 0.122-0.461 0-0.363-0.129-0.604-0.387-0.724-0.257-0.119-0.65-0.179-1.178-0.179h-1.178zm1.511 2.891h-1.511v2.109h1.56c0.981 0 1.472-0.357 1.472-1.07 0-0.364-0.127-0.629-0.381-0.793-0.255-0.164-0.635-0.246-1.14-0.246z" fill="#809cc9"/><path id="path67" d="m58.295 83.232 1.618 4.799 1.624-4.833c0.085-0.254 0.147-0.431 0.19-0.529 0.042-0.099 0.111-0.188 0.209-0.269s0.231-0.119 0.4-0.119c0.123 0 0.238 0.03 0.344 0.092 0.105 0.062 0.188 0.145 0.248 0.247 0.061 0.103 0.091 0.206 0.091 0.311 0 0.071-0.01 0.149-0.029 0.231-0.02 0.084-0.044 0.165-0.073 0.245-0.029 0.079-0.059 0.162-0.088 0.246l-1.73 4.681c-0.062 0.179-0.124 0.35-0.186 0.511s-0.133 0.303-0.215 0.425c-0.081 0.122-0.189 0.223-0.324 0.301-0.135 0.077-0.3 0.117-0.494 0.117-0.195 0-0.36-0.039-0.495-0.115-0.136-0.076-0.244-0.178-0.327-0.303s-0.155-0.268-0.217-0.428c-0.062-0.159-0.123-0.329-0.186-0.508l-1.701-4.642c-0.029-0.084-0.06-0.167-0.091-0.249-0.03-0.081-0.057-0.169-0.077-0.264-0.021-0.094-0.032-0.174-0.032-0.239 0-0.166 0.066-0.317 0.2-0.454 0.133-0.137 0.301-0.205 0.502-0.205 0.247 0 0.422 0.075 0.524 0.227s0.208 0.392 0.315 0.724z" fill="#999"/><path id="path69" d="m73.338 83.516h-3.267v1.766h3.008c0.221 0 0.387 0.049 0.496 0.148 0.108 0.1 0.163 0.23 0.163 0.393s-0.054 0.296-0.161 0.398-0.273 0.154-0.498 0.154h-3.008v2.047h3.379c0.228 0 0.399 0.052 0.516 0.156 0.115 0.105 0.173 0.244 0.173 0.418 0 0.168-0.058 0.305-0.173 0.409-0.116 0.104-0.288 0.157-0.516 0.157h-3.941c-0.316 0-0.544-0.07-0.683-0.211-0.139-0.14-0.208-0.365-0.208-0.678v-5.38c0-0.208 0.031-0.378 0.093-0.51s0.159-0.228 0.291-0.288 0.301-0.09 0.507-0.09h3.829c0.231 0 0.403 0.051 0.515 0.152 0.113 0.102 0.169 0.234 0.169 0.399 0 0.168-0.056 0.303-0.169 0.404-0.112 0.105-0.284 0.156-0.515 0.156z" fill="#999"/><path id="path71" d="m81.732 86.5h-0.507v2.303c0 0.303-0.066 0.525-0.201 0.669-0.133 0.144-0.308 0.216-0.523 0.216-0.231 0-0.41-0.075-0.538-0.225-0.127-0.15-0.19-0.37-0.19-0.66v-5.508c0-0.312 0.07-0.539 0.21-0.68 0.14-0.14 0.366-0.209 0.679-0.209h2.357c0.325 0 0.604 0.014 0.835 0.041 0.23 0.027 0.439 0.083 0.625 0.166 0.224 0.095 0.423 0.23 0.595 0.406 0.173 0.176 0.304 0.38 0.393 0.612 0.09 0.233 0.135 0.479 0.135 0.74 0 0.534-0.15 0.96-0.451 1.279s-0.758 0.546-1.369 0.679c0.257 0.137 0.502 0.339 0.736 0.605 0.234 0.268 0.443 0.552 0.628 0.854 0.184 0.301 0.327 0.573 0.429 0.815 0.104 0.243 0.154 0.41 0.154 0.501 0 0.095-0.03 0.188-0.09 0.281-0.061 0.093-0.143 0.166-0.247 0.22s-0.224 0.081-0.36 0.081c-0.163 0-0.3-0.039-0.41-0.115-0.111-0.076-0.206-0.174-0.285-0.291-0.08-0.117-0.188-0.29-0.324-0.519l-0.581-0.968c-0.208-0.355-0.395-0.625-0.559-0.812-0.164-0.186-0.331-0.312-0.5-0.381s-0.384-0.1-0.641-0.1zm0.83-3.016h-1.336v1.984h1.297c0.348 0 0.641-0.031 0.878-0.092s0.419-0.164 0.544-0.31 0.188-0.348 0.188-0.604c0-0.2-0.051-0.377-0.151-0.529s-0.24-0.267-0.419-0.343c-0.17-0.07-0.503-0.106-1.001-0.106z" fill="#999"/><path id="path73" d="m96.914 87.417c0 0.433-0.111 0.822-0.334 1.167s-0.549 0.615-0.978 0.811c-0.43 0.195-0.938 0.293-1.527 0.293-0.705 0-1.287-0.134-1.745-0.4-0.326-0.191-0.591-0.448-0.794-0.769-0.204-0.321-0.306-0.633-0.306-0.936 0-0.176 0.062-0.326 0.183-0.452 0.123-0.125 0.278-0.188 0.467-0.188 0.153 0 0.283 0.049 0.389 0.146s0.196 0.243 0.271 0.436c0.091 0.228 0.189 0.418 0.295 0.571s0.256 0.279 0.447 0.379c0.193 0.1 0.445 0.149 0.758 0.149 0.431 0 0.779-0.101 1.049-0.301 0.269-0.2 0.403-0.451 0.403-0.75 0-0.238-0.072-0.432-0.218-0.58-0.145-0.147-0.332-0.261-0.562-0.339-0.229-0.078-0.536-0.161-0.921-0.249-0.515-0.121-0.945-0.262-1.292-0.424-0.348-0.16-0.623-0.381-0.826-0.659-0.204-0.278-0.306-0.625-0.306-1.038 0-0.395 0.107-0.745 0.322-1.051 0.215-0.307 0.525-0.542 0.932-0.707 0.407-0.164 0.886-0.246 1.435-0.246 0.439 0 0.819 0.055 1.14 0.163 0.32 0.109 0.587 0.255 0.798 0.435 0.212 0.182 0.366 0.371 0.464 0.57 0.098 0.198 0.146 0.393 0.146 0.581 0 0.173-0.061 0.328-0.183 0.467-0.121 0.139-0.272 0.208-0.454 0.208-0.165 0-0.29-0.042-0.376-0.125s-0.18-0.219-0.279-0.408c-0.131-0.271-0.287-0.481-0.47-0.633s-0.476-0.227-0.88-0.227c-0.375 0-0.677 0.082-0.906 0.246-0.23 0.165-0.345 0.363-0.345 0.594 0 0.144 0.039 0.268 0.117 0.372s0.186 0.193 0.323 0.269c0.137 0.075 0.275 0.134 0.415 0.176 0.14 0.043 0.371 0.104 0.694 0.186 0.402 0.095 0.767 0.199 1.093 0.313s0.604 0.252 0.833 0.415 0.406 0.369 0.535 0.618c0.129 0.25 0.193 0.556 0.193 0.917z" fill="#999"/><path id="path75" d="m102.71 88.803v-5.643c0-0.293 0.066-0.513 0.2-0.659s0.307-0.22 0.52-0.22c0.218 0 0.395 0.072 0.53 0.217 0.136 0.146 0.203 0.365 0.203 0.662v5.643c0 0.297-0.067 0.518-0.203 0.664s-0.312 0.221-0.53 0.221c-0.209 0-0.382-0.074-0.517-0.223-0.136-0.149-0.203-0.369-0.203-0.662z" fill="#999"/><path id="path77" d="m113.43 82.281c0.741 0 1.377 0.15 1.908 0.451 0.531 0.302 0.934 0.73 1.207 1.285 0.272 0.556 0.409 1.207 0.409 1.957 0 0.553-0.075 1.057-0.225 1.51-0.149 0.452-0.373 0.845-0.672 1.177-0.3 0.332-0.667 0.587-1.103 0.763-0.436 0.175-0.935 0.264-1.496 0.264-0.56 0-1.06-0.091-1.501-0.271-0.442-0.181-0.812-0.436-1.107-0.765s-0.519-0.725-0.67-1.187c-0.151-0.463-0.227-0.963-0.227-1.5 0-0.551 0.078-1.056 0.236-1.515 0.158-0.46 0.386-0.851 0.686-1.173 0.299-0.322 0.662-0.569 1.092-0.74s0.917-0.256 1.463-0.256zm2.055 3.684c0-0.527-0.084-0.984-0.254-1.37-0.168-0.386-0.409-0.679-0.723-0.876-0.313-0.198-0.674-0.297-1.079-0.297-0.289 0-0.556 0.055-0.802 0.164-0.244 0.109-0.456 0.27-0.633 0.479s-0.316 0.477-0.419 0.803-0.153 0.691-0.153 1.098c0 0.408 0.051 0.778 0.153 1.109 0.103 0.33 0.247 0.604 0.434 0.822 0.187 0.217 0.401 0.38 0.643 0.488 0.242 0.107 0.508 0.162 0.797 0.162 0.37 0 0.71-0.094 1.021-0.28s0.557-0.475 0.74-0.864c0.184-0.389 0.275-0.87 0.275-1.438z" fill="#999"/><path id="path79" d="m124.59 83.15 2.798 4.225v-4.264c0-0.276 0.059-0.484 0.178-0.623 0.118-0.139 0.277-0.207 0.479-0.207 0.208 0 0.371 0.068 0.492 0.207 0.119 0.139 0.18 0.346 0.18 0.623v5.633c0 0.629-0.26 0.943-0.78 0.943-0.13 0-0.247-0.02-0.351-0.057-0.104-0.038-0.202-0.097-0.293-0.179-0.091-0.081-0.176-0.177-0.254-0.286s-0.155-0.221-0.233-0.335l-2.729-4.175v4.199c0 0.274-0.063 0.481-0.19 0.621-0.128 0.141-0.29 0.211-0.489 0.211-0.205 0-0.37-0.071-0.494-0.213s-0.186-0.348-0.186-0.618v-5.525c0-0.234 0.025-0.418 0.078-0.552 0.062-0.146 0.164-0.267 0.309-0.359 0.143-0.093 0.298-0.139 0.465-0.139 0.13 0 0.242 0.021 0.335 0.063s0.174 0.099 0.244 0.171 0.142 0.164 0.216 0.278c0.071 0.116 0.146 0.235 0.225 0.358z" fill="#999"/><path id="path81" d="m20.979 93.582h108.26" fill="none" stroke="#809cc9"/></g></g></svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/icons/subversion.svg Fri Apr 03 17:43:01 2020 +0200 @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg id="svg2" width="22.009" height="22" version="1.0" viewBox="0 0 22.009 22" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g id="g46" transform="translate(0 -72.082)"><g id="Layer_1" transform="matrix(.20038 0 0 .23393 -3.9798 72.073)"><path id="path49" d="m129.44 0.875h-107.96v78.762h107.96v-78.762z" fill="#809cc9"/><g id="g51"><path id="path53" d="m130.37 0 1.662 6.583c-15.285 2.216-28.886 4.828-40.802 7.837-12.857 3.247-23.198 6.546-31.025 9.896-7.844 3.284-11.507 5.952-10.99 8 0.456 1.807 3.735 2.626 9.863 2.453 3.141-0.058 8.252-0.399 15.335-1.028 7.083-0.626 16.221-1.536 27.415-2.726 20.599-2.144 34.762-3.077 42.491-2.8 7.711 0.21 11.944 1.784 12.688 4.725 1.007 3.988-6.304 9.331-21.931 16.026-15.657 6.633-35.88 13.076-60.652 19.332-20.854 5.265-38.833 9.029-53.939 11.291l-1.645-6.51c17.868-2.555 33.937-5.633 48.205-9.236 13.326-3.364 23.594-6.629 30.8-9.799 7.205-3.169 10.533-5.84 9.983-8.019-0.477-1.886-3.805-2.849-9.973-2.891-3.159 0.034-7.51 0.257-13.062 0.668-5.566 0.414-12.479 1.056-20.739 1.923-12.814 1.375-23.462 2.415-31.93 3.121-8.48 0.709-14.801 1.051-18.976 1.03-8.01-0.074-12.39-1.62-13.15-4.628-1.024-4.061 5.74-9.195 20.295-15.403 14.707-6.268 34.63-12.576 59.795-18.93 17.404-4.394 34.164-8.032 50.282-10.915z" fill="#fff"/></g><g id="g55" fill="#fff"><path id="path57" d="m26.125 56.078c0.279 0 0.521 0.105 0.728 0.316 0.205 0.205 0.309 0.451 0.309 0.736 0 0.297-0.104 0.548-0.309 0.754-0.206 0.205-0.454 0.308-0.745 0.308-0.297 0-0.548-0.103-0.753-0.309-0.206-0.211-0.309-0.462-0.309-0.753 0-0.297 0.103-0.545 0.309-0.745 0.21-0.204 0.467-0.307 0.77-0.307zm0 6.803c0.279 0 0.521 0.107 0.728 0.318 0.205 0.207 0.309 0.456 0.309 0.748s-0.104 0.541-0.309 0.748c-0.217 0.201-0.465 0.301-0.745 0.301-0.148 0-0.287-0.027-0.415-0.082-0.128-0.054-0.241-0.128-0.338-0.223-0.098-0.095-0.173-0.206-0.228-0.336-0.055-0.129-0.081-0.268-0.081-0.417 0-0.292 0.103-0.542 0.309-0.748 0.21-0.206 0.467-0.309 0.77-0.309z"/><path id="path59" d="m29.779 56.078c0.28 0 0.522 0.105 0.728 0.316 0.206 0.205 0.309 0.451 0.309 0.736 0 0.297-0.103 0.548-0.309 0.754-0.205 0.205-0.453 0.308-0.744 0.308-0.297 0-0.549-0.103-0.754-0.309-0.206-0.211-0.309-0.462-0.309-0.753 0-0.297 0.103-0.545 0.309-0.745 0.211-0.204 0.468-0.307 0.77-0.307zm0 6.803c0.28 0 0.522 0.107 0.728 0.318 0.206 0.207 0.309 0.456 0.309 0.748s-0.103 0.541-0.309 0.748c-0.217 0.201-0.465 0.301-0.744 0.301-0.148 0-0.287-0.027-0.416-0.082-0.128-0.054-0.241-0.128-0.338-0.223s-0.173-0.206-0.227-0.336c-0.055-0.129-0.082-0.268-0.082-0.417 0-0.292 0.103-0.542 0.309-0.748 0.211-0.206 0.468-0.309 0.77-0.309z"/></g><path id="path61" d="m27.712 87.417c0 0.433-0.111 0.822-0.334 1.167s-0.549 0.615-0.979 0.811c-0.429 0.195-0.938 0.293-1.525 0.293-0.706 0-1.288-0.134-1.746-0.4-0.326-0.191-0.591-0.448-0.794-0.769-0.204-0.321-0.306-0.633-0.306-0.936 0-0.176 0.061-0.326 0.184-0.452 0.121-0.125 0.277-0.188 0.466-0.188 0.153 0 0.282 0.049 0.389 0.146s0.196 0.243 0.271 0.436c0.091 0.228 0.189 0.418 0.296 0.571 0.105 0.153 0.254 0.279 0.447 0.379 0.191 0.1 0.444 0.149 0.758 0.149 0.43 0 0.779-0.101 1.048-0.301s0.403-0.451 0.403-0.75c0-0.238-0.072-0.432-0.218-0.58-0.145-0.147-0.332-0.261-0.562-0.339s-0.537-0.161-0.922-0.249c-0.515-0.121-0.945-0.262-1.293-0.424-0.347-0.16-0.622-0.381-0.825-0.659-0.204-0.278-0.306-0.625-0.306-1.038 0-0.395 0.107-0.745 0.322-1.051 0.215-0.307 0.525-0.542 0.932-0.707 0.407-0.164 0.885-0.246 1.436-0.246 0.438 0 0.818 0.055 1.139 0.163 0.32 0.109 0.587 0.255 0.798 0.435 0.212 0.182 0.366 0.371 0.464 0.57 0.098 0.198 0.146 0.393 0.146 0.581 0 0.173-0.061 0.328-0.182 0.467-0.122 0.139-0.273 0.208-0.455 0.208-0.165 0-0.291-0.042-0.376-0.125-0.086-0.083-0.179-0.219-0.279-0.408-0.131-0.271-0.287-0.481-0.47-0.633s-0.476-0.227-0.88-0.227c-0.374 0-0.677 0.082-0.906 0.246-0.229 0.165-0.345 0.363-0.345 0.594 0 0.144 0.039 0.268 0.117 0.372s0.186 0.193 0.322 0.269 0.275 0.134 0.416 0.176c0.141 0.043 0.371 0.104 0.694 0.186 0.402 0.095 0.767 0.199 1.093 0.313s0.604 0.252 0.832 0.415c0.229 0.163 0.408 0.369 0.536 0.618s0.194 0.556 0.194 0.917z" fill="#809cc9"/><path id="path63" d="m33.464 86.604v-3.444c0-0.293 0.066-0.513 0.198-0.659s0.306-0.22 0.521-0.22c0.226 0 0.404 0.073 0.536 0.22s0.198 0.367 0.198 0.661v3.529c0 0.401 0.045 0.736 0.134 1.006s0.247 0.479 0.475 0.627c0.227 0.148 0.545 0.223 0.954 0.223 0.564 0 0.963-0.151 1.196-0.453s0.351-0.76 0.351-1.373v-3.559c0-0.297 0.065-0.519 0.195-0.664 0.131-0.145 0.305-0.217 0.523-0.217s0.396 0.072 0.531 0.217c0.135 0.146 0.203 0.366 0.203 0.663v3.448c0 0.561-0.055 1.028-0.164 1.403s-0.315 0.705-0.619 0.989c-0.26 0.238-0.562 0.412-0.906 0.521-0.346 0.109-0.748 0.165-1.21 0.165-0.55 0-1.022-0.061-1.419-0.179-0.396-0.119-0.721-0.303-0.971-0.552s-0.434-0.568-0.551-0.958c-0.117-0.388-0.175-0.853-0.175-1.394z" fill="#809cc9"/><path id="path65" d="m48.601 89.562h-2.19c-0.316 0-0.542-0.071-0.677-0.213-0.136-0.142-0.203-0.367-0.203-0.676v-5.38c0-0.315 0.069-0.542 0.208-0.681 0.138-0.139 0.362-0.207 0.672-0.207h2.323c0.342 0 0.639 0.021 0.89 0.062s0.476 0.123 0.675 0.242c0.169 0.101 0.318 0.229 0.448 0.383s0.229 0.325 0.298 0.512c0.068 0.188 0.103 0.385 0.103 0.593 0 0.716-0.357 1.239-1.073 1.571 0.939 0.3 1.41 0.884 1.41 1.751 0 0.401-0.103 0.763-0.308 1.083-0.205 0.321-0.481 0.559-0.829 0.712-0.219 0.091-0.47 0.154-0.754 0.191-0.284 0.039-0.615 0.057-0.993 0.057zm-1.618-6.078v1.859h1.33c0.361 0 0.641-0.035 0.838-0.104s0.348-0.199 0.453-0.393c0.081-0.137 0.122-0.291 0.122-0.461 0-0.363-0.129-0.604-0.387-0.724-0.257-0.119-0.65-0.179-1.178-0.179h-1.178zm1.511 2.891h-1.511v2.109h1.56c0.981 0 1.472-0.357 1.472-1.07 0-0.364-0.127-0.629-0.381-0.793-0.255-0.164-0.635-0.246-1.14-0.246z" fill="#809cc9"/><path id="path67" d="m58.295 83.232 1.618 4.799 1.624-4.833c0.085-0.254 0.147-0.431 0.19-0.529 0.042-0.099 0.111-0.188 0.209-0.269s0.231-0.119 0.4-0.119c0.123 0 0.238 0.03 0.344 0.092 0.105 0.062 0.188 0.145 0.248 0.247 0.061 0.103 0.091 0.206 0.091 0.311 0 0.071-0.01 0.149-0.029 0.231-0.02 0.084-0.044 0.165-0.073 0.245-0.029 0.079-0.059 0.162-0.088 0.246l-1.73 4.681c-0.062 0.179-0.124 0.35-0.186 0.511s-0.133 0.303-0.215 0.425c-0.081 0.122-0.189 0.223-0.324 0.301-0.135 0.077-0.3 0.117-0.494 0.117-0.195 0-0.36-0.039-0.495-0.115-0.136-0.076-0.244-0.178-0.327-0.303s-0.155-0.268-0.217-0.428c-0.062-0.159-0.123-0.329-0.186-0.508l-1.701-4.642c-0.029-0.084-0.06-0.167-0.091-0.249-0.03-0.081-0.057-0.169-0.077-0.264-0.021-0.094-0.032-0.174-0.032-0.239 0-0.166 0.066-0.317 0.2-0.454 0.133-0.137 0.301-0.205 0.502-0.205 0.247 0 0.422 0.075 0.524 0.227s0.208 0.392 0.315 0.724z" fill="#999"/><path id="path69" d="m73.338 83.516h-3.267v1.766h3.008c0.221 0 0.387 0.049 0.496 0.148 0.108 0.1 0.163 0.23 0.163 0.393s-0.054 0.296-0.161 0.398-0.273 0.154-0.498 0.154h-3.008v2.047h3.379c0.228 0 0.399 0.052 0.516 0.156 0.115 0.105 0.173 0.244 0.173 0.418 0 0.168-0.058 0.305-0.173 0.409-0.116 0.104-0.288 0.157-0.516 0.157h-3.941c-0.316 0-0.544-0.07-0.683-0.211-0.139-0.14-0.208-0.365-0.208-0.678v-5.38c0-0.208 0.031-0.378 0.093-0.51s0.159-0.228 0.291-0.288 0.301-0.09 0.507-0.09h3.829c0.231 0 0.403 0.051 0.515 0.152 0.113 0.102 0.169 0.234 0.169 0.399 0 0.168-0.056 0.303-0.169 0.404-0.112 0.105-0.284 0.156-0.515 0.156z" fill="#999"/><path id="path71" d="m81.732 86.5h-0.507v2.303c0 0.303-0.066 0.525-0.201 0.669-0.133 0.144-0.308 0.216-0.523 0.216-0.231 0-0.41-0.075-0.538-0.225-0.127-0.15-0.19-0.37-0.19-0.66v-5.508c0-0.312 0.07-0.539 0.21-0.68 0.14-0.14 0.366-0.209 0.679-0.209h2.357c0.325 0 0.604 0.014 0.835 0.041 0.23 0.027 0.439 0.083 0.625 0.166 0.224 0.095 0.423 0.23 0.595 0.406 0.173 0.176 0.304 0.38 0.393 0.612 0.09 0.233 0.135 0.479 0.135 0.74 0 0.534-0.15 0.96-0.451 1.279s-0.758 0.546-1.369 0.679c0.257 0.137 0.502 0.339 0.736 0.605 0.234 0.268 0.443 0.552 0.628 0.854 0.184 0.301 0.327 0.573 0.429 0.815 0.104 0.243 0.154 0.41 0.154 0.501 0 0.095-0.03 0.188-0.09 0.281-0.061 0.093-0.143 0.166-0.247 0.22s-0.224 0.081-0.36 0.081c-0.163 0-0.3-0.039-0.41-0.115-0.111-0.076-0.206-0.174-0.285-0.291-0.08-0.117-0.188-0.29-0.324-0.519l-0.581-0.968c-0.208-0.355-0.395-0.625-0.559-0.812-0.164-0.186-0.331-0.312-0.5-0.381s-0.384-0.1-0.641-0.1zm0.83-3.016h-1.336v1.984h1.297c0.348 0 0.641-0.031 0.878-0.092s0.419-0.164 0.544-0.31 0.188-0.348 0.188-0.604c0-0.2-0.051-0.377-0.151-0.529s-0.24-0.267-0.419-0.343c-0.17-0.07-0.503-0.106-1.001-0.106z" fill="#999"/><path id="path73" d="m96.914 87.417c0 0.433-0.111 0.822-0.334 1.167s-0.549 0.615-0.978 0.811c-0.43 0.195-0.938 0.293-1.527 0.293-0.705 0-1.287-0.134-1.745-0.4-0.326-0.191-0.591-0.448-0.794-0.769-0.204-0.321-0.306-0.633-0.306-0.936 0-0.176 0.062-0.326 0.183-0.452 0.123-0.125 0.278-0.188 0.467-0.188 0.153 0 0.283 0.049 0.389 0.146s0.196 0.243 0.271 0.436c0.091 0.228 0.189 0.418 0.295 0.571s0.256 0.279 0.447 0.379c0.193 0.1 0.445 0.149 0.758 0.149 0.431 0 0.779-0.101 1.049-0.301 0.269-0.2 0.403-0.451 0.403-0.75 0-0.238-0.072-0.432-0.218-0.58-0.145-0.147-0.332-0.261-0.562-0.339-0.229-0.078-0.536-0.161-0.921-0.249-0.515-0.121-0.945-0.262-1.292-0.424-0.348-0.16-0.623-0.381-0.826-0.659-0.204-0.278-0.306-0.625-0.306-1.038 0-0.395 0.107-0.745 0.322-1.051 0.215-0.307 0.525-0.542 0.932-0.707 0.407-0.164 0.886-0.246 1.435-0.246 0.439 0 0.819 0.055 1.14 0.163 0.32 0.109 0.587 0.255 0.798 0.435 0.212 0.182 0.366 0.371 0.464 0.57 0.098 0.198 0.146 0.393 0.146 0.581 0 0.173-0.061 0.328-0.183 0.467-0.121 0.139-0.272 0.208-0.454 0.208-0.165 0-0.29-0.042-0.376-0.125s-0.18-0.219-0.279-0.408c-0.131-0.271-0.287-0.481-0.47-0.633s-0.476-0.227-0.88-0.227c-0.375 0-0.677 0.082-0.906 0.246-0.23 0.165-0.345 0.363-0.345 0.594 0 0.144 0.039 0.268 0.117 0.372s0.186 0.193 0.323 0.269c0.137 0.075 0.275 0.134 0.415 0.176 0.14 0.043 0.371 0.104 0.694 0.186 0.402 0.095 0.767 0.199 1.093 0.313s0.604 0.252 0.833 0.415 0.406 0.369 0.535 0.618c0.129 0.25 0.193 0.556 0.193 0.917z" fill="#999"/><path id="path75" d="m102.71 88.803v-5.643c0-0.293 0.066-0.513 0.2-0.659s0.307-0.22 0.52-0.22c0.218 0 0.395 0.072 0.53 0.217 0.136 0.146 0.203 0.365 0.203 0.662v5.643c0 0.297-0.067 0.518-0.203 0.664s-0.312 0.221-0.53 0.221c-0.209 0-0.382-0.074-0.517-0.223-0.136-0.149-0.203-0.369-0.203-0.662z" fill="#999"/><path id="path77" d="m113.43 82.281c0.741 0 1.377 0.15 1.908 0.451 0.531 0.302 0.934 0.73 1.207 1.285 0.272 0.556 0.409 1.207 0.409 1.957 0 0.553-0.075 1.057-0.225 1.51-0.149 0.452-0.373 0.845-0.672 1.177-0.3 0.332-0.667 0.587-1.103 0.763-0.436 0.175-0.935 0.264-1.496 0.264-0.56 0-1.06-0.091-1.501-0.271-0.442-0.181-0.812-0.436-1.107-0.765s-0.519-0.725-0.67-1.187c-0.151-0.463-0.227-0.963-0.227-1.5 0-0.551 0.078-1.056 0.236-1.515 0.158-0.46 0.386-0.851 0.686-1.173 0.299-0.322 0.662-0.569 1.092-0.74s0.917-0.256 1.463-0.256zm2.055 3.684c0-0.527-0.084-0.984-0.254-1.37-0.168-0.386-0.409-0.679-0.723-0.876-0.313-0.198-0.674-0.297-1.079-0.297-0.289 0-0.556 0.055-0.802 0.164-0.244 0.109-0.456 0.27-0.633 0.479s-0.316 0.477-0.419 0.803-0.153 0.691-0.153 1.098c0 0.408 0.051 0.778 0.153 1.109 0.103 0.33 0.247 0.604 0.434 0.822 0.187 0.217 0.401 0.38 0.643 0.488 0.242 0.107 0.508 0.162 0.797 0.162 0.37 0 0.71-0.094 1.021-0.28s0.557-0.475 0.74-0.864c0.184-0.389 0.275-0.87 0.275-1.438z" fill="#999"/><path id="path79" d="m124.59 83.15 2.798 4.225v-4.264c0-0.276 0.059-0.484 0.178-0.623 0.118-0.139 0.277-0.207 0.479-0.207 0.208 0 0.371 0.068 0.492 0.207 0.119 0.139 0.18 0.346 0.18 0.623v5.633c0 0.629-0.26 0.943-0.78 0.943-0.13 0-0.247-0.02-0.351-0.057-0.104-0.038-0.202-0.097-0.293-0.179-0.091-0.081-0.176-0.177-0.254-0.286s-0.155-0.221-0.233-0.335l-2.729-4.175v4.199c0 0.274-0.063 0.481-0.19 0.621-0.128 0.141-0.29 0.211-0.489 0.211-0.205 0-0.37-0.071-0.494-0.213s-0.186-0.348-0.186-0.618v-5.525c0-0.234 0.025-0.418 0.078-0.552 0.062-0.146 0.164-0.267 0.309-0.359 0.143-0.093 0.298-0.139 0.465-0.139 0.13 0 0.242 0.021 0.335 0.063s0.174 0.099 0.244 0.171 0.142 0.164 0.216 0.278c0.071 0.116 0.146 0.235 0.225 0.358z" fill="#999"/><path id="path81" d="m20.979 93.582h108.26" fill="none" stroke="#809cc9"/></g></g></svg>
--- a/eric6/Toolbox/Startup.py Wed Apr 01 19:50:41 2020 +0200 +++ b/eric6/Toolbox/Startup.py Fri Apr 03 17:43:01 2020 +0200 @@ -12,7 +12,6 @@ import sys from PyQt5.QtCore import QTranslator, QLocale, QLibraryInfo, QDir -from PyQt5.QtGui import QPalette from PyQt5.QtWidgets import QApplication from E5Gui.E5Application import E5Application @@ -119,19 +118,17 @@ """ Module function to initialize the default mime source factory. - @param application reference to the application objetc - @type QGuiApplication + @param application reference to the application object + @type E5Application """ import Preferences - palette = application.palette() - lightness = palette.color(QPalette.Window).lightness() - if lightness > 128: + if application.usesDarkPalette(): + # dark desktop + iconPath = "breeze-dark" + else: # light desktop iconPath = "breeze" - else: - # dark desktop - iconPath = "breeze-dark" defaultIconPaths = [ # add paths for vector graphics os.path.join(getConfig('ericIconDir'), iconPath),