aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* version bump and changelogDaniel Gultsch2015-09-302-2/+7
|
* request stanza count after every ibb data stanza to not fill our own stanza ↵Daniel Gultsch2015-09-302-6/+9
| | | | queue
* only invoke MTM in interactive mode after direct user inputDaniel Gultsch2015-09-292-11/+26
| | | | | | fixes #1027 fixes #792 fixes #1439
* rotate thumbnails. fixes #1438Daniel Gultsch2015-09-291-6/+15
|
* fixed NPE when executing rename callback in mucDaniel Gultsch2015-09-281-1/+3
|
* do tab completion only if neither ctrl nor alt are being pressedDaniel Gultsch2015-09-281-4/+4
|
* catch rare activity not found exception when opening downloaded filesDaniel Gultsch2015-09-271-4/+9
|
* allow tab completion in conferencesDaniel Gultsch2015-09-272-4/+59
|
* use Conversations 1.x.y as user agent string in http upload and downloadDaniel Gultsch2015-09-233-3/+6
|
* swapped icons for foreground servicesDaniel Gultsch2015-09-227-4/+3
|
* Merge pull request #1426 from fiaxh/export_logsDaniel Gultsch2015-09-226-0/+216
|\ | | | | Preference to backup logs to SD card
| * Export logs to SD card preferencefiaxh2015-09-215-0/+178
| |
| * Iterator to go through all messages of a conversationfiaxh2015-09-201-0/+38
| |
* | version bump to 1.6.10Daniel Gultsch2015-09-202-2/+7
|/
* let DnsHelper provide a fallback solutionDaniel Gultsch2015-09-192-43/+41
|
* fixed content-type indication in http uploadDaniel Gultsch2015-09-191-1/+1
|
* update build toolsDaniel Gultsch2015-09-192-2/+3
|
* Merge pull request #1420 from betheg/fix_1419Daniel Gultsch2015-09-191-1/+0
|\ | | | | remove the from attribute from sendStartStream() fixes #1419
| * remove the from attribute from sendStartStream() fixes #1419Michael2015-09-191-1/+0
|/
* introduced Config variable to use legacy namespace for http uploadDaniel Gultsch2015-09-172-1/+5
|
* be more careful when publishing device bundleDaniel Gultsch2015-09-171-0/+14
|
* ignore spoofed stanzas in facebook chatDaniel Gultsch2015-09-171-1/+1
|
* catch IndexOutOfBoundsException when swiping away conversationsDaniel Gultsch2015-09-171-1/+5
|
* fixed rare NPE in DnsHelper. fixed spelling and added loggingDaniel Gultsch2015-09-171-5/+13
|
* pulled translations from transifexDaniel Gultsch2015-09-157-2/+30
|
* Merge branch 'master' of github.com:siacs/ConversationsDaniel Gultsch2015-09-151-0/+14
|\
| * Merge pull request #1409 from sespivak/masterDaniel Gultsch2015-09-141-0/+14
| |\ | | | | | | some string localization for russian language
| | * some string localization for russian languageSergey Spivak2015-09-141-0/+14
| | |
* | | added missing type='submit' to mam queriesDaniel Gultsch2015-09-156-20/+17
| | | | | | | | | | | | | | | fixed some nasty inheritance problems along the way fixes #1411
* | | work around a NPE caused by arace condition in the http uploadDaniel Gultsch2015-09-151-3/+6
|/ /
* / pulled translations from transifexDaniel Gultsch2015-09-1420-20/+0
|/
* changed http upload namespace to reflect the one in the XEPDaniel Gultsch2015-09-141-1/+1
|
* added possibiltiy to set conferences as moderated (only visible in advanced ↵Daniel Gultsch2015-09-135-16/+62
| | | | mode)
* pulled new translations from transifexDaniel Gultsch2015-09-137-0/+116
|
* added mp4 to well known extensions. fixes #1403Daniel Gultsch2015-09-121-1/+1
|
* added referrer to playstore linksDaniel Gultsch2015-09-121-3/+3
|
* increment version codeDaniel Gultsch2015-09-101-1/+1
|
* increased dns timeoutDaniel Gultsch2015-09-102-1/+2
|
* version bump to 1.6.9 + changelogDaniel Gultsch2015-09-092-2/+5
|
* added alt as possible modifier key. use mod+(0..9) to jump to a conversationDaniel Gultsch2015-09-092-26/+46
|
* added rotation detection to up/down navigationDaniel Gultsch2015-09-071-4/+23
|
* added some key bindingDaniel Gultsch2015-09-073-5/+87
| | | | | * ctrl + tab will open the conversations overview (when available) * ctrl + up / down will navigate between conversations
* catch npe in setupIme methodDaniel Gultsch2015-09-071-1/+3
|
* version bump to 1.6.8 and changelogDaniel Gultsch2015-09-062-2/+7
|
* indicate broken pep in server infoDaniel Gultsch2015-09-063-1/+12
|
* Only show that have sessions in fingerprint listAndreas Straub2015-09-067-50/+58
| | | | | | | | | Doesn't access database directly anymore but goes through AxolotlService now to obtain list of fingerprints associated with an Account/Contact. This should prevent orphaned keys littering the UI which previously couldn't be removed through the Clear Devices function. Together with 1c79982da84964c1d81179a0927d9cd1eadf53de this fixes #1393
* Don't manually add keys to the storeAndreas Straub2015-09-061-2/+0
| | | | | | | There is no need to preemptively add the keys to the store oneself. SessionBuilder will take care of this for us. What's more, this will prevent IdentityKeys from otherwise invalid bundles to show up in our UI.
* add null pointer check to db migrationDaniel Gultsch2015-09-051-1/+5
|
* Never build a session with oneselfAndreas Straub2015-09-053-20/+68
| | | | | | | | | | | | | | If we detect our own ID is not in our own devicelist on receiving an update, we reannounce ourselves. This used to have the side effect of modifying the list of devices we thought were in the update set, causing us to accidentally build a session with ourselves. This lead to our own key being set to TRUSTED_INACTIVE, resulting in red lock icons on messages sent by the own device. We fix this by having publishOwnDeviceId() operate on a copy of the original set. This commit also includes a db migration which deletes sessions with oneself and sets own keys back to TRUSTED.
* ignore timeout exceptions on secondary dns requestsDaniel Gultsch2015-09-051-9/+21
|