adambar
b80706089c
Fix for potential memory leaks
2015-06-23 22:46:27 +02:00
adambar
9c563cf080
Fix for message box auto-sizing behavior on resize; menu z-index fix
2015-06-23 22:46:27 +02:00
adambar
da1abd75bf
Remove message textarea resize handle; fix resizing after submit
2015-06-23 22:46:06 +02:00
adambar
07ac0ae9cc
239 Auto-expand message area when typing
2015-06-23 22:45:41 +02:00
lilia
e26b9bfbc7
Default avatar support
...
Fixes #264
Implement the equivalent of java's String.hashCode on the conversation model.
Change avatar template and attributes. Use css classes for colors.
2015-06-19 11:50:18 -07:00
lilia
8dc4e34aaf
Bug and test fixes for contact sync
...
Closes #135
// FREEBIE
2015-06-18 13:48:32 -07:00
lilia
6a5f923cac
Don't set attributes redundantly
...
By the time we get here, these should have already been set in
background.js.
// FREEBIE
2015-06-17 12:29:40 -07:00
lilia
b0603bc91a
Wrap message receiver for minimum api exposure
...
Initializing a message receiver opens the socket and starts listening
right away rather than requiring a separate call to connect. The only
other publicly accessible method is to query the socket status.
// FREEBIE
2015-06-17 12:29:40 -07:00
lilia
18433419c9
PushMessageContent is now DataMessage
2015-06-17 12:29:40 -07:00
lilia
316838cfe9
Add tests and bug fixes for ContactBuffer
2015-06-17 12:29:40 -07:00
lilia
290283f810
Conversations do not require timestamps
...
Synced contacts will not include timestamps
2015-06-17 12:29:40 -07:00
lilia
228ffe901d
Update json formatting for legacy message requests
...
Legacy DataMessages are sent using the `body` field, new Content
messages are sent using the `content` field.
// FREEBIE
2015-06-17 12:29:39 -07:00
lilia
a833d62a71
Implement sync protocol changes
...
Update protobuf definitions and refactor message receive and decrypt
codepath to support new protocol, including various flavors of sync
messages (sent messages, contacts, and groups).
Also cleans up background.js and lets libtextsecure internalize
textsecure.processDecrypted and ensure that it is called before handing
DataMessages off to the application.
The Envelope structure now has a generic content field and a
legacyMessage field for backwards compatibility. We'll send outgoing
messages as legacy messages, and sync messages as "content" while
continuing to support both legacy and non-legacy messages on the receive
side until old clients have a chance to transition.
2015-06-17 12:29:39 -07:00
lilia
757bcd4e50
Reset recipient typeahead after selecting a recipient
2015-06-17 12:29:34 -07:00
lilia
e9e875766f
Group update recipient typeahead excludes exisiting members
...
Fixes #199
// FREEBIE
2015-06-17 12:21:58 -07:00
lilia
694f801676
Stop hiding inbox instead of closing
...
This behavior was intended to help keep the websocket alive, but keeping
the inbox window around can cause some stale frontend state. Also we now
have a keepalive alarm to check for new messages once a minute.
2015-06-15 17:48:06 -07:00
lilia
72f16b94ff
Polish group update ux
...
* Show the members list as static elements
* Style the search results as a drop down, mirroring android ux
Fixes #248 // FREEBIE
2015-06-09 16:12:21 -07:00
lilia
23db5802cf
Support custom placeholder on recipients input
2015-06-09 16:10:07 -07:00
lilia
9795b26bc1
Supress change event on avatarUrl initialization
2015-06-09 12:03:28 -07:00
lilia
ac401c78b3
Fix socket status indicator
...
It was not correctly reporting the status after a background page reload.
2015-06-09 11:30:45 -07:00
lilia
363c436b33
Handle single-error rejections when sending messages
...
We can not assume that we will get back an error array.
Closes #258 // FREEBIE
2015-06-05 17:29:31 -07:00
lilia
6e1a41e9cf
Update inbox when group avatars change
2015-06-05 11:53:46 -07:00
lilia
583fb98cce
Support late-addition of default image to file input
...
Fixes #256
// FREEBIE
2015-06-05 11:23:03 -07:00
lilia
061d57c95a
Fix string vs number comparison
...
Fix bug in device storage causing duplicate device messages after a 410.
2015-06-04 16:48:34 -07:00
lilia
a9549e2e0f
Fix 410 handling
...
We need to close the existing session with an old registrationId.
2015-06-04 16:48:10 -07:00
lilia
7d08e1132d
Fix close session
2015-06-04 14:48:59 -07:00
lilia
f4a206b266
Scale and crop avatars to 256 square thumbnails.
...
Fixes #213 // FREEBIE
2015-06-04 14:46:16 -07:00
lilia
cdb7fcfbad
Pass windows around to let file inputs work
2015-06-04 13:39:52 -07:00
lilia
3d1df790a5
Update the window title when a group title or contact name changes
2015-06-03 17:23:55 -07:00
lilia
d26c13b155
Add openInbox link to conversation menu. Fixes #246
2015-06-02 14:57:22 -07:00
lilia
9d688cb761
List views persist sroll offset by percentage
...
Fixes #188
2015-05-28 11:50:58 -07:00
lilia
590deef063
Decrease auto-scaling size
...
For better consistency with Android, autoscale images such that the
largest dimension is 1280. Related: #242
2015-05-27 16:53:04 -07:00
lilia
a66c879426
Update inbox after destroying a conversation
...
Fixes #247
// FREEBIE
2015-05-27 14:49:50 -07:00
lilia
3e73282a64
Fix key verification screen
2015-05-26 17:08:14 -07:00
lilia
e2eff893d4
Fix 'Delete messages'
...
Replaces window.confirm with generic promise-based confirmation dialog
functionality available to all views.
// FREEBIE
2015-05-26 16:56:05 -07:00
lilia
8a17953468
Display sent_at timestamps instead of received_at
2015-05-26 13:31:17 -07:00
lilia
3e39271220
Render messages light blue until finished sending // Fixes #219
2015-05-26 13:30:51 -07:00
lilia
405e67c758
Merge inbox and panel controllers
...
These collections should always be operating with the same model
instances, so let the inbox reset it self from the same in-memory
cache of conversation models used by the conversation windows.
2015-05-26 13:28:43 -07:00
lilia
53a9ab4834
Fix bugs with handling large image attachments
...
* Avoid infinite loop scaling too-big images
* Don't crash if no file is selected
* Fix file size toast
Fixes #242
// FREEBIE
2015-05-25 10:43:35 -07:00
lilia
585c82aee8
Fix the build
2015-05-24 16:29:11 -07:00
lilia
3eafefe18e
Don't display notifications for open windows.
...
Just update and draw attention to them.
Fixes #238
// FREEBIE
2015-05-24 16:20:55 -07:00
lilia
d8f17f9631
Fixes #240
...
Delete files attached via chrome.fileSystem
// FREEBIE
2015-05-24 16:03:13 -07:00
lilia
9882190bde
Wake up once a minute to check for messages
...
If all the application windows are closed (and not merely hidden), the
background page will go inactive and there's nothing we can do to stop
it. However, we can ask chrome to trigger an alarm once per minute,
which will spin up the background page and check for new messages.
This will effectively keep us alive as long as chrome has open windows
or is running in the background, subject to chrome settings'
Advanced -> System -> Continue running background apps
2015-05-22 17:26:56 -07:00
lilia
fa3e1ee94f
Window ids should be strings
...
A warning is issued when a non-string window id was passed to
extension.windows.focus.
2015-05-22 17:23:18 -07:00
lilia
7bf1d41184
Render conversation titles
2015-05-22 16:54:59 -07:00
lilia
bc4d31cf72
Fix for inbox sometimes not reappearing
...
Apparently focusing an app window does not implicitly unhide it.
// FREEBIE
2015-05-22 12:36:14 -07:00
lilia
d0a529351c
Fix sending messages with no attachments
2015-05-21 19:01:37 -07:00
lilia
a5e80e8a5a
Really close conversation windows
...
Only the inbox should hide when closed.
2015-05-21 18:20:19 -07:00
lilia
5d3a2a4cc8
Fix file inputs
...
As a chrome app we are obligated to use the fileSystem api, and must do
so via the window in which we want to open the dialog.
2015-05-21 18:19:10 -07:00
lilia
39d11d8eb3
Apply custom chrome to conversation windows
2015-05-21 14:35:44 -07:00