[Git][gajim/gajim][master] Return account instead of jid

2018-05-10 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: ffe8ee80 by Philipp Hörist at 2018-05-10T13:28:26+02:00 Return account instead of jid - - - - - 1 changed file: - gajim/common/app.py Changes: = gajim/common/app.py

[Git][gajim/gajim][master] Dont show OOB uri if message body is the same

2018-05-10 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 04b86a7b by Philipp Hörist at 2018-05-10T16:16:38+02:00 Dont show OOB uri if message body is the same if oob uri == body there is no need to show the uri below the message - - - - - 1 changed file: - gajim

[Git][gajim/gajim][master] Add flake8 config file

2018-05-11 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 9e096e87 by Philipp Hörist at 2018-05-11T22:03:13+02:00 Add flake8 config file - - - - - 1 changed file: - + .flake8 Changes: = .flake8 = --- /dev/null

[Git][gajim/gajim][master] Bring control to front when notification is clicked

2018-05-12 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 3c22ab75 by Philipp Hörist at 2018-05-12T23:36:52+02:00 Bring control to front when notification is clicked if autopopup_chat_opened is activated no control is found because the event that triggered the notification is already

[Git][gajim/gajim][master] Fix call to config.get_per() in method that gets account name from jid

2018-05-15 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: f13ff8ac by BBreeziN at 2018-05-15T23:39:44-04:00 Fix call to config.get_per() in method that gets account name from jid - - - - - 1 changed file: - gajim/common/app.py Changes: = gajim

[Git][gajim/gajim][master] Preserve SSL handshake errors order

2018-05-16 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 4f29e2b3 by Andrey Gursky at 2018-05-16T19:50:21+02:00 Preserve SSL handshake errors order Sets are unordered and list with push/pop acts as LIFO, though we need FIFO. Since the number of elements is tiny, no need to use deque

[Git][gajim/gajim][master] 3 commits: Remove unused comments

2018-05-17 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 40aa3d80 by Philipp Hörist at 2018-05-17T20:01:59+02:00 Remove unused comments The attributes were removed in 8e09fd92 - - - - - 2a8c0da3 by Philipp Hörist at 2018-05-17T20:01:59+02:00 Use i18n module to determine locale

[Git][gajim/gajim][master] Simplify set_i18n_env()

2018-05-17 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 3b130db6 by Philipp Hörist at 2018-05-17T20:07:30+02:00 Simplify set_i18n_env() We already determine LANG in initialize_lang() getdefaultlocale() takes env var LANG into consideration - - - - - 1 changed file: - gajim/common

[Git][gajim/gajim][master] Move signal code into gajim.py

2018-05-17 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 4731e849 by Philipp Hörist at 2018-05-17T20:59:22+02:00 Move signal code into gajim.py The reason for signal.signal(signal.SIGPIPE, signal.SIG_DFL) Python ignores SIGPIPE by default ( signal(SIGPIPE, SIG_IGN) ) Write on a socket

[Git][gajim/gajim][master] Simplify generating random int

2018-05-17 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 6ed04e2d by Philipp Hörist at 2018-05-17T21:13:37+02:00 Simplify generating random int No need to use SystemRandom() here, as this is not needed for security purposes - - - - - 1 changed file: - gajim/common/connection.py

[Git][gajim/gajim][master] Remove pyasn1 dependency

2018-05-17 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 496bfd31 by Philipp Hörist at 2018-05-17T22:42:29+02:00 Remove pyasn1 dependency its not used anymore - - - - - 5 changed files: - README.md - org.gajim.Gajim.json - setup.py - win/_base.sh - win/dev_env.sh Changes

[Git][gajim/python-nbxmpp][master] 2 commits: Pass arguments to plugin/plugout method

2018-05-18 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / python-nbxmpp Commits: 964d31b5 by Philipp Hörist at 2018-05-18T17:11:06+02:00 Pass arguments to plugin/plugout method - - - - - 467572b7 by Philipp Hörist at 2018-05-18T17:14:18+02:00 Allow initRoster without requesting the roster

[Git][gajim/gajim][master] Init Roster after stream management resume

2018-05-18 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 117036b8 by Philipp Hörist at 2018-05-18T18:20:30+02:00 Init Roster after stream management resume nbxmpp deletes the roster object on disconnect. Init the roster from db again on resume. Fixes #8296 - - - - - 2 changed files

