Philipp Hörist pushed to branch httpprocess at gajim / gajim


Commits:
63f626e8 by wurstsalat at 2025-09-20T12:03:20+02:00
cfix: Preferences: Don't allow to disable title bar on Windows

- - - - -
99d1eecc by mesonium at 2025-09-27T09:03:34+00:00
fix: Icons: Don’t fail when loading icons

- - - - -
2ebab009 by Philipp Hörist at 2025-09-27T16:55:22+02:00
imprv: Delete more metadata when purging history

- - - - -
0450f874 by Philipp Hörist at 2025-09-28T10:17:14+02:00
cfix: Use fast method to delete all history for a contact

- - - - -
1fd46efa by Philipp Hörist at 2025-09-28T10:39:02+02:00
cfix: Add more test for data deletion and fix deletion order

- - - - -
cf2e365a by Philipp Hörist at 2025-09-28T10:45:03+02:00
ci: Tests: Shutdown database correctly to silence warnings

- - - - -
66bd4148 by Sergey Ponomarev at 2025-09-28T10:56:10+00:00
imprv: DebugConsole: Disable Stream Management by default

- - - - -
4f555c9e by mesonium at 2025-09-30T11:02:29+02:00
fix: Video Thumbnails: Don't seek close to EOS

- - - - -
e1e4464f by Philipp Hörist at 2025-09-30T23:03:32+02:00
chore: Flatpak: Update dependencies

- - - - -
87fba7d9 by Weblate at 2025-09-30T23:04:04+02:00
chore: Update translations

- - - - -
78e58063 by Philipp Hörist at 2025-09-30T23:06:16+02:00
release: 2.3.6

- - - - -
4d0ddb13 by Philipp Hörist at 2025-10-01T17:59:44+02:00
fix: Preferences: Don’t fail to open dialog if connection is PLAIN

Fixes #12471

- - - - -
d530d0c0 by Philipp Hörist at 2025-10-01T20:03:09+02:00
new: Add FileTransferManager

Uses the multiprocessing module for filetransfers

- - - - -
a642600e by Philipp Hörist at 2025-10-01T20:56:01+02:00
refactor: Rewrite Media Preview

- - - - -


107 changed files:

- ChangeLog
- README.md
- data/org.gajim.Gajim.metainfo.xml.in
- flatpak/org.gajim.Gajim.Devel.yaml
- flatpak/org.gajim.Gajim.yaml
- gajim/__init__.py
- + gajim/common/aes.py
- gajim/common/app.py
- gajim/common/application.py
- gajim/common/const.py
- + gajim/common/enum.py
- + gajim/common/file_transfer_manager.py
- gajim/common/helpers.py
- + gajim/common/multiprocess/http.py
- gajim/common/multiprocess/video_thumbnail.py
- gajim/common/preview.py
- gajim/common/regex.py
- gajim/common/setting_values.py
- gajim/common/storage/archive/storage.py
- gajim/common/util/http.py
- gajim/common/util/preview.py
- gajim/common/util/uri.py
- + gajim/data/gui/preview/file_control_buttons.ui
- + gajim/data/gui/preview/geo.ui
- + gajim/data/gui/preview/image.ui
- + gajim/data/gui/preview/loading_box.ui
- gajim/data/gui/preview.ui → gajim/data/gui/preview/preview.ui
- gajim/data/style/gajim.css
- gajim/gtk/application.py
- gajim/gtk/chat_list_row.py
- gajim/gtk/chat_stack.py
- gajim/gtk/const.py
- gajim/gtk/conversation/rows/message.py
- gajim/gtk/debug_console.py
- gajim/gtk/file_transfer_selector.py
- gajim/gtk/main.py
- gajim/gtk/menus.py
- gajim/gtk/preference/account.py
- gajim/gtk/preference/app.py
- − gajim/gtk/preview.py
- + gajim/gtk/preview/file_control_buttons.py
- + gajim/gtk/preview/geo.py
- + gajim/gtk/preview/image.py
- + gajim/gtk/preview/misc.py
- + gajim/gtk/preview/preview.py
- gajim/gtk/referenced_message.py
- gajim/gtk/util/icons.py
- po/ar.po
- po/be.po
- po/[email protected]
- po/bg.po
- po/br.po
- po/ca.po
- po/cs.po
- po/da.po
- po/de.po
- po/el.po
- po/en_GB.po
- po/eo.po
- po/es.po
- po/eu.po
- po/fr.po
- po/gajim.pot
- po/gl.po
- po/he.po
- po/hr.po
- po/hu.po
- po/ie.po
- po/it.po
- po/ja.po
- po/kk.po
- po/ko.po
- po/lt.po
- po/nb_NO.po
- po/nl.po
- po/pl.po
- po/pt.po
- po/pt_BR.po
- po/ro.po
- po/ru.po
- po/sk.po
- po/sr.po
- po/[email protected]
- po/sv.po
- po/tr.po
- po/uk.po
- po/zh_CN.po
- po/zh_TW.po
- pyproject.toml
- test/database/test_corrections.py
- test/database/test_displayed_markers.py
- test/database/test_encryption.py
- test/database/test_errors.py
- test/database/test_events.py
- test/database/test_filetransfers.py
- test/database/test_foreign_keys.py
- test/database/test_messages.py
- test/database/test_methods.py
- test/database/test_moderations.py
- test/database/test_occupants.py
- test/database/test_reactions.py
- test/database/test_receipts.py
- test/database/test_retractions.py
- test/database/test_security_labels.py
- test/database/test_threads.py
- test/gtk/ui_test_preview.py
- win/_base.sh


The diff was not included because it is too large.


View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/compare/c4c9f42ce6212b75404f76aa7a8d3959128a229f...a642600eddd8f8ef4644ad240b1f1cb0c8bc1c49

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/compare/c4c9f42ce6212b75404f76aa7a8d3959128a229f...a642600eddd8f8ef4644ad240b1f1cb0c8bc1c49
You're receiving this email because of your account on dev.gajim.org.


_______________________________________________
Commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to