-
-
Notifications
You must be signed in to change notification settings - Fork 408
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ui): Add help for dnd, voice packs and the updater
- Loading branch information
Showing
6 changed files
with
126 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
export const DoNotDisturbHelp = ` | ||
## Do not disturb | ||
Some firmwares allow you to define a do not disturb period where certain features of the robot are disabled. | ||
What exactly changes may differ based on robot vendor, model and firmware version. | ||
For example, the robot might not continue a partially finished task which has been interrupted due to the | ||
robot having to charge. | ||
As charging back up to 100% battery may take a few hours, it could happen that the robot attempts to continue cleaning | ||
at 3am, which is often considered undesirable. | ||
Another thing that can be affected by the DND setting is the auto empty dock as those are usually pretty loud. | ||
**Please note that DND times are evaluated and stored as UTC. They are only displayed in your current browser timezone | ||
for your convenience.** | ||
**If your country/state is taking part in that nonsensical Daylight Saving Time cult, you will have to | ||
manually shift the DND time back and forth each time you switch from and to DST.** | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
export const VoicepackHelp = ` | ||
## Voice packs | ||
Custom voice packs are a bit more complicated as the exact format differs depending on your choice of robot. | ||
As I personally don't really care about them, this feature is a bit rough around the edges. | ||
For me, these things are first and foremost tools that should simply work and do so reliably. | ||
Thus, I'm fine with it just talking english as that's perfectly serviceable for a tool. | ||
If you want to install install a custom one anyways, you will need a voicepack in the correct format as required by your | ||
robot hosted on some http server. Note that the official CDN is often blocked in the robots firmware meaning that just | ||
using the official URL likely won't work. | ||
Depending on the model of robot, you will also need a hash of that voice pack file. | ||
The type of hash differs depending on the firmware. | ||
Furthermore, you'll also need to specify a language code. That value largely doesn't matter much unless you use a reserved code. | ||
"EN", "CN" etc are often codes reserved for the inbuilt voice packs of the firmware. | ||
Usually it's possible to revert to the currently installed voice pack by specifying one of those inbuilt voicepack codes during the install. | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
export const UpdaterHelp = ` | ||
## Updater | ||
The Valetudo updater is a convenience feature aiming to make life with Valetudo a bit easier. | ||
As it is built with privacy in mind, you will have to manually click a button to make it search for newer versions of Valetudo. | ||
No daily update check means no daily pings to some external server. | ||
By default, it's polling the GitHub API, meaning that I am not able to collect any data about you. | ||
**Note: The updater will always try to update you to the next chronological release. If you're multiple releases behind, | ||
you will have to update multiple times in a row.** | ||
As the updater is just a convenience feature, there might be situations in which it doesn't work. In those situations, | ||
you will have to do a manual update, which usually involves SSH access to the robot. | ||
Sometimes, a configuration change might enable you to use the updater. In other instances, your model of robot might not | ||
be able to use the updater at all as there's not enough storage built in. This is not a bug. That's just how it is. | ||
It is also worth noting that the updater won't update the robots firmware. It only updates the Valetudo binary. | ||
`; |