[Git][gajim/gajim][master] Add pybonjour to deps on Windows

2018-05-18 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 9154658d by Philipp Hörist at 2018-05-19T07:56:24+02:00 Add pybonjour to deps on Windows Fixes #9125 - - - - - 1 changed file: - win/_base.sh Changes: = win/_base.sh

[Git][gajim/gajim][master] Fix Windows build

2018-05-19 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 4d9197ef by Philipp Hörist at 2018-05-19T09:37:01+02:00 Fix Windows build - - - - - 2 changed files: - appveyor.yml - win/_base.sh Changes: = appveyor.yml

[Git][gajim/gajim][gajim_1.0] Flatpak: limit dbus access

2018-05-19 Thread Philipp Hörist
Philipp Hörist pushed to branch gajim_1.0 at gajim / gajim Commits: 1b757b5a by André Apitzsch at 2018-05-19T09:52:56+02:00 Flatpak: limit dbus access - - - - - 1 changed file: - org.gajim.Gajim.json Changes: = org.gajim.Gajim.json

[Git][gajim/gajim][gajim_1.0] servers.xml: re-add lightwitch.org as IBR was re-enabled.

2018-05-19 Thread Philipp Hörist
Philipp Hörist pushed to branch gajim_1.0 at gajim / gajim Commits: 38457ded by Marco Cirillo at 2018-05-19T09:56:45+02:00 servers.xml: re-add lightwitch.org as IBR was re-enabled. - - - - - 1 changed file: - gajim/data/other/servers.xml Changes: = gajim

[Git][gajim/gajim][gajim_1.0] Update ChangeLog

2018-05-19 Thread Philipp Hörist
Philipp Hörist pushed to branch gajim_1.0 at gajim / gajim Commits: a490dfbc by Philipp Hörist at 2018-05-19T10:06:54+02:00 Update ChangeLog - - - - - 1 changed file: - ChangeLog Changes: = ChangeLog = --- a/ChangeLog

[Git][gajim/python-nbxmpp][master] 2 commits: Update ChangeLog

2018-05-19 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / python-nbxmpp Commits: b9fc712e by Philipp Hörist at 2018-05-19T10:41:09+02:00 Update ChangeLog - - - - - 7256d13e by Philipp Hörist at 2018-05-19T10:42:30+02:00 Prepare 0.6.6 - - - - - 3 changed files: - ChangeLog - nbxmpp/__init__.py

[Git][gajim/python-nbxmpp] Pushed new tag nbxmpp-0.6.6

2018-05-19 Thread Philipp Hörist
Philipp Hörist pushed new tag nbxmpp-0.6.6 at gajim / python-nbxmpp --- View it on GitLab: https://dev.gajim.org/gajim/python-nbxmpp/tree/nbxmpp-0.6.6 You're receiving this email because of your account on dev.gajim.org. ___ Commits mailing list Co

[Git][gajim/gajim][master] 4 commits: Raise required nbxmpp version

2018-05-19 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: bc22bbad by Philipp Hörist at 2018-05-19T10:50:43+02:00 Raise required nbxmpp version - - - - - c856d6ad by Philipp Hörist at 2018-05-19T10:57:49+02:00 Update ChangeLog - - - - - fb1d75df by Philipp Hörist at 2018-05-19T10:57:49

[Git][gajim/gajim][gajim_1.0] 3 commits: Raise required nbxmpp version

2018-05-19 Thread Philipp Hörist
Philipp Hörist pushed to branch gajim_1.0 at gajim / gajim Commits: 01026170 by Philipp Hörist at 2018-05-19T11:01:38+02:00 Raise required nbxmpp version - - - - - 03e5e2f1 by Philipp Hörist at 2018-05-19T11:02:09+02:00 Update ChangeLog - - - - - 0ab9d121 by Philipp Hörist at 2018-05-19T11:02

[Git][gajim/gajim] Pushed new tag gajim-1.0.3

2018-05-19 Thread Philipp Hörist
Philipp Hörist pushed new tag gajim-1.0.3 at gajim / gajim --- View it on GitLab: https://dev.gajim.org/gajim/gajim/tree/gajim-1.0.3 You're receiving this email because of your account on dev.gajim.org. ___ Commits mailing list Commits@gajim.org

