about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* 0.9.5Michael Vetter2020-07-012-2/+2
|
* Update 0.9.5 changelogMichael Vetter2020-07-011-0/+6
|
* Add default value for titlebar.scrolledMichael Vetter2020-07-011-0/+1
| | | | Fix https://github.com/profanity-im/profanity/issues/1380
* otr.c: Simplify freeingMichael Vetter2020-07-011-3/+1
| | | | free(NULL) is a noop.
* Fix overlooking variableMichael Vetter2020-07-011-2/+2
| | | | Fix mistake where I overlooked some variables in 1224aa414e56a763412ee33c2b8779d4e6cb1608.
* files.c: use const char *const where appropriateMichael Vetter2020-07-012-4/+4
|
* Use files_get_account_data_path instead of duplicate codeMichael Vetter2020-07-016-105/+87
| | | | | We often had a use case where we want the account specific data dir. Let's create a function for this instead of doing it by hand each time.
* Initialize is_ox in win_create_chat()Stefan Kropp2020-07-011-0/+1
| | | | Fixes an issue where messages are displayed as OX when they are not.
* And ifdefs around new OX functionsMichael Vetter2020-06-302-8/+11
| | | | | Fix for some build cases introduced in 2c94ee5a88f64332a3f41f41a4d314fc52200e31 Fix https://github.com/profanity-im/profanity/issues/1376
* Add OX test stubsMichael Vetter2020-06-292-0/+16
|
* Fix omemo otr caseMichael Vetter2020-06-291-1/+2
| | | | Fix 3afd854dc862696c4842b2ed93efcad44d617910
* Feature request - XEP-0373: OpenPGP for XMPP (OX)DebXWoody2020-06-2920-4/+991
| | | | | | | | | Basic implementation of XEP-0373: OpenPGP for XMPP. https://xmpp.org/extensions/xep-0373.html Command /ox Issue: #1331
* cmd_funcs: fix omemo caseMichael Vetter2020-06-291-1/+2
| | | | Small mistake introduced in b7f959bab4e8ed13e8b5d638180420e497844a26.
* Dont allow starting a PGP session while in an OMEMO sessionMichael Vetter2020-06-291-0/+5
|
* Merge pull request #1363 from DebXWoody/definemessMichael Vetter2020-06-293-422/+19
|\ | | | | Clean-up task: clean up feature defines
| * Clean-up: defines cmd_funcs.cDebXWoody2020-06-201-42/+6
| |
| * Cleanup defines - client_events.cDebXWoody2020-06-191-179/+5
| |
| * Clean-up task: clean up feature definesDebXWoody2020-06-141-201/+8
| |
* | Start new cycleMichael Vetter2020-06-241-1/+1
| |
* | Release 0.9.4Michael Vetter2020-06-243-3/+11
| |
* | Merge pull request #1373 from profanity-im/cygwin-notifyMichael Vetter2020-06-241-3/+4
|\ \ | | | | | | Fix gcc warnings for cygwin
| * | Fix gcc warnings for cygwinDmitry Podgorny2020-06-241-3/+4
|/ / | | | | | | | | | | | | | | | | | | | | | | | | strncpy(3) is not so safe function and can lead to mistakes. For example, strncpy(dest, "Profanity", 10); is redundant and leads to problems when someone changes the source string. Different example is when 3rd argument equals to length of the destination buffer. strncpy(3) doesn't terminate string with '\0' when it truncates. Therefore, the destination string becomes corrupted. Zeroize storage for 'nid', so the last byte remains '\0' in case of truncate.
* | Merge pull request #1372 from profanity-im/missed-string-hMichael Vetter2020-06-241-0/+1
|\ \ | | | | | | Add missed string.h
| * | Add missed string.hDmitry Podgorny2020-06-241-0/+1
|/ / | | | | | | strdup(3) requires string.h
* | Fix NULL terminated listMichael Vetter2020-06-231-1/+1
| | | | | | | | Regards https://github.com/profanity-im/profanity/issues/1367
* | Start new cycleMichael Vetter2020-06-191-1/+1
| |
* | Release 0.9.3Michael Vetter2020-06-193-3/+9
| |
* | Use shell to start eval_password commandMichael Vetter2020-06-191-5/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Since https://github.com/profanity-im/profanity/commit/d92c576aa53505d712715b1acc6344af3262c84f we rely on g_spawn_sync(). Which doesn't do variable/glob expansion. For our use of call_external() in opening and URL or avatar this is fine. For getting the password we want to be able to use ~ for our files. Let's use a shell here. Fix https://github.com/profanity-im/profanity/issues/1364
* | Merge pull request #1365 from profanity-im/segfaultMichael Vetter2020-06-161-1/+1
|\ \ | |/ |/| Fix possible segfault in xmpp/message.c
| * Fix possible segfault in xmpp/message.cDmitry Podgorny2020-06-161-1/+1
|/ | | | Check for pointer to be NULL before dereferencing it.
* Start new cycleMichael Vetter2020-06-131-1/+1
|
* Release 0.9.2Michael Vetter2020-06-133-3/+11
|
* Use gnu99 standardMichael Vetter2020-06-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With recent changes to c99 and -D_POSIX_C_SOURCE=200809L we get the following: openSUSE TW CI sais: ``` Now you can run `make' to build profanity In file included from /usr/include/python2.7/Python.h:8, from src/plugins/python_plugins.c:37: /usr/include/python2.7/pyconfig.h:1226: error: "_POSIX_C_SOURCE" redefined [-Werror] 1226 | #define _POSIX_C_SOURCE 200112L | <command-line>: note: this is the location of the previous definition In file included from /usr/include/python2.7/Python.h:8, from src/plugins/python_api.c:37: /usr/include/python2.7/pyconfig.h:1226: error: "_POSIX_C_SOURCE" redefined [-Werror] 1226 | #define _POSIX_C_SOURCE 200112L | <command-line>: note: this is the location of the previous definition cc1: all warnings being treated as errors ``` OpenBSD CI sais: ``` cc1: warnings being treated as errors src/database.c: In function 'log_database_get_previous_chat': src/database.c:226: warning: implicit declaration of function 'asprintf' gmake[1]: *** [Makefile:1924: src/database.o] Error 1 gmake[1]: Leaving directory '/home/build/profanity' gmake: *** [Makefile:1211: all] Error 2 ``` Let us use gnu99. Has been proposed before already and is fine. Regards https://github.com/profanity-im/profanity/issues/1357 Regards https://github.com/profanity-im/profanity/pull/1351
* Fix reading/writing linked filesMichael Vetter2020-06-135-4/+5
| | | | | | "base" was not really base but the filename :-) Fix https://github.com/profanity-im/profanity/issues/1362
* Define POSIX macro to have strdupMichael Vetter2020-06-128-25/+28
| | | | | | | | | | | | | | https://github.com/profanity-im/profanity/commit/98c38dc6d6d29333c63f80327774f094610d8602 sets C99 as standard. strdup() is not part of C99. For now set `-D_POSIX_C_SOURCE=200809L` macro to have strdup() in C99. Using `gnu99` instead would be another option. We should take more care to use glib functions whenever possible. Regards https://github.com/profanity-im/profanity/issues/1357
* Dont manipulate pointer from getenvMichael Vetter2020-06-121-6/+14
| | | | | | | | | | | | Found this when looking to fix bug https://github.com/profanity-im/profanity/issues/1357 Not sure if it is related. man 3 getenv sais: ``` As typically implemented, getenv() returns a pointer to a string within the environment list. The caller must take care not to modify this string, since that would change the environment of the process. ```
* Start new cycleMichael Vetter2020-06-111-1/+1
|
* Release 0.9.1Michael Vetter2020-06-113-3/+12
|
* Merge pull request #1360 from profanity-im/legacy-authMichael Vetter2020-06-112-1/+19
|\ | | | | Make legacy auth optional
| * Make legacy auth optionalDmitry Podgorny2020-06-112-1/+19
|/ | | | | | | | Some systems don't provide recent libstrophe releases. When older version of libstrophe is detected, don't build legacy auth support. To simplify this patch, report about unsupported legacy auth and keep commands option as is.
* Start new cycleMichael Vetter2020-06-091-1/+1
|
* Release 0.9.0Michael Vetter2020-06-092-5/+5
|
* Improve CHANGELOGMichael Vetter2020-06-091-6/+6
|
* Correct and update manpageMichael Vetter2020-06-091-1/+1
|
* Add 0.9.0 CHANGELOGMichael Vetter2020-06-091-0/+80
|
* Merge pull request #1356 from wstrm/bump-openbsd-6.7Michael Vetter2020-06-061-3/+3
|\ | | | | Bump OpenBSD build to 6.7
| * Bump OpenBSD build to 6.7William Wennerström2020-06-061-3/+3
|/
* Bump libstrophe requirement to 0.9.3Michael Vetter2020-06-051-3/+3
| | | | | legacy auth (ac410445af65b9d332d4606a08ff549672042766) requires libstrophe 0.9.3 because of XMPP_CONN_FLAG_LEGACY_AUTH.
* readme: test new screenshotMichael Vetter2020-06-051-1/+1
|
* Merge pull request #1355 from profanity-im/iss1236Michael Vetter2020-06-0521-46/+234
|\ | | | | Add option for legacy authentication