aboutsummaryrefslogtreecommitdiffstats
path: root/src/main (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-09-13parse LMC 1.1Christian Schneppe4-4/+23
2019-09-13keep track of previously edited idsChristian Schneppe6-21/+114
2019-09-13catch empty password exceptions in ExportBackupServiceChristian Schneppe1-2/+6
2019-09-13stopped constantly focus shift if user is typingChristian Schneppe1-7/+1
fixes #386
2019-09-12set Messenger identity as userAgent for RichPreview and ChannelDiscoveryChristian Schneppe2-0/+24
2019-09-12when parsing omemo messages ensure we only find one elementChristian Schneppe3-2/+15
2019-09-12inherit language from parent message when finding localized bodyChristian Schneppe1-1/+3
2019-09-12show language in message bubble if multiple language variants were receivedChristian Schneppe10-59/+130
XML and by inheritence XMPP has the feature of transmitting multiple language variants for the same content. This can be really useful if, for example, you are talking to an automated system. A chat bot could greet you in your own language. On the wire this will usually look like this: ```xml <message to="you"> <body>Good morning</body> <body xml:lang="de">Guten Morgen</body> </message> ``` However receiving such a message in a group chat can be very confusing and potentially dangerous if the sender puts conflicting information in there and different people get shown different strings. Disabling support for localization entirely isn’t an ideal solution as on principle it is still a good feature; and other clients might still show a localization even if Conversations would always show the default language. So instead we now show the displayed language in a corner of the message bubble if more than one translation has been received. If multiple languages are received we will attempt to find one in the language the operating system is set to. If no such translation can be found it will attempt to display the English string. If English can not be found either (for example a message that only has ru and fr on a phone that is set to de) it will display what ever language came first. Furthermore we will discard (not show at all) messages with with multiple bodies of the same language. (This is considered an invalid message) The language tag will not be shown if we receive a single body in a language not understood by the user. (For example operating system set to 'de' and message received with one body in 'ru' will just display that body as usual.) As a guide line to the user: If you are reading a message where it is important that this message is not interpreted differently by different people (like a vote (+1 / -1) in a chat room) make sure it has *no* language tag.
2019-09-12fixed 2 issues reported by new linterChristian Schneppe2-13/+5
2019-09-11make some more activities to start as single taskChristian Schneppe1-10/+21
2019-09-11introduce automatic theme based on the systems themeChristian Schneppe5-5/+29
2019-09-11include user into quote messageChristian Schneppe7-18/+53
2019-09-09add 1080p as video resolution and set default to 720pChristian Schneppe18-52/+17
2019-09-09introduce new file transfer statusChristian Schneppe5-2/+14
2019-09-09do not include scope in ipv6 annoucmentChristian Schneppe1-1/+12
2019-09-09include ticker information in notificationChristian Schneppe14-28/+16
2019-09-09fix permission errorsChristian Schneppe1-1/+1
2019-09-09catch exception in updaterChristian Schneppe1-11/+17
2019-09-08fix crash during file existing checkChristian Schneppe2-2/+2
2019-09-07improve webpreviews during offline timesChristian Schneppe4-29/+45
2019-09-07send multiple downloads and uploads into queueChristian Schneppe3-17/+24
2019-09-07catch exceptions in SerialSingleThreadExecutorChristian Schneppe1-0/+2
2019-09-07New Crowdin translations (#384)Christian Schneppe11-111/+1133
* New translations strings.xml (Chinese Simplified) * New translations strings.xml (Russian) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Spanish) * New translations strings.xml (Italian) * New translations strings.xml (German) * New translations strings.xml (Russian) * New translations strings.xml (German) * New translations strings.xml (Spanish) * New translations strings.xml (Portuguese) * New translations strings.xml (Polish) * New translations strings.xml (Italian) * New translations strings.xml (French) * New translations strings.xml (Dutch) * New translations strings.xml (Chinese Traditional) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Bulgarian) * New translations strings.xml (Catalan) * New translations strings.xml (German) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Spanish)
2019-09-06shorten restore_warningChristian Schneppe1-2/+2
2019-09-06JET uses plain text file sizeChristian Schneppe1-2/+9
2019-09-06do not include link local in direct candidatesChristian Schneppe3-16/+12
2019-09-06make Tor connections work with direct TLSChristian Schneppe3-66/+71
2019-09-06implemented support for for jingle encrypted transports (XEP-0396)Christian Schneppe5-11/+42
2019-09-06deleted wrong to jidChristian Schneppe1-1/+0
fixes #374
2019-09-06check for orphaned filesChristian Schneppe1-1/+28
2019-09-03get images from google photosChristian Schneppe1-0/+1
2019-09-03fix some crashesChristian Schneppe19-71/+183
2019-09-03use higher priority for proxy on receiving endChristian Schneppe2-5/+4
2019-09-03send fallback to ibb after proxy activation failedChristian Schneppe1-6/+17
2019-09-03also reply with direct connections on responseChristian Schneppe3-18/+35
2019-09-03bare minimum direct connectionsChristian Schneppe6-6/+174
2019-09-03order canditates by priority before attempting to connectChristian Schneppe2-25/+27
2019-09-03fix stringsChristian Schneppe1-2/+2
2019-08-31fix rotation issues in MediaViewerActivityChristian Schneppe1-0/+1
2019-08-31when sharing text from PAM to PAM use quotesChristian Schneppe3-4/+11
2019-08-31more ibb fixes (include sid in transport-accept)Christian Schneppe2-15/+25
2019-08-31fixed unlikely race between enabling carbons and discovering last MAM idChristian Schneppe1-3/+3
2019-08-31include pgp sig and status in presence to non anon mucChristian Schneppe2-23/+16
2019-08-31do not put default nick into bookmark if none has been set beforeChristian Schneppe3-13/+25
2019-08-31fixed pgp decryption of automatically accepted jingle ftChristian Schneppe1-10/+7
2019-08-31increased reconnection interval after policy violationChristian Schneppe1-1/+3
2019-08-31refactored filename and extension parsingChristian Schneppe3-42/+59
2019-08-31catch npe on participants context menuChristian Schneppe2-0/+6
2019-08-31make config flag for leave before joinChristian Schneppe2-2/+5
2019-08-31create empty disco result on error to fire advance stream features eventChristian Schneppe2-1/+26