diff --git a/README.md b/README.md index c0e5139b9..67bbf5838 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ Learn more about the official app in the [blog post](https://blog.joinmastodon.o * [Always preserve content warnings when replying](https://github.com/sk22/mastodon-android-fork/tree/feature/always-preserve-cw) ([Fixes issue](https://github.com/mastodon/mastodon-android/issues/113)) * [Make back button return to the home tab before exiting the app](https://github.com/sk22/mastodon-android-fork/tree/feature/back-returns-home) ([Fixes issue](https://github.com/mastodon/mastodon-android/issues/118)) * [Implement a bookmark button and list](https://github.com/sk22/mastodon-android-fork/tree/feature/bookmarks) ([Fixes issue](https://github.com/mastodon/mastodon-android/issues/22)) +* [Implement deleting and re-drafting](https://github.com/sk22/mastodon-android-fork/tree/feature/delete-redraft) ([Fixes issue](https://github.com/mastodon/mastodon-android/issues/21)) ## Building diff --git a/mastodon/build.gradle b/mastodon/build.gradle index b2e2b1ae8..1b3c41446 100644 --- a/mastodon/build.gradle +++ b/mastodon/build.gradle @@ -9,8 +9,8 @@ android { applicationId "org.joinmastodon.android.sk" minSdk 23 targetSdk 31 - versionCode 14 - versionName '1.1.1+fork.14' + versionCode 15 + versionName '1.1.1+fork.15' testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } diff --git a/mastodon/src/main/java/org/joinmastodon/android/api/requests/oauth/CreateOAuthApp.java b/mastodon/src/main/java/org/joinmastodon/android/api/requests/oauth/CreateOAuthApp.java index e90e81852..7bb19de41 100644 --- a/mastodon/src/main/java/org/joinmastodon/android/api/requests/oauth/CreateOAuthApp.java +++ b/mastodon/src/main/java/org/joinmastodon/android/api/requests/oauth/CreateOAuthApp.java @@ -11,7 +11,7 @@ public class CreateOAuthApp extends MastodonAPIRequest{ } private static class Request{ - public String clientName="Mastodon for Android (Fork)"; + public String clientName="Mastadon for Android"; public String redirectUris=AccountSessionManager.REDIRECT_URI; public String scopes=AccountSessionManager.SCOPE; public String website="https://github.com/sk22/mastodon-android-fork";