-
Attention Bluejay users!
diff --git a/src/Components/Home/style.scss b/src/Components/Home/style.scss
index 6a2f07acb..b4013e364 100644
--- a/src/Components/Home/style.scss
+++ b/src/Components/Home/style.scss
@@ -219,15 +219,4 @@
list-style: disc;
}
}
-
- .alert {
- color: #721c24;
- background-color: #f8d7da;
- border-color: #f5c6cb;
- position: relative;
- padding: 0.75rem 1.25rem;
- margin-bottom: 1rem;
- border: 1px solid transparent;
- border-radius: 0.25rem;
- }
}
diff --git a/src/Components/MainContent/style.scss b/src/Components/MainContent/style.scss
index 212da2f57..9d6514093 100644
--- a/src/Components/MainContent/style.scss
+++ b/src/Components/MainContent/style.scss
@@ -13,14 +13,14 @@
.note {
background-color: #fff3cd;
- border: 1px solid #ffeeba;
+ border-color: #ffeeba;
color: #856404;
- margin-top: 5px;
- margin-bottom: 25px;
- border-radius: 3px;
- font-size: 11px;
- font-family: 'open_sansregular', Arial, sans-serif;
- padding: 5px 7px;
+
+ position: relative;
+ padding: 0.75rem 1.25rem;
+ margin-bottom: 10px;
+ border: 1px solid transparent;
+ border-radius: 0.25rem;
@media screen and (width <= 768px) {
margin-bottom: 18px;
@@ -104,6 +104,36 @@
}
}
+ .alert {
+ color: #721c24;
+ background-color: #f8d7da;
+ border-color: #f5c6cb;
+ position: relative;
+ padding: 0.75rem 1.25rem;
+ margin-bottom: 10px;
+ border: 1px solid transparent;
+ border-radius: 0.25rem;
+
+ p {
+ margin-bottom: 10px;
+ font-weight: normal;
+
+ ul {
+ font-weight: normal;
+ li {
+ list-style-type: disc;
+ margin-left: 20px;
+ }
+ }
+ }
+
+ span,
+ a {
+ color: #721c24;
+ font-size: inherit;
+ }
+ }
+
.checkbox,
.number,
.number-text,
diff --git a/src/sources/Bluejay/index.js b/src/sources/Bluejay/index.js
index 65d48c34e..b5e9f1460 100644
--- a/src/sources/Bluejay/index.js
+++ b/src/sources/Bluejay/index.js
@@ -76,7 +76,7 @@ class BluejaySource extends GithubSource {
}
async getVersions() {
- return this.getRemoteVersionsList(GITHUB_REPO, blacklist, 5);
+ return this.getRemoteVersionsList(GITHUB_REPO, blacklist, 8);
}
isValidName(name) {
diff --git a/src/sources/GithubSource.js b/src/sources/GithubSource.js
index 2fdd8cb83..d4595a26b 100644
--- a/src/sources/GithubSource.js
+++ b/src/sources/GithubSource.js
@@ -28,6 +28,7 @@ class GithubSource extends Source {
name: release.name || release.tag_name.replace(/^v/, ''),
key: release.tag_name,
url: `https://github.com/${repo}/releases/download/${release.tag_name}/`,
+ releaseUrl: `https://github.com/${repo}/releases/tag/${release.tag_name}/`,
prerelease: release.prerelease,
published_at: release.published_at,
}));
diff --git a/src/translations/en/common.json b/src/translations/en/common.json
index 4570e80d1..81e6923e3 100644
--- a/src/translations/en/common.json
+++ b/src/translations/en/common.json
@@ -186,5 +186,11 @@
"mistaggedDetected": "Detected",
"update": "Update available! To update the app, refresh or restart it.",
"resettingDevice": "Resetting device...",
- "disabled": "Disabled"
+ "disabled": "Disabled",
+ "selectionAttention": "Attention!",
+ "selectionHint": "When flashing new (or different) ESC firmware it is best practice to adhere to the following checklist:",
+ "selectionLi1": "Read the relese notes to understand what changed and what you might need to adjust",
+ "selectionLi2": "Make sure your motors spin up reliably on arm and in the correct direction",
+ "selectionLi3": "Check motor temperatures after a short test flight and adjust tune if they are too hot",
+ "selectionLinkText": "Show release notes on Github"
}