e02de2d579
Update Russian translation
2022-10-31 12:06:29 +00:00
a68eb386d5
I#2094 - itip-formatter: Offer Import for components without attendees
...
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/2094
2022-10-27 12:21:20 +02:00
344e7791b2
I#2096 - Use symbolic icons for high contrast icon themes
...
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/2096
2022-10-27 11:09:07 +02:00
70c17db922
mail-mt: Use GCallback instead of its own type in mail_call_main()
...
It addresses -Wstrict-prototypes warning.
2022-10-26 18:07:28 +02:00
58dfcac3fc
misc: Declare functions with no argument as (void), not ()
...
Not using the type in the function parameter declaration is an "old-style-definition".
Avoid it, thus future build option changes won't stop on it.
2022-10-26 15:47:47 +02:00
dc0971763d
I#2090 - Split sentence in e-rss-preferences.c file
...
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/2090
2022-10-26 13:35:37 +02:00
e79a1c61cd
Update Ukrainian translation
2022-10-21 14:56:46 +00:00
83c99cc4c2
Update Ukrainian translation
2022-10-21 14:51:12 +00:00
3afb66b78d
Update Italian translation
...
(cherry picked from commit d51265fed5 )
2022-10-21 14:07:51 +00:00
1980aca742
Update Swedish translation
...
(cherry picked from commit a0d7f042250dedd28945849bda7c7aa9a1ee5cb3)
2022-10-21 10:32:05 +00:00
99acb37656
itip-utils: Change provided HTML transcript of a replied-to meeting
...
Let the HTML structure be more to what the composer expects, which is
paragraphs as DIV-s, not just a plain text with BR-s.
2022-10-21 11:05:53 +02:00
1e68709a69
EHTMLEditor: Traverse between all editors when looking for the editor name
...
That was a bug in the code, the `if` was meant to be `while`, thus all
the known editors are checked, not only the first, in whatever order
the GHashTable considers the first to be.
2022-10-21 11:02:55 +02:00
a8a5489680
Composer: Correct conversion of TABLE into Plain Text
...
The <TR> is similar to <BR> for the Plain text, thus when reading it
add the new line, if needed.
The WebKit returns correct `\n` in the node's innerText, but using it
as a plain text hides it for the user, thus split the lines and add
them as separate paragraphs.
2022-10-21 10:20:18 +02:00
b48e0303e4
help: Replace to-be-retired mailing list with GNOME Discourse link
...
See https://mail.gnome.org/archives/evolution-list/2022-October/msg00128.html
2022-10-20 20:19:53 +02:00
da1a5865b5
I#2088 - Import/Export RSS feeds from/to OPML file
...
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/2088
2022-10-20 15:42:52 +02:00
fab35683ae
Update German translation
2022-10-20 12:22:25 +00:00
94a97623a4
rss: Correct mnemonic letters in Preferences
...
One widget had been clashing with another. The second had missing
its mnemonic completely.
2022-10-20 11:41:57 +02:00
3817d9bc10
I#2087 - Hide extra separators in Mail and Calendar view toolbars
...
Related to https://gitlab.gnome.org/GNOME/evolution/-/issues/2087
2022-10-20 10:43:56 +02:00
9f488ae848
I#2064 - EShellHeaderBar: Disable subtitle for the header bar
...
Evolution shell header bars never use the subtitle, so it should
be turned off to prevent using unnecessary vertical space.
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/2064
2022-10-19 18:38:28 +02:00
cfbcd0e2e3
I#2087 - Composer: Extra separators shown on the toolbar
...
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/2087
2022-10-19 09:05:40 +02:00
083e9cb567
I#2083 - Enable sandboxing for WebKitGTK 2.38.0+
...
The printing bug had been fixed for WebKitGTK 2.38.0, thus enable
sandboxing for that and later versions.
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/2083
2022-10-19 07:40:19 +02:00
b696a02aef
Update Russian translation
2022-10-17 12:20:48 +00:00
7baf1ac4f1
I#2073 - Calendar: Meeting's Reply-To-All should not use attendee response in Subject
...
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/2073
2022-10-17 10:29:39 +02:00
5f07f6a14f
Update Bulgarian translation
...
(cherry picked from commit dcba354310 )
2022-10-13 16:12:33 +00:00
93fd2541f2
EHTTPRequest: Rearrange free functions and set error on failure
...
Two changes:
a) rearrange free functions - the input stream can access some
underlying libsoup structures, which can be freed together
with the message or the session, thus rather free the objects
in the reverse order than they had been created;
b) the function did not propagate the error on failure, thus make
sure any error is returned in such case.
2022-10-13 12:53:22 +02:00
a1735638bf
EWebView: Make sure an error is set when passing it to webkit_uri_scheme_request_finish_error()
...
In case the content request fails, but does not set the GError,
make sure any error is set, thus the webkit_uri_scheme_request_finish_error()
can work properly.
2022-10-13 12:50:56 +02:00
4a2c2bafaa
Mail: Use lower priority pool for contact photo requests
...
This way a stale requests won't block other important requests, keeping
the GUI responsive in some cases.
2022-10-11 17:12:47 +02:00
f769b0f695
EWebView: Do not use GTask thread pool for content requests
...
GTask thread pool might not be used for particularly long requests,
because it can cause starving for follow up GTask-s. Furthermore,
the EContentRequest is async by its nature, thus benefit from it.
2022-10-11 17:09:58 +02:00
9da6b53a12
Replace e_mail_part_snoop_type() with e_mail_part_guess_mime_type()
...
The former function returned a `const gchar *`, pretending the string
is a static string, while it left the string in its own global memory,
effectively leaking it at the application end. Rather than this, return
non-const 'gchar *' and free the returned text appropriately.
2022-10-10 18:44:10 +02:00
12273ecb44
I#2066 - Contacts: Do not show "(Other)" after Emails in Preview
...
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/2066
2022-10-10 12:10:46 +02:00
2688d2e26f
I#1965 - Mail: Special folder icon not udpated after change
...
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/1965
2022-10-07 12:36:28 +02:00
4617211a8f
I#2011 - backup-restore: Verify backup file integrity after backup
...
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/2011
2022-10-07 10:14:17 +02:00
14d012c83a
I#2063 - Make it possible to disable GOA accounts
...
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/2063
2022-10-07 08:59:34 +02:00
0300697b4e
I#2062 - Limit number of previewed messages on mbox file import
...
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/2062
2022-10-06 17:26:20 +02:00
8a484b26ee
Update Nepali translation
...
(cherry picked from commit 256b42b5cf )
2022-10-06 08:55:11 +00:00
fc8b64b7f0
Update French translation
...
(cherry picked from commit 3dced4fab7 )
2022-10-04 19:31:07 +00:00
99e8a36d76
Fix possible crash under type_ahead_complete_on_timeout_cb()
...
The timeout GSource is not removed on dispose of the name selector
entry, which can cause a crash on the callback invocation.
2022-10-04 16:52:42 +02:00
8aa57f934c
I#2059 - Group Manager: Auto-deselect sources in to be hidden groups
...
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/2059
2022-10-03 10:32:36 +02:00
d7e376309e
Update Georgian translation
2022-10-01 10:09:23 +00:00
ad02dfb0cb
Update Croatian translation
2022-09-30 11:40:18 +00:00
6740ed2fc7
Update Basque translation
...
(cherry picked from commit d7a2ee290e )
2022-09-29 16:54:55 +00:00
7666457907
I#2053 - Contacts: Correct print of multiline text
...
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/2053
2022-09-29 11:49:30 +02:00
eb731ab5a3
publish-calendar: Correct type of a 'port' variable to match GUri's port type
...
GUri uses -1 for 'port not set', but storing such value into an unsigned
variable makes the -1 an out of bounds value.
2022-09-29 10:27:14 +02:00
30790624f6
I#2051 - Mail: Hide print Preview in the menu
...
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/2051
2022-09-29 09:40:41 +02:00
c2b4d5583f
Updated Lithuanian translation
2022-09-27 22:43:27 +03:00
68935eaadd
Update Portuguese translation
...
(cherry picked from commit 486fa4aeea )
2022-09-27 18:44:37 +00:00
c8c45411f0
Update Brazilian Portuguese translation
...
(cherry picked from commit 2abcf8d813 )
2022-09-27 13:19:52 +00:00
f06538db4c
I#2048 - e_rss_preferences_maybe_copy_icon() suggests call of strrchr(NULL, '.')
...
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/2048
2022-09-27 13:58:05 +02:00
00765d556c
I#2047 - Fix possible memory leak in e_table_state_load_from_node()
...
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/2047
2022-09-27 13:48:23 +02:00
04d1f53af3
I#2046 - Remove some unused variables in the code
...
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/2046
2022-09-27 13:41:30 +02:00