Add antenna timeline explanation

This commit is contained in:
Laura Hausmann 2023-08-30 18:05:15 +02:00
parent 0952a37e86
commit dad82682e8
Signed by: zotan
GPG key ID: D044E84C5BE01605
3 changed files with 12 additions and 0 deletions

View file

@ -424,6 +424,8 @@ withFileAntenna: "Only posts with files"
enableServiceworker: "Enable Push-Notifications for your Browser"
antennaUsersDescription: "List one username per line"
antennaInstancesDescription: "List one server host per line"
antennaTimelineHint: "Antennas display matching posts in order they have been received in,
which is not necessarily chronological."
caseSensitive: "Case sensitive"
withReplies: "Include replies"
connectedTo: "Following account(s) are connected"

View file

@ -101,6 +101,9 @@ if (props.src === "antenna") {
antennaId: props.antenna,
});
connection.on("note", prepend);
tlHint = i18n.ts.antennaTimelineHint;
tlHintClosed = defaultStore.state.tlAntennaHintClosed;
} else if (props.src === "home") {
endpoint = "notes/timeline";
query = {
@ -220,6 +223,9 @@ function closeHint() {
case "global":
defaultStore.set("tlGlobalHintClosed", true);
break;
case "antenna":
defaultStore.set("tlAntennaHintClosed", true);
break;
}
}

View file

@ -46,6 +46,10 @@ export const defaultStore = markRaw(
where: "device",
default: false,
},
tlAntennaHintClosed: {
where: "device",
default: false,
},
keepCw: {
where: "account",
default: true,