diff --git a/CHANGELOG.yml b/CHANGELOG.yml index 2474c2a9..c606cf63 100644 --- a/CHANGELOG.yml +++ b/CHANGELOG.yml @@ -1,3 +1,37 @@ +- commits: + - subject: "patch: update allowed extensions to include deb afterinstall in build" + hash: 61610ded842caba47c6a682afcb08aa0fda4e86b + body: "" + footer: {} + author: mcraa + nested: [] + - subject: "patch: add update notification" + hash: c87a132f40b41c28d2375c7489d66ad4a6914355 + body: "" + footer: {} + author: Peter Makra + nested: [] + - subject: "patch: fix usb-device-boot link in README" + hash: 350d4de32ba0739b0ad1c2dc0b0b98eecf41f8f9 + body: "" + footer: + Change-type: patch + change-type: patch + author: Andrew Scheller + nested: [] + - subject: Fix application directory for Debian postinst script + hash: f5f9025d6db248a8774ff6c9bb9d2afebda6cc3b + body: "" + footer: + Change-type: patch + change-type: patch + Signed-off-by: Ken Bannister + signed-off-by: Ken Bannister + author: Ken Bannister + nested: [] + version: 1.7.9 + title: "'patch: deb afterinstall and readme updates'" + date: 2022-04-22T13:46:30.023Z - commits: - subject: "patch: complete suse uninstall readme" hash: 8370f638b4e92a4c981f79362ba0d0700f9f94a1 @@ -66,7 +100,7 @@ nested: [] version: 1.7.8 title: "'small ui updates'" - date: 2022-03-18T17:21:01.820Z + date: 2022-03-18T10:39:52.131Z - commits: - subject: "patch: clarified update check" hash: a5201942b8817cc1d74fba0ae2c8378632d16fc5 diff --git a/scrutinizer.json b/scrutinizer.json index 02a1526a..91b09c37 100644 --- a/scrutinizer.json +++ b/scrutinizer.json @@ -2,6 +2,53 @@ "license": "Apache-2.0", "blog": [], "changelog": [ + { + "commits": [ + { + "subject": "patch: update allowed extensions to include deb afterinstall in build", + "hash": "61610ded842caba47c6a682afcb08aa0fda4e86b", + "body": "", + "footer": {}, + "author": "mcraa", + "nested": [] + }, + { + "subject": "patch: add update notification", + "hash": "c87a132f40b41c28d2375c7489d66ad4a6914355", + "body": "", + "footer": {}, + "author": "Peter Makra", + "nested": [] + }, + { + "subject": "patch: fix usb-device-boot link in README", + "hash": "350d4de32ba0739b0ad1c2dc0b0b98eecf41f8f9", + "body": "", + "footer": { + "Change-type": "patch", + "change-type": "patch" + }, + "author": "Andrew Scheller", + "nested": [] + }, + { + "subject": "Fix application directory for Debian postinst script", + "hash": "f5f9025d6db248a8774ff6c9bb9d2afebda6cc3b", + "body": "", + "footer": { + "Change-type": "patch", + "change-type": "patch", + "Signed-off-by": "Ken Bannister ", + "signed-off-by": "Ken Bannister " + }, + "author": "Ken Bannister", + "nested": [] + } + ], + "version": "1.7.9", + "title": "'patch: deb afterinstall and readme updates'", + "date": "2022-04-22T13:10:47.137Z" + }, { "commits": [ { @@ -16442,6 +16489,10 @@ "username": "bulldozer-balena[bot]", "avatar": "https://avatars.githubusercontent.com/in/58047?v=4" }, + { + "username": "mcraa", + "avatar": "https://avatars.githubusercontent.com/u/6892971?v=4" + }, { "username": "nazrhom", "avatar": "https://avatars.githubusercontent.com/u/6810908?v=4" @@ -16450,10 +16501,6 @@ "username": "stefan-mihaila", "avatar": "https://avatars.githubusercontent.com/u/2217136?v=4" }, - { - "username": "mcraa", - "avatar": "https://avatars.githubusercontent.com/u/6892971?v=4" - }, { "username": "LucianBuzzo", "avatar": "https://avatars.githubusercontent.com/u/15064535?v=4" @@ -16732,7 +16779,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": [], - "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[![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## Packages\n\n> [![Hosted By: Cloudsmith](https://img.shields.io/badge/OSS%20hosting%20by-cloudsmith-blue?logo=cloudsmith&style=for-the-badge)](https://cloudsmith.com) \\\nPackage repository hosting is graciously provided by [Cloudsmith](https://cloudsmith.com).\nCloudsmith is the only fully hosted, cloud-native, universal package management solution, that\nenables your organization to create, store and share packages in any format, to any place, with total\nconfidence.\n\n#### Debian and Ubuntu based Package Repository (GNU/Linux x86/x64)\n\n> Detailed or alternative steps in the [instructions by Cloudsmith](https://cloudsmith.io/~balena/repos/etcher/setup/#formats-deb)\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#### Redhat (RHEL) and Fedora-based Package Repository (GNU/Linux x86/x64)\n\n> Detailed or alternative steps in the [instructions by Cloudsmith](https://cloudsmith.io/~balena/repos/etcher/setup/#formats-rpm)\n\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 ```\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#### OpenSUSE LEAP & Tumbleweed install (zypper)\n\n1. Add the repo\n\n ```sh\n curl -1sLf \\\n 'https://dl.cloudsmith.io/public/balena/etcher/setup.rpm.sh' \\\n | sudo -E bash\n ```\n2. Update and install\n\n ```sh\n sudo zypper up\n sudo zypper install balena-etcher-electron\n ```\n\n##### Uninstall\n\n```sh\nsudo zypper rm balena-etcher-electron\n# remove the repo\nsudo zypper rr balena-etcher\nsudo zypper rr balena-etcher-source\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", + "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.com/documentation/computers/raspberry-pi.html#usb-device-boot-mode).\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[![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## Packages\n\n> [![Hosted By: Cloudsmith](https://img.shields.io/badge/OSS%20hosting%20by-cloudsmith-blue?logo=cloudsmith&style=for-the-badge)](https://cloudsmith.com) \\\nPackage repository hosting is graciously provided by [Cloudsmith](https://cloudsmith.com).\nCloudsmith is the only fully hosted, cloud-native, universal package management solution, that\nenables your organization to create, store and share packages in any format, to any place, with total\nconfidence.\n\n#### Debian and Ubuntu based Package Repository (GNU/Linux x86/x64)\n\n> Detailed or alternative steps in the [instructions by Cloudsmith](https://cloudsmith.io/~balena/repos/etcher/setup/#formats-deb)\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#### Redhat (RHEL) and Fedora-based Package Repository (GNU/Linux x86/x64)\n\n> Detailed or alternative steps in the [instructions by Cloudsmith](https://cloudsmith.io/~balena/repos/etcher/setup/#formats-rpm)\n\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 ```\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#### OpenSUSE LEAP & Tumbleweed install (zypper)\n\n1. Add the repo\n\n ```sh\n curl -1sLf \\\n 'https://dl.cloudsmith.io/public/balena/etcher/setup.rpm.sh' \\\n | sudo -E bash\n ```\n2. Update and install\n\n ```sh\n sudo zypper up\n sudo zypper install balena-etcher-electron\n ```\n\n##### Uninstall\n\n```sh\nsudo zypper rm balena-etcher-electron\n# remove the repo\nsudo zypper rr balena-etcher\nsudo zypper rr balena-etcher-source\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, "examples": null, @@ -16744,7 +16791,7 @@ "public": true, "fork": false, "description": "Flash OS images to SD cards & USB drives, safely and easily.", - "stars": 22505, + "stars": 22739, "homepage": "https://etcher.io", "repositoryUrl": "https://github.com/balena-io/etcher.git", "active": true, @@ -16755,85 +16802,85 @@ "type": "Organization" }, "dependencies": [], - "lastCommitDate": "2022-03-18T17:22:12Z", + "lastCommitDate": "2022-04-22T13:47:29Z", "latestRelease": { - "tagName": "v1.7.8", + "tagName": "v1.7.9", "asssets": [ { - "name": "balena-etcher-electron-1.7.8-linux-ia32.zip", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.8/balena-etcher-electron-1.7.8-linux-ia32.zip" + "name": "balena-etcher-electron-1.7.9-linux-ia32.zip", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.9/balena-etcher-electron-1.7.9-linux-ia32.zip" }, { - "name": "balena-etcher-electron-1.7.8-linux-x64.zip", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.8/balena-etcher-electron-1.7.8-linux-x64.zip" + "name": "balena-etcher-electron-1.7.9-linux-x64.zip", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.9/balena-etcher-electron-1.7.9-linux-x64.zip" }, { - "name": "balena-etcher-electron-1.7.8.i686.rpm", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.8/balena-etcher-electron-1.7.8.i686.rpm" + "name": "balena-etcher-electron-1.7.9.i686.rpm", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.9/balena-etcher-electron-1.7.9.i686.rpm" }, { - "name": "balena-etcher-electron-1.7.8.x86_64.rpm", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.8/balena-etcher-electron-1.7.8.x86_64.rpm" + "name": "balena-etcher-electron-1.7.9.x86_64.rpm", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.9/balena-etcher-electron-1.7.9.x86_64.rpm" }, { - "name": "balena-etcher-electron_1.7.8_amd64.deb", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.8/balena-etcher-electron_1.7.8_amd64.deb" + "name": "balena-etcher-electron_1.7.9_amd64.deb", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.9/balena-etcher-electron_1.7.9_amd64.deb" }, { - "name": "balena-etcher-electron_1.7.8_i386.deb", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.8/balena-etcher-electron_1.7.8_i386.deb" + "name": "balena-etcher-electron_1.7.9_i386.deb", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.9/balena-etcher-electron_1.7.9_i386.deb" }, { - "name": "balenaEtcher-1.7.8-ia32.AppImage", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.8/balenaEtcher-1.7.8-ia32.AppImage" + "name": "balenaEtcher-1.7.9-ia32.AppImage", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.9/balenaEtcher-1.7.9-ia32.AppImage" }, { - "name": "balenaEtcher-1.7.8-x64.AppImage", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.8/balenaEtcher-1.7.8-x64.AppImage" + "name": "balenaEtcher-1.7.9-x64.AppImage", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.9/balenaEtcher-1.7.9-x64.AppImage" }, { - "name": "balenaEtcher-1.7.8.dmg", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.8/balenaEtcher-1.7.8.dmg" + "name": "balenaEtcher-1.7.9.dmg", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.9/balenaEtcher-1.7.9.dmg" }, { - "name": "balenaEtcher-1.7.8.dmg.blockmap", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.8/balenaEtcher-1.7.8.dmg.blockmap" + "name": "balenaEtcher-1.7.9.dmg.blockmap", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.9/balenaEtcher-1.7.9.dmg.blockmap" }, { - "name": "balenaEtcher-1.7.8.zip", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.8/balenaEtcher-1.7.8.zip" + "name": "balenaEtcher-1.7.9.zip", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.9/balenaEtcher-1.7.9.zip" }, { - "name": "balenaEtcher-Portable-1.7.8.exe", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.8/balenaEtcher-Portable-1.7.8.exe" + "name": "balenaEtcher-Portable-1.7.9.exe", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.9/balenaEtcher-Portable-1.7.9.exe" }, { - "name": "balenaEtcher-Setup-1.7.8.exe", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.8/balenaEtcher-Setup-1.7.8.exe" + "name": "balenaEtcher-Setup-1.7.9.exe", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.9/balenaEtcher-Setup-1.7.9.exe" }, { - "name": "balenaEtcher-Setup-1.7.8.exe.blockmap", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.8/balenaEtcher-Setup-1.7.8.exe.blockmap" + "name": "balenaEtcher-Setup-1.7.9.exe.blockmap", + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.9/balenaEtcher-Setup-1.7.9.exe.blockmap" }, { "name": "builder-effective-config.yaml", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.8/builder-effective-config.yaml" + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.9/builder-effective-config.yaml" }, { "name": "latest-linux-ia32.yml", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.8/latest-linux-ia32.yml" + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.9/latest-linux-ia32.yml" }, { "name": "latest-linux.yml", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.8/latest-linux.yml" + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.9/latest-linux.yml" }, { "name": "latest-mac.yml", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.8/latest-mac.yml" + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.9/latest-mac.yml" }, { "name": "latest.yml", - "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.8/latest.yml" + "downloadUrl": "https://github.com/balena-io/etcher/releases/download/v1.7.9/latest.yml" } ] }, @@ -16931,8 +16978,60 @@ ] }, "openIssues": { - "numberOfIssues": 350, + "numberOfIssues": 358, "latestIssues": [ + { + "title": "Feature: Option to Inject SSH info into Raspberry Pi OS (and maybe other OSes)", + "url": "https://github.com/balena-io/etcher/issues/3746" + }, + { + "title": "Support burning Windows 11 images", + "url": "https://github.com/balena-io/etcher/issues/3745" + }, + { + "title": "Checking for update Update for version 1.7.8 is not available (latest version: 1.7.8, downgrade is disallowed).", + "url": "https://github.com/balena-io/etcher/issues/3743" + }, + { + "title": "Feature: Read SDCard to *.img file", + "url": "https://github.com/balena-io/etcher/issues/3742" + }, + { + "title": "Not transferring over gpg", + "url": "https://github.com/balena-io/etcher/issues/3741" + }, + { + "title": "Auto Update on Mac", + "url": "https://github.com/balena-io/etcher/issues/3740" + }, + { + "title": "W: Failed to fetch http://dl.bintray.com/aluxian/deb/dists/stable/InRelease Connection failed", + "url": "https://github.com/balena-io/etcher/issues/3739" + }, + { + "title": "Etcher does not work on Chromebooks", + "url": "https://github.com/balena-io/etcher/issues/3738" + }, + { + "title": "通过新版balenaEtcher制作的MACOS启动盘无法使用", + "url": "https://github.com/balena-io/etcher/issues/3737" + }, + { + "title": "Flashing fails for some SDs but not others", + "url": "https://github.com/balena-io/etcher/issues/3736" + }, + { + "title": "contains the image you chose to flash", + "url": "https://github.com/balena-io/etcher/issues/3734" + }, + { + "title": "Can we show why a flash fails in Etcher interface?", + "url": "https://github.com/balena-io/etcher/issues/3733" + }, + { + "title": "Feature Modification", + "url": "https://github.com/balena-io/etcher/issues/3731" + }, { "title": "Keep getting \"Flash Failed\" even though it appears to have worked", "url": "https://github.com/balena-io/etcher/issues/3730" @@ -16960,62 +17059,10 @@ { "title": "White screen in windows 10 32bit", "url": "https://github.com/balena-io/etcher/issues/3722" - }, - { - "title": "does etcher used internet.", - "url": "https://github.com/balena-io/etcher/issues/3721" - }, - { - "title": "- etcher 1.7.7", - "url": "https://github.com/balena-io/etcher/issues/3720" - }, - { - "title": "apt update fails in Debian 12 due to use of deprecated apt-key", - "url": "https://github.com/balena-io/etcher/issues/3719" - }, - { - "title": "Community builds", - "url": "https://github.com/balena-io/etcher/issues/3714" - }, - { - "title": "flash failing on macOS, details in desc.", - "url": "https://github.com/balena-io/etcher/issues/3713" - }, - { - "title": "patch: add arm64 output", - "url": "https://github.com/balena-io/etcher/pull/3712" - }, - { - "title": "always Flash failed even in brandnew sdcard when flashing Jetpack 4.6 SDK", - "url": "https://github.com/balena-io/etcher/issues/3703" - }, - { - "title": "ubuntu-budgie-20.04.3-desktop-amd64.iso flash failed", - "url": "https://github.com/balena-io/etcher/issues/3702" - }, - { - "title": "Failed to flash image built by balena-rockpi", - "url": "https://github.com/balena-io/etcher/issues/3701" - }, - { - "title": "Keep Getting Flash Failed", - "url": "https://github.com/balena-io/etcher/issues/3698" - }, - { - "title": "does nothing", - "url": "https://github.com/balena-io/etcher/issues/3696" - }, - { - "title": "Flash failing", - "url": "https://github.com/balena-io/etcher/issues/3694" - }, - { - "title": "Etcher - can't change the language - HOW can i change the interface language ?", - "url": "https://github.com/balena-io/etcher/issues/3692" } ] }, - "version": "1.7.8", + "version": "1.7.9", "screenshot": null, "logo": null }