2.1.0
I am still working on automating this release note process, and not screwing up the GitFlow versioning, so pardon the dust.
This includes some new helper methods for facets, as talked about in #68:
var postText = "@drasticactions.dev This is a #test #test of #testing the #FishyFlip #API. https://github.com/drasticactions DAHome. @drasticactions.jp https://github.com/drasticactions/FishyFlip @drasticactions.dev Weee!";
var postHandles = ATHandle.FromPostText(postText);
var feedProfiles = (await atProtocol.Actor.GetProfilesAsync(postHandles)).HandleResult();
var handleFacets = Facet.ForMentions(postText, feedProfiles!.Profiles!);
var hashtagFacets = Facet.ForHashtags(postText);
var uriFacets = Facet.ForUris(postText);
var baseUriFacets = Facet.ForUris(postText, "DAHome", "https://github.com/drasticactions");
var facets = handleFacets.Concat(hashtagFacets).Concat(uriFacets).Concat(baseUriFacets).ToArray();
var result = (await atProtocol.Repo.CreatePostAsync(postText, facets)).HandleResult();
There are also some bug fixes for missing parameters and items from the lexicon.
What's Changed
- Update tests by @drasticactions in #64
- Add missing fields to ThreadView/PostView by @drasticactions in #69
- Publish Alpha Nugets from Develop Branch. by @drasticactions in #70
- Publish Alpha NuGet to NuGet... by @drasticactions in #71
- Add more helper methods for facets by @drasticactions in #73
- Add MarkdownPost by @drasticactions in #74
- Add missing fields by @drasticactions in #75
- Update deprecated fields by @PassiveModding in #76
New Contributors
- @PassiveModding made their first contribution in #76
Full Changelog: 2.0.0...2.1.0