[Git][gajim/gajim][master] Add file used to recognize if gajim is running with flatpak

2018-05-19 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: a4bc5d0c by André Apitzsch at 2018-05-19T23:52:16+02:00 Add file used to recognize if gajim is running with flatpak - - - - - 1 changed file: - org.gajim.Gajim.json Changes

[Git][gajim/gajim][master] Flatpak: reduce difference to flathub version

2018-05-19 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: cc874227 by André Apitzsch at 2018-05-20T00:27:30+02:00 Flatpak: reduce difference to flathub version - - - - - 1 changed file: - org.gajim.Gajim.json Changes: = org.gajim.Gajim.json

[Git][gajim/gajim][master] 2 commits: Make keyring a hard dependency

2018-05-20 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 9ac5acc3 by André Apitzsch at 2018-05-20T12:12:51+02:00 Make keyring a hard dependency - - - - - 690dcfa8 by André Apitzsch at 2018-05-20T12:12:51+02:00 Flatpak: add keyring dependency - - - - - 2 changed files

[Git][gajim/gajim][master] Dont build menu for Local account

2018-05-20 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 3e0557da by Philipp Hörist at 2018-05-20T20:15:08+02:00 Dont build menu for Local account - - - - - 3 changed files: - gajim/application.py - gajim/common/contacts.py - gajim/gui_menu_builder.py Changes

[Git][gajim/gajim][master] Move module calls into init

2018-05-20 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 7040ea6b by Philipp Hörist at 2018-05-21T02:39:29+02:00 Move module calls into init On Linux ctypes has not attr windll, move it into the __init__() so it does not get evaluatet on module import - - - - - 1 changed file

[Git][gajim/gajim][master] Dont show encryption methods if not supported

2018-05-21 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 764b2753 by Philipp Hörist at 2018-05-21T18:09:44+02:00 Dont show encryption methods if not supported - - - - - 2 changed files: - gajim/chat_control.py - gajim/gui_menu_builder.py Changes

[Git][gajim/gajim][master] Fix log message

2018-05-21 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 0ea721fb by Philipp Hörist at 2018-05-21T18:38:47+02:00 Fix log message Presence without vcard hash is not invalid - - - - - 1 changed file: - gajim/common/connection_handlers_events.py Changes

[Git][gajim/gajim][master] Dont get current version from config

2018-05-21 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 714d70cb by Philipp Hörist at 2018-05-21T18:49:06+02:00 Dont get current version from config - - - - - 1 changed file: - gajim/common/app.py Changes: = gajim/common/app.py

[Git][gajim/gajim][master] Fix first start with no accounts

2018-05-21 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 59cfddc3 by Philipp Hörist at 2018-05-21T18:57:18+02:00 Fix first start with no accounts - - - - - 1 changed file: - gajim/application.py Changes: = gajim/application.py

[Git][gajim/gajim][master] Detect if we run as flatpak

2018-05-21 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: b3162f40 by Philipp Hörist at 2018-05-21T19:17:47+02:00 Detect if we run as flatpak Fixes #9110 - - - - - 1 changed file: - gajim/common/app.py Changes: = gajim/common/app.py

[Git][gajim/gajim][master] Raise version in desktop.in

2018-05-21 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 828ae5bb by Philipp Hörist at 2018-05-21T19:27:38+02:00 Raise version in desktop.in - - - - - 1 changed file: - data/org.gajim.Gajim.desktop.in Changes: = data/org.gajim.Gajim.desktop.in

[Git][gajim/gajim][master] Fix detecting language

2018-05-21 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 7b0cbb77 by Philipp Hörist at 2018-05-21T21:49:19+02:00 Fix detecting language - - - - - 1 changed file: - gajim/common/i18n.py Changes: = gajim/common/i18n.py

[Git][gajim/gajim][master] Remove version key in desktop.in

2018-05-21 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 3c474f94 by Philipp Hörist at 2018-05-21T22:24:48+02:00 Remove version key in desktop.in This is not for the Gajim version, its the version of the spec this file conforms to. This key is not required by the spec - - - - - 1

[Git][gajim/gajim][master] Work around flatpak cleanup issue

