Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | enabled anti alising for tiles | iNPUTmice | 2014-07-02 | 1 | -0/+1 |
| | |||||
* | removed old notification icon | iNPUTmice | 2014-06-30 | 1 | -1/+1 |
| | |||||
* | fixed #235 | iNPUTmice | 2014-06-30 | 1 | -129/+163 |
| | |||||
* | fixed #228 | iNPUTmice | 2014-06-30 | 1 | -1/+1 |
| | |||||
* | fixed odd occurrences of a cursor returned by the system being NULL. wtf ukas | iNPUTmice | 2014-06-25 | 1 | -0/+3 |
| | |||||
* | possible better distribution of contact picture colors | iNPUTmice | 2014-06-23 | 1 | -2/+2 |
| | |||||
* | fixes for otr file transfer | iNPUTmice | 2014-06-20 | 1 | -2/+6 |
| | |||||
* | not working version of otr file transfer | iNPUTmice | 2014-06-20 | 2 | -8/+336 |
| | |||||
* | cleanup; removed unnecessary imports and log outputs | iNPUTmice | 2014-06-16 | 1 | -1/+0 |
| | |||||
* | Rounded minutes ago and last seen + Update Spanish Translations | kruks23 | 2014-06-15 | 1 | -6/+14 |
| | |||||
* | groundwork for offline otr messages | iNPUTmice | 2014-06-11 | 1 | -1/+1 |
| | |||||
* | cleanup | iNPUTmice | 2014-06-10 | 1 | -2/+1 |
| | |||||
* | Muc Icon tile color fix | Andreas Straub | 2014-06-10 | 1 | -1/+1 |
| | |||||
* | localized date. rounded minutes, hours and dates in last seen | iNPUTmice | 2014-06-07 | 1 | -12/+21 |
| | |||||
* | fixed last_seen_now | iNPUTmice | 2014-06-06 | 1 | -1/+1 |
| | |||||
* | removed presence from last seen | iNPUTmice | 2014-06-06 | 1 | -5/+8 |
| | |||||
* | added abbrev_all to date format | iNPUTmice | 2014-06-06 | 1 | -1/+1 |
| | |||||
* | #158 Try to solve MM/dd date in each locale | kruks23 | 2014-06-06 | 1 | -2/+3 |
| | |||||
* | fixes #172 | iNPUTmice | 2014-06-06 | 1 | -1/+1 |
| | |||||
* | basic last seen feature. no peristancy just yet. no polish | iNPUTmice | 2014-06-06 | 1 | -0/+13 |
| | |||||
* | Fix tile rendering for larger conferences | Andreas Straub | 2014-06-01 | 1 | -1/+1 |
| | |||||
* | Refactored unknown contact picture generation | Andreas Straub | 2014-05-21 | 1 | -108/+41 |
| | | | | Introduce drawTile method in order to remove code duplication | ||||
* | Fix highlight detection in MUC channels | Andreas Straub | 2014-05-21 | 1 | -2/+17 |
| | | | | | | We only detect highlights if a word starts with the nick (matched in case insensitive manner), followed by optional punctuation, followed by another word boundary. | ||||
* | Update Spanish Translations + harcoded just_now | kruks23 | 2014-05-20 | 1 | -6/+6 |
| | |||||
* | some code cleanup to deal with the roster mgmt changes from earlier | Daniel Gultsch | 2014-05-19 | 1 | -5/+0 |
| | |||||
* | reworked roster/contact handling. might break some stuff. not sycing to disk yet | Daniel Gultsch | 2014-05-19 | 3 | -18/+11 |
| | |||||
* | Update Validator.java | the-username | 2014-05-17 | 1 | -1/+1 |
| | |||||
* | permanent notification disapears now when account is being deleted + code ↵ | Daniel Gultsch | 2014-05-17 | 1 | -13/+1 |
| | | | | clean up | ||||
* | made message parser non static | Daniel Gultsch | 2014-05-14 | 1 | -162/+0 |
| | |||||
* | nicer descriptions in notificaton for images and encrypted messages | Daniel Gultsch | 2014-05-09 | 1 | -4/+4 |
| | |||||
* | basic pgp encrypted file transfer | Daniel Gultsch | 2014-05-06 | 1 | -5/+2 |
| | |||||
* | smoother scrolling (first step) | Daniel Gultsch | 2014-04-25 | 1 | -20/+0 |
| | |||||
* | Some icon tweaks | Andreas Straub | 2014-04-13 | 1 | -14/+16 |
| | | | | Use Roboto Light, thinner lines between tiles, slightly smaller letters | ||||
* | Added ellipsis tile for large conversations | Andreas Straub | 2014-04-13 | 1 | -5/+17 |
| | | | | | For more than 4 members in a conversation, the fourth tile now contains an ellipsis to indicate this | ||||
* | Major Contact Picture code cleanup | Andreas Straub | 2014-04-13 | 2 | -47/+62 |
| | | | | | Notifications now have pseudotransparent icons, icons are generated in the correct size. | ||||
* | some code cleanup. added setting to auto accept files. socks5 connections ↵ | Daniel Gultsch | 2014-04-13 | 1 | -1/+1 |
| | | | | are now threaded | ||||
* | Merge branch 'development' of https://github.com/strb/Conversations into ↵ | Daniel Gultsch | 2014-04-12 | 1 | -37/+191 |
|\ | | | | | | | strb-development | ||||
| * | Added tiled MUC icons | andy | 2014-04-12 | 1 | -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 refactors | andy | 2014-04-12 | 1 | -11/+27 |
| | | | | | | | | | | Use polymorphism to avoid dynamic dispatch based on nulled parameters. Next up: Prettier MUC icons | ||||
| * | Refactor UIHelper to use getContactPicture | andy | 2014-04-12 | 1 | -13/+3 |
| | | | | | | | | Normalize the interface, reduce code duplication | ||||
* | | open latest conversation from notification | Daniel Gultsch | 2014-04-11 | 1 | -0/+3 |
|/ | |||||
* | failed messages get now marked inline | Daniel Gultsch | 2014-04-11 | 1 | -13/+3 |
| | |||||
* | changed behaviour of expecption handler to check if accounts are working ↵ | Daniel Gultsch | 2014-04-10 | 1 | -12/+15 |
| | | | | before removing the stacktrace | ||||
* | added button to open images | Daniel Gultsch | 2014-04-06 | 1 | -11/+12 |
| | |||||
* | Switch to FULL_SYNC to make prosody happy | Rene Treffer | 2014-04-05 | 1 | -10/+5 |
| | |||||
* | notify on incomming received carbon messages | Daniel Gultsch | 2014-04-04 | 1 | -2/+8 |
| | |||||
* | fixing more notification f-ups | Daniel Gultsch | 2014-04-04 | 1 | -5/+16 |
| | |||||
* | Merge branch 'compression' of https://github.com/rtreffer/Conversations into ↵ | Daniel Gultsch | 2014-04-03 | 3 | -1/+142 |
|\ | | | | | | | rtreffer-compression | ||||
| * | Add support for users with empty name | Rene Treffer | 2014-04-03 | 1 | -1/+1 |
| | | |||||
| * | Add compression support | Rene Treffer | 2014-04-03 | 2 | -0/+141 |
| | |