aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix crash on NS_URI call when own server has no MAM; drop broken mam:1 "support"fiaxh2023-04-236-50/+37
| | | | fixes #1405
* Fix empty alias being handled different than noneMarvin W2023-04-221-0/+1
|
* Fix call window stylingfiaxh2023-04-222-9/+2
|
* Fix Flatpak pipewire socket accessMarvin W2023-04-221-1/+1
|
* Fix call window controlls hidingfiaxh2023-04-221-3/+19
|
* Fix video for cameras with rotated imageMarvin W2023-04-224-15/+122
|
* Build: Adjust to never build with libsignal-protocol-cMarvin W2023-04-225-105/+6
|
* Fix GitHub CI build-flatpakMarvin W2023-04-222-2/+4
|
* Add Github CI job for FlatpakSonny Piers2023-04-211-0/+12
|
* Add Flatpak manifestSonny Piers2023-04-211-0/+75
|
* Always export symbols to fix startup on BSDsKlemens Nanni2023-03-241-0/+1
| | | | | | | | | | | | | | | | | | ``` $ dino (dino:38515): Gtk-ERROR **: 15:38:38.538: failed to add UI from resource /im/dino/Dino/unified_main_content.ui: .:26:1 Invalid object type 'DinoUiConversationSelector' Trace/BPT trap (core dumped) ``` This works on Linux because CMake itself links with `-rdynamic` by default as per its `Modules/Platform/Linux-*.cmake`. OpenBSD carries this as local patch, FreeBSD links with `--export-dynamics`. Just linking with `-rdynamic` also fixes it on OpenBSD, as expected. https://cmake.org/cmake/help/latest/prop_tgt/ENABLE_EXPORTS.html Fix #438.
* Add CI for the meson buildhrxi2023-03-241-0/+13
|
* First steps of meson supporthrxi2023-03-2411-1/+486
| | | | | | | Basic configuration of qlite, xmpp-vala, the Dino library and the Dino application are supported. There's no support for the plugins. This e.g. enables using the Vala language server.
* Make members of `Plugins.Registry` public instead of internalhrxi2023-03-241-8/+8
| | | | They are being used from outside the library.
* Fix images from another client in our account not being displayed right awayfiaxh2023-03-232-5/+14
|
* Check sender of bookmark:1 updatesMarvin W2023-03-231-0/+10
|
* Bind soup session lifetime to File provider/sender lifetimeMarvin W2023-03-222-6/+6
| | | | Required since libsoup 3.4. Fixes #1395
* Fix a crash if a message subnode is not found in a carbonBohdan Horbeshko2023-03-211-0/+4
| | | | Fixes #1392
* FreeDesktopNotifier: Set notification categoriesSebastian Krzyszkowiak2023-03-211-0/+6
| | | | | This provides notifications servers some context on how to handle the notification.
* Remove gspellMichael Vetter2023-03-212-15/+1
| | | | | | | | 7e7dcedaf ported from GTK3 to GTK4. It also removed gspell from main/CMakeLists.txt. I assume that gspell is not needed anymore and we can thus remove the requirement from the CI and the cmake file as well.
* data: Set StartupNotify to true in .desktop fileSebastian Krzyszkowiak2023-03-211-1/+1
| | | | | | GTK handles startup notifications, so advertise it in desktop file. This allows splash screens and other startup indications in DEs to work.
* Improve database performance while reconnecting and syncingMarvin W2023-03-212-1/+20
| | | | Also move some tasks to low priority idle queue so they won't block UI updates
* Improve history syncMarvin W2023-03-212-55/+56
| | | | | | | | | | - Ensure we fully fetch desired history if possible (previously, duplicates from offline message queue could hinder MAM sync) - Early drop illegal MAM messages so they don't pile up in the pending queue waiting for their query to end (which it never will if they were not requested in first place). Fixes #1386
* Fix C binding for gst_video_frame_get_dataMarvin W2023-03-201-0/+1
| | | | Fixes #1267
* Add missing since to DOAPMarvin W2023-03-202-0/+18
|
* DOAP: Add first supported version for more XEPsMarvin W2023-03-072-2/+100
|
* Update XEPs in DOAPMarvin W2023-03-062-2/+98
| | | | Fixes #1376
* New Avatar UIMarvin W2023-03-0533-645/+694
|
* Implement XEP-0392: Consistent Color GenerationMarvin W2023-03-056-11/+515
|
* Consider stream readable when EOS is reached.Marvin W2023-03-021-1/+1
| | | | Fixes #1373
* Fix critical warnings after DTLS-SRTP calls without OMEMO verificationMarvin W2023-03-021-1/+1
| | | | libdino-CRITICAL **: dino_plugins_encryption_list_entry_get_encryption_icon_name: assertion 'self != NULL' failed
* Fix typing notifications in groupchatsMarvin W2023-03-022-18/+7
|
* Fix some memory leaksfiaxh2023-02-276-53/+143
|
* Stop regenerating message menu buttonsfiaxh2023-02-164-33/+51
| | | | mitigates #1343
* Clear chat input after /commandfiaxh2023-02-101-7/+8
| | | | fixes #1359
* Remove spell check settingfiaxh2023-02-094-96/+2
| | | | As there is currently no spell check support for GTK4
* Make the symbolic app icon squarefiaxh2023-02-091-4/+4
|
* Settings: Connect to Switch.notify-active instead of to activatefiaxh2023-02-091-5/+5
| | | | As per the documentation of the activate signal "Applications should never connect to this signal, but use the notify:active signal." https://valadoc.org/gtk+-3.0/Gtk.Switch.activate.html
* menu_app: Move preferences to last groupChristopher Davis2023-02-091-2/+2
| | | | | | Per https://developer.gnome.org/hig/patterns/controls/menus.html#standard-primary-menu-items, preferences should be at the top of the last group in the menu.
* menu_app: Rename Settings to PreferencesChristopher Davis2023-02-091-1/+1
| | | | The standard name in GNOME applications is Preferences.
* settings_dialog: Use AdwPreferencesWindow and AdwActionRowChristopher Davis2023-02-092-65/+80
| | | | | | AdwPreferencesWindow contains a nice API for preferences windows, and AdwActionRow is the widget to use for rows of preferences.
* Prepare for 0.4 releaseMarvin W2023-02-072-5/+6
|
* Update translationsTranslations2023-02-07117-2337/+4198
|
* Don't accept corrections from MUC MAMMarvin W2023-02-071-1/+2
| | | | We don't know if they're from the same user as someone else could have joined with the same nickname after sender left
* Fix various date/time stamps not updated or wrong time zoneMarvin W2023-02-073-13/+29
|
* Fix some form entries not updating properlyMarvin W2023-02-075-30/+16
|
* Show "Me" instead of bare jid when no local alias is setMarvin W2023-02-072-9/+2
|
* Improve history sync under loadMarvin W2023-02-074-41/+102
|
* Fix label attributes updated with delayMarvin W2023-02-071-16/+17
|
* Deduplicate messages before storing in databaseMarvin W2023-02-071-66/+70
|