Date | 2024-03-28 (232 days ago) |
---|---|
Downloads | 75 downloads |
NuGet | View on NuGet |
GitHub | View on GitHub |
Target Frameworks | .NET Standard 2.0 .NET 6 .NET 7 |
#installation
">InstallationInstall via NuGet - either via the .NET CLI:
dotnet add package Skybrud.Social.Mastodon --version 1.0.0-alpha005
or the NuGet package manager:
Install-Package Skybrud.Social.Mastodon -Version 1.0.0-alpha005
#changelog
">ChangelogAdded support for custom emojis in status messages (see 7efa2a4
)
Status messages may expose a list of custom emojis used where the information includes the emoji shortcode and URLs for corresponding images. Thanks to a PR from @CodeBunTes this is now supported in this package.
Added support for custom emojis for accounts (see 35382f6
)
The MastodonAccount
class now exposes an Emojis
property listing the custom emojis used in the account profile (eg. the in the DisplayName
or Note
properties).
Added support for custom account profile fields (see 90ec9bc
)
The MastodonAccount
class now exposes a Fields
property listing the custom profile fields - eg. URLs for other sites.
Added support for polls in status messages (see 3195149
)
The MastodonStatus
class now exposes a Poll
property with information about the poll (if any) of a status message.
Added support for mentions in status messages (see 4879318
)
The MastodonStatus
class now exposes a Mentions
property listing the the users mentioned in a given status message.
Added support for reblog
in status messages (see 8b08f17
)
The MastodonStatus
class now exposes a Reblog
property containing the original status message of the status message is a reblog of another status message.