Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: jackrzhang/zulip-mobile

Tags

13.4.88

Toggle 13.4.88's commit message
webview: Escape HTML in displayed errors.

In addition to the code in src/webview/html/, there's this one bit in
js.js where we build up some HTML.  Escape the data we interpolate
here too.

Because this code runs inside the webview and can't import from
our main codebase, and there's only a little of it, skip the fancy
template tag in favor of manually invoking an escape function.
On the other hand, take advantage of the browser environment to
implement that escape function very simply.

13.3.87

Toggle 13.3.87's commit message
ui: Improve compose box buttons and spacing

* more consisntency in padding of compose input between platforms
* larger touch areas for all buttons
* move all related styles to composeBoxStyles
* buttons on left and right are precisely vertically aligned

13.2.86

Toggle 13.2.86's commit message
webview: Queue unsent events until webview ready to process

* waits for 'ready' event and tracks status in `isReady`
* if it needs to send an event but not yet ready, queue in `unsentMessages`
* when ready send if any messages were queued

13.1.85

Toggle 13.1.85's commit message
Add support to getNarrowFromNotificationData for group narrows

For this to work we need to parse a string of comma delimited
numbers of the recipients. This data is not yet passed to the
function; we keep the function flexible and functional by making
the parameter of `usersById` optional.`

12.4.84

Toggle 12.4.84's commit message
webview: Pass baseUrl and authorization headers

* ensures that relative URLs are resolved correctly
* allows loading of any resource needing authorization

12.3.83

Toggle 12.3.83's commit message
passwordAuthScreen: Fix two taps being required to hit "Log in".

One was used to remove focus from input & dismiss keyboard.
And second one was captured by the button.
To fix this pass keyboardShouldPersistTaps="always" to the
scrollView.

https://facebook.github.io/react-native/docs/scrollview.html#keyboardshouldpersisttaps

12.2.82

Toggle 12.2.82's commit message
fix: Final fix for iOS notifications

Read data from a key "zulip"

12.1.81

Toggle 12.1.81's commit message
refactor: Make notification handling more consistent

* no need for async for handlePendingNotifications
* proper name for the event handler
* handlePendingNotifications() in iOS the same as Android

12.0.80

Toggle 12.0.80's commit message
flow: Add types for the config object

Fixes Flow complaining about config.startup.notification

11.6.77

Toggle 11.6.77's commit message
Fix Stream title alignment issue on Android