Wie kann ich feststellen, welchen Google Chrome-Kanal ich verwende?

Gibt es eine Möglichkeit aus Google Chrome heraus zu wissen, ob ich die stable, beta, oder dev Kanal?

Ich hatte Probleme mit den letzten dev - Releases und beschloss, zu stable zurückzukehren. Jetzt möchte ich sicherstellen, dass es funktioniert.

In" Über Google Chrome " steht:

14.0.835.186 m

Steht das m vielleicht für stable?

By the way ich bin auf Windows, aber ich nehme an, es ist eine Plattform-unabhängige Weise zu das überprüfen?

Author: hippietrail, 2011-09-25

6 answers

Versuche chrome: / / version /

Reguläres Chrome sagt:

Google Chrome   14.0.835.186 (Official Build 101821) m
OS  Windows
WebKit  535.1 (branches/chromium/835@94713)
JavaScript  V8 3.4.14.21
Flash   10,3,183,10
User Agent  Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1
Command Line    "C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome\Application\chrome.exe" --flag-switches-begin --enable-print-preview --flag-switches-end
Executable Path C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome\Application\chrome.exe
Profile Path    C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome\User Data\Default

Chrome Beta sagt:

Google Chrome   14.0.835.186 (Official Build 101821) beta-m
OS  Windows
WebKit  535.1 (branches/chromium/835@94713)
JavaScript  V8 3.4.14.21
Flash   10,3,183,10
User Agent  Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1
Command Line    "C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome\Application\chrome.exe" --flag-switches-begin --enable-print-preview --flag-switches-end
Executable Path C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome\Application\chrome.exe
Profile Path    C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome\User Data\Default

Dev sagt:

Google Chrome   14.0.835.186 (Official Build 101821) dev-m
OS  Windows
WebKit  535.1 (branches/chromium/835@94713)
JavaScript  V8 3.4.14.21
Flash   10,3,183,10
User Agent  Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1
Command Line    "C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome\Application\chrome.exe" --flag-switches-begin --enable-print-preview --flag-switches-end
Executable Path C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome\Application\chrome.exe
Profile Path    C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome\User Data\Default

Canary sagt:

Google Chrome   16.0.891.0 (Official Build 102650) canary
OS  Windows
WebKit  535.5 (@95897)
JavaScript  V8 3.6.4
Flash   11,0,1,148
User Agent  Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.5 (KHTML, like Gecko) Chrome/16.0.891.0 Safari/535.5
Command Line    "C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome SxS\Application\chrome.exe" --flag-switches-begin --enable-print-preview --flag-switches-end
Executable Path C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome SxS\Application\chrome.exe
Profile Path    C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome SxS\User Data\Default

Regular ist m, Dev ist dev-m und canary ist canary

 32
Author: Journeyman Geek,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/techietown.info/template/agent.layouts/content.php on line 61
2011-10-24 16:25:03

Laut dem offiziellen Chrome-Release-Blog ist Ihre Version die neueste stabile Version. Ich denke, wenn die Version weder beta noch dev, wird der Kanal stable verwendet.

Ein wenig Googeln gibt die folgende Erklärung von m Flag.

// Return a human readable modifier for the version string, e.g. 
// the channel (dev, beta, stable). Returns true if this operation 
succeeded, 
// on success, channel contains one of "", "unknown", "dev" or 
"beta" (unless 
// it is a multi-install product, in which case it will return "m", 
// "unknown-m", "dev-m", or "beta-m"). 
static bool GetChromeChannel(bool system_install, std::wstring* 
channel); 

Quelle

Das " m " bedeutet nur, dass Sie mehrere Versionen von Chrome installiert haben C:\Users\username\AppData\Local\Google\Chrome\Application. Möglicherweise haben Sie mehrere Versionen von Chrome, wenn Sie nicht die neueste Version heruntergeladen, aber aktualisiert haben. Die neue Version ersetzt bei Installationsfehlern nicht die alte Version. Wenn Chrome erkennt, dass Sie mehr als eine Version von Chrome haben, wird im Wesentlichen "m" nach der Versionsnummer im Fenster [Über Google Chrome] angezeigt.

Quelle (in Kommentaren)

 12
Author: Jin,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/techietown.info/template/agent.layouts/content.php on line 61
2011-09-25 08:42:56

Es scheint, als ob Sie sich auf einem stabilen Kanal befinden.

Sie können einfach überprüfen Sie die Über Google Chrome, wie Sie bereits haben und suchen Sie nach "beta" und "dev" Version Keywords. Ich führe die neueste Beta-Kanalversion (unter Windows 7) aus und in meinem Fenster "Über Google Chrome" steht "Beta-m". Ein Bild von etwas Ähnlichem wie dem, was Sie sehen sollten, finden Sie unter How-To Geek

 4
Author: Simon Campbell,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/techietown.info/template/agent.layouts/content.php on line 61
2011-09-25 08:39:06

Wenn Sie es installiert haben, indem Sie es zu sources.apt hinzufügen und apt-get install google-chrome ausführen, dann:

So:

cat /etc/apt/sources.list | grep 'dl.google.com'

Druckt

deb http://dl.google.com/linux/deb/ stable non-free
# this line is not output           ^ look here for the channel
 2
Author: Dan D.,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/techietown.info/template/agent.layouts/content.php on line 61
2011-09-25 08:36:43

Fand ich die meisten googlable Antworten über das Netz eher irreführend. Der Buchstabe " m " wird nur angezeigt, wenn Ihre Google Update-Einträge in Ihrer Registrierung vorhanden sind, Ihr Google Chrome Auto-Update jedoch deaktiviert ist.

 1
Author: phlyming,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/techietown.info/template/agent.layouts/content.php on line 61
2016-04-03 23:56:31

Wenn Sie zu chrome://chrome gehen, erhalten Sie Folgendes:

Version 30.0.1599.22 beta-m -

Wie Sie sehen, führe ich die Beta-Version aus, weil "beta" steht. Die Dev-Version würde wahrscheinlich am Ende so etwas wie 'dev-m' sagen. Wenn Sie keine haben, sind Sie wahrscheinlich auf der stabilen Version.

 -3
Author: Jack,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/techietown.info/template/agent.layouts/content.php on line 61
2013-09-03 23:05:44