Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

poezio-doc-0.14-2.2 RPM for noarch

From OpenSuSE Tumbleweed for noarch

Name: poezio-doc Distribution: openSUSE Tumbleweed
Version: 0.14 Vendor: openSUSE
Release: 2.2 Build date: Wed Feb 21 08:41:23 2024
Group: Productivity/Networking/Other Build host: reproducible
Size: 528170 Source RPM: poezio-0.14-2.2.src.rpm
Packager: https://bugs.opensuse.org
Url: https://poez.io/en/
Summary: Documentation for poezio
Documentation generated by the poezio package, but split out due to size.

Provides

Requires

License

MIT

Changelog

* Wed Feb 21 2024 Michael Vetter <mvetter@suse.com>
  - Use %autosetup macro. Allows to eliminate the usage of deprecated
    %patchN.
  - Update source URL
* Tue Dec 06 2022 Michael Vetter <mvetter@suse.com>
  - Update to 0.14:
    Configuration changes:
    * ADDED: `mam_sync`, `mam_sync_limit`.
    * ADDED: `autocolor_tab_names`.
    * CHANGED: `ca_cert_path` is commented out. Poezio will attempt to guess
      common CA bundle paths. The option can be used to overwrite this behaviour.
    * REMOVED: `force_remote_bookmarks`.
    * REMOVED: options related to activity, mood, gaming, tune:
      `enable_user_activity`, `enable_user_mood`, `enable_user_gaming`,
      `enable_user_tune`, `display_activity_notifications`,
      `display_mood_notifications`, `display_gaming_notifications`,
      `display_tune_notifications`.
    * REMOVED: `deterministic_muc_colors`.
    Changes:
    * DEPRECATION: /leave is deprecated. Use /part or /close instead.
    * REMOVED: rich presence (activity, mood, gaming, tune) from poezio, alongside
      with configuration options and commands: /activity, /mood,
      and /gaming. These are moved to the new user_extras plugin.
    * REMOVED: non-deterministic nick colors in MUC.
    * REMOVED: XEP-0319 support removed for privacy and performance.
    * REMOVED: Support for pypy3 with the removal of poopt.py
    * ADDED: New /request_voice command for moderated rooms
    * ADDED: /join: support using an XMPP URI (xmpp:...?join)
    * ADDED: /destroy_room: new optional reason and altroom arguments
    * ADDED: Newlines now considered as word separator in input manipulation (#3411)
    * ADDED: Colored tab names or number using Consistent Color Generation behind
      `autocolor_tab_names` (thanks jonas!)
    * Stop highlighting on MUC history messages just because they're delayed
    * Stop displaying the traceback in debug log when /xhtml fails
    * Ensure launch.sh can be use outside the repository (Thanks kaliko)
    * Detect `/set option = value` pattern and do as it `/set option value` was
      called. (#3517)
    * Newlines taken into account on completion (#3385)
    * Allow resizing certificate confirmation window (#3371)
    * Make theming more configurable around nicks
    * Log MUC <destroy/> payload in the information buffer
    * impromptu: wait for room subject before configuring and inviting
    * Impromptu: rooms now have pronouceable short names
    * impromptu: ensure a room is empty before joining
    * impromptu: now uses mediated invites
    * Fetch from MAM by default when use_log is False.
    * xhtml: Add a new line after a blockquote
    Bug fixes:
    * Ensure bookmark is present before removing it in /close.
    * Ensure bookmarks are saved correctly on method config change, and on /close.
    * Ensure nick is added to bookmark when specified
    * Do not crash on bookmark without a nickname (Thanks Ge0rG)
    * Ensure the correct tab is bookmarked on /bookmark and /join
    * /bookmark: treat empty nick as no nick to avoid failing on empty resource
    * Fix closing a tab not in bookmarks
    * Disco barejid instead of domains on sent carbons. Follow-up of 5e40437.
    * Only use JID internally when handling affiliations. Add nick if present.  (#3536)
    * /last_activity: prevent traceback
    * Fix bad error handling when checking bookmarks storage
    * `/join / password` works again
    * Report available presence in tabs correctly
    * /display_correction: now reports the correct time for private messages (#3532)
    * Fix composing indicators not showing (#3527)
    * Fix pasting text in data forms and bookmarkstab (#3519)
    * Fix /me logging (#3432)
    * Retrieve nick colors from the correct section
    * Do not scroll right by default in dataforms/bookmark text
    * Hack around the time limit for topic messages
    * Ensure MUC-PM logging filenames are generated as expected (Thanks Ge0rG, southerntofu)
    * Fix poezio displaying many times the same participant in the user list.
    * Fix default dataform field handling (#3554)
    * Fix MUCListTab not joining selected MUCs (#3553)
    * Fix /color completion (Thanks eijebong)
    * /info: Don't display comma before status message if not available
    Plugins:
    * ADDED: untrackme plugin. based on remove_get_trackers.
    * ADDED: user_extras plugin. /activity, /mood and /gaming moved from core.
    * ADDED: sticker plugin.
    * DEPRECATED: remove_get_trackers
    * REMOVED: /irc_login from the irc plugin.
    * Reorder: Prevent GapTabs from being serialized and ignore when serialized as
      they're recreated automatically.
    * Code: prevent traceback when not enough arguments
    * Link: Add support for aesgcm, gemini and gopher URIs
    * Contact: iterate all data forms (Thanks Ge0rG)
    * Fix plugins (embed, lastlog, otr, quote, time_marker) to use poezio.ui.types
    * Disco: Added error handling
    * IRC: Fix the plugin to work with the various refactors, and use
      irc.jabberfr.org as a default gateway
    API:
    * BREAKING: E2EEPlugin.decrypt's `tab` parameter is now of type
      Optional[ChatTab] instead of ChatTab.
    * BREAKING: E2EEPlugin.supported_tab_types is now required
    * BREAKING: decrypt method is now async
    * E2EEPlugin decrypts encrypted messages even when they have no body.
    * E2EEPlugin lets through already encrypted messages without giving them
      to the user lib (poezio-omemo, for example).
    * Correctly pass realjid to decrypt call for MUC messages
    * /<encryption_name>_fingerprint command is added. Plugins can implement
      `get_fingerprints` and `format_fingerprint` for it to return a (formatted)
      value.
    Under the hood:
    * Moved development from 'master' to 'main' branch
    * Lots of type hints added (decorators, multiuserchat, shlex, common, muctab,
      etc.) fixing many bugs
    * Lots of event handlers and calls are now async in poezio. Many callbacks removed.
    * Lots of refactoring
    * Performance improvements:
    - Trim all messages by 24 bytes on 64-bit systems
    - Reduce log parsing by a lot
    * No more safeJID calls. (#3457)
    * Rework some features to use slixmpp's API instead of custom poezio code
      (i.e., muc's set_subject, set_role, set_affiliation, destroy_room,
      cancel_config, set_room_config, and most events)
    * Split commands from Core
    * Require typing_extensions package for python
    * Require setuptools package explicitly because of pkg_resources' import
    * Replace asyncio.ensure_future with asyncio.create_task
  - Update URL from http://poezio.eu/en/ to https://poez.io/en/
* Wed Dec 08 2021 Ferdinand Thiessen <rpm@fthiessen.de>
  - Install upstream desktop file with logo to fix build on Leap
* Mon Aug 17 2020 Dirk Mueller <dmueller@suse.com>
  - update to 0.13.1:
    - Contacts won’t be seen playing games or music when they actually stop doing
      so.
    - /leave now toggles off the autojoin flag instead of removing the bookmark.
    - Only add auotjoin on new bookmarks for synchronise_open_rooms on /join
    - /affiliation displays things in the info win instead of directly in the room,
      and additionally displays which room it refers to.
    - List the correct required versions for package maintainers.
    - Fix the AppStream manifest to get Flathub to accept it.
    - Add a warning when the terminal doesn’t support 256color mode.
    - Display our own nick properly in messages received from MAM.
    - Only send an unavailable presence on closing a room if we are joined.
    - Don’t display the current date for history messages received today.
    - Fix marquee and dice plugin to use newer Last Message Correction format.
    - Bookmarks tab properly displays bookmarks method (local/remote) and allows
      to switch between them again.
    - Updated manpages and added manpages built from the doc in the setup process.
      Packagers need to run setup.py build_man to have them built.
* Tue Mar 24 2020 Tomas Cech <sleep_walker@opensuse.org>
  - add python3-pyasn1-modules as run-time dependency (fixes bnc#1167427)
  - bump to 0.12.1 (fixes bnc#1167427)
    - Fix compatibility with the Python 3.5 in debian stable
    - Require Python 3.5, to add support for Python 3.7, use proper async
      functions, use typing, italics formatting, FIXME
    - Added support for XEP-0392 (Consistent Color Generation)
    - Added support for XEP-0153 (vCard-Based Avatars) and XEP-0084 (User
      Avatar) in the roster tab
    - Added support for XEP-0363 (HTTP File Upload) for easy file transfer,
      in the upload plugin with /upload
    - Added support for XEP-0066 (Out of Band Data) for Conversations
      compatibility when sharing images, in the embed plugin with /embed
    - Removed support for XEP-0296 (Best Practices for Resource Locking),
      to use all features available no matter what our contact’s current
      clients support
    - Check for usable Unicode support on start
    - Generate a device id on first start, and use it for our resource
    - Display the public key hash instead of the certificate’s
    - Handle carbons properly for private messages in rooms
    - /bookmarks can now be used to rename tabs as you want
    - Remove unexpected command completion based on command prefix
    - Add an irssi theme
    - Add a code plugin, which requires pygments
    - Fix resource duplication on reconnect
    - Misc fixes and improvements
* Sun Mar 04 2018 jengelh@inai.de
  - Remove filler wording from description.
* Sun Mar 04 2018 sleep_walker@opensuse.org
  - fix package license and add license file to the package
  - run through spec cleaner
  - add poezio-remove_shebang.patch
  - add README.rst to the package
* Thu Feb 08 2018 sleep_walker@opensuse.org
  - bump to 0.11
    see CHANGELOG for full list of changes (which happened over 7 years)
  - requires python3-aiodns now, requires python-slixmpp instead of
    python-sleakxmpp
  - split documentation
* Wed Feb 02 2011 pascal.bleser@opensuse.org
  - initial version (0.7.1)

Files

/usr/share/doc/packages/poezio
/usr/share/doc/packages/poezio-doc
/usr/share/doc/packages/poezio-doc/README.rst
/usr/share/doc/packages/poezio/source
/usr/share/doc/packages/poezio/source/commands.rst
/usr/share/doc/packages/poezio/source/conf.py
/usr/share/doc/packages/poezio/source/configuration.rst
/usr/share/doc/packages/poezio/source/dev
/usr/share/doc/packages/poezio/source/dev/common.rst
/usr/share/doc/packages/poezio/source/dev/contributing.rst
/usr/share/doc/packages/poezio/source/dev/e2ee.rst
/usr/share/doc/packages/poezio/source/dev/events.rst
/usr/share/doc/packages/poezio/source/dev/index.rst
/usr/share/doc/packages/poezio/source/dev/overview.rst
/usr/share/doc/packages/poezio/source/dev/plugin.rst
/usr/share/doc/packages/poezio/source/dev/slix.rst
/usr/share/doc/packages/poezio/source/dev/theming.rst
/usr/share/doc/packages/poezio/source/dev/timed_events.rst
/usr/share/doc/packages/poezio/source/dev/xep.rst
/usr/share/doc/packages/poezio/source/images
/usr/share/doc/packages/poezio/source/images/bookmark_tab.png
/usr/share/doc/packages/poezio/source/images/cert_warning.png
/usr/share/doc/packages/poezio/source/images/conversation.png
/usr/share/doc/packages/poezio/source/images/correct.png
/usr/share/doc/packages/poezio/source/images/data_forms.png
/usr/share/doc/packages/poezio/source/images/layers.png
/usr/share/doc/packages/poezio/source/images/list.png
/usr/share/doc/packages/poezio/source/images/muc.png
/usr/share/doc/packages/poezio/source/images/pep.png
/usr/share/doc/packages/poezio/source/images/pep_infos.png
/usr/share/doc/packages/poezio/source/images/private.png
/usr/share/doc/packages/poezio/source/images/roster.png
/usr/share/doc/packages/poezio/source/images/simple_notify_example.png
/usr/share/doc/packages/poezio/source/images/tab_bar.png
/usr/share/doc/packages/poezio/source/images/theme_256_colors.png
/usr/share/doc/packages/poezio/source/images/vert_tabs.png
/usr/share/doc/packages/poezio/source/images/xep_0070.png
/usr/share/doc/packages/poezio/source/index.rst
/usr/share/doc/packages/poezio/source/install.rst
/usr/share/doc/packages/poezio/source/keys.rst
/usr/share/doc/packages/poezio/source/misc
/usr/share/doc/packages/poezio/source/misc/carbons.rst
/usr/share/doc/packages/poezio/source/misc/client_certs.rst
/usr/share/doc/packages/poezio/source/misc/correct.rst
/usr/share/doc/packages/poezio/source/misc/index.rst
/usr/share/doc/packages/poezio/source/misc/personal_events.rst
/usr/share/doc/packages/poezio/source/misc/pyenv.rst
/usr/share/doc/packages/poezio/source/misc/separate.rst
/usr/share/doc/packages/poezio/source/misc/ssl.rst
/usr/share/doc/packages/poezio/source/misc/troubleshooting.rst
/usr/share/doc/packages/poezio/source/plugins
/usr/share/doc/packages/poezio/source/plugins/admin.rst
/usr/share/doc/packages/poezio/source/plugins/alias.rst
/usr/share/doc/packages/poezio/source/plugins/amsg.rst
/usr/share/doc/packages/poezio/source/plugins/autocorrect.rst
/usr/share/doc/packages/poezio/source/plugins/change_title.rst
/usr/share/doc/packages/poezio/source/plugins/close_all.rst
/usr/share/doc/packages/poezio/source/plugins/contact.rst
/usr/share/doc/packages/poezio/source/plugins/csi.rst
/usr/share/doc/packages/poezio/source/plugins/cyber.rst
/usr/share/doc/packages/poezio/source/plugins/day_change.rst
/usr/share/doc/packages/poezio/source/plugins/dice.rst
/usr/share/doc/packages/poezio/source/plugins/disco.rst
/usr/share/doc/packages/poezio/source/plugins/display_corrections.rst
/usr/share/doc/packages/poezio/source/plugins/double.rst
/usr/share/doc/packages/poezio/source/plugins/embed.rst
/usr/share/doc/packages/poezio/source/plugins/exec.rst
/usr/share/doc/packages/poezio/source/plugins/figlet.rst
/usr/share/doc/packages/poezio/source/plugins/index.rst
/usr/share/doc/packages/poezio/source/plugins/iq_show.rst
/usr/share/doc/packages/poezio/source/plugins/irc.rst
/usr/share/doc/packages/poezio/source/plugins/link.rst
/usr/share/doc/packages/poezio/source/plugins/marquee.rst
/usr/share/doc/packages/poezio/source/plugins/mpd_client.rst
/usr/share/doc/packages/poezio/source/plugins/otr.rst
/usr/share/doc/packages/poezio/source/plugins/pacokick.rst
/usr/share/doc/packages/poezio/source/plugins/ping.rst
/usr/share/doc/packages/poezio/source/plugins/pipe_cmd.rst
/usr/share/doc/packages/poezio/source/plugins/pointpoint.rst
/usr/share/doc/packages/poezio/source/plugins/quote.rst
/usr/share/doc/packages/poezio/source/plugins/rainbow.rst
/usr/share/doc/packages/poezio/source/plugins/regex_admin.rst
/usr/share/doc/packages/poezio/source/plugins/reminder.rst
/usr/share/doc/packages/poezio/source/plugins/reorder.rst
/usr/share/doc/packages/poezio/source/plugins/replace.rst
/usr/share/doc/packages/poezio/source/plugins/revstr.rst
/usr/share/doc/packages/poezio/source/plugins/screen_detach.rst
/usr/share/doc/packages/poezio/source/plugins/send_delayed.rst
/usr/share/doc/packages/poezio/source/plugins/server_part.rst
/usr/share/doc/packages/poezio/source/plugins/shuffle.rst
/usr/share/doc/packages/poezio/source/plugins/simple_notify.rst
/usr/share/doc/packages/poezio/source/plugins/spam.rst
/usr/share/doc/packages/poezio/source/plugins/status.rst
/usr/share/doc/packages/poezio/source/plugins/sticker.rst
/usr/share/doc/packages/poezio/source/plugins/tell.rst
/usr/share/doc/packages/poezio/source/plugins/time_marker.rst
/usr/share/doc/packages/poezio/source/plugins/upload.rst
/usr/share/doc/packages/poezio/source/plugins/uptime.rst
/usr/share/doc/packages/poezio/source/plugins/user_extras.rst
/usr/share/doc/packages/poezio/source/plugins/vcard.rst
/usr/share/doc/packages/poezio/source/quickstart.rst
/usr/share/doc/packages/poezio/source/theme
/usr/share/doc/packages/poezio/source/theme/sphinx_rtd_theme
/usr/share/doc/packages/poezio/source/theme/sphinx_rtd_theme/breadcrumbs.html
/usr/share/doc/packages/poezio/source/theme/sphinx_rtd_theme/footer.html
/usr/share/doc/packages/poezio/source/theme/sphinx_rtd_theme/layout.html
/usr/share/doc/packages/poezio/source/theme/sphinx_rtd_theme/layout_old.html
/usr/share/doc/packages/poezio/source/theme/sphinx_rtd_theme/search.html
/usr/share/doc/packages/poezio/source/theme/sphinx_rtd_theme/searchbox.html
/usr/share/doc/packages/poezio/source/theme/sphinx_rtd_theme/static
/usr/share/doc/packages/poezio/source/theme/sphinx_rtd_theme/static/css
/usr/share/doc/packages/poezio/source/theme/sphinx_rtd_theme/static/css/badge_only.css
/usr/share/doc/packages/poezio/source/theme/sphinx_rtd_theme/static/css/theme.css
/usr/share/doc/packages/poezio/source/theme/sphinx_rtd_theme/static/js
/usr/share/doc/packages/poezio/source/theme/sphinx_rtd_theme/static/js/theme.js
/usr/share/doc/packages/poezio/source/theme/sphinx_rtd_theme/theme.conf
/usr/share/doc/packages/poezio/source/theme/sphinx_rtd_theme/versions.html
/usr/share/doc/packages/poezio/source/theme/static
/usr/share/doc/packages/poezio/source/theme/static/poezio.png
/usr/share/doc/packages/poezio/source/themes.rst
/usr/share/doc/packages/poezio/source/usage.rst


Generated by rpm2html 1.8.1

Fabrice Bellet, Wed May 1 23:23:10 2024