diff --git a/svnsync/Libraries/Svn.cs b/svnsync/Libraries/Svn.cs index 494510a..d9055bc 100644 --- a/svnsync/Libraries/Svn.cs +++ b/svnsync/Libraries/Svn.cs @@ -84,6 +84,7 @@ namespace svnsync.Libraries { internal void SetArgCheckIn(String message) { String arg = "ci -m \"" + message + "\""; + //System.Threading.Thread.Sleep(100000); this.Runner(arg); } diff --git a/svnsync/Program.cs b/svnsync/Program.cs index c8616f7..65bff96 100644 --- a/svnsync/Program.cs +++ b/svnsync/Program.cs @@ -65,14 +65,16 @@ namespace svnsync } private static void Update() { - Updater.Instance.SetPath("https://svn.blubbfish.net:18082/", new String[] { typeof(Program).Assembly.GetName().Version.ToString(), typeof(Updater).Assembly.GetName().Version.ToString() }); + Updater.Instance.SetUpdateInfo("https://svn.blubbfish.net:18082/svn/vs/svnsync/svnsync/bin/Release/", new Updater.VersionInfo[] { + new Updater.VersionInfo(typeof(Program)), new Updater.VersionInfo(typeof(Updater)) + }); Updater.Instance.UpdateResult += HasUpdate; Updater.Instance.Check(); } private static void HasUpdate(Object sender, Updater.UpdaterEventArgs e) { if(e.HasUpdates) { - ((Updater)sender).Update("SvnSync.exe", "https://"); + ((Updater)sender).Update(); } } diff --git a/svnsync/Properties/AssemblyInfo.cs b/svnsync/Properties/AssemblyInfo.cs index 2a81569..e4baa4e 100644 --- a/svnsync/Properties/AssemblyInfo.cs +++ b/svnsync/Properties/AssemblyInfo.cs @@ -11,7 +11,7 @@ using System.Resources; [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("BlubbFish")] [assembly: AssemblyProduct("SvnSync")] -[assembly: AssemblyCopyright("Copyright © 2012 - 17.04.2017")] +[assembly: AssemblyCopyright("Copyright © 2012 - 24.04.2017")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -33,6 +33,6 @@ using System.Resources; // Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern // übernehmen, indem Sie "*" eingeben: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.6.0")] -[assembly: AssemblyFileVersion("1.0.6.0")] +[assembly: AssemblyVersion("1.0.6.1")] +[assembly: AssemblyFileVersion("1.0.6.1")] [assembly: NeutralResourcesLanguageAttribute("de-DE")] diff --git a/svnsync/bin/Release/SvnSync.exe b/svnsync/bin/Release/SvnSync.exe index 6b6c832..931d23f 100644 Binary files a/svnsync/bin/Release/SvnSync.exe and b/svnsync/bin/Release/SvnSync.exe differ