about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
* | xep-0392: colorize rosterMichael Vetter2019-12-192-3/+19
|/
* Merge pull request #1240 from profanity-im/feature/xep-0084-user-avatarMichael Vetter2019-12-1812-1/+388
|\ | | | | Download user avatars (according to xep-0084)
| * xep-0084: add test stub fileMichael Vetter2019-12-184-2/+10
| |
| * Add header file guard to avatar.hMichael Vetter2019-12-181-0/+5
| |
| * xep-0084: make internal functions staticMichael Vetter2019-12-181-8/+8
| |
| * xep-0084: move id to avatar_metadataMichael Vetter2019-12-181-12/+12
| |
| * xep-0084: Add correct file extensionMichael Vetter2019-12-181-9/+41
| |
| * xep-0084: Normalize at out of image filenameMichael Vetter2019-12-181-1/+3
| |
| * xep-0084: Improve helpMichael Vetter2019-12-182-2/+4
| |
| * xep-0084:Michael Vetter2019-12-181-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | So far we removed the avatar feature only after a succesful retrive in avatar_request_item_by_id() before we are going to retrieve the actual image. We should remove it at every `/avatar barejid` call too so in case one retrieval was unsucessful that we can call it again. So far it seems like there is no other way to trigger getting the nodes except announcing that we support the avatar feature.
| * Fix headerMichael Vetter2019-12-182-2/+2
| |
| * xep-0084: add /avatar help and autocompletionMichael Vetter2019-12-182-3/+21
| |
| * xep-0084: save avatars in own directoryMichael Vetter2019-12-181-4/+20
| |
| * xep-0084: Make it work multiple timesMichael Vetter2019-12-181-0/+4
| |
| * xep-0084: Download avatarsMichael Vetter2019-12-183-3/+113
| | | | | | | | | | Proof of concept. Needs error checking, a nice interface, general cleanup..
| * xep-0084: Look for specific user and print IDMichael Vetter2019-12-185-2/+47
| | | | | | | | Add a `/avatar` command.
| * Start implementing XEP-0084Michael Vetter2019-12-186-0/+141
| | | | | | | | So far we just subscribe and get the IDs.
* | Change README formattignMichael Vetter2019-12-181-0/+2
| |
* | Update README with donation requestMichael Vetter2019-12-181-1/+3
|/
* Use helper function to clean incoming messagesMichael Vetter2019-12-131-9/+9
| | | | | We might want to use utf8proc or something to normalize utf8 strings later?
* Merge branch 'feature/1238-lastreadpos'Michael Vetter2019-12-138-2/+103
|\
| * separator: Enable for MUC and PRIVWIN tooMichael Vetter2019-12-133-9/+29
| | | | | | | | Fix https://github.com/profanity-im/profanity/issues/1238
| * separator: Print only one for each chat windowMichael Vetter2019-12-131-3/+19
| | | | | | | | | | | | So far we printed one after the last received message, which doesn't make much sense of course. Now only print one if there is not already one present.
| * separator: print trackbar across the whole lineMichael Vetter2019-12-131-13/+19
| | | | | | | | | | | | | | | | Use the whole line. We do this in win_redraw() so upon terminal size change it still matches. Regards https://github.com/profanity-im/profanity/issues/1238
| * Initial work on last-read-position featureMichael Vetter2019-12-136-0/+59
|/ | | | | | | | Print dashes on the position we last left off in a chat window. So far the number of dashes is hardcoded, and the feature only works in chat windows. Regards https://github.com/profanity-im/profanity/issues/1238
* Dont print error message if a valid setting function is calledMichael Vetter2019-12-121-1/+0
| | | | | | | | This is because the actual command that parses itself (cmd_logging) returns false if it didn't get the expected parameters. Handing the printing however is done by another function. This function is added to the Command struct as setting_function. So if this is set, and the actual command returns false. We should just call the setting_function and not print the error message. Fix https://github.com/profanity-im/profanity/issues/1237
* Handle case where color.nick is not setMichael Vetter2019-12-121-0/+5
| | | | | Fixes a segfault if color.nick was never set but we want to print it's value.
* Update RELEASE_GUIDE.mdMichael Vetter2019-12-121-1/+0
| | | | | Remove sentence about mailing James. Not needed anymore. profanity.im links to the GitHub page.
* Check for fmod() functionMichael Vetter2019-12-121-0/+3
| | | | | | | | Instead of adding `profanity_LDADD = -lm` to Makefile.am or using `AC_CHECK_LIB()` in configurea.c I use `AC_SEARCH_LIBS()` in case the fmod() function is in the libc. See https://autotools.io/autoconf/finding.html
* Improve color blindness handlingMichael Vetter2019-12-123-12/+16
| | | | Rename some things and use a swtich instead of if.
* Implement Color Vision Deficiencies settingMichael Vetter2019-12-128-16/+102
| | | | | | Implement settings for redgreen and blue blindness. Regards https://github.com/profanity-im/profanity/issues/1191
* test: add cons_color_settingMichael Vetter2019-12-091-0/+1
|
* Add initial support for XEP-0392Michael Vetter2019-12-096-1/+35
| | | | | | | | | | | | | | The last 3 commits added basic support. Thanks @aaptel! This commit adds basic settings interface to use it. See `/color on|off`. We still have to enable settings for color blindness. And maybe another setting to decide whether to color the occupantslist/roster with the same algo. Regards https://github.com/profanity-im/profanity/issues/1191
* XEP-0392: theme, ui: conditionally colorize user nicksAurelien Aptel2019-12-033-0/+11
| | | | | | | | | * add theme_hash_attrs() * when printing a user message check PREF_COLOR_NICK to decide whether to colorize it or not ideally we should hash the jid instead of the nick but this is already a first step.
* XEP-0392: color: implement color hashingAurelien Aptel2019-12-032-283/+376
| | | | | | | | | | * add the HSL values of each of the 256 terminal colors * add color_pair_cache_hash_str() * move common code to _color_pair_cache_get() helper func after hashing a string to a color, return the closest matching terminal color using euclidian distance of the HSL diff vector (this method was found empirically and seems to work well enough...)
* XEP-0392: config: add "color.nick" bool optionAurelien Aptel2019-12-033-0/+5
| | | | | the option will control whether to enable coloration of usernames based on the hashing algorithm described in XEP-0392.
* Call ncurses resize function before move functionMichael Vetter2019-12-022-2/+3
| | | | | | | | | | | | | | From @xaizek s comment on issue #1235: ``` If the move would cause the window to be off the screen, it is an error and the window is not moved. Resize on the other hand doesn't fail like this according to its documentation. So new size needs to be applied first. ``` Big thanks to @xaizek for taking a look at our code and helping us!! Regards https://github.com/profanity-im/profanity/issues/1235
* _win_print: Guard against time being nullMichael Vetter2019-12-011-1/+1
| | | | | | | | | | | | | | | This is encountered when biboumi is used. Example: `/join #debian-next%irc.oftc.net@biboumi.lebihan.pl` It seems then time can be null. g_date_time_format() will not work in this case although time_pref will not be "off". So let's not call g_date_time_format() in this case. But treat it like time is set to off. However message reflection will not work properly with biboumi. Probably we dont get origin-id. Fix https://github.com/profanity-im/profanity/issues/1230
* Merge /group command into /rosterMichael Vetter2019-11-253-146/+118
| | | | | Fix https://github.com/profanity-im/profanity/issues/1229 Regards https://github.com/profanity-im/profanity/issues/1116
* Fix stanza_get_child_by_name_and_from() strcmpMichael Vetter2019-11-141-1/+3
| | | | Fix https://github.com/profanity-im/profanity/issues/1227
* Add vim modelineMichael Vetter2019-11-13149-0/+217
|
* Merge branch 'issue/1190-multi-delay'Michael Vetter2019-11-133-19/+42
|\
| * Check for correct delay tag for muc timestampsMichael Vetter2019-11-133-19/+42
|/ | | | | | | | | | | | | https://github.com/profanity-im/profanity/issues/1190 had another issue: Sometimes servers send multiple </delay> and we just checked the first one we got and only used it if the 'from' attribute was fitting. However it could be that we actually wanted the second </delay> element and there the 'from' would have been right. So we need to loop through them until we get the one with the fitting 'from'. Fix https://github.com/profanity-im/profanity/issues/1190
* Merge branch 'issue/1220-remove-rtl'Michael Vetter2019-11-131-0/+30
|\
| * Filter RTL unicode characters outMichael Vetter2019-11-131-0/+30
|/ | | | | | | | | | | | | | Gajim sends \u200E and \u200F for RTL. It is planned that Gajim stops doing this and uses some GTK feature to get the same result. However users expressed the whish that we filter out such characters in incoming messages before displaying them to make Profanity more robust. I'm still not sure whether I like the solution because it means a lot of allocating/deallocating upon every new message. Fix https://github.com/profanity-im/profanity/issues/1220
* Add cons_logging_setting() to test stubMichael Vetter2019-11-131-2/+1
|
* Fix stanza_get_child_by_name_and_ns() if no nameMichael Vetter2019-11-121-1/+3
| | | | Fix bug introduced in 68af0aad65d243e654866eac5a7cd728ee293aa0.
* Merge /chlog and /grlog commands into /loggingMichael Vetter2019-11-126-56/+67
| | | | | | | Instead of `/chlog on` we now have `/logging chat on`. Instead of `/grlog on` we now have `/logging group on`. Fix https://github.com/profanity-im/profanity/issues/1224
* Merge pull request #1222 from mdosch/masterMichael Vetter2019-11-081-0/+82
|\ | | | | Add (experimental) solarized-light theme
| * Add (experimental) solarized-light themeMartin Dosch2019-11-081-0/+82
| | | | | | | | | | | | | | | | | | This theme should (when finished) look well with the solarized-light color scheme. It is still very rough and needs a lot of polishing but I will try to improve it when I find time. Otherwise it might be start for someone using solarized-light to improve it.