Exemplo n.º 1
0
 private void checkForUpdates()
 {
     WebClient webClient = new WebClient();
     JObject latestver = JObject.Parse(webClient.DownloadString("http://theunknownkiller.tk/ets2mplauncher/api/latest.php"));
     Console.WriteLine(latestver);
     Console.WriteLine(Properties.Settings.Default.LauncherVersion);
     if (!Properties.Settings.Default.LauncherVersion.Equals((string)latestver["Version"]))
     {
         DialogResult dialogResult = MessageBox.Show("Current version is: " + Properties.Settings.Default.LauncherVersion + "\nLatest version is: " + (string)latestver["Version"] + "\n\nThere is an update available!\nDo you want to update now?", "ETS2MP Launcher", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
         if (dialogResult == DialogResult.Yes)
         {
             Updater updater = new Updater();
             updater.Show();
             updater.Update((string)latestver["Location"]);
         }
         else
         {
             Main main = new Main();
             main.Show();
         }
     }
     else
     {
         Main main = new Main();
         main.Show();
     }
 }
Exemplo n.º 2
0
        public MyContext()
        {
            Application.Idle += new EventHandler(Application_Idle);
            AppDomain.CurrentDomain.AssemblyResolve += (sender, args) =>
            {
                string resourceName = new AssemblyName(args.Name).Name + ".dll";
                string resource = Array.Find(this.GetType().Assembly.GetManifestResourceNames(), element => element.EndsWith(resourceName));

                using (var stream = Assembly.GetExecutingAssembly().GetManifestResourceStream(resource))
                {
                    Byte[] assemblyData = new Byte[stream.Length];
                    stream.Read(assemblyData, 0, assemblyData.Length);
                    return Assembly.Load(assemblyData);
                }
            };

            //Check if file from update exsist
            if (System.IO.File.Exists(System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName + ".old"))
            {
                System.IO.File.Delete(System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName + ".old");
            }

            if (System.IO.File.Exists(System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName + ".new"))
            {
                System.IO.File.Delete(System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName + ".new");
            }

            //Autoupdate if enabled
            if (Properties.Settings.Default.aplauncher == true)
            {
                checkForUpdates();
            }
            else
            {
                Main main = new Main();
                main.Show();
            }
        }