Como posso saber qual canal do Google Chrome estou executando?

31

Existe uma maneira de saber no Google Chrome se estou executando o canal stable , beta ou dev ?

Eu estava tendo problemas com as versões recentes do dev e decidi voltar para stable . Agora quero ter certeza de que funcionou.

Em "Sobre o Google Chrome", diz

14.0.835.186 m

Será que m representa stable talvez?

A propósito, estou no Windows, mas presumo que exista uma maneira independente de plataforma para verificar?

    
por hippietrail 25.09.2011 / 10:28

6 respostas

32

Tente chrome: // version /

O Chrome normal diz:

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

O Chrome Beta diz:

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 diz:

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

Canário diz:

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 é m, Dev é dev-m e canário é canário

    
por 25.09.2011 / 11:12
12

De acordo com o blog oficial do Chrome Release , sua versão é a versão estável mais recente. Eu acho que se a versão não indicar beta ou dev , está usando o canal stable .

Um pequeno googling dá a seguinte explicação de 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); 

Fonte

The "m" just means that you have multiple versions of Chrome installed in C:\Users\username\AppData\Local\Google\Chrome\Application. You might have multiple versions of Chrome if you didn't download the latest version, but updated to it. The new version won't replace the old one, in case of installation failures. So in essence, when Chrome detects that you have more than one version of Chrome, it displays "m" after the version number in the [About Google Chrome] window.

Fonte (em comentários)

    
por 25.09.2011 / 10:42
4

Parece que você está no canal estável.

Você pode apenas verificar o Sobre o Google Chrome como você já tem e procurar palavras-chave da versão "beta" e "dev". Estou executando a versão mais recente do canal beta (no Windows 7) e a janela "Sobre o Google Chrome" diz "beta-m". Uma imagem de algo semelhante ao que você deve ver pode ser vista em How-To Geek

    
por 25.09.2011 / 10:39
2

se você o instalou via adição a sources.apt e fazendo apt-get install google-chrome , então:

fazendo:

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

imprimirá

deb http://dl.google.com/linux/deb/ stable non-free
# this line is not output           ^ look here for the channel
    
por 25.09.2011 / 10:36
1

Eu achei as respostas mais fáceis de ler pela rede bastante enganadoras. A letra "m" aparece somente quando as entradas do Google Update existem no seu registro, mas a atualização automática do Google Chrome está desativada.

    
por 04.04.2016 / 01:56
-3

Se você for para chrome: // chrome, verá algo como:

Versão 30.0.1599.22 beta-m

Como você pode ver, estou executando a versão beta porque diz "beta". A versão dev provavelmente diria algo como 'dev-m' no final. Se você não tem nenhum dos dois, provavelmente está na versão estável.

    
por 04.09.2013 / 01:05