├── .gitignore ├── README.md ├── Rebuild.bat ├── ReleaseNotes.txt ├── SCM_Notifier.sln ├── SCM_Notifier ├── AboutForm.cs ├── AboutForm.resx ├── AssemblyInfo.cs ├── CheckableGroupBox.cs ├── CheckableGroupBox.resx ├── Config.cs ├── DragAndDropListView.cs ├── DragAndDropListView.resx ├── ErrorLogForm.cs ├── ErrorLogForm.resx ├── FolderSelectDialog.cs ├── GitRepository.cs ├── Icons │ ├── Errors.ico │ ├── Git_FolderStatus_Error.png │ ├── Git_FolderStatus_NeedUpdate.png │ ├── Git_FolderStatus_NeedUpdate_Modified.png │ ├── Git_FolderStatus_Unknown.png │ ├── Git_FolderStatus_UpToDate.png │ ├── Git_FolderStatus_UpToDate_Modified.png │ ├── Svn_FolderStatus_Error.png │ ├── Svn_FolderStatus_NeedUpdate.png │ ├── Svn_FolderStatus_NeedUpdate_Modified.png │ ├── Svn_FolderStatus_Unknown.png │ ├── Svn_FolderStatus_UpToDate.png │ ├── Svn_FolderStatus_UpToDate_Modified.png │ ├── Toolbar_AddFile.png │ ├── Toolbar_AddFolder.png │ ├── Toolbar_Commit.png │ ├── Toolbar_OpenFolder.png │ ├── Toolbar_Remove.png │ ├── Toolbar_ShowChangeLogs.png │ ├── Toolbar_ShowLogs.png │ ├── Toolbar_Update.png │ ├── TrayIcon_Error.ico │ ├── TrayIcon_NeedUpdate.ico │ ├── TrayIcon_Unknown.ico │ └── TrayIcon_UpToDate.ico ├── IniFile.cs ├── License.txt ├── MainForm.Designer.cs ├── MainForm.Tools.cs ├── MainForm.cs ├── MainForm.resx ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Reflector.cs ├── Resources │ └── pictureBox1.Image.png ├── SCM_Notifier.csproj ├── ScmRepository.cs ├── SettingsForm.cs ├── SettingsForm.resx ├── SettingsProjectForm.cs ├── SettingsProjectForm.resx ├── SvnRepository.cs ├── SvnXml.cs ├── UpdateLogsForm.cs ├── UpdateLogsForm.resx ├── bin │ └── SCM_Notifier.exe └── svn_notifier_logo.png ├── Upgrade.bat ├── docs ├── badConfig.png └── settings.png ├── resources └── pictureBox1.Image.psd └── www ├── LastStableVersion.txt ├── googleee25aecad1c7986e.html ├── img ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg └── 5.jpg └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/README.md -------------------------------------------------------------------------------- /Rebuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/Rebuild.bat -------------------------------------------------------------------------------- /ReleaseNotes.txt: -------------------------------------------------------------------------------- 1 | Version 0.0.0 - 07/Nov/2011 2 | 3 | * Project forked from svn notifier -------------------------------------------------------------------------------- /SCM_Notifier.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier.sln -------------------------------------------------------------------------------- /SCM_Notifier/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/AboutForm.cs -------------------------------------------------------------------------------- /SCM_Notifier/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/AboutForm.resx -------------------------------------------------------------------------------- /SCM_Notifier/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/AssemblyInfo.cs -------------------------------------------------------------------------------- /SCM_Notifier/CheckableGroupBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/CheckableGroupBox.cs -------------------------------------------------------------------------------- /SCM_Notifier/CheckableGroupBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/CheckableGroupBox.resx -------------------------------------------------------------------------------- /SCM_Notifier/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Config.cs -------------------------------------------------------------------------------- /SCM_Notifier/DragAndDropListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/DragAndDropListView.cs -------------------------------------------------------------------------------- /SCM_Notifier/DragAndDropListView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/DragAndDropListView.resx -------------------------------------------------------------------------------- /SCM_Notifier/ErrorLogForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/ErrorLogForm.cs -------------------------------------------------------------------------------- /SCM_Notifier/ErrorLogForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/ErrorLogForm.resx -------------------------------------------------------------------------------- /SCM_Notifier/FolderSelectDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/FolderSelectDialog.cs -------------------------------------------------------------------------------- /SCM_Notifier/GitRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/GitRepository.cs -------------------------------------------------------------------------------- /SCM_Notifier/Icons/Errors.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/Errors.ico -------------------------------------------------------------------------------- /SCM_Notifier/Icons/Git_FolderStatus_Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/Git_FolderStatus_Error.png -------------------------------------------------------------------------------- /SCM_Notifier/Icons/Git_FolderStatus_NeedUpdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/Git_FolderStatus_NeedUpdate.png -------------------------------------------------------------------------------- /SCM_Notifier/Icons/Git_FolderStatus_NeedUpdate_Modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/Git_FolderStatus_NeedUpdate_Modified.png -------------------------------------------------------------------------------- /SCM_Notifier/Icons/Git_FolderStatus_Unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/Git_FolderStatus_Unknown.png -------------------------------------------------------------------------------- /SCM_Notifier/Icons/Git_FolderStatus_UpToDate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/Git_FolderStatus_UpToDate.png -------------------------------------------------------------------------------- /SCM_Notifier/Icons/Git_FolderStatus_UpToDate_Modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/Git_FolderStatus_UpToDate_Modified.png -------------------------------------------------------------------------------- /SCM_Notifier/Icons/Svn_FolderStatus_Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/Svn_FolderStatus_Error.png -------------------------------------------------------------------------------- /SCM_Notifier/Icons/Svn_FolderStatus_NeedUpdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/Svn_FolderStatus_NeedUpdate.png -------------------------------------------------------------------------------- /SCM_Notifier/Icons/Svn_FolderStatus_NeedUpdate_Modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/Svn_FolderStatus_NeedUpdate_Modified.png -------------------------------------------------------------------------------- /SCM_Notifier/Icons/Svn_FolderStatus_Unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/Svn_FolderStatus_Unknown.png -------------------------------------------------------------------------------- /SCM_Notifier/Icons/Svn_FolderStatus_UpToDate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/Svn_FolderStatus_UpToDate.png -------------------------------------------------------------------------------- /SCM_Notifier/Icons/Svn_FolderStatus_UpToDate_Modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/Svn_FolderStatus_UpToDate_Modified.png -------------------------------------------------------------------------------- /SCM_Notifier/Icons/Toolbar_AddFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/Toolbar_AddFile.png -------------------------------------------------------------------------------- /SCM_Notifier/Icons/Toolbar_AddFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/Toolbar_AddFolder.png -------------------------------------------------------------------------------- /SCM_Notifier/Icons/Toolbar_Commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/Toolbar_Commit.png -------------------------------------------------------------------------------- /SCM_Notifier/Icons/Toolbar_OpenFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/Toolbar_OpenFolder.png -------------------------------------------------------------------------------- /SCM_Notifier/Icons/Toolbar_Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/Toolbar_Remove.png -------------------------------------------------------------------------------- /SCM_Notifier/Icons/Toolbar_ShowChangeLogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/Toolbar_ShowChangeLogs.png -------------------------------------------------------------------------------- /SCM_Notifier/Icons/Toolbar_ShowLogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/Toolbar_ShowLogs.png -------------------------------------------------------------------------------- /SCM_Notifier/Icons/Toolbar_Update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/Toolbar_Update.png -------------------------------------------------------------------------------- /SCM_Notifier/Icons/TrayIcon_Error.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/TrayIcon_Error.ico -------------------------------------------------------------------------------- /SCM_Notifier/Icons/TrayIcon_NeedUpdate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/TrayIcon_NeedUpdate.ico -------------------------------------------------------------------------------- /SCM_Notifier/Icons/TrayIcon_Unknown.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/TrayIcon_Unknown.ico -------------------------------------------------------------------------------- /SCM_Notifier/Icons/TrayIcon_UpToDate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Icons/TrayIcon_UpToDate.ico -------------------------------------------------------------------------------- /SCM_Notifier/IniFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/IniFile.cs -------------------------------------------------------------------------------- /SCM_Notifier/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/License.txt -------------------------------------------------------------------------------- /SCM_Notifier/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/MainForm.Designer.cs -------------------------------------------------------------------------------- /SCM_Notifier/MainForm.Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/MainForm.Tools.cs -------------------------------------------------------------------------------- /SCM_Notifier/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/MainForm.cs -------------------------------------------------------------------------------- /SCM_Notifier/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/MainForm.resx -------------------------------------------------------------------------------- /SCM_Notifier/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SCM_Notifier/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Properties/Resources.resx -------------------------------------------------------------------------------- /SCM_Notifier/Reflector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Reflector.cs -------------------------------------------------------------------------------- /SCM_Notifier/Resources/pictureBox1.Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/Resources/pictureBox1.Image.png -------------------------------------------------------------------------------- /SCM_Notifier/SCM_Notifier.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/SCM_Notifier.csproj -------------------------------------------------------------------------------- /SCM_Notifier/ScmRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/ScmRepository.cs -------------------------------------------------------------------------------- /SCM_Notifier/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/SettingsForm.cs -------------------------------------------------------------------------------- /SCM_Notifier/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/SettingsForm.resx -------------------------------------------------------------------------------- /SCM_Notifier/SettingsProjectForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/SettingsProjectForm.cs -------------------------------------------------------------------------------- /SCM_Notifier/SettingsProjectForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/SettingsProjectForm.resx -------------------------------------------------------------------------------- /SCM_Notifier/SvnRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/SvnRepository.cs -------------------------------------------------------------------------------- /SCM_Notifier/SvnXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/SvnXml.cs -------------------------------------------------------------------------------- /SCM_Notifier/UpdateLogsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/UpdateLogsForm.cs -------------------------------------------------------------------------------- /SCM_Notifier/UpdateLogsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/UpdateLogsForm.resx -------------------------------------------------------------------------------- /SCM_Notifier/bin/SCM_Notifier.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/bin/SCM_Notifier.exe -------------------------------------------------------------------------------- /SCM_Notifier/svn_notifier_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/SCM_Notifier/svn_notifier_logo.png -------------------------------------------------------------------------------- /Upgrade.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/Upgrade.bat -------------------------------------------------------------------------------- /docs/badConfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/docs/badConfig.png -------------------------------------------------------------------------------- /docs/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/docs/settings.png -------------------------------------------------------------------------------- /resources/pictureBox1.Image.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/resources/pictureBox1.Image.psd -------------------------------------------------------------------------------- /www/LastStableVersion.txt: -------------------------------------------------------------------------------- 1 | 12.08.16 -------------------------------------------------------------------------------- /www/googleee25aecad1c7986e.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/www/img/1.jpg -------------------------------------------------------------------------------- /www/img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/www/img/2.jpg -------------------------------------------------------------------------------- /www/img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/www/img/3.jpg -------------------------------------------------------------------------------- /www/img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/www/img/4.jpg -------------------------------------------------------------------------------- /www/img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/www/img/5.jpg -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohrAhr/scm-notifier/HEAD/www/index.html --------------------------------------------------------------------------------