2014-06-29 22:15:27 +00:00
<!DOCTYPE html>
2014-01-12 14:07:30 +00:00
< html >
< head >
2015-03-15 23:04:39 +00:00
< meta charset = 'utf-8' >
2017-03-09 18:40:47 +00:00
< meta content = 'width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0' name = 'viewport' >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" >
< meta name = "description" content = "" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2017-04-14 01:22:38 +00:00
< meta http-equiv = "Content-Security-Policy"
content="default-src 'none';
connect-src 'self' wss: https:;
script-src 'self';
style-src 'self' 'unsafe-inline';
img-src 'self' blob: data:;
font-src 'self';
media-src 'self' blob:;
child-src 'self';
object-src 'none'"
>
< title > Signal< / title >
2017-03-09 18:40:47 +00:00
< link href = 'images/icon_128.png' rel = 'shortcut icon' >
< link href = "stylesheets/manifest.css" rel = "stylesheet" type = "text/css" / >
Full export, migration banner, and full migration workflow - behind flag (#1342)
* Add support for backup and restore
This first pass works for all stores except messages, pending some scaling
improvements.
// FREEBIE
* Import of messages and attachments
Properly sanitize filenames. Logging information that will help with
debugging but won't threaten privacy (no contact or group names),
where the on-disk directories have this information to make things
human-readable
FREEBIE
* First fully operational single-action export and import!
FREEBIE
* Add migration export flow
A banner alert leads to a blocking ui for the migration. We close the socket and
wait for incoming messages to drain before starting the export.
FREEBIE
* A number of updates for the export flow
1. We don't immediately pop the directory selection dialog box, instead
showing an explicit 'choose directory' button after explaining what is
about to happen
2. We show a 'submit debug log' button on most steps of the process
3. We handle export errors and encourage the user to double-check their
filesystem then submit their log
4. We are resilient to restarts during the process
5. We handle the user cancelling out of the directory selection dialog
differently from other errors.
6. The export process is now serialized: non-messages, then messages.
7. After successful export, show where the data is on disk
FREEBUE
* Put migration behind a flag
FREEBIE
* Shut down websocket before proceeding with export
FREEBIE
* Add MigrationView to test/index.html to fix test
FREEBIE
* Remove 'Submit Debug Log' button when the export process is complete
FREEBIE
* Create a 'Signal Export' directory below user-chosen dir
This cleans things up a bit so we don't litter the user's target
directory with lots of stuff.
FREEBIE
* Clarify MessageReceiver.drain() method comments
FREEBIE
* A couple updates for clarity - event names, else handling
Also the removal of wait(), which wasn't used anywhere.
FREEBIE
* A number of wording updates for the export flow
FREEBIE
* Export complete: put dir on its own line, make text selectable
FREEBIE
2017-08-28 20:06:10 +00:00
< script type = 'text/x-tmpl-mustache' id = 'app-migration-screen' >
< div class = 'content' >
2017-08-08 00:24:59 +00:00
< img src = 'images/icon_128.png' >
Full export, migration banner, and full migration workflow - behind flag (#1342)
* Add support for backup and restore
This first pass works for all stores except messages, pending some scaling
improvements.
// FREEBIE
* Import of messages and attachments
Properly sanitize filenames. Logging information that will help with
debugging but won't threaten privacy (no contact or group names),
where the on-disk directories have this information to make things
human-readable
FREEBIE
* First fully operational single-action export and import!
FREEBIE
* Add migration export flow
A banner alert leads to a blocking ui for the migration. We close the socket and
wait for incoming messages to drain before starting the export.
FREEBIE
* A number of updates for the export flow
1. We don't immediately pop the directory selection dialog box, instead
showing an explicit 'choose directory' button after explaining what is
about to happen
2. We show a 'submit debug log' button on most steps of the process
3. We handle export errors and encourage the user to double-check their
filesystem then submit their log
4. We are resilient to restarts during the process
5. We handle the user cancelling out of the directory selection dialog
differently from other errors.
6. The export process is now serialized: non-messages, then messages.
7. After successful export, show where the data is on disk
FREEBUE
* Put migration behind a flag
FREEBIE
* Shut down websocket before proceeding with export
FREEBIE
* Add MigrationView to test/index.html to fix test
FREEBIE
* Remove 'Submit Debug Log' button when the export process is complete
FREEBIE
* Create a 'Signal Export' directory below user-chosen dir
This cleans things up a bit so we don't litter the user's target
directory with lots of stuff.
FREEBIE
* Clarify MessageReceiver.drain() method comments
FREEBIE
* A couple updates for clarity - event names, else handling
Also the removal of wait(), which wasn't used anywhere.
FREEBIE
* A number of wording updates for the export flow
FREEBIE
* Export complete: put dir on its own line, make text selectable
FREEBIE
2017-08-28 20:06:10 +00:00
{{ ^hideProgress }}
< div class = 'container' >
< span class = 'dot' > < / span >
< span class = 'dot' > < / span >
< span class = 'dot' > < / span >
< / div >
{{ /hideProgress }}
< div class = 'message' > {{& message }}< / div >
< div >
2017-08-08 00:24:59 +00:00
{{ #importButton }}
< button class = 'import grey' > {{ importButton }}< / button >
{{ /importButton }}
{{ #restartButton }}
< button class = 'restart grey' > {{ restartButton }}< / button >
{{ /restartButton }}
{{ #cancelButton }}
< button class = 'cancel grey' > {{ cancelButton }}< / button >
{{ /cancelButton }}
Full export, migration banner, and full migration workflow - behind flag (#1342)
* Add support for backup and restore
This first pass works for all stores except messages, pending some scaling
improvements.
// FREEBIE
* Import of messages and attachments
Properly sanitize filenames. Logging information that will help with
debugging but won't threaten privacy (no contact or group names),
where the on-disk directories have this information to make things
human-readable
FREEBIE
* First fully operational single-action export and import!
FREEBIE
* Add migration export flow
A banner alert leads to a blocking ui for the migration. We close the socket and
wait for incoming messages to drain before starting the export.
FREEBIE
* A number of updates for the export flow
1. We don't immediately pop the directory selection dialog box, instead
showing an explicit 'choose directory' button after explaining what is
about to happen
2. We show a 'submit debug log' button on most steps of the process
3. We handle export errors and encourage the user to double-check their
filesystem then submit their log
4. We are resilient to restarts during the process
5. We handle the user cancelling out of the directory selection dialog
differently from other errors.
6. The export process is now serialized: non-messages, then messages.
7. After successful export, show where the data is on disk
FREEBUE
* Put migration behind a flag
FREEBIE
* Shut down websocket before proceeding with export
FREEBIE
* Add MigrationView to test/index.html to fix test
FREEBIE
* Remove 'Submit Debug Log' button when the export process is complete
FREEBIE
* Create a 'Signal Export' directory below user-chosen dir
This cleans things up a bit so we don't litter the user's target
directory with lots of stuff.
FREEBIE
* Clarify MessageReceiver.drain() method comments
FREEBIE
* A couple updates for clarity - event names, else handling
Also the removal of wait(), which wasn't used anywhere.
FREEBIE
* A number of wording updates for the export flow
FREEBIE
* Export complete: put dir on its own line, make text selectable
FREEBIE
2017-08-28 20:06:10 +00:00
< / div >
< / div >
< / script >
2017-07-25 01:43:35 +00:00
< script type = 'text/x-tmpl-mustache' id = 'app-loading-screen' >
< div class = 'content' >
2017-07-28 01:38:41 +00:00
< img src = 'images/icon_128.png' >
2017-07-25 01:43:35 +00:00
< div class = 'container' >
< span class = 'dot' > < / span >
< span class = 'dot' > < / span >
< span class = 'dot' > < / span >
< / div >
2017-07-25 23:00:06 +00:00
< div class = 'message' > {{ message }}< / div >
2017-07-25 01:43:35 +00:00
< / div >
< / script >
< script type = 'text/x-tmpl-mustache' id = 'conversation-loading-screen' >
< div class = 'content' >
2017-07-28 01:38:41 +00:00
< img src = 'images/icon_128.png' >
2017-07-25 01:43:35 +00:00
< div class = 'container' >
< span class = 'dot' > < / span >
< span class = 'dot' > < / span >
< span class = 'dot' > < / span >
< / div >
< / div >
< / script >
2015-08-25 23:47:15 +00:00
< script type = 'text/x-tmpl-mustache' id = 'two-column' >
< div class = 'gutter' >
2017-01-04 03:37:56 +00:00
< div class = 'network-status-container' > < / div >
2016-03-21 03:02:38 +00:00
< div class = 'title-bar active' id = 'header' >
2016-03-22 18:01:04 +00:00
< div class = 'header-buttons right' >
2016-03-18 22:54:40 +00:00
< div class = 'vertical-align' >
< div class = 'global-menu menu' >
2016-04-07 17:24:36 +00:00
< button class = 'hamburger' alt = 'signal menu' > < / button >
2016-03-18 22:54:40 +00:00
< ul class = 'menu-list' >
2016-08-24 23:19:24 +00:00
< li class = 'showSettings' > {{ settings }}< / li >
2016-03-24 19:57:04 +00:00
< li class = 'restart-signal' > {{ restartSignal }}< / li >
2016-03-18 22:54:40 +00:00
< / ul >
< / div >
< / div >
2016-03-18 18:11:36 +00:00
< / div >
< h1 > Signal< / h1 >
< div class = 'tool-bar clearfix' >
2016-07-05 00:54:02 +00:00
< input type = 'search' class = 'search' placeholder = '{{ searchForPeopleOrGroups }}' dir = 'auto' >
2016-04-13 01:00:33 +00:00
< span class = 'search-icon' > < / span >
2016-03-18 18:11:36 +00:00
< / div >
< / div >
2016-02-22 18:47:48 +00:00
< div class = 'content' >
2017-04-11 23:24:06 +00:00
< div class = 'conversations inbox' > < / div >
< div class = 'conversations search-results hide' >
2016-02-22 18:47:48 +00:00
< div class = 'new-contact contact hide' > < / div >
< / div >
2015-10-15 19:10:03 +00:00
< / div >
2015-08-25 23:47:15 +00:00
< / div >
2015-11-27 23:43:45 +00:00
< div class = 'conversation-stack' >
2015-11-28 22:41:58 +00:00
< div class = 'conversation placeholder' >
2016-08-31 01:27:54 +00:00
< div class = 'conversation-header' > < / div >
< div class = 'content' >
2017-03-08 00:54:46 +00:00
< img src = 'images/icon_128.png' / >
2016-08-31 01:27:54 +00:00
< h3 > {{ welcomeToSignal }}< / h3 >
< p > {{ selectAContact }}< / p >
< / div >
2015-11-28 22:41:58 +00:00
< / div >
2015-11-27 23:43:45 +00:00
< / div >
2015-08-25 23:47:15 +00:00
< / script >
2017-05-19 01:33:35 +00:00
< script type = 'text/x-tmpl-mustache' id = 'scroll-down-button-view' >
< button class = 'text {{ cssClass }}' alt = '{{ moreBelow }}' >
< div class = 'icon' > < / div >
< / button >
< / script >
2017-05-17 21:32:03 +00:00
< script type = 'text/x-tmpl-mustache' id = 'last-seen-indicator-view' >
2017-05-31 23:08:32 +00:00
< div class = 'bar' >
< div class = 'text' >
{{ unreadMessages }}
< / div >
2017-05-17 21:32:03 +00:00
< / div >
< / script >
2016-04-04 03:06:27 +00:00
< script type = 'text/x-tmpl-mustache' id = 'expired_alert' >
< a target = '_blank' href = 'https://chrome.google.com/webstore/detail/bikioccmkafdpakkkcpdbppfkghcmihk' >
< button class = 'upgrade' > {{ upgrade }}< / button >
< / a >
{{ expiredWarning }}
< / script >
2017-06-14 00:36:32 +00:00
< script type = 'text/x-tmpl-mustache' id = 'banner' >
< div class = 'body' >
2017-06-16 21:29:27 +00:00
< span class = 'icon warning' > < / span >
2017-06-14 00:36:32 +00:00
{{ message }}
2017-06-16 21:29:27 +00:00
< span class = 'icon dismiss' > < / span >
2017-06-14 00:36:32 +00:00
< / div >
< / script >
2016-09-07 00:11:44 +00:00
< script type = 'text/x-tmpl-mustache' id = 'toast' >
{{ toastMessage }}
2016-04-04 03:06:27 +00:00
< / script >
2015-11-21 00:58:52 +00:00
< script type = 'text/x-tmpl-mustache' id = 'hint' >
2015-11-28 01:34:02 +00:00
< p > {{ content }}< / p >
2015-11-21 00:58:52 +00:00
< / script >
2017-06-10 19:18:24 +00:00
< script type = 'text/x-tmpl-mustache' id = 'conversation-title' >
{{ #name }}
< span class = 'conversation-name' dir = 'auto' > {{ name }}< / span >
{{ /name }}
{{ #number }}
< span class = 'conversation-number' > {{ number }}< / span >
{{ /number }}
2017-09-11 16:50:35 +00:00
{{ #profileName }}
< span class = 'profileName' > {{ profileName }} < / span >
{{ /profileName }}
2017-06-14 19:29:32 +00:00
{{ #isVerified }}
2017-06-14 21:06:36 +00:00
< span class = 'verified' > < span class = 'verified-icon' > < / span > {{ verified }}< / span >
2017-06-14 19:29:32 +00:00
{{ /isVerified }}
2017-06-10 19:18:24 +00:00
< / script >
2015-03-15 23:04:39 +00:00
< script type = 'text/x-tmpl-mustache' id = 'conversation' >
2016-08-29 06:57:33 +00:00
< div class = 'conversation-header {{ avatar.color }}' >
2016-03-22 18:01:04 +00:00
< div class = 'header-buttons left' >
2016-03-21 22:37:53 +00:00
< div class = 'vertical-align' >
< button class = 'back hide' > < / button >
2016-03-22 18:01:04 +00:00
< / div >
< / div >
< div class = 'header-buttons right' >
< div class = 'vertical-align' >
2016-03-21 22:37:53 +00:00
< div class = 'conversation-menu menu' >
2016-04-07 17:24:36 +00:00
< button class = 'hamburger' alt = 'conversation menu' > < / button >
2016-03-21 22:37:53 +00:00
< ul class = 'menu-list' >
2017-06-10 19:18:24 +00:00
< li class = 'disappearing-messages' > {{ disappearing-messages }}< / li >
2016-03-21 22:37:53 +00:00
{{#group}}
2017-06-10 19:18:24 +00:00
< li class = 'show-members' > {{ show-members }}< / li >
2016-03-24 19:57:04 +00:00
<!-- <li class='update - group'>Update group</li> -->
<!-- <li class='leave - group'>Leave group</li> -->
2016-03-21 22:37:53 +00:00
{{/group}}
{{^group}}
2017-06-14 17:58:05 +00:00
{{ ^isMe }}
< li class = 'show-identity' > {{ show-identity }}< / li >
{{ /isMe }}
2017-06-10 19:18:24 +00:00
< li class = 'end-session' > {{ end-session }}< / li >
2016-03-21 22:37:53 +00:00
{{/group}}
2016-03-24 19:57:04 +00:00
< li class = 'destroy' > {{ destroy }}< / li >
2016-03-21 22:37:53 +00:00
< / ul >
2016-03-18 22:54:40 +00:00
< / div >
2016-09-28 23:47:57 +00:00
< div class = 'timer-menu menu' >
< button class = 'clock' alt = 'timer menu' > < / button >
< ul class = 'menu-list' >
{{ #timer_options }}
< li data-seconds = {{ attributes . seconds } } > {{ getName }}< / li >
{{ /timer_options }}
< / ul >
< / div >
2015-03-15 23:04:39 +00:00
< / div >
2016-03-21 22:37:53 +00:00
< / div >
2017-06-10 19:18:24 +00:00
< span class = 'conversation-title' > < / span >
2016-03-21 22:37:53 +00:00
{{> avatar }}
< / div >
< div class = 'main panel' >
2016-03-23 20:40:21 +00:00
< div class = 'discussion-container' >
2016-03-19 00:59:54 +00:00
< div class = 'bar-container hide' >
< div class = 'bar active progress-bar-striped progress-bar' > < / div >
< / div >
< / div >
2015-03-15 23:04:39 +00:00
2015-12-26 06:17:30 +00:00
< div class = 'bottom-bar' id = 'footer' >
2017-10-30 20:54:55 +00:00
< div class = 'emoji-panel-container' > < / div >
< div class = 'compose' >
< form class = 'send clearfix' >
2015-10-29 18:04:21 +00:00
< div class = 'attachment-previews' > < / div >
2016-08-15 22:36:29 +00:00
< div class = 'flex' >
2017-10-30 20:54:55 +00:00
< button class = 'emoji' > < / button >
2016-08-15 22:36:29 +00:00
< textarea class = 'send-message' placeholder = '{{ send-message }}' rows = '1' dir = 'auto' > < / textarea >
< div class = 'capture-audio' >
2017-05-22 17:09:54 +00:00
< button class = 'microphone' > < / button >
2016-08-15 22:36:29 +00:00
< / div >
2017-05-26 16:50:23 +00:00
< div class = 'android-length-warning' >
{{ android-length-warning }}
< / div >
2017-10-30 20:54:55 +00:00
< div class = 'choose-file' >
< button class = 'paperclip thumbnail' > < / button >
< input type = 'file' class = 'file-input' >
< / div >
2015-03-15 23:04:39 +00:00
< / div >
2017-10-30 20:54:55 +00:00
< / form >
< / div >
2015-03-15 23:04:39 +00:00
< / div >
2015-10-02 18:21:10 +00:00
< / div >
2015-03-15 23:04:39 +00:00
< / script >
2016-08-15 22:36:29 +00:00
< script type = 'text/x-tmpl-mustache' id = 'recorder' >
< button class = 'finish' > < span class = 'icon' > < / span > < / button >
< span class = 'time' > 0:00< / span >
< button class = 'close' > < span class = 'icon' > < / span > < / button >
< / script >
2016-06-20 18:37:26 +00:00
< script type = 'text/x-tmpl-mustache' id = 'lightbox' >
< div class = 'content' >
< div class = 'controls' >
< a class = 'x close' alt = 'Close image.' href = '#' > < / a >
< a class = 'save' alt = 'Save as...' href = '#' > < / a >
< / div >
< img class = 'image' src = '{{ url }}' / >
< / div >
< / script >
2015-05-26 23:54:21 +00:00
< script type = 'text/x-tmpl-mustache' id = 'confirmation-dialog' >
2016-02-19 01:28:34 +00:00
< div class = "content" >
2016-01-23 16:00:07 +00:00
< div class = 'message' > {{ message }}< / div >
< div class = 'buttons' >
2017-07-11 22:54:46 +00:00
{{ #showCancel }}
< button class = 'cancel' tabindex = '2' > {{ cancel }}< / button >
{{ /showCancel }}
2017-06-14 17:37:30 +00:00
< button class = 'ok' tabindex = '1' > {{ ok }}< / button >
2016-01-23 16:00:07 +00:00
< / div >
2015-05-26 23:54:21 +00:00
< / div >
< / script >
2015-03-15 23:04:39 +00:00
< script type = 'text/x-tmpl-mustache' id = 'attachment-preview' >
2015-12-26 06:17:30 +00:00
< img src = '{{ source }}' class = 'preview' / >
2016-04-07 17:56:59 +00:00
< a class = 'x close' alt = 'remove attachment' href = '#' > < / a >
2015-03-15 23:04:39 +00:00
< / script >
2017-04-18 22:20:45 +00:00
< script type = 'text/x-tmpl-mustache' id = 'file-view' >
2017-05-11 23:45:26 +00:00
< div class = 'icon {{ mediaType }}' > < / div >
2017-05-09 17:10:50 +00:00
< div class = 'text' >
2017-05-11 23:45:26 +00:00
< div class = 'fileName' title = '{{ altText }}' >
{{ fileName }}
< / div >
2017-05-09 17:10:50 +00:00
< div class = 'fileSize' > {{ fileSize }}< / div >
< / div >
2017-04-18 22:20:45 +00:00
< / script >
2016-03-22 21:47:17 +00:00
< script type = 'text/x-tmpl-mustache' id = 'hasRetry' >
{{ messageNotSent }}
< span href = '#' class = 'retry' > {{ resend }}< / span >
< / script >
2017-07-03 23:46:39 +00:00
< script type = 'text/x-tmpl-mustache' id = 'some-failed' >
{{ someFailed }}
< / script >
2016-09-18 06:55:05 +00:00
< script type = 'text/x-tmpl-mustache' id = 'keychange' >
2017-06-16 21:56:38 +00:00
< span class = 'content' dir = 'auto' > < span class = 'shield icon' > < / span > {{ content }}< / span >
2016-09-18 06:55:05 +00:00
< / script >
2017-06-15 19:27:41 +00:00
< script type = 'text/x-tmpl-mustache' id = 'verified-change' >
< span class = 'content' dir = 'auto' > < span class = '{{ icon }} icon' > < / span > {{ content }}< / span >
< / script >
2015-03-15 23:04:39 +00:00
< script type = 'text/x-tmpl-mustache' id = 'message' >
2015-03-23 21:01:18 +00:00
{{> avatar }}
2016-08-29 06:57:33 +00:00
< div class = 'bubble {{ avatar.color }}' >
2017-09-11 16:50:35 +00:00
< div class = 'sender' dir = 'auto' >
{{ sender }}
{{ #profileName }}
< span class = 'profileName' > {{ profileName }} < / span >
{{ /profileName }}
< / div >
2015-03-15 23:04:39 +00:00
< div class = 'attachments' > < / div >
2016-08-29 08:11:13 +00:00
< p class = 'content' dir = 'auto' >
{{ #message }}< span class = 'body' > {{ message }}< / span > {{ /message }}
< / p >
2015-03-15 23:04:39 +00:00
< div class = 'meta' >
2015-11-06 22:58:26 +00:00
< span class = 'timestamp' data-timestamp = {{ timestamp } } > < / span >
2015-10-28 21:12:40 +00:00
< span class = 'status hide' > < / span >
2016-09-23 23:50:03 +00:00
< span class = 'timer' > < / span >
2015-03-15 23:04:39 +00:00
< / div >
< / div >
< / script >
2016-09-23 23:50:03 +00:00
< script type = 'text/x-tmpl-mustache' id = 'hourglass' >
< span class = 'hourglass' > < span class = 'sand' > < / span > < / span >
< / script >
2016-09-27 06:15:20 +00:00
< script type = 'text/x-tmpl-mustache' id = 'expirationTimerUpdate' >
2017-06-16 21:56:38 +00:00
< span class = 'content' > < span class = 'icon clock' > < / span > {{ content }}< / span >
2016-09-27 06:15:20 +00:00
< / script >
2015-09-04 20:11:21 +00:00
< script type = 'text/x-tmpl-mustache' id = 'new-group-update' >
2015-08-26 22:13:14 +00:00
< div class = 'conversation-header' >
2015-03-15 23:04:39 +00:00
< button class = 'back' > < / button >
< button class = 'send check' > < / button >
2015-08-26 22:13:14 +00:00
< span class = 'conversation-title' > Update group< / span >
2015-03-15 23:04:39 +00:00
< / div >
2015-09-04 20:11:21 +00:00
{{> group_info_input }}
2015-03-15 23:04:39 +00:00
< div class = 'container' >
2015-09-04 20:11:21 +00:00
< div class = 'scrollable' > < / div >
2015-03-15 23:04:39 +00:00
< / div >
< / script >
2015-09-10 07:46:50 +00:00
< script type = 'text/x-tmpl-mustache' id = 'identicon-svg' >
2015-12-26 06:17:30 +00:00
< svg xmlns = 'http://www.w3.org/2000/svg' width = '100' height = '100' >
< circle cx = '50' cy = '50' r = '40' fill = '{{ color }}' / >
2017-07-07 20:18:29 +00:00
< text text-anchor = 'middle' fill = 'white' font-family = 'sans-serif' font-size = '24px' x = '50' y = '50' baseline-shift = '-8px' >
2015-09-10 07:46:50 +00:00
{{ content }}
< / text >
< / svg >
< / script >
2015-03-23 21:01:18 +00:00
< script type = 'text/x-tmpl-mustache' id = 'avatar' >
2016-08-29 06:57:33 +00:00
< span aria-hidden class = 'avatar
{{ ^avatar.url }}
{{ avatar.color }}
{{ /avatar.url }}
'
{{ #avatar.url }}
style='background-image: url("{{ avatar.url }}");'
{{ /avatar.url }}
>
2015-06-19 00:05:00 +00:00
{{ avatar.content }}
2015-09-03 20:33:17 +00:00
< / span >
2015-03-23 21:01:18 +00:00
< / script >
2015-03-15 23:04:39 +00:00
< script type = 'text/x-tmpl-mustache' id = 'contact_pill' >
< span > {{ name }}< / span > < span class = 'remove' > x< / span >
< / script >
2015-09-03 20:33:17 +00:00
< script type = 'text/x-tmpl-mustache' id = 'contact_name_and_number' >
2017-09-11 16:50:35 +00:00
< h3 class = 'name' dir = 'auto' >
{{ title }}
{{ #profileName }}
< span class = 'profileName' > {{ profileName }} < / span >
{{ /profileName }}
< / h3 >
< div class = 'number' > {{ #isVerified }}< span class = 'verified-icon' > < / span > {{ verified }} · {{ /isVerified }} {{ number }}< / div >
2015-09-03 20:33:17 +00:00
< / script >
2015-03-15 23:04:39 +00:00
< script type = 'text/x-tmpl-mustache' id = 'contact' >
2015-09-03 20:33:17 +00:00
{{> avatar }}
Feature: Blue check marks for read messages if opted in (#1489)
* Refactor delivery receipt event handler
* Rename the delivery receipt event
For less ambiguity with read receipts.
* Rename synced read event
For less ambiguity with read receipts from other Signal users.
* Add support for incoming receipt messages
Handle ReceiptMessages, which may include encrypted delivery receipts or read
receipts from recipients of our sent messages.
// FREEBIE
* Rename ReadReceipts to ReadSyncs
* Render read messages with blue double checks
* Send read receipts to senders of incoming messages
// FREEBIE
* Move ReadSyncs to their own file
// FREEBIE
* Fixup old comments on read receipts (now read syncs)
And some variable renaming for extra clarity.
// FREEBIE
* Add global setting for read receipts
Don't send read receipt messages unless the setting is enabled.
Don't process read receipts if the setting is disabled.
// FREEBIE
* Sync read receipt setting from mobile
Toggling this setting on your mobile device should sync it to Desktop. When
linking, use the setting in the provisioning message.
// FREEBIE
* Send receipt messages silently
Avoid generating phantom messages on ios
// FREEBIE
* Save recipients on the outgoing message models
For accurate tracking and display of sent/delivered/read state, even if group
membership changes later.
// FREEBIE
* Fix conversation type in profile key update handling
// FREEBIE
* Set recipients on synced sent messages
* Render saved recipients in message detail if available
For older messages, where we did not save the intended set of recipients at the
time of sending, fall back to the current group membership.
// FREEBIE
* Record who has been successfully sent to
// FREEBIE
* Record who a message has been delivered to
* Invert the not-clickable class
* Fix readReceipt setting sync when linking
* Render per recipient sent/delivered/read status
In the message detail view for outgoing messages, render each recipient's
individual sent/delivered/read status with respect to this message, as long as
there are no errors associated with the recipient (ie, safety number changes,
user not registered, etc...) since the error icon is displayed in that case.
*Messages sent before this change may not have per-recipient status lists
and will simply show no status icon.
// FREEBIE
* Add configuration sync request
Send these requests in a one-off fashion when:
1. We have just setup from a chrome app import
2. We have just upgraded to read-receipt support
// FREEBIE
* Expose sendRequestConfigurationSyncMessage
// FREEBIE
* Fix handling of incoming delivery receipts - union with array
FREEBIE
2017-10-04 22:28:43 +00:00
< div class = 'contact-details {{ class }}' > {{> contact_name_and_number }} < / div >
2015-09-03 20:33:17 +00:00
< / script >
2015-12-06 03:21:15 +00:00
< script type = 'text/x-tmpl-mustache' id = 'new-contact' >
{{> avatar }}
< div class = 'contact-details' >
{{> contact_name_and_number }}
< / div >
< / script >
2015-09-05 01:44:33 +00:00
< script type = 'text/x-tmpl-mustache' id = 'conversation-preview' >
2015-03-23 21:01:18 +00:00
{{> avatar }}
2015-03-15 23:04:39 +00:00
< div class = 'contact-details' >
2016-07-15 00:24:23 +00:00
< span class = 'last-timestamp' data-timestamp = '{{ last_message_timestamp }}' dir = 'auto' > < / span >
2015-10-23 22:47:32 +00:00
{{> contact_name_and_number }}
2015-11-09 20:07:40 +00:00
{{ #unreadCount }}
< span class = 'unread-count' > {{ unreadCount }}< / span >
{{ /unreadCount }}
2016-04-01 18:36:28 +00:00
{{ #last_message }}
2016-07-05 00:54:02 +00:00
< p class = 'last-message' dir = 'auto' > {{ last_message }} < / p >
2016-04-01 18:36:28 +00:00
{{ /last_message }}
2015-03-15 23:04:39 +00:00
< / div >
< / script >
2015-12-26 06:17:30 +00:00
< script type = 'text/x-tmpl-mustache' id = 'phone-number' >
< div class = 'phone-input-form' >
< div class = 'number-container' >
< input type = 'tel' class = 'number' placeholder = "Phone Number" / >
2015-03-15 23:04:39 +00:00
< / div >
< / div >
< / script >
< script type = 'text/x-tmpl-mustache' id = 'file-size-modal' >
2015-12-26 04:38:16 +00:00
{{ file-size-warning }}
({{ limit }}{{ units }})
2015-03-15 23:04:39 +00:00
< / script >
2015-12-05 06:39:15 +00:00
< script type = 'text/x-tmpl-mustache' id = 'attachment-type-modal' >
Sorry, your attachment has a type, {{type}}, that is not currently supported.
< / script >
2015-03-15 23:04:39 +00:00
< script type = 'text/x-tmpl-mustache' id = 'message-detail' >
2015-02-18 02:03:05 +00:00
< div class = 'container' >
< div class = 'message-container' > < / div >
< div class = 'info' >
< table >
2016-02-15 07:30:14 +00:00
{{ #errors }}
< tr >
< td class = 'label' > {{ errorLabel }}< / td >
< td > < span class = 'error-message' > {{message}}< / span > < / td >
< / tr >
{{ /errors }}
2015-12-25 06:55:53 +00:00
< tr >
< td class = 'label' > {{ sent }}< / td >
< td > {{ sent_at }}< / td >
< / tr >
2015-12-21 07:32:39 +00:00
{{ #received_at }}
2015-12-25 06:55:53 +00:00
< tr >
< td class = 'label' > {{ received }}< / td >
< td > {{ received_at }}< / td >
< / tr >
2015-12-21 07:32:39 +00:00
{{ /received_at }}
2015-10-10 23:41:44 +00:00
< tr > < td class = 'tofrom label' > {{tofrom}}< / td > < / tr >
2015-02-18 02:03:05 +00:00
< / table >
2015-10-10 23:41:44 +00:00
< div class = 'contacts' >
< / div >
2015-02-18 02:03:05 +00:00
< / div >
2017-07-12 22:19:07 +00:00
< div class = 'delete-container' >
< button class = 'delete grey' > {{ deleteLabel }}< / button >
< / div >
2015-03-15 23:04:39 +00:00
< / div >
< / script >
2017-07-03 18:52:12 +00:00
< script type = 'text/x-tmpl-mustache' id = 'identity-key-send-error' >
< div class = 'container' >
< div class = 'explanation' >
{{ errorExplanation }}
< / div >
< div class = 'safety-number' >
< button class = 'show-safety-number grey' > {{ showSafetyNumber }}< / button >
< / div >
< div class = 'actions' >
< button class = 'send-anyway grey' > {{ sendAnyway }}< / button >
< button class = 'cancel grey' > {{ cancel }}< / button >
< / div >
< / div >
< / script >
2015-08-04 19:15:37 +00:00
< script type = 'text/x-tmpl-mustache' id = 'group-member-list' >
2017-06-16 23:48:06 +00:00
< div class = 'container' >
{{ #summary }} < div class = 'summary' > {{ summary }}< / div > {{ /summary }}
< / div >
2015-08-04 19:15:37 +00:00
< / script >
2017-06-09 01:08:41 +00:00
< script type = 'text/x-tmpl-mustache' id = 'key-verification' >
2015-03-15 23:04:39 +00:00
< div class = 'container' >
2017-07-11 22:54:46 +00:00
{{ ^hasTheirKey }}
< div class = 'placeholder' > {{ theirKeyUnknown }}< / div >
{{ /hasTheirKey }}
{{ #hasTheirKey }}
2016-09-18 22:16:39 +00:00
< label > {{ yourSafetyNumberWith }} < / label >
2016-10-21 17:22:17 +00:00
<!-- <div class='qr'></div> -->
2016-03-22 01:18:10 +00:00
< div class = 'key' >
2016-09-18 22:16:39 +00:00
{{ #chunks }} < span > {{ . }}< / span > {{ /chunks }}
2016-03-22 01:18:10 +00:00
< / div >
2017-07-11 22:54:46 +00:00
{{ /hasTheirKey }}
2017-06-10 19:18:24 +00:00
{{ verifyHelp }}
2017-06-09 01:08:41 +00:00
< p > {{> link_to_support }} < / p >
2017-06-30 00:32:40 +00:00
< div class = 'summary' >
{{ #isVerified }}
< span class = 'icon verified' > < / span >
{{ /isVerified }}
{{ ^isVerified }}
< span class = 'icon shield' > < / span >
{{ /isVerified }}
{{ verifiedStatus }}
< / div >
2017-06-10 19:18:24 +00:00
< div class = 'verify' >
2017-06-14 17:58:22 +00:00
< button class = 'verify grey' >
2017-06-10 19:18:24 +00:00
{{ verifyButton }}
< / button >
< / div >
2017-06-09 01:08:41 +00:00
< / div >
2015-03-15 23:04:39 +00:00
< / script >
<!-- index -->
2015-09-04 20:11:21 +00:00
< script type = 'text/x-tmpl-mustache' id = 'group_info_input' >
< div class = 'group-info-input' >
< div class = 'group-avatar' >
2015-10-29 18:04:21 +00:00
< div class = 'choose-file attachment-previews thumbnail' >
{{> avatar }}
< / div >
2015-09-04 20:11:21 +00:00
< input type = 'file' name = 'avatar' class = 'file-input' >
< / div >
2015-12-26 06:17:30 +00:00
< input type = 'text' name = 'name' class = 'name' placeholder = 'Group Name' value = '{{ name }}' >
2015-09-04 20:11:21 +00:00
< / div >
< / script >
2015-03-15 23:04:39 +00:00
< script type = 'text/x-tmpl-mustache' id = 'new-conversation' >
2015-08-26 22:13:14 +00:00
< div class = 'conversation-header' >
2015-03-15 23:04:39 +00:00
< button class = 'back' > < / button >
< button class = 'create check hide' > < / button >
2015-08-26 22:13:14 +00:00
< span class = 'conversation-title' > New Message< / span >
2015-03-15 23:04:39 +00:00
< / div >
2015-09-04 20:11:21 +00:00
{{> group_info_input }}
2015-08-26 22:13:14 +00:00
< div class = 'container' >
2015-03-15 23:04:39 +00:00
< div class = 'scrollable' >
< / div >
< / div >
< / script >
< script type = 'text/x-tmpl-mustache' id = 'recipients-input' >
< div class = 'recipients-container' >
< span class = 'recipients' > < / span >
2016-07-05 00:54:02 +00:00
< input type = 'text' class = 'search' placeholder = '{{ placeholder }}' dir = 'auto' / >
2015-03-15 23:04:39 +00:00
< / div >
< div class = 'results' >
< div class = 'new-contact contact hide' > < / div >
< div class = 'contacts' > < / div >
< / div >
< / script >
2015-02-18 02:03:05 +00:00
< script type = 'text/x-tmpl-mustache' id = 'generic-error' >
< p > {{ message }}< / p >
< / script >
2016-04-14 23:42:42 +00:00
< script type = 'text/x-tmpl-mustache' id = 'error-icon' >
< span class = 'error-icon' >
< / span >
{{ #message }}
< span class = 'error-message' > {{message}}< / span >
{{ /message }}
< / script >
2015-02-18 02:03:05 +00:00
< script type = 'text/x-tmpl-mustache' id = 'contact-detail' >
Feature: Blue check marks for read messages if opted in (#1489)
* Refactor delivery receipt event handler
* Rename the delivery receipt event
For less ambiguity with read receipts.
* Rename synced read event
For less ambiguity with read receipts from other Signal users.
* Add support for incoming receipt messages
Handle ReceiptMessages, which may include encrypted delivery receipts or read
receipts from recipients of our sent messages.
// FREEBIE
* Rename ReadReceipts to ReadSyncs
* Render read messages with blue double checks
* Send read receipts to senders of incoming messages
// FREEBIE
* Move ReadSyncs to their own file
// FREEBIE
* Fixup old comments on read receipts (now read syncs)
And some variable renaming for extra clarity.
// FREEBIE
* Add global setting for read receipts
Don't send read receipt messages unless the setting is enabled.
Don't process read receipts if the setting is disabled.
// FREEBIE
* Sync read receipt setting from mobile
Toggling this setting on your mobile device should sync it to Desktop. When
linking, use the setting in the provisioning message.
// FREEBIE
* Send receipt messages silently
Avoid generating phantom messages on ios
// FREEBIE
* Save recipients on the outgoing message models
For accurate tracking and display of sent/delivered/read state, even if group
membership changes later.
// FREEBIE
* Fix conversation type in profile key update handling
// FREEBIE
* Set recipients on synced sent messages
* Render saved recipients in message detail if available
For older messages, where we did not save the intended set of recipients at the
time of sending, fall back to the current group membership.
// FREEBIE
* Record who has been successfully sent to
// FREEBIE
* Record who a message has been delivered to
* Invert the not-clickable class
* Fix readReceipt setting sync when linking
* Render per recipient sent/delivered/read status
In the message detail view for outgoing messages, render each recipient's
individual sent/delivered/read status with respect to this message, as long as
there are no errors associated with the recipient (ie, safety number changes,
user not registered, etc...) since the error icon is displayed in that case.
*Messages sent before this change may not have per-recipient status lists
and will simply show no status icon.
// FREEBIE
* Add configuration sync request
Send these requests in a one-off fashion when:
1. We have just setup from a chrome app import
2. We have just upgraded to read-receipt support
// FREEBIE
* Expose sendRequestConfigurationSyncMessage
// FREEBIE
* Fix handling of incoming delivery receipts - union with array
FREEBIE
2017-10-04 22:28:43 +00:00
< div class = 'clearfix' >
{{> avatar }}
< div class = 'contact-details' >
{{ #errors }}
< div class = 'error-icon-container' >
{{ #showErrorButton }}
< button class = 'error' >
< span class = 'icon error' > < / span >
{{ errorButtonLabel }}
< / button >
{{ /showErrorButton }}
{{ ^showErrorButton }}
< span class = 'error-icon' > < / span >
{{ /showErrorButton }}
< / div >
{{ /errors }}
{{ ^errors }}
< div class = 'status-icon-container {{ status }}' >
< span class = 'status' > < / span >
2016-04-14 23:42:42 +00:00
< / div >
Feature: Blue check marks for read messages if opted in (#1489)
* Refactor delivery receipt event handler
* Rename the delivery receipt event
For less ambiguity with read receipts.
* Rename synced read event
For less ambiguity with read receipts from other Signal users.
* Add support for incoming receipt messages
Handle ReceiptMessages, which may include encrypted delivery receipts or read
receipts from recipients of our sent messages.
// FREEBIE
* Rename ReadReceipts to ReadSyncs
* Render read messages with blue double checks
* Send read receipts to senders of incoming messages
// FREEBIE
* Move ReadSyncs to their own file
// FREEBIE
* Fixup old comments on read receipts (now read syncs)
And some variable renaming for extra clarity.
// FREEBIE
* Add global setting for read receipts
Don't send read receipt messages unless the setting is enabled.
Don't process read receipts if the setting is disabled.
// FREEBIE
* Sync read receipt setting from mobile
Toggling this setting on your mobile device should sync it to Desktop. When
linking, use the setting in the provisioning message.
// FREEBIE
* Send receipt messages silently
Avoid generating phantom messages on ios
// FREEBIE
* Save recipients on the outgoing message models
For accurate tracking and display of sent/delivered/read state, even if group
membership changes later.
// FREEBIE
* Fix conversation type in profile key update handling
// FREEBIE
* Set recipients on synced sent messages
* Render saved recipients in message detail if available
For older messages, where we did not save the intended set of recipients at the
time of sending, fall back to the current group membership.
// FREEBIE
* Record who has been successfully sent to
// FREEBIE
* Record who a message has been delivered to
* Invert the not-clickable class
* Fix readReceipt setting sync when linking
* Render per recipient sent/delivered/read status
In the message detail view for outgoing messages, render each recipient's
individual sent/delivered/read status with respect to this message, as long as
there are no errors associated with the recipient (ie, safety number changes,
user not registered, etc...) since the error icon is displayed in that case.
*Messages sent before this change may not have per-recipient status lists
and will simply show no status icon.
// FREEBIE
* Add configuration sync request
Send these requests in a one-off fashion when:
1. We have just setup from a chrome app import
2. We have just upgraded to read-receipt support
// FREEBIE
* Expose sendRequestConfigurationSyncMessage
// FREEBIE
* Fix handling of incoming delivery receipts - union with array
FREEBIE
2017-10-04 22:28:43 +00:00
{{ /errors }}
< span class = 'name' dir = 'auto' > {{ name }}< / span >
{{ #errors }}
{{ #message }}
< p class = 'error-message' > {{message}}< / p >
{{ /message }}
{{ /errors }}
2015-02-18 02:03:05 +00:00
< / div >
Feature: Blue check marks for read messages if opted in (#1489)
* Refactor delivery receipt event handler
* Rename the delivery receipt event
For less ambiguity with read receipts.
* Rename synced read event
For less ambiguity with read receipts from other Signal users.
* Add support for incoming receipt messages
Handle ReceiptMessages, which may include encrypted delivery receipts or read
receipts from recipients of our sent messages.
// FREEBIE
* Rename ReadReceipts to ReadSyncs
* Render read messages with blue double checks
* Send read receipts to senders of incoming messages
// FREEBIE
* Move ReadSyncs to their own file
// FREEBIE
* Fixup old comments on read receipts (now read syncs)
And some variable renaming for extra clarity.
// FREEBIE
* Add global setting for read receipts
Don't send read receipt messages unless the setting is enabled.
Don't process read receipts if the setting is disabled.
// FREEBIE
* Sync read receipt setting from mobile
Toggling this setting on your mobile device should sync it to Desktop. When
linking, use the setting in the provisioning message.
// FREEBIE
* Send receipt messages silently
Avoid generating phantom messages on ios
// FREEBIE
* Save recipients on the outgoing message models
For accurate tracking and display of sent/delivered/read state, even if group
membership changes later.
// FREEBIE
* Fix conversation type in profile key update handling
// FREEBIE
* Set recipients on synced sent messages
* Render saved recipients in message detail if available
For older messages, where we did not save the intended set of recipients at the
time of sending, fall back to the current group membership.
// FREEBIE
* Record who has been successfully sent to
// FREEBIE
* Record who a message has been delivered to
* Invert the not-clickable class
* Fix readReceipt setting sync when linking
* Render per recipient sent/delivered/read status
In the message detail view for outgoing messages, render each recipient's
individual sent/delivered/read status with respect to this message, as long as
there are no errors associated with the recipient (ie, safety number changes,
user not registered, etc...) since the error icon is displayed in that case.
*Messages sent before this change may not have per-recipient status lists
and will simply show no status icon.
// FREEBIE
* Add configuration sync request
Send these requests in a one-off fashion when:
1. We have just setup from a chrome app import
2. We have just upgraded to read-receipt support
// FREEBIE
* Expose sendRequestConfigurationSyncMessage
// FREEBIE
* Fix handling of incoming delivery receipts - union with array
FREEBIE
2017-10-04 22:28:43 +00:00
< / div >
2015-02-18 02:03:05 +00:00
< / script >
2016-03-24 19:33:41 +00:00
< script type = 'text/x-tmpl-mustache' id = 'link_to_support' >
< a href = 'http://support.whispersystems.org/hc/articles/213134107' target = '_blank' >
{{ learnMore }}
< / a >
< / script >
2015-09-16 06:28:00 +00:00
< script type = 'text/x-tmpl-mustache' id = 'debug-log' >
2016-02-19 19:26:32 +00:00
< div class = 'content' >
2016-02-22 20:17:54 +00:00
< div >
2016-04-07 17:56:59 +00:00
< a class = 'x close' alt = 'close debug log' href = '#' > < / a >
2016-02-22 20:17:54 +00:00
< h1 > {{ title }} < / h1 >
< p > {{ debugLogExplanation }}< / p >
< / div >
2017-07-21 22:24:43 +00:00
< textarea spellcheck = 'false' rows = '5' > < / textarea >
2016-02-22 20:17:54 +00:00
< div class = 'buttons' >
2016-09-08 18:25:46 +00:00
< button class = 'grey submit' > {{ submit }}< / button >
2016-02-22 20:17:54 +00:00
< / div >
2016-02-19 19:26:32 +00:00
< div class = 'result' >
< / div >
2015-09-16 06:28:00 +00:00
< / div >
< / script >
2016-04-10 01:33:47 +00:00
< script type = 'text/x-tmpl-mustache' id = 'debug-log-link' >
< div class = 'input-group clearfix' >
< input type = 'text' class = 'link' readonly value = '{{ url }}' / >
< a class = 'open' alt = 'open in a new browser tab' target = '_blank' href = '{{ url }}' > < / a >
< / div >
2016-04-10 03:36:50 +00:00
< p >
< a class = 'report-link' target = '_blank'
href='https://github.com/WhisperSystems/Signal-Desktop/issues/new/'>
{{ reportIssue }}
< / a >
< / p >
2016-04-10 01:33:47 +00:00
< / script >
2016-02-18 00:08:17 +00:00
< script type = 'text/x-tmpl-mustache' id = 'settings' >
< div class = 'content' >
2016-04-07 17:56:59 +00:00
< a class = 'x close' alt = 'close settings' href = '#' > < / a >
2016-06-16 22:33:18 +00:00
< h2 > {{ settings }}< / h2 >
< hr >
2016-08-29 07:03:37 +00:00
< div class = 'theme-settings' >
2016-09-23 12:12:07 +00:00
< h3 > {{ theme }}< / h3 >
2016-08-29 07:03:37 +00:00
< div >
< input type = 'radio' name = 'theme' id = 'theme-setting-android' value = 'android' >
< label for = 'theme-setting-android' > Android< / label >
< / div >
2016-11-17 16:21:03 +00:00
< div >
< input type = 'radio' name = 'theme' id = 'theme-setting-android-dark' value = 'android-dark' >
< label for = 'theme-setting-android-dark' > {{ themeAndroidDark }}< / label >
< / div >
2016-08-29 07:03:37 +00:00
< div >
< input type = 'radio' name = 'theme' id = 'theme-setting-ios' value = 'ios' / >
< label for = 'theme-setting-ios' > iOS< / label >
< / div >
2016-02-18 00:08:17 +00:00
< / div >
2017-10-13 18:39:18 +00:00
< br / >
< div class = 'menu-bar-setting' >
< input type = 'checkbox' name = 'hide-menu-bar' id = 'hide-menu-bar' / >
< label for = 'hide-menu-bar' > {{ hideMenuBar }}< / label >
< / div >
2016-08-29 07:03:37 +00:00
< hr >
< div class = 'notification-settings' >
< h3 > {{ notifications }}< / h3 >
< p > {{ notificationSettingsDialog }}< / p >
< div >
< input type = 'radio' name = 'notifications' id = 'notification-setting-message' value = 'message' >
< label for = 'notification-setting-message' > {{ nameAndMessage }} < / label >
< / div >
< div >
< input type = 'radio' name = 'notifications' id = 'notification-setting-name' value = 'name' / >
< label for = 'notification-setting-name' > {{ nameOnly }} < / label >
< / div >
< div >
< input type = 'radio' name = 'notifications' id = 'notification-setting-count' value = 'count' / >
< label for = 'notification-setting-count' > {{ noNameOrMessage }} < / label >
< / div >
< div >
< input type = 'radio' name = 'notifications' id = 'notification-setting-off' value = 'off' / >
< label for = 'notification-setting-off' > {{ disableNotifications }} < / label >
< / div >
2016-02-18 00:08:17 +00:00
< / div >
2017-01-28 19:33:57 +00:00
< br / >
< div class = 'audio-notification-setting' >
< input type = 'checkbox' name = 'audio-notification' id = 'audio-notification' / >
< label for = 'audio-notification' > {{ audioNotificationDescription }}< / label >
< / div >
2016-02-18 00:08:17 +00:00
< / div >
< / script >
2016-06-16 22:33:18 +00:00
< script type = 'text/x-tmpl-mustache' id = 'syncSettings' >
< hr >
< h3 > {{ sync }}< / h3 >
< div >
2016-09-08 18:25:46 +00:00
< button class = 'grey sync' > {{ syncNow }}< / button >
2016-06-16 22:33:18 +00:00
< p >
{{ syncExplanation }}
< div class = 'synced_at' >
{{ lastSynced }} {{ syncDate }} {{ syncTime }}
< / div >
< div class = 'sync_failed' > {{ syncFailed }}< / div >
< / p >
< / div >
< / script >
2017-01-04 03:37:56 +00:00
< script type = 'text/x-tmpl-mustache' id = 'networkStatus' >
2017-04-11 23:24:06 +00:00
< div class = 'network-status-message' >
< h3 > {{ message }}< / h3 >
2017-01-04 03:37:56 +00:00
< span > {{ instructions }}< / span >
< / div >
{{ #reconnectDurationAsSeconds }}
< div class = "network-status-message" >
{{ attemptingReconnectionMessage }}
< / div >
{{/reconnectDurationAsSeconds }}
2017-04-12 23:46:51 +00:00
{{ #action }}
< div class = "action" >
< button class = 'small blue {{ buttonClass }}' > {{ action }}< / button >
< / div >
{{/action }}
2017-01-04 03:37:56 +00:00
< / script >
2017-08-08 00:24:59 +00:00
< script type = 'text/x-tmpl-mustache' id = 'install-choice' >
< div class = 'step' >
< div class = 'inner' >
< div class = 'step-body' >
< img id = 'signal-icon' src = 'images/icon_250.png' / >
< h1 > {{ installWelcome }}< / h1 >
< p > {{ installTagline }}< / p >
< / div >
< div class = 'nav' >
< div > < a class = 'button new' > {{ installNew }}< / a > < / div >
< div > < a class = 'button import' > {{ installImport }}< / a > < / div >
< / div >
< / div >
< / div >
< / script >
2017-04-13 01:43:00 +00:00
< script type = 'text/x-tmpl-mustache' id = 'install_flow_template' >
2017-08-08 00:24:59 +00:00
< div id = 'step2' class = 'step hidden' >
2017-04-13 01:43:00 +00:00
< div class = 'inner' >
< div class = 'step-body' >
2017-03-31 01:11:13 +00:00
< img id = 'signal-phone' src = 'images/signal-phone.png' >
2017-04-13 01:43:00 +00:00
< p > {{{ installSignalLink }}}< / p >
< / div >
< div class = 'nav' >
< div > < a class = 'button step3' > {{ installIHaveSignalButton }}< / a > < / div >
2017-08-08 00:24:59 +00:00
< div class = 'dot-container' >
< span class = 'dot step1' > < / span >
< span class = 'dot step2 selected' > < / span >
< span class = 'dot step3' > < / span >
< / div >
2017-04-13 01:43:00 +00:00
< / div >
< / div >
< / div >
2017-08-08 00:24:59 +00:00
< div id = 'step3' class = 'step hidden' >
2017-04-13 01:43:00 +00:00
< div class = 'inner' >
< div class = 'step-body' >
< div id = "qr" > < / div >
< p > {{ installAndroidInstructions }}< / p >
< / div >
< div class = 'nav' >
2017-04-25 01:45:18 +00:00
{{ #development }}
< div > < a class = 'button openStandalone' > Standalone< / a > < / div >
{{ /development }}
2017-08-08 00:24:59 +00:00
< div class = 'dot-container' >
< span class = 'dot step1' > < / span >
< span class = 'dot step2' > < / span >
< span class = 'dot step3 selected' > < / span >
< / div >
2017-04-13 01:43:00 +00:00
< / div >
< / div >
< / div >
2017-08-08 00:24:59 +00:00
< form id = 'step4' class = 'step hidden' >
2017-04-13 01:43:00 +00:00
< div class = 'inner' >
< div class = 'step-body' >
< p > {{ installLinkingWithNumber }}< / p >
< h2 class = 'number' > < / h2 >
2017-03-31 01:11:13 +00:00
< img id = 'signal-computer' src = 'images/signal-laptop.png' >
2017-04-13 01:43:00 +00:00
< p > {{ installComputerName }}< / p >
< div >
< input type = 'text' id = 'device-name' spellcheck = 'false' maxlength = '50' / >
< / div >
< / div >
< div class = 'nav' >
< div >
< input type = 'submit' class = 'button' id = 'sync' value = '{{ installFinalButton }}' / >
< / div >
< / div >
< / div >
< / form >
2017-08-08 00:24:59 +00:00
< div id = 'step5' class = 'step hidden' >
2017-04-13 01:43:00 +00:00
< div class = 'inner' >
< div class = 'step-body' >
2017-03-31 01:11:13 +00:00
< img id = 'signal-icon' src = 'images/icon_250.png' / >
2017-04-13 01:43:00 +00:00
< div class = 'progress-dialog' >
< p class = 'status' > < / p >
< div class = 'bar-container' > < div class = 'bar progress-bar' > < / div > < / div >
< / div >
< / div >
< div class = 'nav' >
< / div >
< / div >
< / div >
2017-08-08 00:24:59 +00:00
< div id = 'stepTooManyDevices' class = 'step hidden' >
2017-04-13 01:43:00 +00:00
< div class = 'inner error-dialog clearfix' >
< div class = 'panel step-body' > {{ installTooManyDevices }}< / div >
< div class = 'nav' >
< button class = 'ok step3' > {{ ok }}< / button >
< / div >
< / div >
< / div >
2017-09-13 20:44:06 +00:00
< div id = 'stepNetworkError' class = 'step hidden' >
< div class = 'inner error-dialog clearfix' >
< div class = 'panel step-body' > {{ installConnectionFailed }}< / div >
< button class = 'ok step3 button' > {{ tryAgain }}< / button >
< div class = 'nav' >
< / div >
< / div >
< / div >
2017-04-13 01:43:00 +00:00
< / script >
2017-04-19 17:34:19 +00:00
< script type = 'text/x-tmpl-mustache' id = 'standalone' >
< header >
< div class = 'container' >
< div class = 'row' >
< div class = 'col-xs-2 col-md-1' >
< img id = 'textsecure-icon' src = 'images/icon_250.png' / >
< / div >
< div class = 'col-xs-10 col-md-11' >
< h1 > Create your Signal Account< / h1 >
< h4 class = 'tagline' > Private messaging from your web browser.< / h4 >
< / div >
< / div >
< / div >
< / header >
< div class = 'container' >
< div class = 'col-xs-offset-1 col-md-6' >
< div class = 'narrow' >
< div id = "phone-number-input" >
< div class = "phone-input-form" >
< div id = "number-container" class = "number-container" >
< input type = "tel" class = "number" placeholder = "Phone Number" / >
< / div >
< / div >
< / div >
< div class = 'clearfix' >
< button id = "request-sms" class = "btn btn-info" > Send SMS< / button >
< button id = "request-voice" class = "btn btn-info" tabindex = -1 > Call< / button >
< / div >
< form id = 'form' >
< h2 > < / h2 >
< input class = 'form-control' type = "text" pattern = "\s*[0-9]{3}-?[0-9]{3}\s*" title = "Enter your 6-digit verification code. If you did not receive a code, click Call or Send SMS to request a new one" id = "code" placeholder = "Verification Code" autocomplete = 'off' >
< button id = "verifyCode" class = "btn btn-info" data-loading-text = "Please wait..." > Register< / button >
< div id = 'error' class = 'collapse' > < / div >
2017-04-25 01:45:18 +00:00
< div > < a class = 'button openInstaller' > Link to phone< / a > < / div >
2017-04-19 17:34:19 +00:00
< / form >
< div id = status > < / div >
< / div >
< / div >
< / div >
< / script >
2015-12-26 06:17:30 +00:00
< script type = 'text/javascript' src = 'js/components.js' > < / script >
2017-07-19 18:59:08 +00:00
< script type = 'text/javascript' src = 'js/reliable_trigger.js' > < / script >
2015-12-26 06:17:30 +00:00
< script type = 'text/javascript' src = 'js/database.js' > < / script >
< script type = 'text/javascript' src = 'js/storage.js' > < / script >
2016-04-21 23:45:21 +00:00
< script type = 'text/javascript' src = 'js/signal_protocol_store.js' > < / script >
2015-12-26 06:17:30 +00:00
< script type = 'text/javascript' src = 'js/libtextsecure.js' > < / script >
2015-01-14 00:09:32 +00:00
2017-04-11 23:35:44 +00:00
< script type = 'text/javascript' src = 'js/focus_listener.js' > < / script >
2015-12-26 06:17:30 +00:00
< script type = 'text/javascript' src = 'js/notifications.js' > < / script >
2016-04-11 22:06:06 +00:00
< script type = 'text/javascript' src = 'js/delivery_receipts.js' > < / script >
2016-04-11 22:11:20 +00:00
< script type = 'text/javascript' src = 'js/read_receipts.js' > < / script >
Feature: Blue check marks for read messages if opted in (#1489)
* Refactor delivery receipt event handler
* Rename the delivery receipt event
For less ambiguity with read receipts.
* Rename synced read event
For less ambiguity with read receipts from other Signal users.
* Add support for incoming receipt messages
Handle ReceiptMessages, which may include encrypted delivery receipts or read
receipts from recipients of our sent messages.
// FREEBIE
* Rename ReadReceipts to ReadSyncs
* Render read messages with blue double checks
* Send read receipts to senders of incoming messages
// FREEBIE
* Move ReadSyncs to their own file
// FREEBIE
* Fixup old comments on read receipts (now read syncs)
And some variable renaming for extra clarity.
// FREEBIE
* Add global setting for read receipts
Don't send read receipt messages unless the setting is enabled.
Don't process read receipts if the setting is disabled.
// FREEBIE
* Sync read receipt setting from mobile
Toggling this setting on your mobile device should sync it to Desktop. When
linking, use the setting in the provisioning message.
// FREEBIE
* Send receipt messages silently
Avoid generating phantom messages on ios
// FREEBIE
* Save recipients on the outgoing message models
For accurate tracking and display of sent/delivered/read state, even if group
membership changes later.
// FREEBIE
* Fix conversation type in profile key update handling
// FREEBIE
* Set recipients on synced sent messages
* Render saved recipients in message detail if available
For older messages, where we did not save the intended set of recipients at the
time of sending, fall back to the current group membership.
// FREEBIE
* Record who has been successfully sent to
// FREEBIE
* Record who a message has been delivered to
* Invert the not-clickable class
* Fix readReceipt setting sync when linking
* Render per recipient sent/delivered/read status
In the message detail view for outgoing messages, render each recipient's
individual sent/delivered/read status with respect to this message, as long as
there are no errors associated with the recipient (ie, safety number changes,
user not registered, etc...) since the error icon is displayed in that case.
*Messages sent before this change may not have per-recipient status lists
and will simply show no status icon.
// FREEBIE
* Add configuration sync request
Send these requests in a one-off fashion when:
1. We have just setup from a chrome app import
2. We have just upgraded to read-receipt support
// FREEBIE
* Expose sendRequestConfigurationSyncMessage
// FREEBIE
* Fix handling of incoming delivery receipts - union with array
FREEBIE
2017-10-04 22:28:43 +00:00
< script type = 'text/javascript' src = 'js/read_syncs.js' > < / script >
2015-12-26 06:17:30 +00:00
< script type = 'text/javascript' src = 'js/libphonenumber-util.js' > < / script >
< script type = 'text/javascript' src = 'js/models/messages.js' > < / script >
< script type = 'text/javascript' src = 'js/models/conversations.js' > < / script >
2016-09-07 00:12:45 +00:00
< script type = 'text/javascript' src = 'js/models/blockedNumbers.js' > < / script >
2016-09-21 00:19:51 +00:00
< script type = 'text/javascript' src = 'js/expiring_messages.js' > < / script >
2014-06-03 16:39:29 +00:00
2015-12-26 06:17:30 +00:00
< script type = 'text/javascript' src = 'js/chromium.js' > < / script >
2016-09-20 20:42:33 +00:00
< script type = 'text/javascript' src = 'js/registration.js' > < / script >
2016-04-04 02:34:34 +00:00
< script type = 'text/javascript' src = 'js/expire.js' > < / script >
2015-12-26 06:17:30 +00:00
< script type = 'text/javascript' src = 'js/conversation_controller.js' > < / script >
2016-02-15 21:53:37 +00:00
< script type = 'text/javascript' src = 'js/emoji_util.js' > < / script >
2017-04-04 06:32:46 +00:00
< script type = 'text/javascript' src = 'js/i18n.js' > < / script >
2015-03-15 23:04:39 +00:00
2015-12-26 06:17:30 +00:00
< script type = 'text/javascript' src = 'js/views/whisper_view.js' > < / script >
2017-05-17 21:32:03 +00:00
< script type = 'text/javascript' src = 'js/views/last_seen_indicator_view.js' > < / script >
2017-05-19 01:33:35 +00:00
< script type = 'text/javascript' src = 'js/views/scroll_down_button_view.js' > < / script >
2015-12-26 06:17:30 +00:00
< script type = 'text/javascript' src = 'js/views/debug_log_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/toast_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/attachment_preview_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/file_input_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/list_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/conversation_list_item_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/conversation_list_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/contact_list_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/new_group_update_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/attachment_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/error_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/timestamp_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/message_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/key_verification_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/message_detail_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/message_list_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/group_member_list_view.js' > < / script >
2016-08-15 22:36:29 +00:00
< script type = 'text/javascript' src = 'js/views/recorder_view.js' > < / script >
2015-12-26 06:17:30 +00:00
< script type = 'text/javascript' src = 'js/views/conversation_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/conversation_search_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/hint_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/inbox_view.js' > < / script >
2017-01-04 03:37:56 +00:00
< script type = 'text/javascript' src = 'js/views/network_status_view.js' > < / script >
2015-12-26 06:17:30 +00:00
< script type = 'text/javascript' src = 'js/views/confirmation_dialog_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/identicon_svg_view.js' > < / script >
2016-02-18 00:08:17 +00:00
< script type = 'text/javascript' src = 'js/views/settings_view.js' > < / script >
2017-07-03 18:52:12 +00:00
< script type = 'text/javascript' src = 'js/views/install_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/banner_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/identity_key_send_error_view.js' > < / script >
2017-03-31 01:11:13 +00:00
< script type = "text/javascript" src = "js/views/phone-input-view.js" > < / script >
2017-04-19 17:34:19 +00:00
< script type = 'text/javascript' src = 'js/views/standalone_registration_view.js' > < / script >
2017-04-12 21:20:56 +00:00
< script type = 'text/javascript' src = 'js/views/app_view.js' > < / script >
2017-08-08 00:24:59 +00:00
< script type = 'text/javascript' src = 'js/views/install_choice_view.js' > < / script >
< script type = 'text/javascript' src = 'js/views/import_view.js' > < / script >
2015-01-19 01:43:25 +00:00
2017-03-01 21:11:40 +00:00
< script type = 'text/javascript' src = 'js/wall_clock_listener.js' > < / script >
2017-02-16 19:59:32 +00:00
< script type = 'text/javascript' src = 'js/rotate_signed_prekey_listener.js' > < / script >
2017-05-07 21:18:22 +00:00
< script type = 'text/javascript' src = 'js/keychange_listener.js' > < / script >
2015-12-26 06:17:30 +00:00
< script type = 'text/javascript' src = 'js/background.js' > < / script >
2014-01-12 14:07:30 +00:00
< / head >
2015-01-14 21:21:54 +00:00
< body >
2017-03-09 18:40:47 +00:00
< div class = 'app-loading-screen' >
< div class = 'content' >
2017-07-28 01:38:41 +00:00
< img src = 'images/icon_128.png' >
2017-03-09 18:40:47 +00:00
< div class = 'container' >
< span class = 'dot' > < / span >
< span class = 'dot' > < / span >
< span class = 'dot' > < / span >
< / div >
< div class = 'message' > Loading...< / div >
< / div >
< / div >
2014-01-12 14:07:30 +00:00
< / body >
< / html >