mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
3a5538bd50
The main `version` field in `package.json` will now include the beta version (if present) rather than it being passed in via the CLI when building. The `version` field is now a fully SemVer-compatible version, with the added restriction that any prerelease portion of the version must match the format `<build type>.<build version>`. This brings the build in-line with the future release process we will be using for the beta version. The plan is for each future release to enter a "beta phase" where the version would get updated to reflect that it's a beta, and we would increment this beta version over time as we update the beta. The manifest gives us a place to store this beta version. It was also important to replace the automatic minor bump logic that was being used previously, because the version in beta might not be a minor bump. Additionally, the filename logic used for beta builds was updated to be generic across all build types rather than beta-specific. This will be useful for Flask builds in the future.
27 lines
688 B
JSON
27 lines
688 B
JSON
{
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"16": "images/icon-16.png",
|
|
"19": "images/icon-19.png",
|
|
"32": "images/icon-32.png",
|
|
"38": "images/icon-38.png",
|
|
"64": "images/icon-64.png",
|
|
"128": "images/icon-128.png",
|
|
"512": "images/icon-512.png"
|
|
},
|
|
"default_title": "MetaMask Beta"
|
|
},
|
|
"icons": {
|
|
"16": "images/icon-16.png",
|
|
"19": "images/icon-19.png",
|
|
"32": "images/icon-32.png",
|
|
"38": "images/icon-38.png",
|
|
"48": "images/icon-48.png",
|
|
"64": "images/icon-64.png",
|
|
"128": "images/icon-128.png",
|
|
"512": "images/icon-512.png"
|
|
},
|
|
"name": "__MSG_appName__ Beta",
|
|
"short_name": "__MSG_appName__ Beta"
|
|
}
|