[PR #35] [CLOSED] Update UI adjustment #57

Closed
opened 2026-02-16 12:26:45 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/stoatchat/for-android/pull/35
Author: @alexjyong
Created: 9/10/2025
Status: Closed

Base: devHead: update-ui-adjustment


📝 Commits (10+)

  • c7f0f9c feature: Adding support for Github codespaces (#25)
  • 305efa1 Squashed commit of the following:
  • f05d010 fixing missing import from git merge conflict issues.
  • ea692b1 adding in better emoji handling, a recently used emoji section, and better markdown handling
  • dc2699e cleaning readme up a bit.
  • 406c017 Fixing custom emoji and markdown issues (#5)
  • e169a7c adding in automated workflow
  • 03c87e2 update to workflow
  • 9226710 typo :)
  • 3494501 third time is the charm

📊 Changes

56 files changed (+2017 additions, -341 deletions)

View changed files

📝 .devcontainer/devcontainer.json (+1 -1)
📝 .github/workflows/android.yml (+56 -18)
📝 .gitignore (+1 -0)
📝 README.md (+136 -4)
📝 app/build.gradle.kts (+12 -2)
📝 app/google-services.json.example (+3 -3)
📝 app/proguard-rules.pro (+1 -1)
📝 app/src/main/cpp/stendal/stendal.cpp (+14 -1)
📝 app/src/main/java/chat/revolt/RevoltApplication.kt (+8 -0)
📝 app/src/main/java/chat/revolt/api/RevoltAPI.kt (+3 -0)
app/src/main/java/chat/revolt/api/internals/UpdateChecker.kt (+122 -0)
📝 app/src/main/java/chat/revolt/api/realtime/RealtimeSocket.kt (+3 -0)
📝 app/src/main/java/chat/revolt/api/settings/Experiments.kt (+14 -2)
📝 app/src/main/java/chat/revolt/composables/chat/Message.kt (+31 -44)
📝 app/src/main/java/chat/revolt/composables/chat/MessageField.kt (+26 -1)
📝 app/src/main/java/chat/revolt/composables/emoji/EmojiPicker.kt (+166 -31)
app/src/main/java/chat/revolt/composables/generic/EmojiAwareText.kt (+160 -0)
app/src/main/java/chat/revolt/composables/generic/UpdateBanner.kt (+104 -0)
📝 app/src/main/java/chat/revolt/composables/markdown/MarkdownText.kt (+85 -42)
📝 app/src/main/java/chat/revolt/composables/markdown/MarkdownTree.kt (+34 -0)

...and 36 more files

📄 Description

Please make sure to check the following tasks before opening and submitting a PR

  • I understand and have followed the contribution guide
  • I have tested my changes locally and they are working as intended

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/stoatchat/for-android/pull/35 **Author:** [@alexjyong](https://github.com/alexjyong) **Created:** 9/10/2025 **Status:** ❌ Closed **Base:** `dev` ← **Head:** `update-ui-adjustment` --- ### 📝 Commits (10+) - [`c7f0f9c`](https://github.com/stoatchat/for-android/commit/c7f0f9c70e33a471adeab3d868e899dcffa1a2a0) feature: Adding support for Github codespaces (#25) - [`305efa1`](https://github.com/stoatchat/for-android/commit/305efa17bd2fc862ca36883b55af00283084450e) Squashed commit of the following: - [`f05d010`](https://github.com/stoatchat/for-android/commit/f05d010007a05c4ed6577429e80d82610eda7225) fixing missing import from git merge conflict issues. - [`ea692b1`](https://github.com/stoatchat/for-android/commit/ea692b18dcc48989320e7aab4c70857952f959ae) adding in better emoji handling, a recently used emoji section, and better markdown handling - [`dc2699e`](https://github.com/stoatchat/for-android/commit/dc2699e089f4eebe8b72a7d8dcc15bc54e60c097) cleaning readme up a bit. - [`406c017`](https://github.com/stoatchat/for-android/commit/406c01769601e1387c53fc7ef4d981278c500768) Fixing custom emoji and markdown issues (#5) - [`e169a7c`](https://github.com/stoatchat/for-android/commit/e169a7c3bf196f7832497bd5cade7a6addfa2250) adding in automated workflow - [`03c87e2`](https://github.com/stoatchat/for-android/commit/03c87e293e22a2966940b0b760a56d6a4f25ca9c) update to workflow - [`9226710`](https://github.com/stoatchat/for-android/commit/9226710daddcff8db0ce7e46d04f5412b05b93ad) typo :) - [`3494501`](https://github.com/stoatchat/for-android/commit/3494501d4df25658e46a9237e9e8a67da7fb3fdb) third time is the charm ### 📊 Changes **56 files changed** (+2017 additions, -341 deletions) <details> <summary>View changed files</summary> 📝 `.devcontainer/devcontainer.json` (+1 -1) 📝 `.github/workflows/android.yml` (+56 -18) 📝 `.gitignore` (+1 -0) 📝 `README.md` (+136 -4) 📝 `app/build.gradle.kts` (+12 -2) 📝 `app/google-services.json.example` (+3 -3) 📝 `app/proguard-rules.pro` (+1 -1) 📝 `app/src/main/cpp/stendal/stendal.cpp` (+14 -1) 📝 `app/src/main/java/chat/revolt/RevoltApplication.kt` (+8 -0) 📝 `app/src/main/java/chat/revolt/api/RevoltAPI.kt` (+3 -0) ➕ `app/src/main/java/chat/revolt/api/internals/UpdateChecker.kt` (+122 -0) 📝 `app/src/main/java/chat/revolt/api/realtime/RealtimeSocket.kt` (+3 -0) 📝 `app/src/main/java/chat/revolt/api/settings/Experiments.kt` (+14 -2) 📝 `app/src/main/java/chat/revolt/composables/chat/Message.kt` (+31 -44) 📝 `app/src/main/java/chat/revolt/composables/chat/MessageField.kt` (+26 -1) 📝 `app/src/main/java/chat/revolt/composables/emoji/EmojiPicker.kt` (+166 -31) ➕ `app/src/main/java/chat/revolt/composables/generic/EmojiAwareText.kt` (+160 -0) ➕ `app/src/main/java/chat/revolt/composables/generic/UpdateBanner.kt` (+104 -0) 📝 `app/src/main/java/chat/revolt/composables/markdown/MarkdownText.kt` (+85 -42) 📝 `app/src/main/java/chat/revolt/composables/markdown/MarkdownTree.kt` (+34 -0) _...and 36 more files_ </details> ### 📄 Description ## Please make sure to check the following tasks before opening and submitting a PR - [X] I understand and have followed the [contribution guide](https://github.com/revoltchat/.github/blob/master/.github/CONTRIBUTING.md) - [X] I have tested my changes locally and they are working as intended --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 12:26:45 -05:00
yindo closed this issue 2026-02-16 12:26:45 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: stoatchat/for-android#57