Skip to content

Commit c70bf8f

Browse files
committed
frontend: version-chooser: link to GitHub Releases when available versions fetch fails
1 parent 06490f9 commit c70bf8f

1 file changed

Lines changed: 36 additions & 4 deletions

File tree

core/frontend/src/components/version-chooser/VersionChooser.vue

Lines changed: 36 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,15 @@
113113
dark
114114
>
115115
{{ available_versions.error }}
116+
<br><br>
117+
You can download BlueOS versions (`BlueOS-core-docker-image` files) directly from the Assets in
118+
<a
119+
href="https://github.com/bluerobotics/BlueOS/releases"
120+
target="_blank"
121+
class="white--text"
122+
rel="noopener noreferrer"
123+
>
124+
GitHub Releases</a> and upload them using the "Manual Upload" section below.
116125
</v-alert>
117126
<spinning-logo
118127
v-if="loading_images"
@@ -153,13 +162,36 @@
153162
max-width="900"
154163
class="mx-auto pa-4"
155164
>
156-
<h2>Manual upload</h2>
157-
Use this to upload a .tar docker image. These can be downloaded from
165+
<h2>
166+
Manual Upload
167+
<v-tooltip top>
168+
<template #activator="{ on }">
169+
<v-icon
170+
small
171+
v-on="on"
172+
>
173+
mdi-information-outline
174+
</v-icon>
175+
</template>
176+
<span>
177+
When selecting the .tar artifact, make sure it matches your hardware architecture (armv7, arm64, or amd64)
178+
</span>
179+
</v-tooltip>
180+
</h2>
181+
Use this to upload a .tar docker image. These can be downloaded from the BlueOS
182+
<a
183+
href="https://github.com/bluerobotics/BlueOS/releases"
184+
target="_blank"
185+
rel="noopener noreferrer"
186+
>
187+
Releases</a> Assets, or
158188
<a
159189
href="https://github.com/bluerobotics/BlueOS/actions/workflows/test-and-deploy.yml"
160190
target="_blank"
161-
>Github's CI</a>
162-
or generated locally using "docker save"
191+
rel="noopener noreferrer"
192+
>
193+
CI</a>
194+
Artifacts (GitHub account required), or generated locally using <code>docker save</code>.
163195
<v-file-input
164196
v-if="!disable_upload_controls"
165197
id="file"

0 commit comments

Comments
 (0)