├── .gitignore ├── CHANGES.md ├── Design ├── Icons │ ├── app.ico │ ├── tray_disabled.ico │ ├── tray_good.ico │ ├── tray_normal.ico │ └── tray_partial.ico └── Images │ ├── 128x128 │ └── App04.png │ ├── 16x16 │ └── MiscFolder_32x32.png │ ├── 32x32 │ ├── ActionAccept_32x32.png │ ├── ActionCancel_32x32.png │ ├── ActionDriveAdd_32x32.png │ ├── ActionDriveEdit_32x32.png │ ├── ActionDriveRemove_32x32.png │ ├── TabPageAbout_32x32.png │ ├── TabPageConfiguration_32x32.png │ ├── TabPageDriveGo_32x32.png │ ├── TabPageDriveInfo_32x32.png │ └── descript.ion │ └── other │ └── patreon_logo.png ├── KeepAliveHD.sln ├── KeepAliveHD ├── BaseClasses │ ├── ApplicationConfiguration.cs │ ├── ComboBoxItem.cs │ ├── ComboBoxTools.cs │ ├── CommandLineParser.cs │ ├── Helpers.cs │ ├── LogManager.cs │ └── NativeMethods.cs ├── Database │ ├── DatabaseManager.cs │ ├── DriveInfo.cs │ └── VolumeNameInfo.cs ├── Forms │ ├── DriveSettings.Designer.cs │ ├── DriveSettings.cs │ ├── DriveSettings.resx │ ├── DriveSettingsMulti.Designer.cs │ ├── DriveSettingsMulti.cs │ ├── DriveSettingsMulti.resx │ ├── Main.Designer.cs │ ├── Main.cs │ ├── Main.resx │ ├── VolumeNames.Designer.cs │ ├── VolumeNames.cs │ └── VolumeNames.resx ├── KeepAliveHD.csproj ├── KeepAliveHD.csproj.user ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── ActionAccept_16x16.png │ ├── ActionAccept_32x32.png │ ├── ActionCancel_16x16.png │ ├── ActionCancel_32x32.png │ ├── ActionDriveAdd_32x32.png │ ├── ActionDriveEdit_32x32.png │ ├── ActionDriveRemove_32x32.png │ ├── MiscFolder_32x32.png │ ├── tray_disabled.ico │ ├── tray_good.ico │ ├── tray_normal.ico │ └── tray_partial.ico ├── app.config ├── app.ico ├── bin │ └── Debug │ │ ├── KeepAliveHD.exe.config │ │ ├── KeepAliveHD.vshost.exe │ │ └── KeepAliveHD.vshost.exe.config ├── obj │ └── Debug │ │ └── KeepAliveHD.csproj.FileListAbsolute.txt └── settings.xml ├── LICENCE.txt ├── README.md └── Setups └── keepalivehd_release_setup_script.iss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/CHANGES.md -------------------------------------------------------------------------------- /Design/Icons/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/Design/Icons/app.ico -------------------------------------------------------------------------------- /Design/Icons/tray_disabled.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/Design/Icons/tray_disabled.ico -------------------------------------------------------------------------------- /Design/Icons/tray_good.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/Design/Icons/tray_good.ico -------------------------------------------------------------------------------- /Design/Icons/tray_normal.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/Design/Icons/tray_normal.ico -------------------------------------------------------------------------------- /Design/Icons/tray_partial.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/Design/Icons/tray_partial.ico -------------------------------------------------------------------------------- /Design/Images/128x128/App04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/Design/Images/128x128/App04.png -------------------------------------------------------------------------------- /Design/Images/16x16/MiscFolder_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/Design/Images/16x16/MiscFolder_32x32.png -------------------------------------------------------------------------------- /Design/Images/32x32/ActionAccept_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/Design/Images/32x32/ActionAccept_32x32.png -------------------------------------------------------------------------------- /Design/Images/32x32/ActionCancel_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/Design/Images/32x32/ActionCancel_32x32.png -------------------------------------------------------------------------------- /Design/Images/32x32/ActionDriveAdd_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/Design/Images/32x32/ActionDriveAdd_32x32.png -------------------------------------------------------------------------------- /Design/Images/32x32/ActionDriveEdit_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/Design/Images/32x32/ActionDriveEdit_32x32.png -------------------------------------------------------------------------------- /Design/Images/32x32/ActionDriveRemove_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/Design/Images/32x32/ActionDriveRemove_32x32.png -------------------------------------------------------------------------------- /Design/Images/32x32/TabPageAbout_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/Design/Images/32x32/TabPageAbout_32x32.png -------------------------------------------------------------------------------- /Design/Images/32x32/TabPageConfiguration_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/Design/Images/32x32/TabPageConfiguration_32x32.png -------------------------------------------------------------------------------- /Design/Images/32x32/TabPageDriveGo_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/Design/Images/32x32/TabPageDriveGo_32x32.png -------------------------------------------------------------------------------- /Design/Images/32x32/TabPageDriveInfo_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/Design/Images/32x32/TabPageDriveInfo_32x32.png -------------------------------------------------------------------------------- /Design/Images/32x32/descript.ion: -------------------------------------------------------------------------------- 1 | TabPageConfiguration_32x32.png drive 2 | -------------------------------------------------------------------------------- /Design/Images/other/patreon_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/Design/Images/other/patreon_logo.png -------------------------------------------------------------------------------- /KeepAliveHD.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD.sln -------------------------------------------------------------------------------- /KeepAliveHD/BaseClasses/ApplicationConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/BaseClasses/ApplicationConfiguration.cs -------------------------------------------------------------------------------- /KeepAliveHD/BaseClasses/ComboBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/BaseClasses/ComboBoxItem.cs -------------------------------------------------------------------------------- /KeepAliveHD/BaseClasses/ComboBoxTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/BaseClasses/ComboBoxTools.cs -------------------------------------------------------------------------------- /KeepAliveHD/BaseClasses/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/BaseClasses/CommandLineParser.cs -------------------------------------------------------------------------------- /KeepAliveHD/BaseClasses/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/BaseClasses/Helpers.cs -------------------------------------------------------------------------------- /KeepAliveHD/BaseClasses/LogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/BaseClasses/LogManager.cs -------------------------------------------------------------------------------- /KeepAliveHD/BaseClasses/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/BaseClasses/NativeMethods.cs -------------------------------------------------------------------------------- /KeepAliveHD/Database/DatabaseManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Database/DatabaseManager.cs -------------------------------------------------------------------------------- /KeepAliveHD/Database/DriveInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Database/DriveInfo.cs -------------------------------------------------------------------------------- /KeepAliveHD/Database/VolumeNameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Database/VolumeNameInfo.cs -------------------------------------------------------------------------------- /KeepAliveHD/Forms/DriveSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Forms/DriveSettings.Designer.cs -------------------------------------------------------------------------------- /KeepAliveHD/Forms/DriveSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Forms/DriveSettings.cs -------------------------------------------------------------------------------- /KeepAliveHD/Forms/DriveSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Forms/DriveSettings.resx -------------------------------------------------------------------------------- /KeepAliveHD/Forms/DriveSettingsMulti.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Forms/DriveSettingsMulti.Designer.cs -------------------------------------------------------------------------------- /KeepAliveHD/Forms/DriveSettingsMulti.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Forms/DriveSettingsMulti.cs -------------------------------------------------------------------------------- /KeepAliveHD/Forms/DriveSettingsMulti.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Forms/DriveSettingsMulti.resx -------------------------------------------------------------------------------- /KeepAliveHD/Forms/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Forms/Main.Designer.cs -------------------------------------------------------------------------------- /KeepAliveHD/Forms/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Forms/Main.cs -------------------------------------------------------------------------------- /KeepAliveHD/Forms/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Forms/Main.resx -------------------------------------------------------------------------------- /KeepAliveHD/Forms/VolumeNames.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Forms/VolumeNames.Designer.cs -------------------------------------------------------------------------------- /KeepAliveHD/Forms/VolumeNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Forms/VolumeNames.cs -------------------------------------------------------------------------------- /KeepAliveHD/Forms/VolumeNames.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Forms/VolumeNames.resx -------------------------------------------------------------------------------- /KeepAliveHD/KeepAliveHD.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/KeepAliveHD.csproj -------------------------------------------------------------------------------- /KeepAliveHD/KeepAliveHD.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/KeepAliveHD.csproj.user -------------------------------------------------------------------------------- /KeepAliveHD/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Program.cs -------------------------------------------------------------------------------- /KeepAliveHD/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /KeepAliveHD/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /KeepAliveHD/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Properties/Resources.resx -------------------------------------------------------------------------------- /KeepAliveHD/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /KeepAliveHD/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Properties/Settings.settings -------------------------------------------------------------------------------- /KeepAliveHD/Resources/ActionAccept_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Resources/ActionAccept_16x16.png -------------------------------------------------------------------------------- /KeepAliveHD/Resources/ActionAccept_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Resources/ActionAccept_32x32.png -------------------------------------------------------------------------------- /KeepAliveHD/Resources/ActionCancel_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Resources/ActionCancel_16x16.png -------------------------------------------------------------------------------- /KeepAliveHD/Resources/ActionCancel_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Resources/ActionCancel_32x32.png -------------------------------------------------------------------------------- /KeepAliveHD/Resources/ActionDriveAdd_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Resources/ActionDriveAdd_32x32.png -------------------------------------------------------------------------------- /KeepAliveHD/Resources/ActionDriveEdit_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Resources/ActionDriveEdit_32x32.png -------------------------------------------------------------------------------- /KeepAliveHD/Resources/ActionDriveRemove_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Resources/ActionDriveRemove_32x32.png -------------------------------------------------------------------------------- /KeepAliveHD/Resources/MiscFolder_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Resources/MiscFolder_32x32.png -------------------------------------------------------------------------------- /KeepAliveHD/Resources/tray_disabled.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Resources/tray_disabled.ico -------------------------------------------------------------------------------- /KeepAliveHD/Resources/tray_good.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Resources/tray_good.ico -------------------------------------------------------------------------------- /KeepAliveHD/Resources/tray_normal.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Resources/tray_normal.ico -------------------------------------------------------------------------------- /KeepAliveHD/Resources/tray_partial.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/Resources/tray_partial.ico -------------------------------------------------------------------------------- /KeepAliveHD/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/app.config -------------------------------------------------------------------------------- /KeepAliveHD/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/app.ico -------------------------------------------------------------------------------- /KeepAliveHD/bin/Debug/KeepAliveHD.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/bin/Debug/KeepAliveHD.exe.config -------------------------------------------------------------------------------- /KeepAliveHD/bin/Debug/KeepAliveHD.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/bin/Debug/KeepAliveHD.vshost.exe -------------------------------------------------------------------------------- /KeepAliveHD/bin/Debug/KeepAliveHD.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/bin/Debug/KeepAliveHD.vshost.exe.config -------------------------------------------------------------------------------- /KeepAliveHD/obj/Debug/KeepAliveHD.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/obj/Debug/KeepAliveHD.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /KeepAliveHD/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/KeepAliveHD/settings.xml -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/README.md -------------------------------------------------------------------------------- /Setups/keepalivehd_release_setup_script.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsrki/KeepAliveHD/HEAD/Setups/keepalivehd_release_setup_script.iss --------------------------------------------------------------------------------