lilia
949cb8d8e3
Use generic Backbone collection for inbox
...
There's no need to use a custom collection type here since we don't use
any of the ConversationCollection methods. This helps prevent the
introduction of duplicate models for the same chat.
// FREEBIE
2015-09-08 19:27:38 -07:00
lilia
2ab7315c80
Use generic collection for conversation contacts
...
Let the conversation controller instatiate the models in order to avoid
having duplicate models in memory.
// FREEBIE
2015-09-08 19:27:37 -07:00
lilia
6d4bf4e5d1
Whitespace
...
// FREEBIE
2015-09-08 19:27:37 -07:00
lilia
8dc098093d
On delivery receipts, reload messages only
...
The delivery receipt handler should only update messages, so rather than
reloading the conversation and its contacts, only reload the messages.
// FREEBIE
2015-09-08 19:27:21 -07:00
lilia
f764445c86
Remove erroneous license file and headers
...
We only use GPLV3 around here.
// FREEBIE
2015-09-07 14:58:42 -07:00
lilia
1427369bd0
Fix suggestion list template
...
Convention collision.
// FREEBIE
2015-09-04 18:46:33 -07:00
lilia
98aed2975c
Fix conversations opening from the background
...
From a notification, for example, we were opening the inbox but not the
conversation.
// FREEBIE
2015-09-04 18:34:13 -07:00
lilia
24a18e91b3
Clean up shared compose/group update ui
...
Makes the groupupdate and recipient input fields stick to the top,
restyles the typeahead as a floating dropdown list of suggestions
rather than a full width component, fixes group avatar thumbnail
rendering.
// FREEBIE
2015-09-04 13:11:21 -07:00
lilia
e402338af7
Make it easier to reference templates
...
Whisper.Views can now use templateName to reference the id of the
desired template.
2015-09-04 13:09:56 -07:00
lilia
239b87a1fa
Fix conversation resize bug
...
Fix behavior where resizing a message detail screen would result in a
mis-sized conversation view when exiting the message detail.
2015-09-04 13:06:40 -07:00
lilia
7d9490e503
Add contact list view
...
Used by member list view. Refactored some templates for shared markup.
Fixes strange behavior where members in the list were hoverable and
selectable.
// FREEBIE
2015-09-03 14:31:05 -07:00
lilia
5d9965a60e
Make all mustache templates available as partials
...
// FREEBIE
2015-09-03 13:22:52 -07:00
lilia
3e5946a12b
Move worker initialization to background.js
...
Not sure why I put it in panel controller. Probably an oversight.
// FREEBIE
2015-09-01 16:56:21 -07:00
lilia
43aaf541c1
Compose flow style tweaks
2015-08-31 16:09:05 -07:00
lilia
cc92cdfa29
After destroying messages, remove the conversation view
2015-08-31 16:01:56 -07:00
lilia
50939d1851
Restyle conversation menu button
2015-08-31 13:59:12 -07:00
lilia
89f5f216ed
Fix new conversation with no lastMessage
2015-08-27 18:02:39 -07:00
lilia
5b430fa8aa
Make sure newly active conversations are added to the inbox
2015-08-27 17:54:07 -07:00
lilia
e8b4bd708e
Fix lint warnings
2015-08-27 17:45:23 -07:00
lilia
9e79ecddf8
Fix scroll stickiness while hidden
...
Fix bug: Open thread A, open thread B, receive message in thread A, open
thread A. Scroll bar has reset to the top.
2015-08-27 16:25:35 -07:00
lilia
e3c56a0c03
Refactor and remove old window mgmt code/globals
2015-08-27 15:23:22 -07:00
lilia
3bc64cbed5
Remove unused function
2015-08-27 15:04:43 -07:00
lilia
21aaf0fab5
Clean up notification and unread indicator behavior
2015-08-27 15:04:43 -07:00
lilia
e0f84d9c8e
Clear unread on focus iff convo is open
2015-08-27 15:04:43 -07:00
lilia
baa55c9018
Refactor for less model duplication
2015-08-27 12:38:51 -07:00
lilia
c4eac76032
Fix for new contact button bug
2015-08-26 22:33:00 -07:00
lilia
a5a1dad03c
Redelegate events for new contact view
...
And rename for consistency
// FREEBIE
2015-08-26 17:52:44 -07:00
lilia
17051cef9d
Only add loading class from inbox
2015-08-26 17:48:02 -07:00
lilia
fbc73c0369
Add spinner for long-loading message lists
2015-08-26 17:30:20 -07:00
lilia
992dfa5b20
Bug fixes for group create flow
...
Fallout from layout change.
// FREEBIE
2015-08-26 17:11:01 -07:00
lilia
39d13d5e45
Quiet notifications if the window is open
...
Draw attention to the window instead.
// FREEBIE
2015-08-26 16:10:44 -07:00
lilia
0b98043c1c
Add a worker
...
Offload all the asm.js code to a second thread. This is usually the
source of intermittent frontend freezes when running single-threaded.
2015-08-26 16:09:58 -07:00
lilia
d07357ce9a
Retool various sub-screens to fit two-column layout
2015-08-26 15:15:14 -07:00
lilia
bcec207674
Mark read when opening a conversation
2015-08-26 10:12:05 -07:00
lilia
d6a4e6e496
Restore two column layout
...
Establishes basic functionality for viewing conversations in two column
mode, including message area and message list resizing, and maintaining
scroll position.
Various subviews need to be retooled but are more or less still
functional, i.e., new message, message detail, key verification, etc...
2015-08-25 17:01:22 -07:00
lilia
00dfcbb462
Change websocket closed message
2015-08-24 09:10:48 -07:00
lilia
c3d3ec125d
Wait for contact sync before opening inbox
...
Use a canned bootstrap progress animation in lieu of better design.
Fix #271 // FREEBIE
2015-08-06 12:35:06 -07:00
lilia
4f1ce4c493
Assume unknown recipients are single-device
...
Start by requesting keys for only the master device, then handle 410 as
needed. Single-device users are the more common case and this strategy
lets us avoid requesting/expending one of our own device keys when
establishing a session with sibling devices.
// FREEBIE
2015-08-05 16:06:28 -07:00
lilia
82431c3c12
Update compose typeahead after fetching
...
Fixes #322
// FREEBIE
2015-08-05 11:20:18 -07:00
lilia
001a91466b
Add group member list // Closes #279
2015-08-04 12:15:37 -07:00
lilia
98a14e9a6a
Fix bug in message model
...
conversation.changedAttributes returns false when there are no changes.
2015-08-03 11:02:54 -07:00
lilia
3e73f8f0ba
Resolve conflicts in series
...
Attempting to resolve outgoing conflicts in parallel triggers multiple
requests for new keys from the server and causes it to return a 500
error.
2015-08-03 11:02:54 -07:00
lilia
f3f084398f
Handle identity key errors when retrying decrypt
...
After setting a new identity key as trusted, we retry decryption on all
pending conflicts for that contact. If their identity changed twice in a
row, we can still get a conflict the second time, and should handle it
appropriately.
2015-07-31 17:28:25 -07:00
lilia
ccfae3c78a
Fix bug in identity key conflict edge case
...
When resolving conflicts, we should not only discard the old key, but
set the new trusted key to the one the user has verified. Previously, we
would end up trusting the first-seen new key, which may not be the one
the user verified.
// FREEBIE
2015-07-31 17:01:03 -07:00
lilia
d808d255eb
Fix bug with 0th contact color
...
Contact color css class wasn't being rendered because 0 is falsey.
// FREEBIE
2015-07-31 17:01:03 -07:00
lilia
47b58b8994
Use the correct number of contact colors
...
Bugfix from 2f12275
2015-07-31 11:13:30 -07:00
lilia
4fc4573de4
Don't try to sync after single device registration
...
There's no other device to sync to. :p
2015-07-31 11:11:23 -07:00
lilia
2f12275cb9
Update contact colors
...
Make default contact color assignments consistent with
WhisperSystems/Textsecure@99d3a76b
2015-07-31 11:07:42 -07:00
lilia
b3d93ab334
Request group sync when pairing
...
Whoops, missed a step. Fixes #319 . Fixes #276 .
// FREEBIE
2015-07-29 19:06:19 -07:00
adambar
d93bacb76e
Fix for too eager scrolling to bottom when the scroll isn't actually stick to the bottom before resizing the window
2015-07-29 15:28:08 -07:00