2018-05-22 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: cfd64926 by André Apitzsch at 2018-05-22T23:12:29+02:00 Work around flatpak cleanup issue cleaning /share/locale/ from one component can affect later components, i.e. locales are also removed there - - - - - 1 changed file

[Git][gajim/gajim][master] Fix translation in flatpak build

2018-05-22 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: bc24ab47 by Philipp Hörist at 2018-05-23T08:38:09+02:00 Fix translation in flatpak build Fixes #9138 - - - - - 1 changed file: - gajim/common/i18n.py Changes: = gajim/common/i18n.py

[Git][gajim/gajim][master] Remove python3-avahi dependency

2018-05-25 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: c70b883f by Philipp Hörist at 2018-05-25T22:37:28+02:00 Remove python3-avahi dependency - - - - - 2 changed files: - README.md - org.gajim.Gajim.json Changes: = README.md

[Git][gajim/gajim][master] Flatpak: portal is used to access home directory

2018-05-26 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 13e838b4 by André Apitzsch at 2018-05-26T13:16:01+02:00 Flatpak: portal is used to access home directory - - - - - 1 changed file: - org.gajim.Gajim.json Changes: = org.gajim.Gajim.json

[Git][gajim/gajim][master] Config: use with-statement

2018-05-26 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 70525c00 by André Apitzsch at 2018-05-27T02:22:21+02:00 Config: use with-statement - - - - - 1 changed file: - gajim/config.py Changes: = gajim/config.py

[Git][gajim/gajim][master] Fix idle detection

2018-05-27 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: b749eccf by Philipp Hörist at 2018-05-27T10:51:57+02:00 Fix idle detection Fixes #9149 - - - - - 2 changed files: - gajim/common/idle.py - gajim/gui_interface.py Changes: = gajim/common

[Git][gajim/gajim][master] Determine earlier if we run as Flatpak

2018-05-27 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: dbbf0782 by Philipp Hörist at 2018-05-27T13:45:07+02:00 Determine earlier if we run as Flatpak - - - - - 2 changed files: - gajim/__init__.py - gajim/common/app.py Changes: = gajim

[Git][gajim/gajim][master] Fix zeroconf txtrecord encoding

2018-05-27 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 56fbe32b by Philipp Hörist at 2018-05-27T21:03:42+02:00 Fix zeroconf txtrecord encoding Fixes #9146 - - - - - 2 changed files: - gajim/common/zeroconf/zeroconf_avahi.py - gajim/common/zeroconf/zeroconf_bonjour.py Changes

[Git][gajim/python-nbxmpp][master] Move readlines() into try/except block

2018-05-27 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / python-nbxmpp Commits: 849176b1 by Philipp Hörist at 2018-05-28T07:40:05+02:00 Move readlines() into try/except block Fixes #52 - - - - - 1 changed file: - nbxmpp/tls_nb.py Changes: = nbxmpp/tls_nb.py

[Git][gajim/gajim][master] Add release notes and content rating information to appdata

2018-05-28 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 3f2d4e50 by André Apitzsch at 2018-05-29T08:29:54+02:00 Add release notes and content rating information to appdata - - - - - 1 changed file: - data/org.gajim.Gajim.appdata.xml.in Changes

[Git][gajim/gajim][master] Add support for flatpak extensions

2018-05-28 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 5e712768 by André Apitzsch at 2018-05-29T08:34:20+02:00 Add support for flatpak extensions - - - - - 2 changed files: - gajim/common/configpaths.py - org.gajim.Gajim.json Changes: = gajim

[Git][gajim/gajim][master] Use certifi on MacOS

2018-05-31 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 395d24be by Philipp Hörist at 2018-05-31T17:35:46+02:00 Use certifi on MacOS Python 3.6 does not use the MacOS cert store anymore - - - - - 2 changed files: - gajim/common/connection.py - gajim/common/httpupload.py Changes

[Git][gajim/gajim][master] 2 commits: Remove AIM related transport code/icons

2018-05-31 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 38c669b6 by Philipp Hörist at 2018-05-31T20:29:06+02:00 Remove AIM related transport code/icons This Messenger shut down and is not available anymore - - - - - d6564280 by Philipp Hörist at 2018-05-31T20:29:13+02:00 Remove MSN

[Git][gajim/gajim][master] Remove TLEN related transport code/icons

