You could write a script to download and unzip the latest version...
then run that when you want to update.
such as:
:get-chromed.bat
: This script assumes you have wget (http://www.interlog.com/~tcharron/
wgetwin-1_5_3_1-binary.zip) and unzip (http://gnuwin32.sourceforge.net/
downlinks/unzip-bin-zip.php) in PATH
@echo off

set prefix=c:\get-chromed
if exist %1 set prefix=%1

:get latest version #
wget -qq http://build.chromium.org/buildbot/snapshots/chromium-rel-xp/LATEST

:set the version number
set /p latest=<LATEST

:get the build
echo Getting Latest Chromium Build (%latest%) ...

wget -qq 
http://build.chromium.org/buildbot/snapshots/chromium-rel-xp/%latest%/chrome-win32.zip

:unzip
echo Extracting Files to %prefix%
unzip -oq -d %prefix% chrome-win32.zip

:cleanup
echo Removing Temp Files...
del chrome-win32.zip
del LATEST

:done
echo Done :)
: end get-chromed.bat

Enjoy,
Jim Ford


On Sep 16, 4:50 pm, Jhon <[EMAIL PROTECTED]> wrote:
> Thanks for reply
>
> Thn thats means if i wants to use  build from build.chromium.org i
> have to download all the time for newer version.
>
> On Sep 16, 9:42 pm, "Nicolas Sylvain" <[EMAIL PROTECTED]> wrote:
>
> > Updates are only available for google chrome builds. If you download a
> > build from build.chromium.org, this is chromium, and this feature
> > won't work.
>
> > Nicolas
>
> > On 9/16/08, Jhon <[EMAIL PROTECTED]> wrote:
>
> > >  Why this error:update server not Available (Error:1)
> > >  Im using Chromium Latest build 0.2.153.0
>
> > >  I downloaded Zip file not mini installer or i should use mini
> > >  installer to solve this problem!
>
> > >  Any suggestions
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Chromium-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/chromium-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to