aboutsummaryrefslogtreecommitdiff
path: root/main/src/ui/util/helper.vala
Commit message (Collapse)AuthorAgeFilesLines
* Port from GTK3 to GTK4fiaxh2022-07-271-22/+23
|
* Fix quote formating to not (partially) expect a space after >fiaxh2022-02-141-1/+1
|
* Fix quote styling occurring in the middle of a linefiaxh2022-02-071-13/+13
| | | | fixup 454c00a, 795af2d, 4e9e09a
* Apply message quote style prior to urlsfiaxh2022-02-041-15/+18
| | | | fixup 795af2d, 4e9e09a
* Stop using opacity for text due to side-effectsfiaxh2022-01-231-13/+23
| | | | | Fixes #1178 Due to https://gitlab.gnome.org/GNOME/gtk/-/issues/2957
* Apply message quote style prior to bold/italic stylefiaxh2022-01-111-13/+12
| | | | Quotes apply to the whole line. Having a bold part in that line results in the quote styling only extending up to the bold part.
* Use opacity for "pending" and "edited" hintsfiaxh2022-01-041-7/+0
| | | | Getting the dim-label color doesn't work without actually rendering it
* Format quotes as preformatted text (#1111)Xavi922021-12-301-0/+13
|
* Display message delivery error, color text using theme colorsfiaxh2021-08-171-3/+27
| | | | fixes #672
* Use opacity instead of hard coded color for formatting chars (#1000)minils2021-08-141-2/+2
|
* Fix warningsfiaxh2021-04-111-3/+3
|
* Add UI for audio/video callsfiaxh2021-03-211-0/+9
|
* Add different formating with less contrast for markup strings like *,_,~ and ↵minils2021-02-171-1/+3
| | | | `. (#883)
* Refactor Notifications, add freedesktop backendfiaxh2020-11-201-76/+18
| | | | fixes #707
* Fix runtime critical when room has no namefiaxh2020-10-291-1/+1
|
* Fix some compiler warningsfiaxh2020-10-271-1/+1
|
* Remove code block formatingfiaxh2020-10-111-20/+0
|
* Fix message duplication in MUC PMsfiaxh2020-09-071-6/+15
|
* Some locales need more than 2 chars for AM/PM, make the buffer a bit largerMarvin W2020-07-081-1/+1
|
* Use strftime() instead DateTime.format(), fixes #875Marvin W2020-07-081-1/+2
|
* Do not use GNOME specific setting for 24 hoursMarvin W2020-06-231-4/+6
|
* Fix rare issue with incorrect link parsingMarvin W2020-04-221-2/+3
|
* Add file upload previewfiaxh2020-04-221-1/+1
| | | | fixes #756
* Fix message markup parsing for single charactersfiaxh2020-04-031-1/+1
|
* Work-around use after freeMarvin W2020-04-011-1/+1
| | | | Upstream: https://gitlab.gnome.org/GNOME/vala/-/issues/751
* Properly handle variation selector after emoji (even if useless)Marvin W2020-03-141-1/+9
|
* Improve code block regexfiaxh2020-02-211-15/+18
|
* Add support for strikethrough stylingRoberto Santalla2020-02-211-2/+2
|
* Format fenced code blocksRoberto Santalla2020-02-211-0/+18
|
* Add more non-trailing chars for urlsMarvin W2020-01-151-1/+1
|
* Correctly display names in groupchat pmsMarvin W2020-01-091-13/+14
| | | | Also show "Me" when no local alias is set instead of JID
* Another set of changes to URL detectionMarvin W2020-01-091-34/+43
|
* URL linker: count open/close parens, simplify regexMarvin W2019-12-291-1/+37
|
* Don't allow newlines in URLs, also clean up on http file transfer detectionMarvin W2019-12-261-3/+10
|
* Improve on URI detectionMarvin W2019-12-251-4/+7
|
* Properly check Jids everywhereMarvin W2019-12-231-3/+3
|
* Don't attempt DNS SRV lookups in connection fallbackfiaxh2019-11-181-1/+1
|
* Fix segfault in groupchat name generationfiaxh2019-10-231-1/+1
| | | | fixes #635
* Base avatars and names on conversation, not JID.Marvin W2019-10-181-48/+130
| | | | Fixes #598
* Fix some incorrect handling of message stylingMarvin W2019-10-181-4/+4
|
* fixup Fix some warningsfiaxh2019-09-101-0/+8
|
* Fix some warningshrxi2019-09-101-18/+26
| | | | | | Instances of `RegexError` are just asserted as `assert_not_reached` as they cannot really fail except for allocation failure if the given regex is valid.
* Use regex literals, fixes some compiler warningsfiaxh2019-03-141-1/+1
|
* Add non-CSD alternative for more windowsfiaxh2019-03-141-1/+1
|
* Move app menu into window, make conversation details dialog directly ↵fiaxh2019-02-051-0/+4
| | | | accessible, no-CSD option for main window
* Fix display name: Check localpart (return) for nullfiaxh2018-12-291-2/+7
|
* Improve message markup parsingfiaxh2018-12-291-4/+3
|
* Fix compilation with older versions of valacMarvin W2018-12-281-3/+3
|
* Private MUCs w/o name: Display localparts instead of barejids if name is not ↵fiaxh2018-12-281-3/+3
| | | | known
* display groups w/o name by list of membersDaniel Gultsch2018-12-281-1/+16
| | | | | | | | | | | | | For members-only, non-anonymous groups that do not have a name set we now show an automatically generated name that is generated from the list of members (offline, and online). Only the first name (before the first space) is used to keep the generated name short. The term *private room* is coined as a short hand for members only&non-anon group chats. This commit also uses the offline members list instead of the online member list to generate avatar tiles (also only in members-only, non-anon groups.)