2018-05-31 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: a506758e by Philipp Hörist at 2018-05-31T21:01:29+02:00 Remove TLEN related transport code/icons This Messenger shut down and is not available anymore - - - - - 30 changed files: - gajim/common/app.py - − gajim/data/icons

[Git][gajim/gajim][master] Remove unused patch

2018-05-31 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 6413c568 by André Apitzsch at 2018-06-01T00:24:22+02:00 Remove unused patch - - - - - 1 changed file: - − flatpak/CVE-2013-7459.patch Changes: = flatpak/CVE-2013-7459.patch deleted

[Git][gajim/gajim][master] Define JID type when searching for duplciates

2018-06-01 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 2abbb1e2 by Philipp Hörist at 2018-06-01T17:46:54+02:00 Define JID type when searching for duplciates Fixes #9163 - - - - - 1 changed file: - gajim/common/logger.py Changes: = gajim

[Git][gajim/gajim][master] Fixes notifications are missing after refactoring

2018-06-01 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 77fb424c by Sophie Herold at 2018-06-01T18:51:29+02:00 Fixes notifications are missing after refactoring - - - - - 1 changed file: - gajim/notify.py Changes: = gajim/notify.py

[Git][gajim/gajim][master] Disable subject change if room doesnt allow it

2018-06-01 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: c5f8fe91 by Philipp Hörist at 2018-06-01T20:02:29+02:00 Disable subject change if room doesnt allow it - - - - - 3 changed files: - gajim/common/caps_cache.py - gajim/common/connection_handlers.py - gajim/groupchat_control.py

[Git][gajim/gajim][master] MUC: Fix voice request

2018-06-01 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 631740b6 by Philipp Hörist at 2018-06-01T20:58:09+02:00 MUC: Fix voice request Fixes #9159 - - - - - 3 changed files: - gajim/common/connection_handlers_events.py - gajim/dialogs.py - gajim/gui_interface.py Changes

[Git][gajim/gajim][master] Catch error on calling setlocale()

2018-06-05 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: ce789254 by Philipp Hörist at 2018-06-05T12:02:50+02:00 Catch error on calling setlocale() Fixes #9167 - - - - - 1 changed file: - gajim/common/i18n.py Changes: = gajim/common/i18n.py

[Git][gajim/gajim][master] Flatpak: update dependencies

2018-06-05 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 7c8b1a2d by André Apitzsch at 2018-06-05T21:47:07+02:00 Flatpak: update dependencies - - - - - 1 changed file: - org.gajim.Gajim.json Changes: = org.gajim.Gajim.json

[Git][gajim/gajim][master] Flatpak: remove plugin installer

2018-06-05 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: fb780080 by André Apitzsch at 2018-06-05T23:01:48+02:00 Flatpak: remove plugin installer it became useless with 5e712768cf5047c728a7dc96f3b9078c725e34ea - - - - - 1 changed file: - org.gajim.Gajim.json Changes

[Git][gajim/gajim][master] Flatpak: fix dbus build

2018-06-06 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 6985da75 by André Apitzsch at 2018-06-06T00:19:06+02:00 Flatpak: fix dbus build after package update only python2 version was build - - - - - 1 changed file: - org.gajim.Gajim.json Changes

[Git][gajim/gajim][master] Contacts should not be added to Zeroconf account

2018-06-06 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 6492d159 by Philipp Hörist at 2018-06-06T21:19:18+02:00 Contacts should not be added to Zeroconf account - - - - - 1 changed file: - gajim/dialogs.py Changes: = gajim/dialogs.py

[Git][gajim/gajim][master] Remove yahoo transport

2018-06-17 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: ab3c53bf by André Apitzsch at 2018-06-15T12:19:02+02:00 Remove yahoo transport fixes #9188 - - - - - 30 changed files: - gajim/common/app.py - gajim/common/logger.py - − gajim/data/icons/hicolor/16x16/status/yahoo-away.png

[Git][gajim/gajim][master] Fix docstrings for XEP-0146 commands

2018-06-17 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 956a4201 by Alexander Krotov at 2018-06-17T20:09:32+02:00 Fix docstrings for XEP-0146 commands - - - - - 1 changed file: - gajim/common/commands.py Changes: = gajim/common/commands.py

[Git][gajim/gajim][master] Fix TypeError: get_dialog() got multiple values for argument 'name'

