8000 Tags · kolkmvd/zulip-mobile · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: kolkmvd/zulip-mobile

Tags

13.5.89

Toggle 13.5.89's commit message
version: Bump version to 13.5.89, an Android-only stable release.

This release contains a workaround (zulip#2595) for an Android-only issue
in React Native upstream -- which itself triggers an iOS-only issue
also in React Native upstream.

So to thread this needle, we're releasing the workaround in an
Android-only release.

If we end up maintaining any kind of platform split like this for more
than a version or two, we'll of course want to do it with conditionals
in a single source tree rather than with different versions of our
codebase.

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://face
7BE3
book.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
0