Google Chrome Dev Channel 24.0.1297.0
This commit is contained in:
24
GoogleChrome.Dev/GoogleChrome.Dev.nuspec
Normal file
24
GoogleChrome.Dev/GoogleChrome.Dev.nuspec
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||||
|
<metadata>
|
||||||
|
<id>GoogleChrome.Dev</id>
|
||||||
|
<title>Google Chrome Dev Web Browser</title>
|
||||||
|
<version>24.0.1297.0</version>
|
||||||
|
<authors>Google</authors>
|
||||||
|
<owners>Ethan J Brown</owners>
|
||||||
|
<summary>Google Chrome Dev is released once or twice a week and is generally several major release ahead of the stable channel.</summary>
|
||||||
|
<description>Dev channel: Want to see what's happening quickly, then you want the Dev channel. The Dev channel gets updated once or twice weekly, and it shows what we're working on right now. There's no lag between major versions, whatever code we've got, you will get. While this build does get tested, it is still subject to bugs, as we want people to see what's new as soon as possible.
|
||||||
|
|
||||||
|
Note that Chrome auto-updates itself after an initial install.
|
||||||
|
</description>
|
||||||
|
<projectUrl>http://www.chromium.org/getting-involved/dev-channel</projectUrl>
|
||||||
|
<tags>google chrome web browser html5</tags>
|
||||||
|
<licenseUrl>https://www.google.com/chrome/intl/en/eula_text.html</licenseUrl>
|
||||||
|
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||||
|
<iconUrl>https://github.com/Iristyle/ChocolateyPackages/raw/master/GoogleChrome.Dev/GoogleChrome.png</iconUrl>
|
||||||
|
<releaseNotes></releaseNotes>
|
||||||
|
</metadata>
|
||||||
|
<files>
|
||||||
|
<file src="tools\**" target="tools" />
|
||||||
|
</files>
|
||||||
|
</package>
|
BIN
GoogleChrome.Dev/GoogleChrome.png
Normal file
BIN
GoogleChrome.Dev/GoogleChrome.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 33 KiB |
18
GoogleChrome.Dev/tools/chocolateyInstall.ps1
Normal file
18
GoogleChrome.Dev/tools/chocolateyInstall.ps1
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
$package = 'Chrome.Dev'
|
||||||
|
|
||||||
|
try {
|
||||||
|
|
||||||
|
$params = @{
|
||||||
|
PackageName = $package;
|
||||||
|
FileType = 'exe';
|
||||||
|
SilentArgs = '/silent /installsource silent /install';
|
||||||
|
Url = 'https://dl.google.com/tag/s/appguid%3D%7B8A69D345-D564-463C-AFF1-A69D9E530F96%7D%26iid%3D%7B0AA7B49A-29EA-0AE3-8A45-61F351F89414%7D%26lang%3Den%26browser%3D2%26usagestats%3D0%26appname%3DGoogle%2520Chrome%26needsadmin%3Dfalse%26ap%3D2.0-dev%26installdataindex%3Ddefaultbrowser/update2/installers/ChromeSetup.exe'
|
||||||
|
}
|
||||||
|
|
||||||
|
Install-ChocolateyPackage @params
|
||||||
|
|
||||||
|
Write-ChocolateySuccess $package
|
||||||
|
} catch {
|
||||||
|
Write-ChocolateyFailure $package "$($_.Exception.Message)"
|
||||||
|
throw
|
||||||
|
}
|
Reference in New Issue
Block a user