Chromium Updater upgraded, version 1.0.2.4 out now

A new version of my Chromium Updater tool is available now

Chromium Updater upgraded, version 1.0.2.4 out now

The Chromium Updater tool has been treated to some rather essential improvements. After Google suddenly and mysteriously decided to stop releasing the nightly Chromium Builds, my little application obviously failed to do its job. However, the builds have finally re-surfaced and Ive made the necessary changes to accommodate the changed URLs along with a few other improvements. Read on for more details, or simply download. Note that if you already have the application installed, it will notify you of the new update automatically. 

The new preference-screen

In terms of further changes I have now included the ability to override the version number the Chromium Updater thinks is installed. It seems Google changed the number-scheme so the updater tool might be confused and insist that the version installed is actually newer. This saves you the hassle of re-installing Chromium.

Previously, if you had Chromium Updater set to update without bothering you with dialog boxes kindly reminding you to close Chromium if it was still running, the check would be performed continuously, effectively eating up the entire CPU until you finally decide its time to close Chromium as illustrated in the following code.

While ChromeIsRunning() = True
            If My.Settings.SilentInstalls = 0 Then
                MessageBox.Show(My.Resources.chrome_running, My.Resources.chrome_running_title, MessageBoxButtons.OK, MessageBoxIcon.Warning)
            End If
        End While

By inserting a simple 1 second sleep, the problem goes away.

     'Check if chromium is running, if so, ask the user to close it.
        While ChromeIsRunning() = True
            'Wait a second before checking
            System.Threading.Thread.Sleep(1000)
            If My.Settings.SilentInstalls = 0 Then
                MessageBox.Show(My.Resources.chrome_running, My.Resources.chrome_running_title, MessageBoxButtons.OK, MessageBoxIcon.Warning)
            End If
        End While

So I am pretty sure your processor will thank me for this change.

At any rate, the tool is working again, so if you want it, its up for grabs! Enjoy.

Download Here

  • Badaboom

    Hello

    I ha installed Chromium. Not on c:Program FilesWhen i try to do the update, i have the message “please install chromium first” 

    • Untouchab1e

      Hi there!

      This would happen if you had the old version before upgrading. Easiest way to fix this is to take a backup of your install directory, then delete the original one, re-install Chromium and then copy in the backed up files. That way your settings are preserved and such.

      If you have Chromium synced with your Google account you might as well just skip baking up as everything will be synced to your new install anyway.
      Good luck!

  • Miga

    Ahaha, I stumbled across this on the first page of Google when searching for Chromium updater at work.

    I guess I just can’t stay away from Connect-UTB :P

    • Untouchab1e

      Haha awesome! Enjoy :)

« »