Add icon for StaleDesc flag.

The new icon is based on clock, solid style in Font Awesome Free
5.21.1. It was converted using Inkscape 0.92.4 using the command:
`inkscape -z -e clock.png -w 16 -h 16 clock.svg`.

Fixes #33453.
This commit is contained in:
Karsten Loesing 2020-03-09 17:31:41 +01:00
parent 1bef5acf3b
commit cff715e388
2 changed files with 3 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 B

View File

@ -43,6 +43,9 @@ define([
if (flag == "Stable") {
output.push([flag, "stable", "This relay is suitable for long-lived circuits."]);
}
if (flag == "StaleDesc") {
output.push([flag, "staledesc", "This relay should upload a new descriptor because the old one is too old."]);
}
if (flag == "V2Dir") {
output.push([flag, "v2dir", "This relay implements the v2 directory protocol or higher."]);
}