├── .gitattributes ├── .gitignore ├── CyBackup.dpr ├── CyBackup.dproj ├── CyBackup.res ├── CyBackup_Icon.ico ├── LICENSE ├── README.md ├── Win32 └── Release │ ├── JVCLVer.dcu │ ├── JvAppStorage.dcu │ ├── JvComponentBase.dcu │ ├── JvConsts.dcu │ ├── JvDataSourceIntf.dcu │ ├── JvExControls.dcu │ ├── JvExStdCtrls.dcu │ ├── JvHtControls.dcu │ ├── JvJCLUtils.dcu │ ├── JvJVCLUtils.dcu │ ├── JvPropertyStore.dcu │ ├── JvPropertyStoreEditorIntf.dcu │ ├── JvResources.dcu │ ├── JvStrings.dcu │ ├── JvThemes.dcu │ ├── JvTranslateString.dcu │ ├── JvTypes.dcu │ ├── K.HTTP.dcu │ ├── K.Strings.dcu │ ├── K.Thread.dcu │ ├── home.dcu │ └── main.dcu ├── home.dfm ├── home.pas ├── home.vlb ├── main.dfm └── main.pas /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/.gitignore -------------------------------------------------------------------------------- /CyBackup.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/CyBackup.dpr -------------------------------------------------------------------------------- /CyBackup.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/CyBackup.dproj -------------------------------------------------------------------------------- /CyBackup.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/CyBackup.res -------------------------------------------------------------------------------- /CyBackup_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/CyBackup_Icon.ico -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/README.md -------------------------------------------------------------------------------- /Win32/Release/JVCLVer.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/JVCLVer.dcu -------------------------------------------------------------------------------- /Win32/Release/JvAppStorage.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/JvAppStorage.dcu -------------------------------------------------------------------------------- /Win32/Release/JvComponentBase.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/JvComponentBase.dcu -------------------------------------------------------------------------------- /Win32/Release/JvConsts.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/JvConsts.dcu -------------------------------------------------------------------------------- /Win32/Release/JvDataSourceIntf.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/JvDataSourceIntf.dcu -------------------------------------------------------------------------------- /Win32/Release/JvExControls.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/JvExControls.dcu -------------------------------------------------------------------------------- /Win32/Release/JvExStdCtrls.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/JvExStdCtrls.dcu -------------------------------------------------------------------------------- /Win32/Release/JvHtControls.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/JvHtControls.dcu -------------------------------------------------------------------------------- /Win32/Release/JvJCLUtils.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/JvJCLUtils.dcu -------------------------------------------------------------------------------- /Win32/Release/JvJVCLUtils.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/JvJVCLUtils.dcu -------------------------------------------------------------------------------- /Win32/Release/JvPropertyStore.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/JvPropertyStore.dcu -------------------------------------------------------------------------------- /Win32/Release/JvPropertyStoreEditorIntf.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/JvPropertyStoreEditorIntf.dcu -------------------------------------------------------------------------------- /Win32/Release/JvResources.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/JvResources.dcu -------------------------------------------------------------------------------- /Win32/Release/JvStrings.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/JvStrings.dcu -------------------------------------------------------------------------------- /Win32/Release/JvThemes.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/JvThemes.dcu -------------------------------------------------------------------------------- /Win32/Release/JvTranslateString.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/JvTranslateString.dcu -------------------------------------------------------------------------------- /Win32/Release/JvTypes.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/JvTypes.dcu -------------------------------------------------------------------------------- /Win32/Release/K.HTTP.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/K.HTTP.dcu -------------------------------------------------------------------------------- /Win32/Release/K.Strings.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/K.Strings.dcu -------------------------------------------------------------------------------- /Win32/Release/K.Thread.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/K.Thread.dcu -------------------------------------------------------------------------------- /Win32/Release/home.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/home.dcu -------------------------------------------------------------------------------- /Win32/Release/main.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/Win32/Release/main.dcu -------------------------------------------------------------------------------- /home.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/home.dfm -------------------------------------------------------------------------------- /home.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/home.pas -------------------------------------------------------------------------------- /home.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/home.vlb -------------------------------------------------------------------------------- /main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/main.dfm -------------------------------------------------------------------------------- /main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newkilho/CyBackup/HEAD/main.pas --------------------------------------------------------------------------------