Update prose about the new refresh metadata feature

This commit is contained in:
Mike Dilger 2023-01-20 08:57:14 +13:00
parent 9516513d84
commit c1ccc02b42
2 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@ Also, the GUI sucks. It looks horrible. And isn't smartly designed. But form fol
- On page `People > Follow Someone New` follow yourself (specify your public key AND one of the relays you added in the previous step. If you don't add the relay, gossip can't help you).
- Restart (sorry this will be fixed one of these days)
- On page `Feed > Following ` look at your posts (by default only the last 12 hours show up) and their replies (by clicking the right arrow on the right side of post to give the thread), which will give gossip some data to launch from. Hopefully you have some replies. But if not, no worry, the next step helps too.
- On page `People > Followed` press `Pull Overwrite` to pull down the people you follow. Metadata is not automatically gathered for them yet (but will be in the future).
- On page `People > Followed` press `Pull Overwrite` to pull down the people you follow. You can then press `Refresh Metadata` to get their metadata (whether it works or not depends on if gossip knows which relays these people are at yet).
- Click any of these people's avatars and press `View Their Feed` to collect more data on where to find them. If you don't get any data for a person, it may be because there is no good way for nostr to know where they post to. This problem goes away after using gossip for awhile, and it remains an outstanding issue to solve.
- Maybe restart again for good measure.

View File

@ -88,13 +88,13 @@ pub(super) fn update(app: &mut GossipUi, ctx: &Context, _frame: &mut eframe::Fra
if ui.link("People > Followed").clicked() {
app.set_page(Page::PeopleList);
}
ui.label("page, press [Pull Overwrite] to pull down the people you follow. Metadata is not automatically gathered for them yet (but will be in the future).");
ui.label("page, press [Pull Overwrite] to pull down the people you follow. Then press [Refresh Metadata] to update their metadata (it might work for some and not others, it depends if gossip knows which relays they are at yet).");
});
});
ui.label("• Click Avatars to explore people");
ui.indent("quickstartclickavatars", |ui| {
ui.horizontal_wrapped(|ui| {
ui.label("Click any of these people's avatars to get to their page, where you can update their metadata or view their posts. If you don't get any data for a person, it may be because there is no good way for nostr to know where they post to. This problem goes away after using gossip for awhile, and it remains an outstanding issue to solve.");
ui.label("Click any of these people's avatars to get to their page, where you can update their metadata or view their posts. If you don't get any data for a person, it may be because there is no good way for gossip to know where they post to. This problem goes away after using gossip for awhile, and it remains an outstanding issue to solve.");
});
});