├── .gitignore ├── BestIconFinder.cs ├── CustomIconDashboarder.csproj ├── CustomIconDashboarderExt.cs ├── CustomIconDashboarder_plgx.csproj ├── DashboarderForm.Designer.cs ├── DashboarderForm.cs ├── DashboarderForm.resx ├── HOWTO_COMPILE.md ├── HtmlAgilityPack ├── EncodingFoundException.cs ├── HtmlAttribute.cs ├── HtmlAttributeCollection.cs ├── HtmlCmdLine.cs ├── HtmlCommentNode.cs ├── HtmlConsoleListener.cs ├── HtmlDocument.PathMethods.cs ├── HtmlDocument.Xpath.cs ├── HtmlDocument.cs ├── HtmlElementFlag.cs ├── HtmlEntity.cs ├── HtmlNameTable.cs ├── HtmlNode.Encapsulator.cs ├── HtmlNode.Xpath.cs ├── HtmlNode.cs ├── HtmlNodeCollection.cs ├── HtmlNodeNavigator.cs ├── HtmlNodeType.cs ├── HtmlParseError.cs ├── HtmlParseErrorCode.cs ├── HtmlTextNode.cs ├── HtmlWeb.Xpath.cs ├── HtmlWeb.cs ├── HtmlWebException.cs ├── IOLibrary.cs ├── InvalidProgramException.cs ├── Metro │ ├── HtmlWeb.cs │ └── InvalidProgramException.cs ├── MimeTypeMap.cs ├── MixedCodeDocument.cs ├── MixedCodeDocumentCodeFragment.cs ├── MixedCodeDocumentFragment.cs ├── MixedCodeDocumentFragmentList.cs ├── MixedCodeDocumentFragmentType.cs ├── MixedCodeDocumentTextFragment.cs ├── NameValuePair.cs ├── NameValuePairList.cs ├── Trace.FullFramework.cs ├── Trace.cs ├── Utilities.cs └── crc32.cs ├── IconChooser.cs ├── IconStatsHandler.cs ├── ImageInfo.cs ├── KPCIDConfig.cs ├── LICENSE.txt ├── LomsonLib ├── Collections │ └── CollectionUtil.cs ├── LomsonDebug │ ├── ListViewLayoutManager.cs │ └── LomsonDebugLib.cs ├── LomsonLib.csproj ├── Properties │ └── AssemblyInfo.cs ├── UI │ ├── CompatibilityManager.cs │ ├── RTFBuilder.cs │ ├── ScaleControlTableLayoutPanel.cs │ └── SwappableComparer.cs └── Utility │ └── LomsonUtility.cs ├── Properties └── AssemblyInfo.cs ├── README.md ├── Resource.Designer.cs ├── Resource.resx ├── WaitingForm.Designer.cs ├── WaitingForm.cs ├── WaitingForm.resx ├── _config.yml ├── cleanBinaries.cmd ├── createPlgx.cmd ├── docs └── images │ ├── screenshot-dashboard-1.png │ └── screenshot-menuitem.png └── versionInfo.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/.gitignore -------------------------------------------------------------------------------- /BestIconFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/BestIconFinder.cs -------------------------------------------------------------------------------- /CustomIconDashboarder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/CustomIconDashboarder.csproj -------------------------------------------------------------------------------- /CustomIconDashboarderExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/CustomIconDashboarderExt.cs -------------------------------------------------------------------------------- /CustomIconDashboarder_plgx.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/CustomIconDashboarder_plgx.csproj -------------------------------------------------------------------------------- /DashboarderForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/DashboarderForm.Designer.cs -------------------------------------------------------------------------------- /DashboarderForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/DashboarderForm.cs -------------------------------------------------------------------------------- /DashboarderForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/DashboarderForm.resx -------------------------------------------------------------------------------- /HOWTO_COMPILE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HOWTO_COMPILE.md -------------------------------------------------------------------------------- /HtmlAgilityPack/EncodingFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/EncodingFoundException.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlAttribute.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlAttributeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlAttributeCollection.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlCmdLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlCmdLine.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlCommentNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlCommentNode.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlConsoleListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlConsoleListener.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlDocument.PathMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlDocument.PathMethods.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlDocument.Xpath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlDocument.Xpath.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlDocument.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlElementFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlElementFlag.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlEntity.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlNameTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlNameTable.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlNode.Encapsulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlNode.Encapsulator.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlNode.Xpath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlNode.Xpath.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlNode.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlNodeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlNodeCollection.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlNodeNavigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlNodeNavigator.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlNodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlNodeType.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlParseError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlParseError.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlParseErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlParseErrorCode.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlTextNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlTextNode.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlWeb.Xpath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlWeb.Xpath.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlWeb.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/HtmlWebException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/HtmlWebException.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/IOLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/IOLibrary.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/InvalidProgramException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/InvalidProgramException.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/Metro/HtmlWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/Metro/HtmlWeb.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/Metro/InvalidProgramException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/Metro/InvalidProgramException.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/MimeTypeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/MimeTypeMap.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/MixedCodeDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/MixedCodeDocument.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/MixedCodeDocumentCodeFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/MixedCodeDocumentCodeFragment.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/MixedCodeDocumentFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/MixedCodeDocumentFragment.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/MixedCodeDocumentFragmentList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/MixedCodeDocumentFragmentList.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/MixedCodeDocumentFragmentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/MixedCodeDocumentFragmentType.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/MixedCodeDocumentTextFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/MixedCodeDocumentTextFragment.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/NameValuePair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/NameValuePair.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/NameValuePairList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/NameValuePairList.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/Trace.FullFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/Trace.FullFramework.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/Trace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/Trace.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/Utilities.cs -------------------------------------------------------------------------------- /HtmlAgilityPack/crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/HtmlAgilityPack/crc32.cs -------------------------------------------------------------------------------- /IconChooser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/IconChooser.cs -------------------------------------------------------------------------------- /IconStatsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/IconStatsHandler.cs -------------------------------------------------------------------------------- /ImageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/ImageInfo.cs -------------------------------------------------------------------------------- /KPCIDConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/KPCIDConfig.cs -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LomsonLib/Collections/CollectionUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/LomsonLib/Collections/CollectionUtil.cs -------------------------------------------------------------------------------- /LomsonLib/LomsonDebug/ListViewLayoutManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/LomsonLib/LomsonDebug/ListViewLayoutManager.cs -------------------------------------------------------------------------------- /LomsonLib/LomsonDebug/LomsonDebugLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/LomsonLib/LomsonDebug/LomsonDebugLib.cs -------------------------------------------------------------------------------- /LomsonLib/LomsonLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/LomsonLib/LomsonLib.csproj -------------------------------------------------------------------------------- /LomsonLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/LomsonLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LomsonLib/UI/CompatibilityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/LomsonLib/UI/CompatibilityManager.cs -------------------------------------------------------------------------------- /LomsonLib/UI/RTFBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/LomsonLib/UI/RTFBuilder.cs -------------------------------------------------------------------------------- /LomsonLib/UI/ScaleControlTableLayoutPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/LomsonLib/UI/ScaleControlTableLayoutPanel.cs -------------------------------------------------------------------------------- /LomsonLib/UI/SwappableComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/LomsonLib/UI/SwappableComparer.cs -------------------------------------------------------------------------------- /LomsonLib/Utility/LomsonUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/LomsonLib/Utility/LomsonUtility.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/README.md -------------------------------------------------------------------------------- /Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/Resource.Designer.cs -------------------------------------------------------------------------------- /Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/Resource.resx -------------------------------------------------------------------------------- /WaitingForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/WaitingForm.Designer.cs -------------------------------------------------------------------------------- /WaitingForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/WaitingForm.cs -------------------------------------------------------------------------------- /WaitingForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/WaitingForm.resx -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/_config.yml -------------------------------------------------------------------------------- /cleanBinaries.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/cleanBinaries.cmd -------------------------------------------------------------------------------- /createPlgx.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/createPlgx.cmd -------------------------------------------------------------------------------- /docs/images/screenshot-dashboard-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/docs/images/screenshot-dashboard-1.png -------------------------------------------------------------------------------- /docs/images/screenshot-menuitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incognito1234/KeePass-Custom-Icon-Dashboarder/HEAD/docs/images/screenshot-menuitem.png -------------------------------------------------------------------------------- /versionInfo.txt: -------------------------------------------------------------------------------- 1 | : 2 | Custom Icon Dashboarder: 1.3.0 3 | : --------------------------------------------------------------------------------