refactor: 🚚 Do full rename of Lysand to Versia

This commit is contained in:
Jesse Wierzbinski 2024-08-13 16:47:37 +02:00
parent a106e7acef
commit 6414337a30
No known key found for this signature in database
21 changed files with 88 additions and 88 deletions

View file

@ -20,7 +20,7 @@ Likes are a way for users to show appreciation for a note, like Twitter's "heart
<Col>
<Properties>
<Property name="extension_type" type="string" required={true}>
Must be `org.lysand:likes/Like`.
Must be `pub.versia:likes/Like`.
</Property>
<Property name="author" type="URI" required={true} typeLink="/types#uri">
Creator of the Like.
@ -37,7 +37,7 @@ Likes are a way for users to show appreciation for a note, like Twitter's "heart
{
"id": "3e7e4750-afd4-4d99-a256-02f0710a0520",
"type": "Extension",
"extension_type": "org.lysand:likes/Like",
"extension_type": "pub.versia:likes/Like",
"created_at": "2021-01-01T00:00:00.000Z",
"author": "https://example.com/users/6e0204a2-746c-4972-8602-c4f37fc63bbe",
"uri": "https://example.com/likes/3e7e4750-afd4-4d99-a256-02f0710a0520",
@ -58,7 +58,7 @@ Dislikes are a way for users to show disapproval for a note, like YouTube's "dis
<Col>
<Properties>
<Property name="extension_type" type="string" required={true}>
Must be `org.lysand:likes/Dislike`.
Must be `pub.versia:likes/Dislike`.
</Property>
<Property name="author" type="URI" required={true} typeLink="/types#uri">
Creator of the Dislike.
@ -75,7 +75,7 @@ Dislikes are a way for users to show disapproval for a note, like YouTube's "dis
{
"id": "3e7e4750-afd4-4d99-a256-02f0710a0520",
"type": "Extension",
"extension_type": "org.lysand:likes/Dislike",
"extension_type": "pub.versia:likes/Dislike",
"created_at": "2021-01-01T00:00:00.000Z",
"author": "https://example.com/users/6e0204a2-746c-4972-8602-c4f37fc63bbe",
"uri": "https://example.com/dislikes/3e7e4750-afd4-4d99-a256-02f0710a0520",
@ -103,7 +103,7 @@ The Likes extension adds the following collections to the [User](/entities/user)
...
"collections": {
...
"org.lysand:likes/Likes": "https://example.com/users/6e0204a2-746c-4972-8602-c4f37fc63bbe/likes",
"org.lysand:likes/Dislikes": "https://example.com/users/6e0204a2-746c-4972-8602-c4f37fc63bbe/dislikes"
"pub.versia:likes/Likes": "https://example.com/users/6e0204a2-746c-4972-8602-c4f37fc63bbe/likes",
"pub.versia:likes/Dislikes": "https://example.com/users/6e0204a2-746c-4972-8602-c4f37fc63bbe/dislikes"
}
}

View file

@ -68,7 +68,7 @@ All properties are optional.
Location does not need to be precise, and can be as simple as `+46+002/` (France) or `+48.52+002.20/` (Paris, France).
</Property>
<Property name="aliases" type="URI[]" required={false} typeLink="/types#uri">
Lysand profiles that should be considered aliases of this profile.
Versia profiles that should be considered aliases of this profile.
</Property>
</Properties>
</Col>
@ -81,7 +81,7 @@ All properties are optional.
"type": "User",
// ...
"extensions": { // [!code focus:100]
"org.lysand:vanity": {
"pub.versia:vanity": {
"avatar_overlays": [
{
"image/png": {
@ -124,7 +124,7 @@ All properties are optional.
"location": "+40.6894-074.0447/",
"aliases": [
"https://burger.social/accounts/349ee237-c672-41c1-aadc-677e185f795a",
"https://social.lysand.org/users/f565ef02-035d-4974-ba5e-f62a8558331d"
"https://versia.social/users/f565ef02-035d-4974-ba5e-f62a8558331d"
]
}
}

View file

@ -12,7 +12,7 @@ export const metadata = {
If testing proves unsuccessful, this draft may be abandoned.
</Note>
Typically, communication between Lysand instances is done via HTTP. However, HTTP suffers from some limitations, such as high latency and heavy overhead for small messages, making it less suitable for exchanging large amounts of entities at acceptable speeds. {{ className: 'lead' }}
Typically, communication between Versia instances is done via HTTP. However, HTTP suffers from some limitations, such as high latency and heavy overhead for small messages, making it less suitable for exchanging large amounts of entities at acceptable speeds. {{ className: 'lead' }}
This extension aims to address these limitations by adding support for the exchange of entities using WebSockets.