From eecc1763812e593a19b0753abedc552d2c6b69c8 Mon Sep 17 00:00:00 2001 From: Balena CI <34882892+balena-ci@users.noreply.github.com> Date: Wed, 14 Jul 2021 19:57:55 +0300 Subject: [PATCH] Update .versionbot/CHANGELOG.yml, .versionbot/scrutinizer.json --- CHANGELOG.yml | 39 ++++++- scrutinizer.json | 270 +++++++++++++++++++++++++++-------------------- 2 files changed, 196 insertions(+), 113 deletions(-) diff --git a/CHANGELOG.yml b/CHANGELOG.yml index 1ac66000..4f5e3c6b 100644 --- a/CHANGELOG.yml +++ b/CHANGELOG.yml @@ -1,3 +1,40 @@ +- commits: + - subject: 'patch: Delete Codeowners' + hash: a81b552b95f93a8989a6fff4774a14e21abe9a0e + body: '' + footer: {} + author: Vipul Gupta + nested: [] + - subject: Add source maps for devtools + hash: 53f53c0f75779e814834e2fd0375b705664190c5 + body: '' + footer: + Change-type: patch + change-type: patch + Signed-off-by: Lorenzo Alberto Maria Ambrosi + signed-off-by: Lorenzo Alberto Maria Ambrosi + author: Lorenzo Alberto Maria Ambrosi + nested: [] + - subject: Clone submodules when initializing modules + hash: fdaf5c69d6bd20b64b1c1749b62dec9c22f12fb4 + body: '' + footer: + Change-type: patch + change-type: patch + Signed-off-by: Lorenzo Alberto Maria Ambrosi + signed-off-by: Lorenzo Alberto Maria Ambrosi + author: Lorenzo Alberto Maria Ambrosi + nested: [] + - subject: 'patch: Select drive on list interaction rather than modal closing' + hash: 061afca5d3ce7dbf67d66706e6c2c65ecd61cf7b + body: '' + footer: + Signed-off-by: Lorenzo Alberto Maria Ambrosi + signed-off-by: Lorenzo Alberto Maria Ambrosi + author: Lorenzo Alberto Maria Ambrosi + nested: [] + version: 1.5.121 + date: 2021-07-14T16:53:58.095Z - commits: - subject: Update README to reference Cloudsmith hash: 7e333caaf9d94ff90583fe897ccabb6fdf860f74 @@ -10,7 +47,7 @@ author: Lorenzo Alberto Maria Ambrosi nested: [] version: 1.5.120 - date: 2021-05-11T16:54:07.896Z + date: 2021-05-11T16:04:28.710Z - commits: - subject: Update readme for new PPA provider hash: 250aed2eb1911a6302a80bd7e9f4488c96787ee0 diff --git a/scrutinizer.json b/scrutinizer.json index 451f2de7..df967c5a 100644 --- a/scrutinizer.json +++ b/scrutinizer.json @@ -2,6 +2,57 @@ "license": "Apache-2.0", "blog": [], "changelog": [ + { + "commits": [ + { + "subject": "patch: Delete Codeowners", + "hash": "a81b552b95f93a8989a6fff4774a14e21abe9a0e", + "body": "", + "footer": {}, + "author": "Vipul Gupta", + "nested": [] + }, + { + "subject": "Add source maps for devtools", + "hash": "53f53c0f75779e814834e2fd0375b705664190c5", + "body": "", + "footer": { + "Change-type": "patch", + "change-type": "patch", + "Signed-off-by": "Lorenzo Alberto Maria Ambrosi ", + "signed-off-by": "Lorenzo Alberto Maria Ambrosi " + }, + "author": "Lorenzo Alberto Maria Ambrosi", + "nested": [] + }, + { + "subject": "Clone submodules when initializing modules", + "hash": "fdaf5c69d6bd20b64b1c1749b62dec9c22f12fb4", + "body": "", + "footer": { + "Change-type": "patch", + "change-type": "patch", + "Signed-off-by": "Lorenzo Alberto Maria Ambrosi ", + "signed-off-by": "Lorenzo Alberto Maria Ambrosi " + }, + "author": "Lorenzo Alberto Maria Ambrosi", + "nested": [] + }, + { + "subject": "patch: Select drive on list interaction rather than modal closing", + "hash": "061afca5d3ce7dbf67d66706e6c2c65ecd61cf7b", + "body": "", + "footer": { + "Signed-off-by": "Lorenzo Alberto Maria Ambrosi ", + "signed-off-by": "Lorenzo Alberto Maria Ambrosi " + }, + "author": "Lorenzo Alberto Maria Ambrosi", + "nested": [] + } + ], + "version": "1.5.121", + "date": "2021-07-05T18:20:04.735Z" + }, { "commits": [ { @@ -16012,12 +16063,7 @@ ], "codeOfConduct": null, "architecture": "Etcher Architecture\n===================\n\nThis document aims to serve as a high-level overview of how Etcher works,\nspecially oriented for contributors who want to understand the big picture.\n\nTechnologies\n------------\n\nThis is a non exhaustive list of the major frameworks, libraries, and other\ntechnologies used in Etcher that you should become familiar with:\n\n- [Electron][electron]\n- [NodeJS][nodejs]\n- [Redux][redux]\n- [ImmutableJS][immutablejs]\n- [Sass][sass]\n- [Mocha][mocha]\n- [JSDoc][jsdoc]\n\nModule architecture\n-------------------\n\nInstead of embedding all the functionality required to create a full-featured\nimage writer as a monolithic project, we try to hard to follow the [\"lego block\napproach\"][lego-blocks].\n\nThis has the advantage of allowing other applications to re-use logic we\nimplemented for Etcher in their own project, even for things we didn't expect,\nwhich leads to users benefitting from what we've built, and we benefitting from\nuser's bug reports, suggestions, etc, as an indirect way to make Etcher better.\n\nThe fact that low-level details are scattered around many different modules can\nmake it challenging for a new contributor to wrap their heads around the\nproject as a whole, and get a clear high level view of how things work or where\nto submit their work or bug reports.\n\nThese are the main Etcher components, in a nutshell:\n\n- [Drivelist](https://github.com/balena-io-modules/drivelist)\n\nAs the name implies, this module's duty is to detect the connected drives\nuniformly in all major operating systems, along with valuable metadata, like if\na drive is removable or not, to prevent users from trying to write an image to\na system drive.\n\n- [Etcher](https://github.com/balena-io/etcher)\n\nThis is the *\"main repository\"*, from which you're reading this from, which is\nbasically the front-end and glue for all previously listed projects.\n\nSummary\n-------\n\nWe always welcome contributions to Etcher as well as our documentation. If you\nwant to give back, but feel that your knowledge on how Etcher works is not\nenough to tackle a bug report or feature request, use that as your advantage,\nsince fresh eyes could help unveil things that we take for granted, but should\nbe documented instead!\n\n[lego-blocks]: https://github.com/sindresorhus/ama/issues/10#issuecomment-117766328\n[exit-codes]: https://github.com/balena-io/etcher/blob/master/lib/shared/exit-codes.js\n[gui-dir]: https://github.com/balena-io/etcher/tree/master/lib/gui\n[electron]: http://electron.atom.io\n[nodejs]: https://nodejs.org\n[redux]: http://redux.js.org\n[immutablejs]: http://facebook.github.io/immutable-js/\n[sass]: http://sass-lang.com\n[mocha]: http://mochajs.org\n[jsdoc]: http://usejsdoc.org\n", - "maintainers": [ - "@thundron", - "@zvin", - "@jviotti", - "@nazrhom" - ], + "maintainers": [], "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 directly flash Raspberry Pi devices that support [USB device boot mode](https://www.raspberrypi.org/documentation/hardware/raspberrypi/bootmodes/device.md).\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\n**Note**: 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> Note: Our deb and rpm packages are now hosted on [Cloudsmith](https://cloudsmith.com)!\n\n#### Debian and Ubuntu based Package Repository (GNU/Linux x86/x64)\n\n1. Add Etcher Debian repository:\n\n ```sh\n curl -1sLf \\\n 'https://dl.cloudsmith.io/public/balena/etcher/setup.deb.sh' \\\n | sudo -E bash\n ```\n\n2. 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\nrm /etc/apt/sources.list.d/balena-etcher.list\napt-get clean\nrm -rf /var/lib/apt/lists/*\napt-get update\n```\n\n##### OpenSUSE LEAP & Tumbleweed install\n\n```sh\ncurl -1sLf \\\n 'https://dl.cloudsmith.io/public/balena/etcher/setup.rpm.sh' \\\n | sudo -E bash\n```\n\n##### Uninstall\n\n```sh\nzypper rr balena-etcher\nzypper rr balena-etcher-source\n```\n\n#### Redhat (RHEL) and Fedora-based Package Repository (GNU/Linux x86/x64)\n\n##### DNF\n\n1. Add Etcher rpm repository:\n\n ```sh\n curl -1sLf \\\n 'https://dl.cloudsmith.io/public/balena/etcher/setup.rpm.sh' \\\n | sudo -E bash\n ```\n\n2. Update and install:\n\n ```sh\n sudo dnf install -y balena-etcher-electron\n rm /etc/yum.repos.d/balena-etcher.repo\n rm /etc/yum.repos.d/balena-etcher-source.repo\n ```\n\n###### Uninstall\n\n```sh\nrm /etc/yum.repos.d/balena-etcher.repo\nrm /etc/yum.repos.d/balena-etcher-source.repo\n```\n\n##### Yum\n\n1. Add Etcher rpm repository:\n\n ```sh\n curl -1sLf \\\n 'https://dl.cloudsmith.io/public/balena/etcher/setup.rpm.sh' \\\n | sudo -E bash\n ```\n\n2. Update and install:\n\n ```sh\n sudo yum install -y balena-etcher-electron\n ```\n\n###### Uninstall\n\n```sh\nsudo yum remove -y balena-etcher-electron\nrm /etc/yum.repos.d/balena-etcher.repo\nrm /etc/yum.repos.d/balena-etcher-source.repo\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/Manjaro Linux (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```sh\nyay -S balena-etcher\n```\n\n##### Uninstall\n\n```sh\nyay -R balena-etcher\n```\n\n#### Brew (macOS)\n\n**Note**: Etcher 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 install balenaetcher\n```\n\n##### Uninstall\n\n```sh\nbrew 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, @@ -16030,7 +16076,7 @@ "public": true, "fork": false, "description": "Flash OS images to SD cards & USB drives, safely and easily.", - "stars": 20492, + "stars": 20861, "homepage": "https://etcher.io", "repositoryUrl": "https://github.com/balena-io/etcher.git", "active": true, @@ -16041,85 +16087,85 @@ "type": "Organization" }, "dependencies": [], - "lastCommitDate": "2021-05-11T16:56:49Z", + "lastCommitDate": "2021-07-14T16:55:16Z", "latestRelease": { - "tagName": "v1.5.120", + "tagName": "v1.5.121", "asssets": [ { - "name": "balena-etcher-electron-1.5.120-linux-ia32.zip", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.120/balena-etcher-electron-1.5.120-linux-ia32.zip" + "name": "balena-etcher-electron-1.5.121-linux-ia32.zip", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.121/balena-etcher-electron-1.5.121-linux-ia32.zip" }, { - "name": "balena-etcher-electron-1.5.120-linux-x64.zip", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.120/balena-etcher-electron-1.5.120-linux-x64.zip" + "name": "balena-etcher-electron-1.5.121-linux-x64.zip", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.121/balena-etcher-electron-1.5.121-linux-x64.zip" }, { - "name": "balena-etcher-electron-1.5.120.i686.rpm", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.120/balena-etcher-electron-1.5.120.i686.rpm" + "name": "balena-etcher-electron-1.5.121.i686.rpm", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.121/balena-etcher-electron-1.5.121.i686.rpm" }, { - "name": "balena-etcher-electron-1.5.120.x86_64.rpm", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.120/balena-etcher-electron-1.5.120.x86_64.rpm" + "name": "balena-etcher-electron-1.5.121.x86_64.rpm", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.121/balena-etcher-electron-1.5.121.x86_64.rpm" }, { - "name": "balena-etcher-electron_1.5.120_amd64.deb", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.120/balena-etcher-electron_1.5.120_amd64.deb" + "name": "balena-etcher-electron_1.5.121_amd64.deb", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.121/balena-etcher-electron_1.5.121_amd64.deb" }, { - "name": "balena-etcher-electron_1.5.120_i386.deb", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.120/balena-etcher-electron_1.5.120_i386.deb" + "name": "balena-etcher-electron_1.5.121_i386.deb", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.121/balena-etcher-electron_1.5.121_i386.deb" }, { - "name": "balenaEtcher-1.5.120-ia32.AppImage", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.120/balenaEtcher-1.5.120-ia32.AppImage" + "name": "balenaEtcher-1.5.121-ia32.AppImage", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.121/balenaEtcher-1.5.121-ia32.AppImage" }, { - "name": "balenaEtcher-1.5.120-x64.AppImage", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.120/balenaEtcher-1.5.120-x64.AppImage" + "name": "balenaEtcher-1.5.121-x64.AppImage", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.121/balenaEtcher-1.5.121-x64.AppImage" }, { - "name": "balenaEtcher-1.5.120.dmg", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.120/balenaEtcher-1.5.120.dmg" + "name": "balenaEtcher-1.5.121.dmg", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.121/balenaEtcher-1.5.121.dmg" }, { - "name": "balenaEtcher-1.5.120.dmg.blockmap", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.120/balenaEtcher-1.5.120.dmg.blockmap" + "name": "balenaEtcher-1.5.121.dmg.blockmap", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.121/balenaEtcher-1.5.121.dmg.blockmap" }, { - "name": "balenaEtcher-1.5.120.zip", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.120/balenaEtcher-1.5.120.zip" + "name": "balenaEtcher-1.5.121.zip", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.121/balenaEtcher-1.5.121.zip" }, { - "name": "balenaEtcher-Portable-1.5.120.exe", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.120/balenaEtcher-Portable-1.5.120.exe" + "name": "balenaEtcher-Portable-1.5.121.exe", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.121/balenaEtcher-Portable-1.5.121.exe" }, { - "name": "balenaEtcher-Setup-1.5.120.exe", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.120/balenaEtcher-Setup-1.5.120.exe" + "name": "balenaEtcher-Setup-1.5.121.exe", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.121/balenaEtcher-Setup-1.5.121.exe" }, { - "name": "balenaEtcher-Setup-1.5.120.exe.blockmap", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.120/balenaEtcher-Setup-1.5.120.exe.blockmap" + "name": "balenaEtcher-Setup-1.5.121.exe.blockmap", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.121/balenaEtcher-Setup-1.5.121.exe.blockmap" }, { "name": "builder-effective-config.yaml", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.120/builder-effective-config.yaml" + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.121/builder-effective-config.yaml" }, { "name": "latest-linux-ia32.yml", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.120/latest-linux-ia32.yml" + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.121/latest-linux-ia32.yml" }, { "name": "latest-linux.yml", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.120/latest-linux.yml" + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.121/latest-linux.yml" }, { "name": "latest-mac.yml", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.120/latest-mac.yml" + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.121/latest-mac.yml" }, { "name": "latest.yml", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.120/latest.yml" + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.5.121/latest.yml" } ] }, @@ -16217,8 +16263,76 @@ ] }, "openIssues": { - "numberOfIssues": 301, + "numberOfIssues": 309, "latestIssues": [ + { + "title": "etcher doesnt respect darkmode", + "url": "https://github.com/balena-io/etcher/issues/3556" + }, + { + "title": "etcher failed to flash emeulec 4.0 at 99% validation onto my SD card", + "url": "https://github.com/balena-io/etcher/issues/3555" + }, + { + "title": "Building on FreeBSD", + "url": "https://github.com/balena-io/etcher/issues/3552" + }, + { + "title": "Add possibile authorization as a query param", + "url": "https://github.com/balena-io/etcher/pull/3545" + }, + { + "title": "Wrong links in contributing docs", + "url": "https://github.com/balena-io/etcher/issues/3544" + }, + { + "title": "Upon choosing an image, Etcher goes blank", + "url": "https://github.com/balena-io/etcher/issues/3541" + }, + { + "title": "Add loader on image select", + "url": "https://github.com/balena-io/etcher/pull/3539" + }, + { + "title": "Typo in README?", + "url": "https://github.com/balena-io/etcher/issues/3538" + }, + { + "title": "Application not opening", + "url": "https://github.com/balena-io/etcher/issues/3537" + }, + { + "title": "White background without any GUI elements, when running Etcher", + "url": "https://github.com/balena-io/etcher/issues/3536" + }, + { + "title": "Identify pass/fail/inserted devices easily when flashing multiple devices", + "url": "https://github.com/balena-io/etcher/issues/3535" + }, + { + "title": "Don't ask me to `curl | bash` as root!", + "url": "https://github.com/balena-io/etcher/issues/3534" + }, + { + "title": "Flash fails", + "url": "https://github.com/balena-io/etcher/issues/3530" + }, + { + "title": "Failure to handle http 'Location: ' redirects results in \"Missing Partition Table\" error messages", + "url": "https://github.com/balena-io/etcher/issues/3523" + }, + { + "title": "Apple M1 - etcher goes blank after picking image ", + "url": "https://github.com/balena-io/etcher/issues/3520" + }, + { + "title": "Popup showing that selected ISO file may be a Windows image is immediately being replaced by \"Missing partition table\" message", + "url": "https://github.com/balena-io/etcher/issues/3517" + }, + { + "title": "Where did the settings for \"Auto eject\" go?", + "url": "https://github.com/balena-io/etcher/issues/3516" + }, { "title": "flash fails with \"Couldn't clean the drive\" error", "url": "https://github.com/balena-io/etcher/issues/3512" @@ -16230,78 +16344,10 @@ { "title": "Etcher gives me a zip file", "url": "https://github.com/balena-io/etcher/issues/3510" - }, - { - "title": "Balena Etcher PPA not recognised", - "url": "https://github.com/balena-io/etcher/issues/3508" - }, - { - "title": "Broken link-shortcuts on website", - "url": "https://github.com/balena-io/etcher/issues/3506" - }, - { - "title": "only v1.5.116 (not latest 1.5.119) is available for download", - "url": "https://github.com/balena-io/etcher/issues/3505" - }, - { - "title": "chore: replace make webpack with npm run webpack", - "url": "https://github.com/balena-io/etcher/pull/3503" - }, - { - "title": "New deb|rpm PPA", - "url": "https://github.com/balena-io/etcher/issues/3501" - }, - { - "title": "Flash Failed! error", - "url": "https://github.com/balena-io/etcher/issues/3499" - }, - { - "title": "Trying to install etcher on my pi4 with raspbian/buster OS, error", - "url": "https://github.com/balena-io/etcher/issues/3497" - }, - { - "title": "ATK and libatk-bridge", - "url": "https://github.com/balena-io/etcher/issues/3494" - }, - { - "title": "patch: Select drive on list interaction rather than modal closing", - "url": "https://github.com/balena-io/etcher/pull/3489" - }, - { - "title": "Linked", - "url": "https://github.com/balena-io/etcher/pull/3488" - }, - { - "title": "Ubuntu install orphaned path", - "url": "https://github.com/balena-io/etcher/issues/3486" - }, - { - "title": "CLI version?", - "url": "https://github.com/balena-io/etcher/issues/3483" - }, - { - "title": "update the windows part", - "url": "https://github.com/balena-io/etcher/pull/3480" - }, - { - "title": "Feature request: BeagleBone flashing", - "url": "https://github.com/balena-io/etcher/issues/3477" - }, - { - "title": "Hangs on startup when outbound connections are detected in firewall", - "url": "https://github.com/balena-io/etcher/issues/3476" - }, - { - "title": "bmap verification fails if image doesn't evenly divide into its block size", - "url": "https://github.com/balena-io/etcher/issues/3475" - }, - { - "title": "Bmap file detection similar to md5sum", - "url": "https://github.com/balena-io/etcher/issues/3473" } ] }, - "version": "1.5.120", + "version": "1.5.121", "screenshot": null, "logo": null }