about summary refs log tree commit diff stats
path: root/src/command/cmd_defs.c
Commit message (Collapse)AuthorAgeFilesLines
* Add command help for omemo qrcodeMichael Vetter2022-05-301-2/+4
|
* Add basic qrcode functionsMichael Vetter2022-05-301-1/+2
|
* Merge pull request #1714 from MarcoPolo-PasTonMolo/feature/avatar-setMichael Vetter2022-05-301-0/+4
|\ | | | | Add `/avatar set` command to publish avatar
| * Final touches for `/avatar set`Michael Vetter2022-05-271-1/+1
| |
| * Add `/avatar set` command to publish avatarMarcoPolo-PasTonMolo2022-05-261-0/+4
| | | | | | | | | | | | | | | | Use `/avatar set <path>` where <path> is an image file to upload a new avatar for the current user. When the avatar is too big it gets scaled down. Scaling code copied from dino. Fixes https://github.com/profanity-im/profanity/issues/1687
* | Fix description of moodMichael Vetter2022-05-271-1/+1
|/
* Update copyright yearMichael Vetter2022-05-091-1/+1
|
* Log encrypted messages by default to chatlogMichael Vetter2022-05-091-3/+3
| | | | | In case chatlogs are available lets log everything by default. Seems like most users expect this behaviour and I agree.
* ox: remove /ox sendfile because its actually not implementedMichael Vetter2022-05-051-3/+1
|
* ox: Add /ox log commandMichael Vetter2022-05-051-1/+2
|
* Improve ox command helpMichael Vetter2022-05-041-2/+3
| | | | | Mention new man page. Correct the usage of /ox request.
* Merge branch 'master' into add_stamp_settingsMichael Vetter2022-04-281-1/+4
|\
| * Add support for offline MUC notificationsStefan Ott2022-04-231-0/+3
| |
| * fix `account set theme` helpSteffen Jaeckel2022-04-011-1/+1
| | | | | | | | Signed-off-by: Steffen Jaeckel <jaeckel-floss@eyet-services.de>
* | Rewrite stamp helpMichael Vetter2022-04-281-12/+10
| |
* | add /stamp commandArtjom Vejsel2022-04-021-0/+24
|/ | | | command allow override standard stamps of incoming and outgoing messages
* Add none option for /whoMarcoPolo-PasTonMolo2022-03-271-2/+2
| | | | | Fixes https://github.com/profanity-im/profanity/issues/1425 `/who none` now displays all users in an muc without an affiliation
* use `g_mkdir_with_parents()` instead of home-baked solutionSteffen Jaeckel2022-03-141-1/+1
| | | | Signed-off-by: Steffen Jaeckel <jaeckel-floss@eyet-services.de>
* Add `/subject editor` commandMichael Vetter2022-02-261-0/+2
| | | | | | | | Allow editing the MUC subject using external editor. Use `/subject editor`. Fix https://github.com/profanity-im/profanity/issues/1638
* command: rename /mood clean to /mood clearMichael Vetter2022-02-011-3/+3
| | | | As per suggestion of @mdosch.
* command: adapt mood descriptionMichael Vetter2022-01-301-3/+3
|
* XEP-0107: User Mood - Clean moodStefan Kropp2022-01-301-4/+7
| | | | | | | | | | | | | | | | | | * Bugfix in mood_autocomplete (wrong parameter) * Implemented /mood clean ______________________________________ / Profanity! THE XMPP client with mood \ \ support! / -------------------------------------- \ \ .--. |o_o | |:_/ | // \ \ (| | ) /'\_ _/`\ \___)=(___/
* xep-0107: adjust helpMichael Vetter2021-12-061-5/+5
|
* xep-0107: code reviewDebXWoody2021-12-061-3/+6
| | | | | | | | * Remarks in the Merge Request (ac_reset, help) * Defines in iq.c * Mood help and null check * Added additional information about tab key in CMD_DESC. * Added additional null check
* Add xep-0107: User Mood supportDebXWoody2021-12-061-0/+13
| | | | Implementation of XEP 0107 - User Mood
* Merge pull request #1601 from MarcoPolo-PasTonMolo/masterMichael Vetter2021-10-221-0/+17
|\ | | | | Add /correct-editor command
| * Remove autocomplete for /correct-editorMarcoPolo-PasTonMolo2021-10-211-5/+3
| | | | | | | | | | | | We decided that it was better to remove autocomplete for this command, since adding it only introduced problems and the command can still function perfectly without autocomplete.
| * Add /correct-editor commandMarcoPolo-PasTonMolo2021-10-071-0/+19
| |
* | Format new register code correctlyMichael Vetter2021-10-131-1/+0
| |
* | Merge pull request #1574 from binex-dsk/masterMichael Vetter2021-10-131-0/+27
|\ \ | |/ |/| | | Add in-band account registration Fix https://github.com/profanity-im/profanity/issues/199
| * registration: remove auth param and excess functionsswirl2021-08-171-4/+2
| |
| * /register: parameter updatesswirl2021-08-171-8/+10
| | | | | | | | add auth param, switch host and username params, rename host param to server
| * initial register command testswirl2021-08-171-0/+27
| |
* | Add more help about how to use pluginsMichael Vetter2021-09-291-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `/plugins install` installs a plugin to `.local/share/profanity/plugins`. And also loads it. When a plugin is loaded it will automatically be added to the `profrc` file like this: ``` [plugins] load=my.py; ``` On the next start Profanity will try to load this plugin again unless `/plugin unload my.py` is called.
* | List globally available pluginsMichael Vetter2021-09-291-1/+1
| | | | | | | | | | | | | | | | | | | | Packagers can package https://github.com/profanity-im/profanity-plugins or another collection of plugins to `/usr/local/share/profanity/plugins` (python) and `/usr/local/lib64/profanity` (c). `/plugins` will list these globally available plugins now along with the ones thare are installed (`~/.local/share/profanity/plugins`) and loaded. Regards https://github.com/profanity-im/profanity/issues/945
* | Remove `/python sourcepath`Michael Vetter2021-09-291-7/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I feel like this mostly is confusing people. Also don't see much value for it. To me it looks like a regular workflow is like: ``` /plugin install ~/src/profanity-plugins/my.py ``` The whole thing with sourcepath, install (which also loads without having that described anywhere), load etc is confusing. Also each plugin file that is present in `.local/share/profanity/plugins` will then be auto loaded. Which means after installation.
* | Change attentionflag shortcut to alt+vMichael Vetter2021-08-311-1/+1
|/ | | | | | alt+f is the default readline shortcut for forward one word. Regards https://github.com/profanity-im/profanity/issues/1580
* Add limitations info to /help editorMichael Vetter2021-07-081-1/+3
|
* Add MAM notice to /help mamMichael Vetter2021-07-081-1/+3
|
* Merge pull request #1566 from DebXWoody/bugfixing/oxMichael Vetter2021-07-011-4/+6
|\ | | | | Bugfixes for OX implementation
| * OX bug fixDebXWoody2021-07-011-3/+4
| | | | | | | | | | * Help / message description * C-Code format
| * Bugfixes for OX implementationDebXWoody2021-06-281-4/+5
| | | | | | | | | | | | | | * autocomplete for /ox discover * fixed help description * Implemented /ox char command * Validated KeyID length
* | Add option to only allow messages from jids in rosterMichael Vetter2021-07-011-0/+14
| | | | | | | | | | | | | | `/silence on` will throw away all messages (type: chat, normal) that come from jids that are not in the roster. Implement https://github.com/profanity-im/profanity/issues/955
* | Reorder /blocked commandsMichael Vetter2021-07-011-5/+10
| | | | | | | | | | | | | | | | Instead of `/blocked add [<jid>] [report-abuse|report-spam [<message>]` have: * /blocked add [<jid>] [<message>] (like before) * /blocked report-abuse [<jid>] [<message>] * /blocked report-spam [<jid>] [<message>]
* | Add XEP-0377: Spam ReportingMichael Vetter2021-07-011-2/+3
| | | | | | | | | | | | | | | | | | | | | | Report and block: `/blocked add someone@domain.org report-abuse This is not nice` `/blocked add someone@domain.org report-spam This is not nice` Regular block: `/blocked add someone@domain.org` Implement https://github.com/profanity-im/profanity/issues/1434
* | command: Mention xep-0157 in /disco infoMichael Vetter2021-06-301-1/+2
|/
* Fix executable exampleMichael Vetter2021-06-101-1/+1
| | | | Changed in a5a0dd6c919a2b4f12ef2b4f57a0d9a2a9cabf34
* Add editor hintMichael Vetter2021-06-101-1/+1
| | | | | See https://github.com/profanity-im/profanity/issues/1521#issuecomment-854110973
* Add command to show single bookmark detailsMichael Vetter2021-06-091-2/+4
| | | | | | | `/bookmark list` lists all bookmarks with its details. `/bookmark list <jid>` shows the details of a single bookmark. Implement https://github.com/profanity-im/profanity/issues/1558
* Change attention descriptionMichael Vetter2021-05-311-1/+1
|