├── .gitignore ├── LICENSE ├── README.md ├── RedisExplorer.sln ├── RedisExplorer ├── App.config ├── App.xaml ├── App.xaml.cs ├── AppBootstrapper.cs ├── AppView.xaml ├── AppView.xaml.cs ├── AppViewModel.cs ├── AppWindowManager.cs ├── Assets │ ├── GitHub-Mark-32px.png │ ├── redis-icon.png │ ├── screenshot1.png │ └── screenshot2.png ├── Controls │ ├── AddConnectionView.xaml │ ├── AddConnectionView.xaml.cs │ ├── AddConnectionViewModel.cs │ ├── BoolToCollapsedVisibilityConverter.cs │ ├── DatabaseView.xaml │ ├── DatabaseView.xaml.cs │ ├── DatabaseViewModel.cs │ ├── DefaultView.xaml │ ├── DefaultView.xaml.cs │ ├── DefaultViewModel.cs │ ├── GreyableImage.cs │ ├── KeyHashView.xaml │ ├── KeyHashView.xaml.cs │ ├── KeyHashViewModel.cs │ ├── KeyListView.xaml │ ├── KeyListView.xaml.cs │ ├── KeyListViewModel.cs │ ├── KeySetView.xaml │ ├── KeySetView.xaml.cs │ ├── KeySetViewModel.cs │ ├── KeySortedSetView.xaml │ ├── KeySortedSetView.xaml.cs │ ├── KeySortedSetViewModel.cs │ ├── KeyStringView.xaml │ ├── KeyStringView.xaml.cs │ ├── KeyStringViewModel.cs │ ├── KeyView.xaml │ ├── KeyView.xaml.cs │ ├── KeyViewModel.cs │ ├── PreferencesView.xaml │ ├── PreferencesView.xaml.cs │ ├── PreferencesViewModel.cs │ ├── ServerView.xaml │ ├── ServerView.xaml.cs │ └── ServerViewModel.cs ├── Interface │ ├── IApp.cs │ ├── IDisplayPanel.cs │ ├── IKeyValue.cs │ ├── ITabItem.cs │ ├── ITreeViewItemViewModel.cs │ └── IValueItem.cs ├── Messages │ ├── AddConnectionMessage.cs │ ├── AddKeyMessage.cs │ ├── ConnectionFailedMessage.cs │ ├── DatabaseReloadMessage.cs │ ├── DeleteConnectionMessage.cs │ ├── FlushDbMessage.cs │ ├── InfoNotValidMessage.cs │ ├── KeyDeletedMessage.cs │ ├── KeysDeletedMessage.cs │ ├── RedisKeyAddedMessage.cs │ ├── RedisKeyReloadMessage.cs │ ├── RedisKeyUpdatedMessage.cs │ ├── ReloadKeyMessage.cs │ ├── ServerReloadMessage.cs │ ├── TreeItemExpandedMessage.cs │ └── TreeItemSelectedMessage.cs ├── Models │ ├── HashWrapper.cs │ ├── Maps.cs │ ├── NumberedStringWrapper.cs │ ├── RedisConnection.cs │ ├── RedisDatabase.cs │ ├── RedisKey.cs │ ├── RedisKeyHash.cs │ ├── RedisKeyList.cs │ ├── RedisKeySet.cs │ ├── RedisKeySortedSet.cs │ ├── RedisKeyString.cs │ ├── RedisServer.cs │ ├── ScoreWrapper.cs │ ├── StringWrapper.cs │ └── TreeViewItem.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RedisExplorer.csproj ├── Resources │ ├── Entypo-license.txt │ ├── Entypo.ttf │ ├── Icons.xaml │ └── WindowsIcons-license.txt ├── packages.config └── redis.ico ├── RedisExplorerInstallerV4 ├── RedisExplorerInstaller.wixproj ├── RedisExplorerInstaller.wxs ├── icon.ico └── icon2.ico └── RedisExplorerSetup ├── RedisExplorerSetup.wixproj ├── RedisExplorerSetup.wxs └── icon.ico /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/README.md -------------------------------------------------------------------------------- /RedisExplorer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer.sln -------------------------------------------------------------------------------- /RedisExplorer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/App.config -------------------------------------------------------------------------------- /RedisExplorer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/App.xaml -------------------------------------------------------------------------------- /RedisExplorer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/App.xaml.cs -------------------------------------------------------------------------------- /RedisExplorer/AppBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/AppBootstrapper.cs -------------------------------------------------------------------------------- /RedisExplorer/AppView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/AppView.xaml -------------------------------------------------------------------------------- /RedisExplorer/AppView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/AppView.xaml.cs -------------------------------------------------------------------------------- /RedisExplorer/AppViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/AppViewModel.cs -------------------------------------------------------------------------------- /RedisExplorer/AppWindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/AppWindowManager.cs -------------------------------------------------------------------------------- /RedisExplorer/Assets/GitHub-Mark-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Assets/GitHub-Mark-32px.png -------------------------------------------------------------------------------- /RedisExplorer/Assets/redis-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Assets/redis-icon.png -------------------------------------------------------------------------------- /RedisExplorer/Assets/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Assets/screenshot1.png -------------------------------------------------------------------------------- /RedisExplorer/Assets/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Assets/screenshot2.png -------------------------------------------------------------------------------- /RedisExplorer/Controls/AddConnectionView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/AddConnectionView.xaml -------------------------------------------------------------------------------- /RedisExplorer/Controls/AddConnectionView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/AddConnectionView.xaml.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/AddConnectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/AddConnectionViewModel.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/BoolToCollapsedVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/BoolToCollapsedVisibilityConverter.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/DatabaseView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/DatabaseView.xaml -------------------------------------------------------------------------------- /RedisExplorer/Controls/DatabaseView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/DatabaseView.xaml.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/DatabaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/DatabaseViewModel.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/DefaultView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/DefaultView.xaml -------------------------------------------------------------------------------- /RedisExplorer/Controls/DefaultView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/DefaultView.xaml.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/DefaultViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/DefaultViewModel.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/GreyableImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/GreyableImage.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/KeyHashView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/KeyHashView.xaml -------------------------------------------------------------------------------- /RedisExplorer/Controls/KeyHashView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/KeyHashView.xaml.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/KeyHashViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/KeyHashViewModel.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/KeyListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/KeyListView.xaml -------------------------------------------------------------------------------- /RedisExplorer/Controls/KeyListView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/KeyListView.xaml.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/KeyListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/KeyListViewModel.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/KeySetView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/KeySetView.xaml -------------------------------------------------------------------------------- /RedisExplorer/Controls/KeySetView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/KeySetView.xaml.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/KeySetViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/KeySetViewModel.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/KeySortedSetView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/KeySortedSetView.xaml -------------------------------------------------------------------------------- /RedisExplorer/Controls/KeySortedSetView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/KeySortedSetView.xaml.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/KeySortedSetViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/KeySortedSetViewModel.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/KeyStringView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/KeyStringView.xaml -------------------------------------------------------------------------------- /RedisExplorer/Controls/KeyStringView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/KeyStringView.xaml.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/KeyStringViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/KeyStringViewModel.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/KeyView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/KeyView.xaml -------------------------------------------------------------------------------- /RedisExplorer/Controls/KeyView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/KeyView.xaml.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/KeyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/KeyViewModel.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/PreferencesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/PreferencesView.xaml -------------------------------------------------------------------------------- /RedisExplorer/Controls/PreferencesView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/PreferencesView.xaml.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/PreferencesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/PreferencesViewModel.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/ServerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/ServerView.xaml -------------------------------------------------------------------------------- /RedisExplorer/Controls/ServerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/ServerView.xaml.cs -------------------------------------------------------------------------------- /RedisExplorer/Controls/ServerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Controls/ServerViewModel.cs -------------------------------------------------------------------------------- /RedisExplorer/Interface/IApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Interface/IApp.cs -------------------------------------------------------------------------------- /RedisExplorer/Interface/IDisplayPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Interface/IDisplayPanel.cs -------------------------------------------------------------------------------- /RedisExplorer/Interface/IKeyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Interface/IKeyValue.cs -------------------------------------------------------------------------------- /RedisExplorer/Interface/ITabItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Interface/ITabItem.cs -------------------------------------------------------------------------------- /RedisExplorer/Interface/ITreeViewItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Interface/ITreeViewItemViewModel.cs -------------------------------------------------------------------------------- /RedisExplorer/Interface/IValueItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Interface/IValueItem.cs -------------------------------------------------------------------------------- /RedisExplorer/Messages/AddConnectionMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Messages/AddConnectionMessage.cs -------------------------------------------------------------------------------- /RedisExplorer/Messages/AddKeyMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Messages/AddKeyMessage.cs -------------------------------------------------------------------------------- /RedisExplorer/Messages/ConnectionFailedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Messages/ConnectionFailedMessage.cs -------------------------------------------------------------------------------- /RedisExplorer/Messages/DatabaseReloadMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Messages/DatabaseReloadMessage.cs -------------------------------------------------------------------------------- /RedisExplorer/Messages/DeleteConnectionMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Messages/DeleteConnectionMessage.cs -------------------------------------------------------------------------------- /RedisExplorer/Messages/FlushDbMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Messages/FlushDbMessage.cs -------------------------------------------------------------------------------- /RedisExplorer/Messages/InfoNotValidMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Messages/InfoNotValidMessage.cs -------------------------------------------------------------------------------- /RedisExplorer/Messages/KeyDeletedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Messages/KeyDeletedMessage.cs -------------------------------------------------------------------------------- /RedisExplorer/Messages/KeysDeletedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Messages/KeysDeletedMessage.cs -------------------------------------------------------------------------------- /RedisExplorer/Messages/RedisKeyAddedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Messages/RedisKeyAddedMessage.cs -------------------------------------------------------------------------------- /RedisExplorer/Messages/RedisKeyReloadMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Messages/RedisKeyReloadMessage.cs -------------------------------------------------------------------------------- /RedisExplorer/Messages/RedisKeyUpdatedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Messages/RedisKeyUpdatedMessage.cs -------------------------------------------------------------------------------- /RedisExplorer/Messages/ReloadKeyMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Messages/ReloadKeyMessage.cs -------------------------------------------------------------------------------- /RedisExplorer/Messages/ServerReloadMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Messages/ServerReloadMessage.cs -------------------------------------------------------------------------------- /RedisExplorer/Messages/TreeItemExpandedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Messages/TreeItemExpandedMessage.cs -------------------------------------------------------------------------------- /RedisExplorer/Messages/TreeItemSelectedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Messages/TreeItemSelectedMessage.cs -------------------------------------------------------------------------------- /RedisExplorer/Models/HashWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Models/HashWrapper.cs -------------------------------------------------------------------------------- /RedisExplorer/Models/Maps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Models/Maps.cs -------------------------------------------------------------------------------- /RedisExplorer/Models/NumberedStringWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Models/NumberedStringWrapper.cs -------------------------------------------------------------------------------- /RedisExplorer/Models/RedisConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Models/RedisConnection.cs -------------------------------------------------------------------------------- /RedisExplorer/Models/RedisDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Models/RedisDatabase.cs -------------------------------------------------------------------------------- /RedisExplorer/Models/RedisKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Models/RedisKey.cs -------------------------------------------------------------------------------- /RedisExplorer/Models/RedisKeyHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Models/RedisKeyHash.cs -------------------------------------------------------------------------------- /RedisExplorer/Models/RedisKeyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Models/RedisKeyList.cs -------------------------------------------------------------------------------- /RedisExplorer/Models/RedisKeySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Models/RedisKeySet.cs -------------------------------------------------------------------------------- /RedisExplorer/Models/RedisKeySortedSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Models/RedisKeySortedSet.cs -------------------------------------------------------------------------------- /RedisExplorer/Models/RedisKeyString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Models/RedisKeyString.cs -------------------------------------------------------------------------------- /RedisExplorer/Models/RedisServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Models/RedisServer.cs -------------------------------------------------------------------------------- /RedisExplorer/Models/ScoreWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Models/ScoreWrapper.cs -------------------------------------------------------------------------------- /RedisExplorer/Models/StringWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Models/StringWrapper.cs -------------------------------------------------------------------------------- /RedisExplorer/Models/TreeViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Models/TreeViewItem.cs -------------------------------------------------------------------------------- /RedisExplorer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RedisExplorer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RedisExplorer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Properties/Resources.resx -------------------------------------------------------------------------------- /RedisExplorer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /RedisExplorer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Properties/Settings.settings -------------------------------------------------------------------------------- /RedisExplorer/RedisExplorer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/RedisExplorer.csproj -------------------------------------------------------------------------------- /RedisExplorer/Resources/Entypo-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Resources/Entypo-license.txt -------------------------------------------------------------------------------- /RedisExplorer/Resources/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Resources/Entypo.ttf -------------------------------------------------------------------------------- /RedisExplorer/Resources/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Resources/Icons.xaml -------------------------------------------------------------------------------- /RedisExplorer/Resources/WindowsIcons-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/Resources/WindowsIcons-license.txt -------------------------------------------------------------------------------- /RedisExplorer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/packages.config -------------------------------------------------------------------------------- /RedisExplorer/redis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorer/redis.ico -------------------------------------------------------------------------------- /RedisExplorerInstallerV4/RedisExplorerInstaller.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorerInstallerV4/RedisExplorerInstaller.wixproj -------------------------------------------------------------------------------- /RedisExplorerInstallerV4/RedisExplorerInstaller.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorerInstallerV4/RedisExplorerInstaller.wxs -------------------------------------------------------------------------------- /RedisExplorerInstallerV4/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorerInstallerV4/icon.ico -------------------------------------------------------------------------------- /RedisExplorerInstallerV4/icon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorerInstallerV4/icon2.ico -------------------------------------------------------------------------------- /RedisExplorerSetup/RedisExplorerSetup.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorerSetup/RedisExplorerSetup.wixproj -------------------------------------------------------------------------------- /RedisExplorerSetup/RedisExplorerSetup.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorerSetup/RedisExplorerSetup.wxs -------------------------------------------------------------------------------- /RedisExplorerSetup/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegould/RedisExplorer/HEAD/RedisExplorerSetup/icon.ico --------------------------------------------------------------------------------