Compare commits
2 commits
71468f02f2
...
535d2771bb
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
535d2771bb | ||
|
|
7316b25f87 |
3 changed files with 21 additions and 8 deletions
13
CHANGELOG.md
13
CHANGELOG.md
|
|
@ -7,3 +7,16 @@ You also have specific settings for haptics, sounds,, whether the app saves hist
|
|||
|
||||
Please provide any feedback, desired features, bugs you notice either in the game's discord or as a regular testflight feedback item.
|
||||
Thanks for testing!
|
||||
|
||||
## v 1.0.1 (2)
|
||||
Some bugs fixed this release:
|
||||
* Don't dismiss the keyboard after sending a message
|
||||
* Fix DM's tab: add haptics, sound, and keyboard fix; fix display of unanswered DM conversations
|
||||
* Attempt to fix scroll to bottom not showing the last message until sending another
|
||||
* Scroll to bottom when the keyboard opens (any buffer and DMs tab)
|
||||
* Fix message IDs to be compatible with new server
|
||||
|
||||
### Known bugs
|
||||
You've reported them but they aren't fixed just yet:
|
||||
* Remote forms Ui weirdness: multiple characters, /help all
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
<key>KDChat.xcscheme_^#shared#^_</key>
|
||||
<dict>
|
||||
<key>orderHint</key>
|
||||
<integer>1</integer>
|
||||
<integer>0</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
|
|
|
|||
|
|
@ -12,8 +12,8 @@ enum ServerMethod: Int32 {
|
|||
case leaveGame = 5
|
||||
// 6 = TimeSync, 7 = RequestProfile
|
||||
case directMessage = 8
|
||||
// 9..20 = game-specific methods
|
||||
case remoteFormEvent = 21
|
||||
// 9..21 = game-specific methods
|
||||
case remoteFormEvent = 22
|
||||
}
|
||||
|
||||
// MARK: - Client Methods (server -> client)
|
||||
|
|
@ -30,11 +30,11 @@ enum ClientMethod: Int32 {
|
|||
// 8 = Profile (unhandled)
|
||||
case say = 9
|
||||
case loadInstance = 10
|
||||
// 11..32 = game-specific methods (unhandled)
|
||||
case showRemoteForm = 33
|
||||
case updateRemoteForm = 34
|
||||
case closeRemoteForm = 35
|
||||
case disconnect = 36
|
||||
// 11..33 = game-specific methods (unhandled)
|
||||
case showRemoteForm = 34
|
||||
case updateRemoteForm = 35
|
||||
case closeRemoteForm = 36
|
||||
case disconnect = 37
|
||||
}
|
||||
|
||||
// MARK: - Remote Form Event Types
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue