Ejemplo n.º 1
0
 void Awake()
 {
     cpm               = GameObject.FindObjectOfType <CheckPointManager>();
     platformCheck     = GameObject.FindObjectOfType <PlatformCheck>();
     child             = transform.GetChild(0).gameObject;
     rotatingParticles = GetComponentInChildren <ParticleSystem>();
 }
Ejemplo n.º 2
0
        private static void SelfCleanUp(string tempFolder)
        {
            // Delete the updater EXE and the temp folder
            Log("Removing updater and temp folder... {0}", tempFolder);
            try {
                if (PlatformCheck.CurrentlyRunningInWindows())
                {
                    var info = new ProcessStartInfo
                    {
                        UseShellExecute = false,
                        Arguments       = string.Format(@"/C ping 1.1.1.1 -n 1 -w 3000 > Nul & echo Y|del ""{0}\*.*"" & rmdir ""{0}""", tempFolder),
                        WindowStyle     = ProcessWindowStyle.Hidden,
                        CreateNoWindow  = true,
                        FileName        = "cmd.exe"
                    };

                    ExtendendStartProcess.Start(info);
                }
                else
                {
                    var info = new ProcessStartInfo
                    {
                        UseShellExecute = false,
                        Arguments       = string.Format(@"-c ""sleep 5s && rm -rf {0}""", tempFolder),
                        WindowStyle     = ProcessWindowStyle.Hidden,
                        CreateNoWindow  = true,
                        FileName        = "bash"
                    };

                    Process.Start(info);
                }
            } catch {
                /* ignore exceptions thrown while trying to clean up */
            }
        }
Ejemplo n.º 3
0
        /// <summary>
        /// Defaut ctor
        /// </summary>
        private UpdateManager()
        {
            IsWorking        = false;
            State            = UpdateProcessState.NotChecked;
            UpdatesToApply   = new List <IUpdateTask>();
            ApplicationPath  = Process.GetCurrentProcess().MainModule.FileName;
            UpdateFeedReader = new NauXmlFeedReader();
            Logger           = new Logger();

            if (PlatformCheck.CurrentlyRunningInWindows())
            {
                Config = new NauConfigurations
                {
                    TempFolder           = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString()),
                    UpdateProcessName    = "NAppUpdateProcess",
                    UpdateExecutableName = "foo.exe",         // Naming it updater.exe seem to trigger the UAC, and we don't want that
                };
            }
            else
            {
                Config = new NauConfigurations
                {
                    TempFolder           = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString()),
                    UpdateProcessName    = "NAppUpdateProcess",
                    UpdateExecutableName = "foo", // Naming it updater.exe seem to trigger the UAC, and we don't want that
                };
            }

            // Need to do this manually here because the BackupFolder property is protected using the static instance, which we are
            // in the middle of creating
            string backupPath = Path.Combine(Path.GetDirectoryName(ApplicationPath) ?? string.Empty, "Backup" + DateTime.Now.Ticks);

            backupPath           = backupPath.TrimEnd(Path.AltDirectorySeparatorChar, Path.DirectorySeparatorChar);
            Config._backupFolder = Path.IsPathRooted(backupPath) ? backupPath : Path.Combine(Config.TempFolder, backupPath);
        }