├── .gitattributes ├── .gitignore ├── GlobalAssemblyInfo.cs ├── Licence.txt ├── README.md ├── UpdateHelper ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Localisation.Designer.cs │ ├── Localisation.ar.resx │ ├── Localisation.cs.resx │ ├── Localisation.es.Designer.cs │ ├── Localisation.es.resx │ ├── Localisation.fr.Designer.cs │ ├── Localisation.fr.resx │ ├── Localisation.hu.Designer.cs │ ├── Localisation.hu.resx │ ├── Localisation.it.resx │ ├── Localisation.nl.resx │ ├── Localisation.pl.Designer.cs │ ├── Localisation.pl.resx │ ├── Localisation.pt.Designer.cs │ ├── Localisation.pt.resx │ ├── Localisation.resx │ ├── Localisation.ru.Designer.cs │ ├── Localisation.ru.resx │ ├── Localisation.sl.Designer.cs │ ├── Localisation.sl.resx │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── UpdateHelper.csproj └── download.ico ├── UpdateSystem.sln └── UpdateSystem ├── Properties ├── AssemblyInfo.cs ├── Localisation.Designer.cs ├── Localisation.ar.Designer.cs ├── Localisation.ar.resx ├── Localisation.cs.Designer.cs ├── Localisation.cs.resx ├── Localisation.de.Designer.cs ├── Localisation.de.resx ├── Localisation.es.Designer.cs ├── Localisation.es.resx ├── Localisation.fr.Designer.cs ├── Localisation.fr.resx ├── Localisation.hu.Designer.cs ├── Localisation.hu.resx ├── Localisation.it.Designer.cs ├── Localisation.it.resx ├── Localisation.nl.Designer.cs ├── Localisation.nl.resx ├── Localisation.pl.Designer.cs ├── Localisation.pl.resx ├── Localisation.pt-BR.resx ├── Localisation.pt.Designer.cs ├── Localisation.pt.resx ├── Localisation.resx ├── Localisation.ru.Designer.cs ├── Localisation.ru.resx ├── Localisation.sl.Designer.cs └── Localisation.sl.resx ├── UpdateReply.cs ├── UpdateSystem.cs ├── UpdateSystem.csproj └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /GlobalAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/GlobalAssemblyInfo.cs -------------------------------------------------------------------------------- /Licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/Licence.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/README.md -------------------------------------------------------------------------------- /UpdateHelper/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateHelper/Program.cs -------------------------------------------------------------------------------- /UpdateHelper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateHelper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UpdateHelper/Properties/Localisation.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateHelper/Properties/Localisation.Designer.cs -------------------------------------------------------------------------------- /UpdateHelper/Properties/Localisation.ar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateHelper/Properties/Localisation.ar.resx -------------------------------------------------------------------------------- /UpdateHelper/Properties/Localisation.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateHelper/Properties/Localisation.cs.resx -------------------------------------------------------------------------------- /UpdateHelper/Properties/Localisation.es.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UpdateHelper/Properties/Localisation.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateHelper/Properties/Localisation.es.resx -------------------------------------------------------------------------------- /UpdateHelper/Properties/Localisation.fr.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UpdateHelper/Properties/Localisation.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateHelper/Properties/Localisation.fr.resx -------------------------------------------------------------------------------- /UpdateHelper/Properties/Localisation.hu.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UpdateHelper/Properties/Localisation.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateHelper/Properties/Localisation.hu.resx -------------------------------------------------------------------------------- /UpdateHelper/Properties/Localisation.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateHelper/Properties/Localisation.it.resx -------------------------------------------------------------------------------- /UpdateHelper/Properties/Localisation.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateHelper/Properties/Localisation.nl.resx -------------------------------------------------------------------------------- /UpdateHelper/Properties/Localisation.pl.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UpdateHelper/Properties/Localisation.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateHelper/Properties/Localisation.pl.resx -------------------------------------------------------------------------------- /UpdateHelper/Properties/Localisation.pt.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UpdateHelper/Properties/Localisation.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateHelper/Properties/Localisation.pt.resx -------------------------------------------------------------------------------- /UpdateHelper/Properties/Localisation.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateHelper/Properties/Localisation.resx -------------------------------------------------------------------------------- /UpdateHelper/Properties/Localisation.ru.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UpdateHelper/Properties/Localisation.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateHelper/Properties/Localisation.ru.resx -------------------------------------------------------------------------------- /UpdateHelper/Properties/Localisation.sl.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UpdateHelper/Properties/Localisation.sl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateHelper/Properties/Localisation.sl.resx -------------------------------------------------------------------------------- /UpdateHelper/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateHelper/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /UpdateHelper/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateHelper/Properties/Resources.resx -------------------------------------------------------------------------------- /UpdateHelper/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateHelper/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /UpdateHelper/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateHelper/Properties/Settings.settings -------------------------------------------------------------------------------- /UpdateHelper/UpdateHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateHelper/UpdateHelper.csproj -------------------------------------------------------------------------------- /UpdateHelper/download.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateHelper/download.ico -------------------------------------------------------------------------------- /UpdateSystem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateSystem.sln -------------------------------------------------------------------------------- /UpdateSystem/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateSystem/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateSystem/Properties/Localisation.Designer.cs -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.ar.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.ar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateSystem/Properties/Localisation.ar.resx -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.cs.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateSystem/Properties/Localisation.cs.resx -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.de.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateSystem/Properties/Localisation.de.resx -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.es.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateSystem/Properties/Localisation.es.resx -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.fr.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateSystem/Properties/Localisation.fr.resx -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.hu.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateSystem/Properties/Localisation.hu.resx -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.it.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateSystem/Properties/Localisation.it.resx -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.nl.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateSystem/Properties/Localisation.nl.resx -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.pl.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateSystem/Properties/Localisation.pl.resx -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateSystem/Properties/Localisation.pt-BR.resx -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.pt.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateSystem/Properties/Localisation.pt.resx -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateSystem/Properties/Localisation.resx -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.ru.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateSystem/Properties/Localisation.ru.resx -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.sl.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UpdateSystem/Properties/Localisation.sl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateSystem/Properties/Localisation.sl.resx -------------------------------------------------------------------------------- /UpdateSystem/UpdateReply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateSystem/UpdateReply.cs -------------------------------------------------------------------------------- /UpdateSystem/UpdateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateSystem/UpdateSystem.cs -------------------------------------------------------------------------------- /UpdateSystem/UpdateSystem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateSystem/UpdateSystem.csproj -------------------------------------------------------------------------------- /UpdateSystem/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klocman/UpdateSystem/HEAD/UpdateSystem/packages.config --------------------------------------------------------------------------------