diff --git a/Cargo.lock b/Cargo.lock index 1fb4530..68714e4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1703,7 +1703,7 @@ dependencies = [ [[package]] name = "mitra" -version = "0.1.0" +version = "0.2.0" dependencies = [ "actix-cors", "actix-files", diff --git a/Cargo.toml b/Cargo.toml index c65e17a..81e7718 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mitra" -version = "0.1.0" +version = "0.2.0" description = "Mitra backend" license = "AGPL-3.0" diff --git a/README.md b/README.md index 6f9617d..0745662 100644 --- a/README.md +++ b/README.md @@ -9,9 +9,7 @@ Federated social network with smart contracts. - Converting posts into NFTs. - More crypto features in the future. -**WIP: Mitra is not ready for production yet.** - -Demo instance: https://test.mitra.social/ (invite-only) +Demo instance: https://mitra.social/ (invite-only) Smart contracts repo: https://codeberg.org/silverpill/mitra-contracts @@ -84,11 +82,16 @@ POST /api/v1/accounts/{account_id}/follow POST /api/v1/accounts/{account_id}/unfollow GET /api/v1/directory GET /api/v1/instance +GET /api/v1/markers +POST /api/v1/markers POST /api/v1/media +GET /api/v1/notifications GET /api/v2/search POST /api/v1/statuses GET /api/v1/statuses/{status_id} GET /api/v1/statuses/{status_id}/context +POST /api/v1/statuses/{status_id}/favourite +POST /api/v1/statuses/{status_id}/unfavourite GET /api/v1/timelines/home ```