Setup Assistant: Tweak wording and add links to Shared Storage step

This commit is contained in:
Pablo Vazquez 2022-07-22 12:19:45 +02:00 committed by Francesco Siddi
parent cc22c1010f
commit 8d5ce11351

View File

@ -61,24 +61,29 @@
:is-next-clickable="sharedStoragePath.length > 0" :is-next-clickable="sharedStoragePath.length > 0"
title="Shared Storage" title="Shared Storage"
> >
<p>Please specify a storage path (or drive), where you want to store your Flamenco data. <p>Specify a path (or drive) where you want to store your Flamenco data.</p>
<p>
The location of the shared storage should be accessible by Flamenco Manager and by the Workers. The location of the shared storage should be accessible by Flamenco Manager and by the Workers.
This could be: This could be:
</p> </p>
<ul> <ul>
<li>A local drive or folder (e.g. if you are working by yourself)</li>
<li>A NAS in your network</li> <li>A NAS in your network</li>
<li>A local drive or folder, if you are working alone</li> <li>Other file sharing server</li>
<li>Some other file sharing server</li>
</ul> </ul>
<p>Using a service like Syncthing, ownCloud, or Dropbox for <p>
this is not recommended, as Flamenco can't coordinate data synchronization.</p> Using services like Dropbox, Syncthing, or ownCloud for
this is not recommended, as Flamenco can't coordinate data synchronization.
<a href="https://flamenco.blender.org/usage/getting-started/">Learn more</a>.
</p>
<input <input
v-model="sharedStoragePath" v-model="sharedStoragePath"
@keyup.enter="nextStepAfterCheckSharedStoragePath" @keyup.enter="nextStepAfterCheckSharedStoragePath"
type="text" type="text"
placeholder="Shared Storage Path" placeholder="Path to shared storage"
:class="{ :class="{
'is-invalid': (sharedStorageCheckResult != null) && !sharedStorageCheckResult.is_usable 'is-invalid': (sharedStorageCheckResult != null) && !sharedStorageCheckResult.is_usable
}" }"