Gajim - 2023-07-30


  1. aquatarkus

    why

  2. Novice8

    What I wonder is how you get your friends to use XMPP. My friends don't anything they haven't heard of.

  3. Novice8

    (I just entered something, and it disappeared. This is a test to see whether that happens again.)

  4. aquatarkus

    ^ this happened to me when quoting longer messages a bunch of times today

  5. aquatarkus

    this happened to me just now ^

  6. aquatarkus

    test

  7. kurion

    I could access the status message with:

  8. kurion

    I could access the status message with: ``` lst = contact.iter_resources() for l in lst: print(f'{l} is {l.is_available} and has status: {l.status}') ```

  9. kurion

    I could access the status message with the following code inside `start_chat.ContactRow`: ``` lst = contact.iter_resources() for l in lst: print(f'{l} is {l.is_available} and has status: {l.status}') ```

  10. kurion

    but I couldn't find how to access the presence state (online, offline, do not disturb)

  11. kurion

    but I couldn't find how to access the presence state (online, offline, do not disturb) as str

  12. kurion

    finally found it with `contact.show` property.]

  13. kurion

    is there any convenience converter for PresenceShow variables (I guess they are enums)? like PresenceShow.XA -> 'Not Available'

  14. lovetox

    from gajim.common.helpers import get_uf_show

  15. bot

    André pushed 1 commit to branch _refs/heads/master_ of _gajim_ < https://dev.gajim.org/gajim/gajim >: *1faa0bac* < https://dev.gajim.org/gajim/gajim/-/commit/1faa0bac55f69048b2152ce8e39c2acb78348170 > chore: Update flatpak dependencies

  16. bot

    Philipp Hörist pushed 1 commit to branch _refs/heads/master_ of _gajim_ < https://dev.gajim.org/gajim/gajim >: *27aee3e3* < https://dev.gajim.org/gajim/gajim/-/commit/27aee3e37389569cbbd5dd32c3cd42462881189e > other: Avoid automatic line breaks by update_flatpak_manifest This is necessary because of changes introduced with ruamel-yaml 0.17.22. See https://sourceforge.net/p/ruamel-yaml/tickets/427/