From b01cf3c2e1c3a7a234c8b957bd570ecdca81e0c1 Mon Sep 17 00:00:00 2001 From: mcraa <6892971+mcraa@users.noreply.github.com> Date: Tue, 14 Feb 2023 12:45:16 +0100 Subject: [PATCH 1/6] patch: added docosaurus site name --- .github/workflows/flowzone.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/flowzone.yml b/.github/workflows/flowzone.yml index 63e0d266..0883217c 100644 --- a/.github/workflows/flowzone.yml +++ b/.github/workflows/flowzone.yml @@ -27,3 +27,4 @@ jobs: repo_description: "Flash OS images to SD cards & USB drives, safely and easily." repo_homepage: https://etcher.io/ repo_enable_wiki: true + cloudflare_website: "etcher" From 9b54e2af0b9356bb73e197cccbcc2ff89673361f Mon Sep 17 00:00:00 2001 From: mcraa <6892971+mcraa@users.noreply.github.com> Date: Tue, 14 Feb 2023 13:55:29 +0100 Subject: [PATCH 2/6] patch: removed gt characters from contributing guide --- docs/CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index 7dc1fc76..ef3c6dee 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -143,7 +143,7 @@ Use the following steps to ensure everything goes flawlessly: dependencies because you come from another branch or reference. - Install the new version of the dependency. For example: `npm install --save - @`. This will update the `npm-shrinkwrap.json` file. + [package]@[version]`. This will update the `npm-shrinkwrap.json` file. - Commit *both* `package.json` and `npm-shrinkwrap.json`. From 96fa53b6ee4ec7a29522df488b927074c0f301ca Mon Sep 17 00:00:00 2001 From: Lizzie Epton <36413849+Lizzieepton@users.noreply.github.com> Date: Mon, 20 Feb 2023 11:07:03 +0000 Subject: [PATCH 3/6] add-item-from-FAQs Change-type: patch --- docs/USER-DOCUMENTATION.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/USER-DOCUMENTATION.md b/docs/USER-DOCUMENTATION.md index 47b9f3c4..6e9084d7 100644 --- a/docs/USER-DOCUMENTATION.md +++ b/docs/USER-DOCUMENTATION.md @@ -218,3 +218,11 @@ macOS 10.10 (Yosemite) and newer versions][electron-supported-platforms]. [unetbootin]: https://unetbootin.github.io [windows-iot-dashboard]: https://developer.microsoft.com/en-us/windows/iot/downloads [woeusb]: https://github.com/slacka/WoeUSB + +How can I simulate an update alert? +----------------------------- +You can set the ETCHER_FAKE_S3_LATEST_VERSION environment variable to a valid semver version (greater than the current version) to trick the application into thinking that what you put there is the latest available version, therefore causing the update notification dialog to be presented at startup. + +Note that the value of the variable will be ignored if it doesn't match the release type of the current application version. For example, setting the variable to a production version (e.g. ETCHER_FAKE_S3_LATEST_VERSION=2.0.0) will be ignored if you're running a snapshot build, and vice-versa. + +See [PUBLISHING](/docs/PUBLISHING.md) for more details about release types. \ No newline at end of file From 394b64319de11b1010b8acfe160de13a6f3851cd Mon Sep 17 00:00:00 2001 From: mcraa <6892971+mcraa@users.noreply.github.com> Date: Tue, 21 Feb 2023 12:58:13 +0100 Subject: [PATCH 4/6] patch: updated commit message guide --- docs/COMMIT-GUIDELINES.md | 179 +++----------------------------------- 1 file changed, 10 insertions(+), 169 deletions(-) diff --git a/docs/COMMIT-GUIDELINES.md b/docs/COMMIT-GUIDELINES.md index f644452c..203e0183 100644 --- a/docs/COMMIT-GUIDELINES.md +++ b/docs/COMMIT-GUIDELINES.md @@ -12,67 +12,29 @@ over the commit history. - Be able to automatically reference relevant changes from a dependency upgrade. -The guidelines are inspired by the [AngularJS git commit -guidelines][angular-commit-guidelines]. Commit structure ---------------- -Each commit message consists of a header, a body and a footer. The header has a -special format that includes a type, a scope and a subject. +Each commit message needs to specify the semver-type. Which can be `patch|minor|major`. +See the [Semantic Versioning][semver] specification for a more detailed explanation of the meaning of these types. +See balena commit guidelines for more info about the whole commit structure. ``` -(): +: +``` +or +``` + - +
-