- May 23, 2018
-
-
-
Philipp Hörist authored
Fixes #9138
-
- May 22, 2018
-
-
- Port pybonjour code from gajim_0.16 branch - Fix some other small things that broke zeroconf
-
André authored
cleaning /share/locale/ from one component can affect later components, i.e. locales are also removed there
-
- May 21, 2018
-
-
Philipp Hörist authored
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
-
Philipp Hörist authored
-
Philipp Hörist authored
-
Philipp Hörist authored
-
Philipp Hörist authored
Fixes #9110
-
Philipp Hörist authored
-
Philipp Hörist authored
-
Philipp Hörist authored
Presence without vcard hash is not invalid
-
Philipp Hörist authored
-
Philipp Hörist authored
On Linux ctypes has not attr windll, move it into the __init__() so it does not get evaluatet on module import
-
Philipp Hörist authored
- Get rid of sleepy.py, handle everything in idle.py - Introduce one Monitor class that handles everything
-
- May 20, 2018
-
-
* Removes use of most global variables * Adds some some logging * Removes unused close() method for Xss
-
Philipp Hörist authored
-
-
-
- May 19, 2018
-
-
Philipp Hörist authored
-
Philipp Hörist authored
Setting mimetypes forces non-native dialogs
-
Philipp Hörist authored
- Publish avatars with a size of 200x200 - Add AvatarSize.PUBLISH so we can easily change it in the future - Dont upscale small avatars on publish - Use surfaces for displaying the avatar in ProfileWindow and VcardWindow because this scales correctly on HiDPI screens
-
-
André authored
-
Philipp Hörist authored
-
Philipp Hörist authored
-
Philipp Hörist authored
-
Philipp Hörist authored
-
Philipp Hörist authored
-
Philipp Hörist authored
Fixes #9125
-
- May 18, 2018
-
-
Philipp Hörist authored
nbxmpp deletes the roster object on disconnect. Init the roster from db again on resume. Fixes #8296
-
- May 17, 2018
-
-
Philipp Hörist authored
its not used anymore
-
Philipp Hörist authored
No need to use SystemRandom() here, as this is not needed for security purposes
-
Philipp Hörist authored
The reason for signal.signal(signal.SIGPIPE, signal.SIG_DFL) Python ignores SIGPIPE by default ( signal(SIGPIPE, SIG_IGN) ) Write on a socket return then an error 32 EPIPE, which naturally turns into an exception. signal.SIG_DFL restores normal UNIX behavior
-
Philipp Hörist authored
We dont need this module anymore
-
Philipp Hörist authored
We already determine LANG in initialize_lang() getdefaultlocale() takes env var LANG into consideration
-
Philipp Hörist authored
We default to 'en' for LANG if LC_ALL=C is set
-
Philipp Hörist authored
-
Philipp Hörist authored
The attributes were removed in 8e09fd92
-
- May 16, 2018
-
-
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. Addresses #9120
-