Letter "m" in the version of Google Chrome for Windows [closed]

5

Does anyone know the meaning of the letter "m" at the end of the Google Chrome version? I looked for answers elsewhere, but I still could not get good information.

Ex. 32.0.1700.102 m

Thank you in advance for your attention.

    
asked by anonymous 05.02.2014 / 02:31

1 answer

15

"m" stands for "multi-install".

See the Chrome source snippet:

// 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 GetChromeChannelAndModifiers(bool system_install,
                                       base::string16* channel);

Source: link


    
05.02.2014 / 02:40