2018-06-17 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 27bb7d1a by André Apitzsch at 2018-06-17T21:15:51+02:00 Fix TypeError: get_dialog() got multiple values for argument 'name' - - - - - 1 changed file: - gajim/dialog_messages.py

[Git][gajim/gajim][master] Remove forward message adhoc commands

2018-06-17 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 3c1490a3 by Philipp Hörist at 2018-06-17T23:21:29+02:00 Remove forward message adhoc commands These commands introduce security concerns because how they interact with encrypted messages. With MAM and Carbons installed on nearly

[Git][gajim/gajim][master] Increase timeframe for duplicate search

2018-06-19 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: e20f0440 by Philipp Hörist at 2018-06-19T19:05:44+02:00 Increase timeframe for duplicate search A too short timeframe leads to not recognizing duplicates if the server time differs from the user time. This is only a problem with

[Git][gajim/gajim][master] Set secure_delete pragma for SQLite3 connections

2018-06-19 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 22d799a7 by Alexander Krotov at 2018-06-19T19:07:16+02:00 Set secure_delete pragma for SQLite3 connections secure_delete makes SQLite3 overwrite deleted data with zeros, thus actually deleting it from the filesystem. Ubuntu and

[Git][gajim/gajim][master] Fix usage of loop variable in socks5.py

2018-06-21 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 672f02b3 by Alexander Krotov at 2018-06-22T08:05:31+02:00 Fix usage of loop variable in socks5.py Loop seems to be checking whether on_success callback is already called, but due to wrong variable used it did nothing

[Git][gajim/gajim][master] Make sure show is always a string

2018-06-22 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: af11aa98 by Philipp Hörist at 2018-06-22T20:23:35+02:00 Make sure show is always a string This is so we hopefully can find some bugs - - - - - 2 changed files: - gajim/common/contacts.py - gajim/common/helpers.py Changes

[Git][gajim/gajim][master] Flatpak: update dependencies

2018-06-22 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 7e1afd69 by André Apitzsch at 2018-06-22T21:59:50+02:00 Flatpak: update dependencies - - - - - 1 changed file: - org.gajim.Gajim.json Changes: = org.gajim.Gajim.json

[Git][gajim/gajim][master] Fix translation on Windows

2018-06-23 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 23c302ca by Philipp Hörist at 2018-06-23T17:07:43+02:00 Fix translation on Windows Fixes #8658 - - - - - 3 changed files: - gajim/application.py - gajim/common/i18n.py - gajim/gtkgui_helpers.py Changes

[Git][gajim/gajim][master] Remove unused config option log_encrypted_sessions

2018-06-23 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 86eddc2e by Philipp Hörist at 2018-06-23T17:13:57+02:00 Remove unused config option log_encrypted_sessions Fixes #9189 - - - - - 3 changed files: - gajim/common/config.py - gajim/config.py - gajim/data/gui

[Git][gajim/gajim][master] Dont punycode encode all domain names

2018-06-23 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 78ebaefa by Philipp Hörist at 2018-06-23T20:15:00+02:00 Dont punycode encode all domain names RFC7622 3.2.1 ... This implies that the string MUST NOT include A-labels ... Fixes #9211 - - - - - 1 changed file: - gajim/common

[Git][gajim/gajim][master] Add loading single builder objects on Windows

2018-06-23 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 9b07cf8d by Philipp Hörist at 2018-06-23T20:35:16+02:00 Add loading single builder objects on Windows This was still missing from the Windows translation fix - - - - - 1 changed file: - gajim/gtkgui_helpers.py Changes

[Git][gajim/gajim][master] Fix joining rooms with upper cases

2018-06-23 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: a30a61e5 by Philipp Hörist at 2018-06-23T22:33:03+02:00 Fix joining rooms with upper cases Fixes #9198 - - - - - 1 changed file: - gajim/dialogs.py Changes: = gajim/dialogs.py

[Git][gajim/gajim][master] Send cancel IQ if muc configuration is aborted

2018-06-23 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: fd137be3 by Philipp Hörist at 2018-06-23T23:36:26+02:00 Send cancel IQ if muc configuration is aborted Fixes #9069 - - - - - 2 changed files: - gajim/common/connection.py - gajim/config.py Changes

[Git][gajim/gajim][master] Flatpak: add gspell

