From 486a46bf10ae57add2276da808e8c803e2366c88 Mon Sep 17 00:00:00 2001 From: Balena CI <34882892+balena-ci@users.noreply.github.com> Date: Wed, 6 May 2020 18:51:04 +0300 Subject: [PATCH] Update .versionbot/scrutinizer.json --- scrutinizer.json | 169 +++++++++++++++++++++++------------------------ 1 file changed, 84 insertions(+), 85 deletions(-) diff --git a/scrutinizer.json b/scrutinizer.json index c452120b..9dcbaf51 100644 --- a/scrutinizer.json +++ b/scrutinizer.json @@ -4,14 +4,14 @@ "changelog": [], "contributing": "Contributing Guide\n==================\n\nThanks for your interest in contributing to this project! This document aims to\nserve as a friendly guide for making your first contribution.\n\nHigh-level Etcher overview\n--------------------------\n\nMake sure you checkout our [ARCHITECTURE.md][ARCHITECTURE] guide, which aims to\nexplain how all the pieces fit together.\n\nDeveloping\n----------\n\n### Prerequisites\n\n#### Common\n\n- [NodeJS](https://nodejs.org) (at least v6.11)\n- [Python 2.7](https://www.python.org)\n- [jq](https://stedolan.github.io/jq/)\n- [curl](https://curl.haxx.se/)\n- [npm](https://www.npmjs.com/) (version 6.7)\n\n```sh\npip install -r requirements.txt\n```\n\nYou might need to run this with `sudo` or administrator permissions.\n\n#### Windows\n\n- [NSIS v2.51](http://nsis.sourceforge.net/Main_Page) (v3.x won't work)\n- Either one of the following:\n - [Visual C++ 2015 Build Tools](http://landinghub.visualstudio.com/visual-cpp-build-tools) containing standalone compilers, libraries and scripts\n - Install the [windows-build-tools](https://github.com/felixrieseberg/windows-build-tools) via npm with `npm install --global windows-build-tools`\n - [Visual Studio Community 2015](https://www.microsoft.com/en-us/download/details.aspx?id=48146) (free) (other editions, like Professional and Enterprise, should work too)\n **NOTE:** Visual Studio 2015 doesn't install C++ by default. You have to rerun the\n setup, select \"Modify\" and then check `Visual C++ -> Common Tools for Visual\n C++ 2015` (see http://stackoverflow.com/a/31955339)\n- [MinGW](http://www.mingw.org)\n\nYou might need to `npm config set msvs_version 2015` for node-gyp to correctly detect\nthe version of Visual Studio you're using (in this example VS2015).\n\nThe following MinGW packages are required:\n\n- `msys-make`\n- `msys-unzip`\n- `msys-zip`\n- `msys-bash`\n- `msys-coreutils`\n\n#### macOS\n\n- [Xcode](https://developer.apple.com/xcode/)\n\nIt's not enough to have [Xcode Command Line Tools] installed. Xcode must be installed\nas well.\n\n#### Linux\n\n- `libudev-dev` for libusb (install with `sudo apt install libudev-dev` for example)\n\n### Cloning the project\n\n```sh\ngit clone --recursive https://github.com/balena-io/etcher\ncd etcher\n```\n\n### Installing npm dependencies\n\n**NOTE:** Please make use of the following command to install npm dependencies rather\nthan simply running `npm install` given that we need to do extra configuration\nto make sure native dependencies are correctly compiled for Electron, otherwise\nthe application might not run successfully.\n\nIf you're on Windows, **run the command from the _Developer Command Prompt for\nVS2015_**, to ensure all Visual Studio command utilities are available in the\n`%PATH%`.\n\n```sh\nmake electron-develop\n```\n\n### Running the application\n\n#### GUI\n\n```sh\n# Build the GUI\nmake webpack\n# Start Electron\nnpm start\n```\n\nTesting\n-------\n\nTo run the test suite, run the following command:\n\n```sh\nnpm test\n```\n\nGiven the nature of this application, not everything can be unit tested. For\nexample:\n\n- The writing operating on real raw devices.\n- Platform inconsistencies.\n- Style changes.\n- Artwork.\n\nWe encourage our contributors to test the application on as many operating\nsystems as they can before sending a pull request.\n\n*The test suite is run automatically by CI servers when you send a pull\nrequest.*\n\nWe also rely on various `make` targets to perform some common tasks:\n\n- `make lint`: Run the linter.\n- `make sass`: Compile SCSS files.\n\nWe make use of [EditorConfig] to communicate indentation, line endings and\nother text editing default. We encourage you to install the relevant plugin in\nyour text editor of choice to avoid having to fix any issues during the review\nprocess.\n\nUpdating a dependency\n---------------------\n\nGiven we use [npm shrinkwrap][shrinkwrap], we have to take extra steps to make\nsure the `npm-shrinkwrap.json` file gets updated correctly when we update a\ndependency.\n\nUse the following steps to ensure everything goes flawlessly:\n\n- Run `make electron-develop` to ensure you don't have extraneous dependencies\n you might have brought during development, or you are running older\n dependencies because you come from another branch or reference.\n\n- Install the new version of the dependency. For example: `npm install --save\n @`. This will update the `npm-shrinkwrap.json` file.\n\n- Commit *both* `package.json` and `npm-shrinkwrap.json`.\n\nDiffing Binaries\n----------------\n\nBinary files are tagged as \"binary\" in the `.gitattributes` file, but also have\na `diff=hex` tag, which allows you to see hexdump-style diffs for binaries,\nif you add the following to either your global or repository-local git config:\n\n```sh\n$ git config diff.hex.textconv hexdump\n$ git config diff.hex.binary true\n```\n\nAnd global, respectively:\n\n```sh\n$ git config --global diff.hex.textconv hexdump\n$ git config --global diff.hex.binary true\n```\n\nIf you don't have `hexdump` available on your platform,\nyou can try [hxd], which is also a bit faster.\n\nCommit Guidelines\n-----------------\n\nSee [COMMIT-GUIDELINES.md][COMMIT-GUIDELINES] for a thorough guide on how to\nwrite commit messages.\n\nSending a pull request\n----------------------\n\nWhen sending a pull request, consider the following guidelines:\n\n- Write a concise commit message explaining your changes.\n\n- If applies, write more descriptive information in the commit body.\n\n- Mention the operating systems with the corresponding versions in which you\ntested your changes.\n\n- If your change affects the visuals of the application, consider attaching a\nscreenshot.\n\n- Refer to the issue/s your pull request fixes, so they're closed automatically\nwhen your pull request is merged.\n\n- Write a descriptive pull request title.\n\n- Squash commits when possible, for example, when committing review changes.\n\nBefore your pull request can be merged, the following conditions must hold:\n\n- The linter doesn't throw any warning.\n\n- All the tests pass.\n\n- The coding style aligns with the project's convention.\n\n- Your changes are confirmed to be working in recent versions of the operating\nsystems we support.\n\nDon't hesitate to get in touch if you have any questions or need any help!\n\n[ARCHITECTURE]: https://github.com/balena-io/etcher/blob/master/docs/ARCHITECTURE.md\n[COMMIT-GUIDELINES]: https://github.com/balena-io/etcher/blob/master/docs/COMMIT-GUIDELINES.md\n[EditorConfig]: http://editorconfig.org\n[shrinkwrap]: https://docs.npmjs.com/cli/shrinkwrap\n[hxd]: https://github.com/jhermsmeier/hxd\n[Xcode Command Line Tools]: https://developer.apple.com/library/content/technotes/tn2339/_index.html\n", "contributors": [ - { - "username": "jhermsmeier", - "avatar": "https://avatars3.githubusercontent.com/u/244907?v=4" - }, { "username": "zvin", "avatar": "https://avatars2.githubusercontent.com/u/180331?v=4" }, + { + "username": "jhermsmeier", + "avatar": "https://avatars3.githubusercontent.com/u/244907?v=4" + }, { "username": "thundron", "avatar": "https://avatars1.githubusercontent.com/u/5888446?v=4" @@ -33,7 +33,7 @@ "avatar": "https://avatars1.githubusercontent.com/u/6810908?v=4" }, { - "username": "stefan-mihaila", + "username": "cpunk2140", "avatar": "https://avatars3.githubusercontent.com/u/2217136?v=4" }, { @@ -72,6 +72,10 @@ "username": "brownjohnf", "avatar": "https://avatars2.githubusercontent.com/u/1001049?v=4" }, + { + "username": "mikesimos", + "avatar": "https://avatars0.githubusercontent.com/u/3433256?v=4" + }, { "username": "thgreasi", "avatar": "https://avatars0.githubusercontent.com/u/1295829?v=4" @@ -115,10 +119,6 @@ { "username": "Eate", "avatar": "https://avatars0.githubusercontent.com/u/17911331?v=4" - }, - { - "username": "fedealconada", - "avatar": "https://avatars0.githubusercontent.com/u/4473536?v=4" } ], "docs": [ @@ -327,7 +327,7 @@ "@jviotti", "@nazrhom" ], - "readme": "# Etcher\n\n> Flash OS images to SD cards & USB drives, safely and easily.\n\nEtcher is a powerful OS image flasher built with web technologies to ensure\nflashing an SDCard or USB drive is a pleasant and safe experience. It protects\nyou from accidentally writing to your hard-drives, ensures every byte of data\nwas written correctly and much more. It can also flash directly Raspberry Pi devices that support the usbboot protocol\n\n[![Current Release](https://img.shields.io/github/release/balena-io/etcher.svg?style=flat-square)](https://balena.io/etcher)\n[![License](https://img.shields.io/github/license/balena-io/etcher.svg?style=flat-square)](https://github.com/balena-io/etcher/blob/master/LICENSE)\n[![Dependency status](https://img.shields.io/david/balena-io/etcher.svg?style=flat-square)](https://david-dm.org/balena-io/etcher)\n[![Balena.io Forums](https://img.shields.io/discourse/https/forums.balena.io/topics.svg?style=flat-square&label=balena.io%20forums)](https://forums.balena.io/c/etcher)\n\n***\n\n[**Download**][etcher] | [**Support**][SUPPORT] | [**Documentation**][USER-DOCUMENTATION] | [**Contributing**][CONTRIBUTING] | [**Roadmap**][milestones]\n\n## Supported Operating Systems\n\n- Linux (most distros)\n- macOS 10.10 (Yosemite) and later\n- Microsoft Windows 7 and later\n\nNote that Etcher will run on any platform officially supported by\n[Electron][electron]. Read more in their\n[documentation][electron-supported-platforms].\n\n## Installers\n\nRefer to the [downloads page][etcher] for the latest pre-made\ninstallers for all supported operating systems.\n\n#### Debian and Ubuntu based Package Repository (GNU/Linux x86/x64)\n\n1. Add Etcher debian repository:\n\n ```sh\n echo \"deb https://deb.etcher.io stable etcher\" | sudo tee /etc/apt/sources.list.d/balena-etcher.list\n ```\n\n2. Trust Bintray.com's GPG key:\n\n ```sh\n sudo apt-key adv --keyserver hkps://keyserver.ubuntu.com:443 --recv-keys 379CE192D401AB61\n ```\n\n3. Update and install:\n\n ```sh\n sudo apt-get update\n sudo apt-get install balena-etcher-electron\n ```\n\n##### Uninstall\n\n```sh\nsudo apt-get remove balena-etcher-electron\nsudo rm /etc/apt/sources.list.d/balena-etcher.list\nsudo apt-get update\n```\n#### Redhat (RHEL) and Fedora based Package Repository (GNU/Linux x86/x64)\n\n1. Add Etcher rpm repository:\n\n ```sh\n sudo wget https://balena.io/etcher/static/etcher-rpm.repo -O /etc/yum.repos.d/etcher-rpm.repo\n ```\n\n2. Update and install:\n\n ```sh\n sudo yum install -y balena-etcher-electron\n ```\n or\n ```sh\n sudo dnf install -y balena-etcher-electron\n ```\n\n##### Uninstall\n\n```sh\nsudo yum remove -y balena-etcher-electron\nsudo rm /etc/yum.repos.d/etcher-rpm.repo\nsudo yum clean all\nsudo yum makecache fast\n```\nor\n```sh\nsudo dnf remove -y balena-etcher-electron\nsudo rm /etc/yum.repos.d/etcher-rpm.repo\nsudo dnf clean all\nsudo dnf makecache\n```\n\n#### Solus (GNU/Linux x64)\n\n```sh\nsudo eopkg it etcher\n```\n\n##### Uninstall\n\n```sh\nsudo eopkg rm etcher\n```\n\n#### Brew Cask (macOS)\n\nNote that the Etcher Cask has to be updated manually to point to new versions,\nso it might not refer to the latest version immediately after an Etcher\nrelease.\n\n```sh\nbrew cask install balenaetcher\n```\n\n##### Uninstall\n\n```sh\nbrew cask uninstall balenaetcher\n```\n\n#### Chocolatey (Windows)\n\nThis package is maintained by [@majkinetor](https://github.com/majkinetor), and\nis kept up to date automatically.\n\n```sh\nchoco install etcher\n```\n\n##### Uninstall\n\n```sh\nchoco uninstall etcher\n```\n\n## Support\n\nIf you're having any problem, please [raise an issue][newissue] on GitHub and\nthe balena.io team will be happy to help.\n\n## License\n\nEtcher is free software, and may be redistributed under the terms specified in\nthe [license].\n\n[etcher]: https://balena.io/etcher\n[electron]: https://electronjs.org/\n[electron-supported-platforms]: https://electronjs.org/docs/tutorial/support#supported-platforms\n[SUPPORT]: https://github.com/balena-io/etcher/blob/master/SUPPORT.md\n[CONTRIBUTING]: https://github.com/balena-io/etcher/blob/master/docs/CONTRIBUTING.md\n[USER-DOCUMENTATION]: https://github.com/balena-io/etcher/blob/master/docs/USER-DOCUMENTATION.md\n[milestones]: https://github.com/balena-io/etcher/milestones\n[newissue]: https://github.com/balena-io/etcher/issues/new\n[license]: https://github.com/balena-io/etcher/blob/master/LICENSE\n", + "readme": "# Etcher\n\n> Flash OS images to SD cards & USB drives, safely and easily.\n\nEtcher is a powerful OS image flasher built with web technologies to ensure\nflashing an SDCard or USB drive is a pleasant and safe experience. It protects\nyou from accidentally writing to your hard-drives, ensures every byte of data\nwas written correctly and much more. It can also flash directly Raspberry Pi devices that support the usbboot protocol\n\n[![Current Release](https://img.shields.io/github/release/balena-io/etcher.svg?style=flat-square)](https://balena.io/etcher)\n[![License](https://img.shields.io/github/license/balena-io/etcher.svg?style=flat-square)](https://github.com/balena-io/etcher/blob/master/LICENSE)\n[![Dependency status](https://img.shields.io/david/balena-io/etcher.svg?style=flat-square)](https://david-dm.org/balena-io/etcher)\n[![Balena.io Forums](https://img.shields.io/discourse/https/forums.balena.io/topics.svg?style=flat-square&label=balena.io%20forums)](https://forums.balena.io/c/etcher)\n\n***\n\n[**Download**][etcher] | [**Support**][SUPPORT] | [**Documentation**][USER-DOCUMENTATION] | [**Contributing**][CONTRIBUTING] | [**Roadmap**][milestones]\n\n## Supported Operating Systems\n\n- Linux (most distros)\n- macOS 10.10 (Yosemite) and later\n- Microsoft Windows 7 and later\n\nNote that Etcher will run on any platform officially supported by\n[Electron][electron]. Read more in their\n[documentation][electron-supported-platforms].\n\n## Installers\n\nRefer to the [downloads page][etcher] for the latest pre-made\ninstallers for all supported operating systems.\n\n#### Debian and Ubuntu based Package Repository (GNU/Linux x86/x64)\n\n1. Add Etcher debian repository:\n\n ```sh\n echo \"deb https://deb.etcher.io stable etcher\" | sudo tee /etc/apt/sources.list.d/balena-etcher.list\n ```\n\n2. Trust Bintray.com's GPG key:\n\n ```sh\n sudo apt-key adv --keyserver hkps://keyserver.ubuntu.com:443 --recv-keys 379CE192D401AB61\n ```\n\n3. Update and install:\n\n ```sh\n sudo apt-get update\n sudo apt-get install balena-etcher-electron\n ```\n\n##### Uninstall\n\n```sh\nsudo apt-get remove balena-etcher-electron\nsudo rm /etc/apt/sources.list.d/balena-etcher.list\nsudo apt-get update\n```\n\n##### OpenSUSE LEAP & Tumbleweed install\n\n```sh\nsudo zypper ar https://balena.io/etcher/static/etcher-rpm.repo\nsudo zypper ref\nsudo zypper in balena-etcher-electron\n```\n\n##### Uninstall\n\n```sh\nsudo zypper rm balena-etcher-electron\n```\n\n#### Redhat (RHEL) and Fedora based Package Repository (GNU/Linux x86/x64)\n\n1. Add Etcher rpm repository:\n\n ```sh\n sudo wget https://balena.io/etcher/static/etcher-rpm.repo -O /etc/yum.repos.d/etcher-rpm.repo\n ```\n\n2. Update and install:\n\n ```sh\n sudo yum install -y balena-etcher-electron\n ```\n or\n ```sh\n sudo dnf install -y balena-etcher-electron\n ```\n\n##### Uninstall\n\n```sh\nsudo yum remove -y balena-etcher-electron\nsudo rm /etc/yum.repos.d/etcher-rpm.repo\nsudo yum clean all\nsudo yum makecache fast\n```\nor\n```sh\nsudo dnf remove -y balena-etcher-electron\nsudo rm /etc/yum.repos.d/etcher-rpm.repo\nsudo dnf clean all\nsudo dnf makecache\n```\n\n#### Solus (GNU/Linux x64)\n\n```sh\nsudo eopkg it etcher\n```\n\n##### Uninstall\n\n```sh\nsudo eopkg rm etcher\n```\n\n#### Arch Linux / Manjaro (GNU/Linux x64)\n\nEtcher is offered through the Arch User Repository and can be installed on both Manjaro and Arch systems. You can compile it from the source code in this repository using [`balena-etcher`](https://aur.archlinux.org/packages/balena-etcher/). The following example uses a common AUR helper to install the latest release:\n\n\n```sh\nyay -S balena-etcher\n```\n\n##### Uninstall\n\n```sh\nyay -R balena-etcher\n```\n\n#### Brew Cask (macOS)\n\nNote that the Etcher Cask has to be updated manually to point to new versions,\nso it might not refer to the latest version immediately after an Etcher\nrelease.\n\n```sh\nbrew cask install balenaetcher\n```\n\n##### Uninstall\n\n```sh\nbrew cask uninstall balenaetcher\n```\n\n#### Chocolatey (Windows)\n\nThis package is maintained by [@majkinetor](https://github.com/majkinetor), and\nis kept up to date automatically.\n\n```sh\nchoco install etcher\n```\n\n##### Uninstall\n\n```sh\nchoco uninstall etcher\n```\n\n## Support\n\nIf you're having any problem, please [raise an issue][newissue] on GitHub and\nthe balena.io team will be happy to help.\n\n## License\n\nEtcher is free software, and may be redistributed under the terms specified in\nthe [license].\n\n[etcher]: https://balena.io/etcher\n[electron]: https://electronjs.org/\n[electron-supported-platforms]: https://electronjs.org/docs/tutorial/support#supported-platforms\n[SUPPORT]: https://github.com/balena-io/etcher/blob/master/SUPPORT.md\n[CONTRIBUTING]: https://github.com/balena-io/etcher/blob/master/docs/CONTRIBUTING.md\n[USER-DOCUMENTATION]: https://github.com/balena-io/etcher/blob/master/docs/USER-DOCUMENTATION.md\n[milestones]: https://github.com/balena-io/etcher/milestones\n[newissue]: https://github.com/balena-io/etcher/issues/new\n[license]: https://github.com/balena-io/etcher/blob/master/LICENSE\n", "highlights": null, "installationSteps": null, "examples": null, @@ -339,7 +339,7 @@ "public": true, "fork": false, "description": "Flash OS images to SD cards & USB drives, safely and easily.", - "stars": 17498, + "stars": 17647, "homepage": "https://etcher.io", "repositoryUrl": "https://github.com/balena-io/etcher.git", "active": true, @@ -358,7 +358,6 @@ "bindings", "bluebird", "bootstrap-sass", - "color", "d3", "debug", "electron-updater", @@ -387,85 +386,85 @@ "tmp", "uuid" ], - "lastCommitDate": "2020-04-16T16:30:37Z", + "lastCommitDate": "2020-05-06T15:49:03Z", "latestRelease": { - "tagName": "v1.5.81", + "tagName": "v1.5.86", "asssets": [ { - "name": "balena-etcher-electron-1.5.81-linux-ia32.zip", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.81/balena-etcher-electron-1.5.81-linux-ia32.zip" + "name": "balena-etcher-electron-1.5.86-linux-ia32.zip", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.86/balena-etcher-electron-1.5.86-linux-ia32.zip" }, { - "name": "balena-etcher-electron-1.5.81-linux-x64.zip", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.81/balena-etcher-electron-1.5.81-linux-x64.zip" + "name": "balena-etcher-electron-1.5.86-linux-x64.zip", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.86/balena-etcher-electron-1.5.86-linux-x64.zip" }, { - "name": "balena-etcher-electron-1.5.81.i686.rpm", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.81/balena-etcher-electron-1.5.81.i686.rpm" + "name": "balena-etcher-electron-1.5.86.i686.rpm", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.86/balena-etcher-electron-1.5.86.i686.rpm" }, { - "name": "balena-etcher-electron-1.5.81.x86_64.rpm", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.81/balena-etcher-electron-1.5.81.x86_64.rpm" + "name": "balena-etcher-electron-1.5.86.x86_64.rpm", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.86/balena-etcher-electron-1.5.86.x86_64.rpm" }, { - "name": "balena-etcher-electron_1.5.81_amd64.deb", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.81/balena-etcher-electron_1.5.81_amd64.deb" + "name": "balena-etcher-electron_1.5.86_amd64.deb", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.86/balena-etcher-electron_1.5.86_amd64.deb" }, { - "name": "balena-etcher-electron_1.5.81_i386.deb", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.81/balena-etcher-electron_1.5.81_i386.deb" + "name": "balena-etcher-electron_1.5.86_i386.deb", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.86/balena-etcher-electron_1.5.86_i386.deb" }, { - "name": "balenaEtcher-1.5.81-ia32.AppImage", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.81/balenaEtcher-1.5.81-ia32.AppImage" + "name": "balenaEtcher-1.5.86-ia32.AppImage", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.86/balenaEtcher-1.5.86-ia32.AppImage" }, { - "name": "balenaEtcher-1.5.81-mac.zip", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.81/balenaEtcher-1.5.81-mac.zip" + "name": "balenaEtcher-1.5.86-mac.zip", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.86/balenaEtcher-1.5.86-mac.zip" }, { - "name": "balenaEtcher-1.5.81-x64.AppImage", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.81/balenaEtcher-1.5.81-x64.AppImage" + "name": "balenaEtcher-1.5.86-x64.AppImage", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.86/balenaEtcher-1.5.86-x64.AppImage" }, { - "name": "balenaEtcher-1.5.81.dmg", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.81/balenaEtcher-1.5.81.dmg" + "name": "balenaEtcher-1.5.86.dmg", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.86/balenaEtcher-1.5.86.dmg" }, { - "name": "balenaEtcher-1.5.81.dmg.blockmap", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.81/balenaEtcher-1.5.81.dmg.blockmap" + "name": "balenaEtcher-1.5.86.dmg.blockmap", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.86/balenaEtcher-1.5.86.dmg.blockmap" }, { - "name": "balenaEtcher-Portable-1.5.81.exe", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.81/balenaEtcher-Portable-1.5.81.exe" + "name": "balenaEtcher-Portable-1.5.86.exe", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.86/balenaEtcher-Portable-1.5.86.exe" }, { - "name": "balenaEtcher-Setup-1.5.81.exe", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.81/balenaEtcher-Setup-1.5.81.exe" + "name": "balenaEtcher-Setup-1.5.86.exe", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.86/balenaEtcher-Setup-1.5.86.exe" }, { - "name": "balenaEtcher-Setup-1.5.81.exe.blockmap", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.81/balenaEtcher-Setup-1.5.81.exe.blockmap" + "name": "balenaEtcher-Setup-1.5.86.exe.blockmap", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.86/balenaEtcher-Setup-1.5.86.exe.blockmap" }, { "name": "builder-effective-config.yaml", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.81/builder-effective-config.yaml" + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.86/builder-effective-config.yaml" }, { "name": "latest-linux-ia32.yml", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.81/latest-linux-ia32.yml" + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.86/latest-linux-ia32.yml" }, { "name": "latest-linux.yml", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.81/latest-linux.yml" + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.86/latest-linux.yml" }, { "name": "latest-mac.yml", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.81/latest-mac.yml" + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.86/latest-mac.yml" }, { "name": "latest.yml", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.81/latest.yml" + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.86/latest.yml" } ] }, @@ -563,24 +562,48 @@ ] }, "openIssues": { - "numberOfIssues": 230, + "numberOfIssues": 224, "latestIssues": [ + { + "title": "AppImage fails on Debian Buster AMD64", + "url": "https://github.com/balena-io/etcher/issues/3141" + }, + { + "title": "flashing a .wic.bz2 creates an unbootable RPi SD card, but .wic works", + "url": "https://github.com/balena-io/etcher/issues/3138" + }, + { + "title": "Downloads page still showing older version", + "url": "https://github.com/balena-io/etcher/issues/3135" + }, + { + "title": "RPM packaging for Etcher, repo in general", + "url": "https://github.com/balena-io/etcher/issues/3134" + }, + { + "title": "Allow window controls by integrating with native window manager", + "url": "https://github.com/balena-io/etcher/issues/3130" + }, + { + "title": "The SUID sandbox helper binary was found, but is not configured correctly. ", + "url": "https://github.com/balena-io/etcher/issues/3129" + }, + { + "title": "shasum ", + "url": "https://github.com/balena-io/etcher/issues/3123" + }, + { + "title": "Issue of flashing image located on NAS (WD Mycloud)", + "url": "https://github.com/balena-io/etcher/issues/3122" + }, + { + "title": "Unable to flash in Ubuntu 18.04.4 !", + "url": "https://github.com/balena-io/etcher/issues/3121" + }, { "title": "When flashing multiple targets device name is seen under EFP", "url": "https://github.com/balena-io/etcher/issues/3120" }, - { - "title": "libpango1.0-0 dependency not available in Debian Bullseye", - "url": "https://github.com/balena-io/etcher/issues/3119" - }, - { - "title": "Fixes the Command for macOS drive recovery", - "url": "https://github.com/balena-io/etcher/pull/3117" - }, - { - "title": "Strange functionality after running etcher", - "url": "https://github.com/balena-io/etcher/issues/3116" - }, { "title": "PhysicalDrive2: UNKNOWN: unknown error, write", "url": "https://github.com/balena-io/etcher/issues/3110" @@ -620,34 +643,10 @@ { "title": "Diskarbitrationd logs filling console", "url": "https://github.com/balena-io/etcher/issues/3092" - }, - { - "title": "failed to burn", - "url": "https://github.com/balena-io/etcher/issues/3091" - }, - { - "title": "1.5.79 on Windows 10, 1909, 64-bit fails to start", - "url": "https://github.com/balena-io/etcher/issues/3088" - }, - { - "title": "hdiutil: attach failed - no mountable file systems", - "url": "https://github.com/balena-io/etcher/issues/3086" - }, - { - "title": "Can not find icon.png", - "url": "https://github.com/balena-io/etcher/issues/3080" - }, - { - "title": "Choco can't install it ", - "url": "https://github.com/balena-io/etcher/issues/3079" - }, - { - "title": "403 Forbidden error on package repository", - "url": "https://github.com/balena-io/etcher/issues/3078" } ] }, - "version": "1.5.81", + "version": "1.5.86", "screenshot": null, "logo": null }