aboutsummaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* properly reply to iq requests. reply to discoDaniel Gultsch2014-05-032-1/+19
|
* allow roster pushes only from bare jid or nullDaniel Gultsch2014-05-031-4/+6
|
* added restart button to openkeychain dialogDaniel Gultsch2014-05-032-2/+8
|
* nicer dialog screen if openkeychain is not installedDaniel Gultsch2014-05-022-3/+24
|
* reworked openpgp integration part #1Daniel Gultsch2014-05-018-266/+441
|
* bug fix for jingleDaniel Gultsch2014-04-261-1/+1
|
* unified presence selection for otr and file transferDaniel Gultsch2014-04-263-74/+90
|
* fixed #75Daniel Gultsch2014-04-252-2/+3
|
* setting backround color if image comes directly from cacheDaniel Gultsch2014-04-251-0/+1
|
* couple of more optimazations on image loadingDaniel Gultsch2014-04-254-62/+38
|
* smoother scrolling (first step)Daniel Gultsch2014-04-256-57/+223
|
* deny files with unknown file typesDaniel Gultsch2014-04-234-21/+76
|
* added download button for images not accepted automaticallyDaniel Gultsch2014-04-225-16/+78
|
* added support for ibbDaniel Gultsch2014-04-227-23/+313
|
* code cleanupDaniel Gultsch2014-04-212-28/+16
|
* allow images to be opened with gallary appDaniel Gultsch2014-04-214-3/+145
|
* added missing transport idDaniel Gultsch2014-04-211-0/+1
|
* added proxy activate and a lot of code clean up. totatly untestedDaniel Gultsch2014-04-205-145/+161
|
* made our spanish friends happy. fixed #68Daniel Gultsch2014-04-201-21/+22
|
* fixed #50Daniel Gultsch2014-04-203-14/+32
|
* more jingle bug fixesDaniel Gultsch2014-04-193-12/+10
|
* fixed replace contact in conversationDaniel Gultsch2014-04-191-15/+15
|
* made debugging verbose again on specific partsDaniel Gultsch2014-04-192-4/+10
|
* fixed default autoaccept file size and wrongly marked messageDaniel Gultsch2014-04-192-3/+3
|
* cleaned up debug log a little bitDaniel Gultsch2014-04-197-91/+118
|
* fixed concurrent modification of contacts which led to missing presencesDaniel Gultsch2014-04-182-10/+15
|
* tried to avoid some more race conditions in jingleDaniel Gultsch2014-04-183-38/+80
|
* Merge branch 'master' into developmentDaniel Gultsch2014-04-181-21/+25
|\
| * work around for bug in xmlpullparserDaniel Gultsch2014-04-181-21/+25
| |
* | lot of cleanup in jingle partDaniel Gultsch2014-04-186-120/+326
| |
* | put more string into strings.xmlDaniel Gultsch2014-04-182-9/+9
| |
* | fixed destination bugDaniel Gultsch2014-04-183-5/+15
| |
* | fixed #63Daniel Gultsch2014-04-182-2/+21
| |
* | fixed possible race conditions with presencesDaniel Gultsch2014-04-185-11/+23
| |
* | added clear history dialog (no funcionality)Daniel Gultsch2014-04-181-4/+24
| |
* | jingle sessions now get terminated proberly on successDaniel Gultsch2014-04-162-17/+34
| |
* | made ui with sending images a little smootherDaniel Gultsch2014-04-153-29/+56
| |
* | added very basic, very untested gui on the receiving sideDaniel Gultsch2014-04-142-27/+59
| |
* | tried to fix some race conditions. not adding duplicate candidates. needs ↵Daniel Gultsch2014-04-144-20/+45
| | | | | | | | more checks though
* | Fix two typos: assoziated -> associated.Jelmer Vernooij2014-04-141-1/+1
| |
* | Some icon tweaksAndreas Straub2014-04-131-14/+16
| | | | | | | | Use Roboto Light, thinner lines between tiles, slightly smaller letters
* | Added ellipsis tile for large conversationsAndreas Straub2014-04-131-5/+17
| | | | | | | | | | For more than 4 members in a conversation, the fourth tile now contains an ellipsis to indicate this
* | Major Contact Picture code cleanupAndreas Straub2014-04-137-55/+71
| | | | | | | | | | Notifications now have pseudotransparent icons, icons are generated in the correct size.
* | transmitting files between two conversations works. no error handling and no ↵Daniel Gultsch2014-04-136-36/+136
| | | | | | | | ui on the receiving end
* | some code cleanup. added setting to auto accept files. socks5 connections ↵Daniel Gultsch2014-04-138-78/+215
| | | | | | | | are now threaded
* | more efficant way of calculating the sha1 sum. closing connectionsDaniel Gultsch2014-04-1310-109/+204
| |
* | fixed minor typosDaniel Gultsch2014-04-122-3/+2
| |
* | Merge branch 'development' of https://github.com/strb/Conversations into ↵Daniel Gultsch2014-04-126-44/+205
|\ \ | | | | | | | | | strb-development
| * | Added tiled MUC iconsandy2014-04-121-16/+164
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now, MUCs have icons with up to 4 tiles representing MUC members, similar to the gmail app. Some caveats: As of now, no ordering is imposed on the members, we simply pick the first (up to) 4 returned by the MucOptions object. This could be done better, e.g. by picking more important members first (based on affil/role), or even going so far as to order them by how recently they sent a message in the MUC. Also, the code generating the tiles is really messy right now (tons of copy and paste). It seems to work though. I will clean this up soon.
| * | More Contact Picture refactorsandy2014-04-125-17/+40
| | | | | | | | | | | | | | | Use polymorphism to avoid dynamic dispatch based on nulled parameters. Next up: Prettier MUC icons