2018-06-27 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 34dca605 by André Apitzsch at 2018-06-28T07:32:02+02:00 Flatpak: add gspell - - - - - 1 changed file: - org.gajim.Gajim.json Changes: = org.gajim.Gajim.json

[Git][gajim/gajim][master] Remove RC4-SHA because it is insecure

2018-06-28 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: b0ce012c by Philipp Hörist at 2018-06-28T18:43:15+02:00 Remove RC4-SHA because it is insecure Newer openssl version would not use this even if it was stated in our cipher string - - - - - 1 changed file: - gajim/common

[Git][gajim/python-nbxmpp][master] Raise default TLS encryption

2018-06-28 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / python-nbxmpp Commits: 526ea0e8 by Philipp Hörist at 2018-06-28T18:46:20+02:00 Raise default TLS encryption RC4-SHA is insecure and TLS1.2 should be on almost all xmpp servers - - - - - 1 changed file: - nbxmpp/tls_nb.py Changes

[Git][gajim/python-nbxmpp][master] Remove DIGEST-MD5 from the default auth mechs

2018-06-28 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / python-nbxmpp Commits: 9073bb42 by Philipp Hörist at 2018-06-28T19:21:47+02:00 Remove DIGEST-MD5 from the default auth mechs https://tools.ietf.org/html/rfc6331 - - - - - 1 changed file: - nbxmpp/auth_nb.py Changes

[Git][gajim/gajim][master] Change data_form_window.ui to avoid "Overriding tab label for notebook" warning

2018-06-28 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 2e58ffdd by Alexander Krotov at 2018-06-28T23:26:15+02:00 Change data_form_window.ui to avoid "Overriding tab label for notebook" warning - - - - - 1 changed file: - gajim/data/gui/data_form_window.ui

[Git][gajim/gajim][master] Call notify check methods with JID arg

2018-06-30 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 5bc9822c by Philipp Hörist at 2018-06-30T11:02:30+02:00 Call notify check methods with JID arg For subscription requests we dont have a contact obj - - - - - 4 changed files: - gajim/chat_control_base.py - gajim/notify.py

[Git][gajim/gajim][master] Remove unused method

2018-06-30 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 71a82b5c by Philipp Hörist at 2018-06-30T13:11:27+02:00 Remove unused method - - - - - 1 changed file: - gajim/config.py Changes: = gajim/config.py

[Git][gajim/gajim][master] Fix logging arguments

2018-06-30 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 3b147a8c by Philipp Hörist at 2018-06-30T19:41:03+02:00 Fix logging arguments - - - - - 1 changed file: - gajim/common/modules/vcard_temp.py Changes: = gajim/common/modules/vcard_temp.py

[Git][gajim/gajim][master] Fix updating room avatar correctly

2018-06-30 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 9c6a8df6 by Philipp Hörist at 2018-06-30T20:02:16+02:00 Fix updating room avatar correctly - - - - - 1 changed file: - gajim/common/modules/vcard_avatars.py Changes: = gajim/common/modules

[Git][gajim/gajim][master] Rename plugin attribute "allow_privatchat" into "allow_privatechat"

2018-07-01 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 80fee322 by Alexander Krotov at 2018-07-01T05:32:41+03:00 Rename plugin attribute "allow_privatchat" into "allow_privatechat" - - - - - 1 changed file: - gajim/gui_menu_

[Git][gajim/gajim][master] Polish Profile Dialog

2018-07-01 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: d6501898 by Sophie Herold at 2018-07-01T12:59:00+02:00 Polish Profile Dialog - - - - - 2 changed files: - gajim/data/gui/profile_window.ui - gajim/profile_window.py Changes: = gajim/data

[Git][gajim/gajim][master] Fix showing notifications in the roster

2018-07-01 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 858e472e by Philipp Hörist at 2018-07-01T19:00:43+02:00 Fix showing notifications in the roster There is a config setting in Gajim that allows to issue notifications even if a chatcontrol is open. The config setting was only used

[Git][gajim/gajim][master] Fix AttributeError: 'VersionResultReceivedEvent' object has no attribute 'getResource'

2018-07-01 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 0b5bb998 by André Apitzsch at 2018-07-01T23:43:50+02:00 Fix AttributeError: 'VersionResultReceivedEvent' object has no attribute 'getResource' - - - - - 1 changed file: - gajim/remote_

