about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* remove memset in cons_show_qrcodeswirl2022-06-151-1/+1
| | | | Signed-off-by: swirl <swurl@swurl.xyz>
* remove VLAs in OMEMO QR Code functionswirl2022-06-141-7/+15
| | | | | | Removes the use of VLAs in favor of calloc Signed-off-by: swirl <swurl@swurl.xyz>
* M
#!/usr/bin/env python
# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

import distutils.core
import ranger

if __name__ == '__main__':
	distutils.core.setup(
		name='ranger',
		description='Vim-like file manager',
		long_description=ranger.__doc__,
		version=ranger.__version__,
		author=ranger.__author__,
		author_email=ranger.__email__,
		license=ranger.__license__,
		url='http://savannah.nongnu.org/projects/ranger',
		scripts=['scripts/ranger'],
		data_files=[('share/man/man1', ['doc/ranger.1'])],
		package_data={'ranger': ['data/*']},
		packages=('ranger',
		          'ranger.api',
		          'ranger.colorschemes',
		          'ranger.container',
		          'ranger.core',
		          'ranger.defaults',
		          'ranger.ext',
		          'ranger.fsobject',
		          'ranger.gui',
		          'ranger.gui.widgets',
		          'ranger.help'))
s='nohover-highlight'>
| | | | | | | | | | | | and use CLFAGS not cflags
| * | Make qrencode optional and add to CIMichael Vetter2022-05-307-12/+22
| | |
| * | Add command help for omemo qrcodeMichael Vetter2022-05-302-2/+6
| | |
| * | Reverse QR code colors and add paddingswirl2022-05-302-8/+19
| | | | | | | | | | | | | | | | | | | | | All QR scanners should be able to recognize this, as it is now the correct color with some padding to prevent blending. Signed-off-by: swirl <swurl@swurl.xyz>
| * | implement working OMEMO QR codeswirl2022-05-302-8/+19
| | | | | | | | | | | | | | | | | | | | | | | | TODO: We need to find a way to switch the colors of the QR code, so that more QR readers can detect it, without "blending" the edges of the QR code with the surrounding terminal window. Signed-off-by: swirl <swurl@swurl.xyz>
| * | Add basic qrcode functionsMichael Vetter2022-05-308-1/+73
|/ /
* | Merge pull request #1714 from MarcoPolo-PasTonMolo/feature/avatar-setMichael Vetter2022-05-3016-7/+220
|\ \ | | | | | | Add `/avatar set` command to publish avatar
| * | Add pixbuf building to CIMichael Vetter2022-05-307-7/+14
| | |
| * | Final touches for `/avatar set`Michael Vetter2022-05-275-10/+8
| | |
| * | Add checks for whether gdk-pixbuf exists before using avatar setMarcoPolo-PasTonMolo2022-05-266-3/+31
| | |
| * | Add `/avatar set` command to publish avatarMarcoPolo-PasTonMolo2022-05-268-1/+181
| | | | | | | | | | | | | | | | | | | | | | | | 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
* | | Merge pull request #1712 from MarcoPolo-PasTonMolo/fix/1347Michael Vetter2022-05-292-7/+45
|\ \ \ | |_|/ |/| | Update capabilities of muc on available presence
| * | Make muc config update after form submitMarcoPolo-PasTonMolo2022-05-272-7/+45
| |/ | | | | | | | | | | | | | | | | Muc configuration in profanity used to not update until next login, ie: make muc non_anonymous and members_only but be unable to start omemo until next login. Now a disco info request is sent after forrm submit and chatroom details are changed accordingly. Fixes https://github.com/profanity-im/profanity/issues/1347
* | Fix description of moodMichael Vetter2022-05-271-1/+1
| |
* | Merge pull request #1716 from MarcoPolo-PasTonMolo/fix/ignore-nick-changeMichael Vetter2022-05-261-0/+2
|\ \ | | | | | | Respect silent nick change in mucs
| * | Respect silent nick change in mucsMarcoPolo-PasTonMolo2022-05-261-0/+2
|/ / | | | | | | | | | | | | | | | | Profanity would ignore the silent nick change in some places. The roster and history would show the correct nick, new messages from the current user and the "Autojoined <jid> as <nick>" message would show the wrong one. This commit fixes that problem. Fixes https://github.com/profanity-im/profanity/issues/757
* | Merge pull request #1715 from MarcoPolo-PasTonMolo/fix/ox-discover-segfaultMichael Vetter2022-05-261-5/+8
|\ \ | |/ |/| Fix segfault on `/ox discover`
| * Fix segfault on `/ox discover`MarcoPolo-PasTonMolo2022-05-261-5/+8
|/ | | | | | | | | `/ox discover` segfaults on some misconfigured? nodes because there are newlines before and after some pubkey-metadata stanzas so the newlines get treated as seperate stanzas. This commit just skips each stanza in public-keys-list that doesn't have a fingerprint. Fixes https://github.com/profanity-im/profanity/issues/1713
* Merge pull request #1711 from MarcoPolo-PasTonMolo/fix/roomname-updateMichael Vetter2022-05-231-0/+8
|\ | | | | Fix room name not updating.
| * Fix room name not updating.MarcoPolo-PasTonMolo2022-05-181-0/+8
|/ | | | | | Now whenever the name of a room changes, either in profanity or another client, it gets updated inside profanity. Fixes https://github.com/profanity-im/profanity/issues/1710
* Merge pull request #1708 from wurstsalat3000/patch-1Michael Vetter2022-05-091-1/+1
|\ | | | | DOAP: Use correct namespace for xmlns:schema
| * DOAP: Use correct namespace for xmlns:schemaDaniel Brötzmann2022-05-091-1/+1
|/
* Update copyright yearMichael Vetter2022-05-0948-50/+50
|
* Merge pull request #1707 from profanity-im/change-redact-defaultsMichael Vetter2022-05-092-7/+7
|\ | | | | Log encrypted messages by default to chatlog
| * Log encrypted messages by default to chatlogMichael Vetter2022-05-092-7/+7
|/ | | | | In case chatlogs are available lets log everything by default. Seems like most users expect this behaviour and I agree.
* Merge pull request #1705 from profanity-im/feat/ox-improvements2Michael Vetter2022-05-0910-27/+91
|\ | | | | Improvements for OX part 2
| * ox: remove /ox sendfile because its actually not implementedMichael Vetter2022-05-052-11/+1
| |
| * ox: show ox preferencesMichael Vetter2022-05-055-0/+35
| |
| * ox: Add /ox log commandMichael Vetter2022-05-056-1/+41
| |
| * ox: only process proper messagesMichael Vetter2022-05-041-12/+11
| | | | | | | | | | | | | | | | | | | | We only want to have the decrypted message or the alternative body in message->plain. Also let's print error messages if it makes sense and log other issues. Partly addresses the commit in the comit mesage of: 2dc0cc489c872941e18a622c091f74bf5b0b043f
| * ox: prefix function _openpgp_signcrypt with ox_Michael Vetter2022-05-041-3/+3
|/ | | | To make the destinction clearer and easier to search.
* ox: have metadata node openMichael Vetter2022-05-041-0/+6
| | | | | | | Should have been done alogn with e9f218cdf6e15f4469d77cbaee59cc8501ed4e82. Like this people who are not in the roster can get our public key and write messages to use.
* ox: return upon invalid fingerprintMichael Vetter2022-05-041-1/+2
|
* Merge pull request #1703 from profanity-im/feat/ox-improvements1Michael Vetter2022-05-047-112/+236
|\ | | | | Several OX improvements
| * ox: fix mistakes in p_ox_gpg_decrypt()Michael Vetter2022-05-041-1/+3
| | | | | | | | | | | | | | strcpy() can't work here because the data doesn't have to be NULL-terminated. So let's use memcpy. Fix memleak of plain_str.
| * Improve ox command helpMichael Vetter2022-05-041-2/+3
| | | | | | | | | | Mention new man page. Correct the usage of /ox request.
| * ox: print message when `/ox end` is run but not startedMichael Vetter2022-05-041-4/+8
| |
| * ox: print more error messages to UIMichael Vetter2022-05-031-2/+6
| |
| * ox: dont require marginal trust levelMichael Vetter2022-05-031-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Maybe we can make this configurable later. So users have the freedom to be more strict. This commit partly reverts 62018f48c5f1a0410445fce5bca5fdd6a9e4d907. Example to edit trust level: ``` gpg --edit-key somekeyid gpg (GnuPG) 2.3.4; Copyright (C) 2021 Free Software Foundation, Inc. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. pub rsa4096/keyid created: 2020-06-26 expires: 2022-06-26 usage: SC trust: unknown validity: full sub rsa4096/keyid created: 2020-06-26 expires: 2022-06-26 usage: E [ full ] (1). xmpp:user@domain.de gpg> trust pub rsa4096/keyid created: 2020-06-26 expires: 2022-06-26 usage: SC trust: unknown validity: full sub rsa4096/keyid created: 2020-06-26 expires: 2022-06-26 usage: E [ full ] (1). xmpp:user@domain.de Please decide how far you trust this user to correctly verify other users' keys (by looking at passports, checking fingerprints from different sources, etc.) 1 = I don't know or won't say 2 = I do NOT trust 3 = I trust marginally 4 = I trust fully 5 = I trust ultimately m = back to the main menu Your decision? 3 pub rsa4096/keyid created: 2020-06-26 expires: 2022-06-26 usage: SC trust: marginal validity: full sub rsa4096/keyid created: 2020-06-26 expires: 2022-06-26 usage: E [ full ] (1). xmpp:user@domain.de Please note that the shown key validity is not necessarily correct unless you restart the program. gpg> quit ```
| * Bugfix OX rpad generationStefan Kropp2022-05-031-4/+6
| | | | | | | | | | | | | | | | | | | | ________________________________________ < No comment - should be much better now > ---------------------------------------- \ \ \ >()_ (__)__ _
| * ox_key_is_usable - Logging and owner trust checkStefan Kropp2022-05-031-0/+6
| | | | | | | | | | | | | | * Added logging messages (INFO if key can not be used) * Check owner_trust < GPGME_VALIDITY_MARGINAL The key can not be used if the owner_trust is less than MARGINAL.