[Git][gajim/gajim][master] Fix incorrect argument

2018-07-04 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 73f290b5 by Philipp Hörist at 2018-07-05T00:28:09+02:00 Fix incorrect argument - - - - - 1 changed file: - gajim/common/modules/pep.py Changes: = gajim/common/modules/pep.py

[Git][gajim/gajim][master] Fix regression from 2ca0ca38

2018-07-05 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 3b7055ca by Philipp Hörist at 2018-07-05T18:06:48+02:00 Fix regression from 2ca0ca38 Fixes #9230 - - - - - 1 changed file: - gajim/groupchat_control.py Changes: = gajim

[Git][gajim/gajim][master] Fix typo

2018-07-05 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 1712743f by Philipp Hörist at 2018-07-05T18:14:36+02:00 Fix typo - - - - - 1 changed file: - gajim/common/modules/user_tune.py Changes: = gajim/common/modules/user_tune.py

[Git][gajim/gajim][master] 3 commits: Add message handlers for AUTH and ROSTERX

2018-07-05 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 503ee35b by Philipp Hörist at 2018-07-05T21:09:55+02:00 Add message handlers for AUTH and ROSTERX - - - - - 51e85f14 by Philipp Hörist at 2018-07-05T21:41:28+02:00 Remove unused code - - - - - a1e1e56d by Philipp Hörist at 2018

[Git][gajim/gajim][master] Raise NodeProcessed after processing ROSTERX

2018-07-05 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 0a6b2126 by Philipp Hörist at 2018-07-05T23:55:09+02:00 Raise NodeProcessed after processing ROSTERX - - - - - 1 changed file: - gajim/common/modules/roster_item_exchange.py Changes

[Git][gajim/python-nbxmpp][master] Add XEP-0084 namespaces

2018-07-06 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / python-nbxmpp Commits: e2ab1ecf by Philipp Hörist at 2018-07-06T19:18:20+02:00 Add XEP-0084 namespaces - - - - - 1 changed file: - nbxmpp/protocol.py Changes: = nbxmpp/protocol.py

[Git][gajim/gajim][master] Use open JoinGroupchat Dialog when browsing MUCs

2018-07-06 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 63a27ace by Philipp Hörist at 2018-07-06T21:43:53+02:00 Use open JoinGroupchat Dialog when browsing MUCs - - - - - 2 changed files: - gajim/common/app.py - gajim/disco.py Changes: = gajim

[Git][gajim/gajim][master] Call JoinGroupchat Dialog with account

2018-07-06 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 15bcd80e by Philipp Hörist at 2018-07-06T21:56:17+02:00 Call JoinGroupchat Dialog with account - - - - - 1 changed file: - gajim/roster_window.py Changes: = gajim/roster_window.py

[Git][gajim/gajim][master] Pass account when clicking on xmpp:?join link

2018-07-06 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: a5b17a87 by Philipp Hörist at 2018-07-06T22:17:05+02:00 Pass account when clicking on xmpp:?join link - - - - - 1 changed file: - gajim/conversation_textview.py Changes: = gajim

[Git][gajim/gajim][master] Fix regression from 8b800f46

2018-07-06 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 1e9fb205 by Philipp Hörist at 2018-07-06T23:54:29+02:00 Fix regression from 8b800f46 - - - - - 1 changed file: - gajim/common/modules/vcard_avatars.py Changes: = gajim/common/modules

[Git][gajim/gajim][master] Flatpak: remove plugin dependencies, they are provided by extensions

2018-07-06 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / gajim Commits: 76403d74 by André Apitzsch at 2018-07-07T00:12:30+02:00 Flatpak: remove plugin dependencies, they are provided by extensions - - - - - 1 changed file: - org.gajim.Gajim.json Changes

[Git][gajim/python-nbxmpp][master] Add stanza received/sent event

2018-07-07 Thread Philipp Hörist
Philipp Hörist pushed to branch master at gajim / python-nbxmpp Commits: d022a925 by Philipp Hörist at 2018-07-07T18:19:36+02:00 Add stanza received/sent event We only had a data received/sent event which was enough for a long time because servers used one tcp packet per stanza. Now servers

<    2   3   4   5   6   7   8   9   10   11   >