From Scratch – GNOME 3.30 Changes TICKETS #11090 AND #11091 PREPARED BY renodr gsettings-desktop-schemas Current Book Version: 3.28.0 New Version: 3.28.1

Major changes in 3.28.1 ======- Set default background image for screen lock to an existing one - Translation updates pygobject3 Current Book Version: 3.28.3 New Version: 3.30.1 3.29.1 - 2018-04-15 ------

* Support for `PyPy `__ and PyPy3. :issue:`180` * : support :class:`cairo.Matrix` conversion. :issue:`16` * Speed up repeated closure creation by caching the closure cache in the argument cache :issue:`103` (:user:`Garrett Regier `\, :user:`Christoph Reiter `) * setup.py: make setuptools/pkg_resources optional. :issue:`186` * setup.py: print installation instructions in case a dependency is missing. :issue:`194` * Remove autotools build system. * overrides: Make :meth:`Gtk.ListStore.insert_before`, :meth:`Gtk.ListStore.insert_after`, :meth:`Gtk.TreeStore.insert_before` and :meth:`Gtk.TreeStore.insert_after` atomic. * Make :class:`GLib.Error` picklable. :issue:`145` * Add basic support for template based widgets through ``Gtk.Template``. :issue:`52` * Various documentation improvements. :mr:`29` (:user:`Dan Yeaw `) * Add PEP518/pyproject.toml file. :mr:`44` (:user:`James Tocknell `) * Avoid truncating value returned from g_value_info_get_value. :mr:`51` (:user:`Tomasz MiÄ…sko `) * Fix typo in BoundSignal disconnect. :mr:`55` (:user:`Vladislav Glinsky `)

3.29.2 - 2018-05-16 ------

* Add a meson build system. :issue:`165` (:user:`Mathieu Duponchelle`) * Gtk.Template: Allow marking children as "internal-child". :mr:`58` * Gio.ListModel: implement most of the mutable sequence protocol. :issue:`115` :mr:`59` * Gio.Settings: implement __iter__. * Gio.Settings: support range types in __setitem__. :issue:`134` * Add overrides for Gio.ListStore.sort and Gio.ListStore.insert_sorted. :issue:`130` * Make Gtk.Widget.freeze_child_notify a context manager. :issue:`45` * OptionParser.parse_args: return leftover arguments. :issue:`200` * Release the GIL when emitting a signal. :mr:`66` (John Bassett ) * Add ActionMap and ActionMap.add_action_entries() to overrides. :issue:`29` :mr:`65` (:user:`yangfl`) * importer: raise ImportError in load_module() and not find_module(). :issue:`213` * Don't wrap GValue in GValue when creating GValueArray. :mr:`66` (Stian Selnes ) * ossig: Don't leak the callbacks in case the event loops are not stopped through SIGINT. :issue:`219` :mr:`72` * Various fixes (Havard Graff ) * Destroy custom GLib.Source instances when they get freed. :issue:`193` * Revert "Add PEP518/pyproject.toml file", fixes installation with pip 10, see https://github.com/pypa/pip/issues/5244 * Various fixes/improvements for PyPy. * Don't crash on multiple calls to GObject.Value.__del__. :mr:`66`

Documentation: * Added StackOverflow (with PyGObject tag) as an contact resource. (:user:`buhtz`) * Add introduction to handling GLib.Error. :mr:`68` (:user:`Kai Willadsen `) * Add pycairo requires for development setup. :mr:`70` (:user:`Kai Willadsen `)

3.29.3 - 2018-08-16 ------

* meson: Support building pycairo as a subproject. :mr:`76` * meson: Declare_dependency for use by potential superprojects (:user:`Mathieu Duponchelle `) * meson: Update wrap file. :mr:`80` (:user:`Carlos Soriano `) * meson: Fix the Python 2 build not not use the system pycairo extension when running tests. :issue:`242` * pygi-convert.sh: Various fixes and updates. :mr:`77` :mr:`78` (:user:`Sander Sweers `) * Gtk.Template: Fix instantiation error when using the new code with older PyGObject. :mr:`79` (:user:`Kai Willadsen `) * Gtk.Template: Don't error out when loading a resource that is only available in an overlay. :issue:`230` * Fix various crashes when running against a debug Python 3.7 build. :mr:`82` (:user:`Simon McVittie `) * overrides: Allow calling GObject.Binding.unbind() multiple times with GLib 2.58+. :issue:`240` * overrides: Gio.ListStore overrides use splice() when adding/removing many items with GLib 2.58+. :issue:`115` :mr:`83` * Work around pylint reporting bogus warnings regarding a missing self argument for normal functions. :issue:`217` * Add override for GdkPixbuf.Pixbuf.new_from_data() to wrap new_from_bytes() to work around a use after free. :issue:`225` :mr:`74`

3.28.3 - 2018-05-31 ------

* Fix Gio.Application leak in case no signal handler is set before. :issue:`219` * Squash critical warning when using array as hash value (:user:`Philip Withnall `) 3.30.0 - 2018-08-31 ------

* Various test suite fixes to get things to pass with Ubuntu 18.10. 3.30.1 - 2018-09-14 ------

* Fix various crashes on big endian systems. :issue:`247` (:user:`Dan Horák `) * meson: Don't link against libpython on non-Windows systems. :issue:`253` :mr:`84`

VTE Current Book Version: 0.52.2 New Version: 0.54.2 0.53.0 / 0.53.92: all: Fix spelling ring: Proper boundary checking for hyperlink position This fixes a rare crash around hyperlinks in a non grid aligned VTE widget when the mouse enters the extra padding at the bottom.

parser: Update copyright notice widget: Use RefPtr for the cursors lib: Add RefPtr type for holding a Gobject widget: Deprecate vte_terminal_match_set_cursor_type

GdkCursorType is gone from gtk4, so deprecate its use here also on gtk3 already.

lib: Store preedit string in a string

Avoid manual memory management. lib: Store word char exceptions in a string

Avoid manual memory management.

ring: Replace some assertions with static_assert ring: Split cell and rowdata headers cxx: ring: Move to ++

Straight port; improvements will come later.

ring: Add some static assertions

Just to make sure nothing breaks during refactoring.

ring: Move some types to ring.cc These types are only used internally by the ring and only in this one file, so there is no need to put them into the header. cxx: Move some headers to .hh parser: glue: StringTokeniser must not be used with a temporary

StringTokeniser requires the string to be kept alive while iterating over its tokens. emulation: Be more strict in DECRQSS

Reject the whole sequence if there are extraneous characters in the string. emulation: Clarify a comment parser: Fix sort order emulation: Add sequence and no-op handler for new xterm SGR functions doap: Fix email address emulation: Add sequence and no-op handler for synchronous update widget: Add nullable annotations

Add nullable annotations to functions returning a char* that may be nullptr. (vte_terminal_get_window_title() actually doesn't ever return nullptr in 0.53 but may have before, and it may do so again, so add the annoation on it, too.) widget: Always return non-null from vte_terminal_get_encoding

Terminal recently changed to storing nullptr instead of "UTF-8". Make the public accessor continue to return "UTF-8" instead. widget: Always emit the child-exited signal

When there is still a child process running when the VteTerminal is destroyed, it gets kill()ed, but since the child-exited signal was only emitted from the VteReaper callback, it was never actually emitted, since by that time VteTerminal has ceased to exist.

Instead of waiting for the reaper, immediately emit the child-exited signal in VteTerminal::dispose(). The exit status is synthesised to be WIFSIGNALED() with WTERMSIG() == SIGKILL. emulation: Fix SRM mode documentation parser: cat: Handle SCI instead of asserting Update Finnish translation Update Brazilian Portuguese translation Update Greek translation widget: Add nullable annotations for functions that can return nullptr Updated Lithuanian translation emulation: Clamp cursor column When setting/unsetting tab stops, make sure to clamp the cursor column to 0..m_column_count-1. This is necessary because vte's weird autowrap handling where it puts the cursor on column m_column_count if there's a wrap pending, instead of keeping the cursor at the right margin and using a flag, like every other terminal emulator does.

Fixes a crash when setting/unsetting a tabstop while the cursor is in that pending autowrap state. parser: Make reset directly change the state

Distinguish this from CAN. parser: glue: Add accessor for the introducer character parser: glue: Minor comment edit emulation: Fix DECRQSS reply

While the VT525 documentation says that a valid reply returns 0 and and invalid one 1, the STD 070 documentation actually has that inversed, and xterm also follows that. Since this seems to just be a documentation bug, and following xterm makes this more useful, change vte to match this. build: Version bump emulation: Fix DECDSR 6 reply

DECXPR starts with '?'. widget: Avoid unnecessary invalidations on mouseover build: Fix "cast between incompatible function types" warning Update German translation lib: Add API to enable test mode

Add API to set the test flags, instead of using an env variable for this. widget: Move bell to Widget widget: Move GtkSettings change handling to Widget widget: Move IM context to Widget widget: Move event window handling to Widget widget: Start separating widget from terminal lib: Rename VteTerminalPrivate Added Slovenian translation widget: Add accessor for the background colour lib: debug: Hexdump incoming and outgoing buffers

Add hexdump of incoming (pre- and post-conversion) and outgoing buffers.

Update Turkish translation widget: Fix race between polling the master & using the PTY in a child When a very short-lived process, like true(1), is spawned asynchronously as a child, there is a race between the child closing the pseudo-terminal's slave device on exit and VteTerminal receiving it, and the GAsyncReadyCallback passed to vte_pty_spawn_async being invoked. If the child closes it and the G_IO_HUP is received before the callback is invoked, then it causes VterTerminal to unset its VtePty object, which leads to the following CRITICAL when the callback tries to set up a watch on the child: Vte-CRITICAL **: void vte_terminal_watch_child(VteTerminal*, GPid): assertion 'impl->m_pty != NULL' failed

The race can be avoided by setting up the GIOChannel to poll the pseudo-terminal master device only after the callback has been invoked. If the kernel has already buffered up some activity on the slave device, then that will be seen in the next iteration of the main loop, and the VtePty won't be unset before setting up the watch.

There is a similar race for downstreams that continue to use -pty-helper. In those cases, the helper is in charge of creating the pseudo-terminal device pair, and it closes its copies of the file descriptors after sending them to VteTerminal. If VteTerminal starts polling the master device immediately after receiving it from the helper, before the child process has been forked, and the helper loses the race to close its copy of the slave device's file descriptor before the master is polled, then VteTerminal will receive a G_IO_HUP and stop reading further input from the master. The subsequently forked child process gets left in a defunct state and the same CRITICAL is logged.

This also makes vte_terminal_spawn_async match its synchronous variant, which is nice.

Update Indonesian translation Update Occitan translation Update POTFILES.in lib: Make legacy charset support optional conv: Remove vteconv.{h,cc}

Move the only function into vte.cc where there are only 2 callers. conv: Remove _vte_conv_reset

There is only caller and the body is a one-liner, so just put it into the caller. conv: Remove _vte_conv_open

Just call g_iconv_open() directly, and lose the //TRANSLIT. If transliteration is desired, the caller should use it in the passed encoding string. conv: Remove extra wrapper struct

VteConv was reduced to only contain a sole GIConv member, so remove the VteConv struct and use GIConv directly. conv: Remove iso2022.{h,cc}

Move the remaining, legacy charset conversion code, directly to vte.cc. conv: Remove UTF-8-to-UTF-8 conversion

It's unused now. lib: Remove extraneous UTF-8-to-UTF-8 conversion on output

Only do conversion for legacy encodings; normally the outgoing data is already in UTF-8 and need not be converted to itself. conv: Remove conversion to unichar

It's unused now. conv: test: Fix test lib: Remove double conversion for legacy encodings

Directly convert to UTF-8 instead of going first to UTF-32 then back to UTF-8. parser: cat: Remove legacy encoding support lib: Make legacy encodings work again conv: Remove unused code

Source is never UTF-32. parser: Fix the build with GCC 8.1.1

Otherwise it fails with: vteseq.cc:47:1: error: declaration of 'void vte::parser::Sequence::print() const' has a different exception specifier vte::parser::Sequence::print() const ^~~ In file included from vteinternal.hh:30, from vteseq.cc:34: parser-glue.hh:83:14: note: from previous declaration 'void vte::parser::Sequence::print() const noexcept' void print() const noexcept; ^~~~~

... and so on.

Update Romanian translation widget: Deprecate vte_terminal_[sg]et_encoding() lib: Remove unused defines lib: Use branchless, streaming UTF-8 converter Previously vte used to convert the whole chunk of input from the PTY into UTF-32 in one go, and feed that to the parser. Replace this with a streaming converter, which consumes the bytes one-by-one and feeds the result to the parser whenever a unicode character falls out of it.

Also simplify the chunk handling by using C++ standard classes to manage the queue (and stack of reserve chunks) instead of a hand-grown list handling code.

As a result of the converter change, vte currently doesn't work with non-UTF-8 I/O encoding. This will either be reimplemented or non-UTF-8 support will be dropped completely (to be discussed in bugzilla).

The change fixes a bug in parser-cat (and potentially also in vte itself, haven't been able to check) where occasionally a character at the end (or start?) of a chunk was discarded. That can be observed by comparing the output of 'parser-cat --charset "UTF-8"' (old converter) vs just parser-cat (new converter).

conv: Remove unused functions doap: Cleanup Update Chinese (Taiwan) translation Update French translation Update Chinese (China) translation Update Polish translation Update Friulian translation app: Dim terminal when toplevel has backdrop Update Swedish translation Updated Czech translation Updated Spanish translation Post release version bump

0.54.0:

NO CHANGES

0.54.1:

conv: Fix crash after multiple encoding changes widget: Avoid unnecessary invalidations at hyperlinks Update Russian translation parser: Remove extraneous sequence

DCS $ r is DECRPSS, the response to DECRQSS, so don't recognise it as DECRQSS itself.

vte.sh: Revert to C0 controls in OSC sequences Update Belarusian translation parser: Fix incorrect sequence utf8: Make decoder conform to recommendation on replacement characters With this change, the decoder conforms to the W3 Encoding TR and the Unicode recommendation on inserting replacement characters from §3.9 of the Unicode core spec.

utf8: Use a symbol for REJECT in the data table

Use a short abbreviation, so that the table doesn't need to be reformatted when the next commit introduces a new 3-digit state.

utf8: Reformat data table

Make the table more readable and add comments.

lib: Make debug assertion conditional on VTE_DEBUG emulation: Fix upper coordinate limit for legacy mouse events Update Croatian translation Post release version bump ring: Fix thawing combining accents over a double-wide character emulation: Make dispatch of SCORC symmetrical to SCOSC

Only dispatch either when DECLRMM is reset.

modes: Use parentheses in macro emulation: Implement SCOSC/SCORC widget: Add missing exception specification Post release version bump yelp-xsl Current Book Version: 3.28.0 New Version: 3.30.1 3.30.0

======* Added stock sidebar support * Added mallard:if/1.0 to supported feature tokens * Updated translations: af (Pieter Schalk Schoeman) cs (Marek Cernocky) da (Ask Hjorth Larsen) de (Mario Blättermann) el (Efstathios Iosifidis) es (Daniel Mustieles) fi (Jiri Grönroos) fr (Charles Monzat) fur (Fabio Tomat) gl (Fran Dieguez) hr (gogo) hu (Balázs Meskó) id (Kukuh Syafaat) it (Milo Casagrande) ko (Changwoo Ryu) lt (Aurimas Černius) lv (Rūdolfs Mazurs) pl (Piotr Drąg) pt_BR (Enrico Nicoletto) ro (Daniel Șerbănescu) sl (Matej Urbančič) sv (Anders Jonsson) tr (Emin Tufan Çetin) zh_TW (Yi-Jyun Pan)

3.30.1

======* Updated translations: be (Yuras Shumovich) ru (Stas Solovey) gnome-desktop Current Book Version: 3.28.2 New Version: 3.30.2 3.29.1

======Version 3.29.1 ======

- Updated translations

3.29.3

======Version 3.29.3 ======

- Fix memory leak - Updated translations

3.29.4

======Version 3.29.4 ======

- No changes

3.29.90.1

======Version 3.29.90.1 ======- wall-clock: Tweak the clock format - Require --2.0

======Version 3.29.90 ======

- wall-clock: Immediately react to show-weekday changes

3.29.91

======Version 3.29.91 ======

- Fix various wall clock regressions - Fix regressions from intltool removal - Fix regressions introduced by g_autoptr usage

3.30.0

======Version 3.30.0 ======

- Translation updates

======Version 3.29.92 ======

- Translation updates

3.30.1

======Version 3.30.1 ======

- Fix another wall clock regression

3.30.2

======Version 3.30.2 ======

- Translation updates Current Book Version: 3.28.0 New Version: 3.30.0 3.30.0 version 3.30.0 - cheese-window: Add camera toggle button Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=750285 - Added/Updated Translations - en_GB, courtesy of Waldo LuÃs Ribeiro - et, courtesy of Mart Raudsepp - nl, courtesy of Nathan Follens - ro, courtesy of Daniel Șerbănescu - sl, courtesy of Matej Urbančič - zh_CN, courtesy of Jeff Bai - zh_TW, courtesy of Cheng-Chia Tseng - Added/Updated Documentation - ca, courtesy of Gerard Alcorlo Bofill - gl, courtesy of marcos gnome-online-accounts Current Book Version: 3.28.0 New Version: 3.30.0 3.29.1

Overview of changes in 3.29.1 ======

* Remove Twitter support (795322)

* Updated translations: Simplified Chinese Czech

3.29.4

Overview of changes in 3.29.4 ======

* Bugs fixed: !2 Port to meson build system

* Updated translations: Occitan

3.29.91

Overview of changes in 3.29.91 ======* Bugs fixed: !2 build: Fix #FooObject style links !8 Remove additional unnecessary GDestroyNotify casts #10 build: Silence warning about _FORTIFY_SOURCE requiring optimization

3.30.0

Overview of changes in 3.30.0 ======

* Updated translations: Arabic grilo Current Book Version: 0.3.6 New Version: 0.3.7

NEW in 0.3.7 ======* !33 - Fix crash in totem after emitting source-{add remove} * !32 - Add grl_related_keys_{get,set}_int64 functions * !24 - Support transform GValue on grl_data_*_for_id() * !20 - Add per Source configs on keyfile * !17 - Pattern matching for GRL_PLUGIN_RANKS * !26, !28 - Documentation improvements * Removed Autotools supported

* New translations * Finnish

* Updated translations * Lithuanian * French * Korean * Turkish * Galician * Danish * Latvian * Croatian * Serbian * Malayalam * Occitan * Slovak * Esperanto

* Contributors to this release: Ask Hjorth Larsen Athul R T Aurimas Černius Balasankar C Bastien Nocera Çağatay Yiğit Şahin Carmen Bianca BAKKER Cédric Valmary Charles Monzat Debarshi Ray Dušan Kazik Fran Dieguez gogo Jean Felder Jiri Grönroos Juan A. Suarez Romero Marinus Schraal Piotr Drąg Rūdolfs Mazurs Seong-ho Cho Thiago Mendes Victor Toso Марко Костић adwaita-icon-theme Current Book Version: 3.30.0 New Version: 3.30.1 3.30.1

3.30.1 - fix nasty misrendering of inode-directory-symbolic libwnck Current Book Version: 3.24.1 New Version: 3.30.0 3.30.0

======Version 3.30.0 ======

Fixes * Use single precision floats to double (Emmanuele Bassi) * Allow setting the same client type (Sebastian Geiger) [#792304] * Remove usage of various deprecated functions and modernize code (Alberts Muktupāvels) * Add gitlab-ci pipeline [GNOME/libwnck!3]

Translators

* Andre Klapper (as) (bn) (bn_IN) (bs) (ca) (ca@valencia) (eu) (kn) (mk) (ne) (or) (ta) * Ask Hjorth Larsen (da) * GNOME Translation Robot (gd) * Kristjan SCHMIDT (eo) evolution-data-server Current Book Version: 3.28.5 New Version: 3.30.3 3.29.2

Evolution-Data-Server 3.29.2 2018-05-21 ------

Bug Fixes: Bug 795295 - Fails to compile after icu 61.1 upgrade (icu::UnicodeString) (Hussam Al-Tayeb) Bug 794874 - [CalDAV/CardDAV] Use current-user-privilege-set to determine whether writeable (Milan Crha) Bug 795414 - Errors on delete of a detached instance (Milan Crha) Bug 794727 - [IMAPx] False unsubscribed signal emitted when LSUB is required (Milan Crha) Bug 795997 - Fails to parse Google OAuth2 authorization code (Milan Crha) Bug 585146 - Default to show Reminders window on notification (Milan Crha) Bug 796206 - CalDAV PUT's If-Match ETag is double quoted (Milan Crha)

Miscellaneous: Introduce EReminderWatcher to listen for scheduled reminders (Milan Crha) Link WebKitGTK+ only with libedataserverui when OAuth2 is enabled (Milan Crha) [CamelSaslGssapi] Claim detailed error when org.gnome.KrbAuthDialog not found (Milan Crha) Stale connection used after resume (Milan Crha) Correct some public headers in libedataserverui (Milan Crha) Move evolution-alarm-notify to evolution-data-server (Milan Crha) Address some of the warnings (Milan Crha) Address some of the compiler and static analyzers warnings (Milan Crha) [EReminderWatcher] Make it possible to override ECalClient connect functions (Milan Crha) [module-secret-monitor] Correct runtime warning from secret_service_search_sync() (Milan Crha)

Translations: Efstathios Iosifidis (el) Daniel Mustieles (es) Marek Černocký (cs) Matej Urbančič (sl)

3.29.3 Evolution-Data-Server 3.29.3 2018-06-18

------

Bug Fixes: Bug 796115 - [EWebDAVDiscover] Propagate auth error from .well-known addresses (Milan Crha) Bug 796116 - [] Skip UTF-8 marker when parsing iCalendar string (Milan Crha) Bug 793927 - [Google book] Do not use URI as contact UID (Milan Crha) Bug 796281 - [] Runtime warning when searching in empty Description (Milan Crha) Bug 763029 - S/MIME encrypt fails to find certificate in other slots (Milan Crha) Bug 792610 - Consider alternate signer emails in sender address verification (Milan Crha) Bug 796136 - [IMAPx] Guess message info's attachment flag more accurately (Milan Crha) Bug 794108 - ETimezoneCache only grows (Milan Crha) Bug 795197 - Add an API to refresh collection backend (Milan Crha) Bug 795869 - Synchronize color of WebDAV resources (Milan Crha) Bug 796174 - strcat() considered unsafe for buffer overflow (Milan Crha) I#2 - Confusing counts when downloading messages for offline (Milan Crha) I#4 - Incorrectly says signature from KMail is invalid (Milan Crha) I#7 - Missing build dependency for gdbus-codegen on input .xml file (Milan Crha) I#5 - Compare only date when searching with Sent/Received dates (Milan Crha) I#6 - Can throw an error when parsing BODYSTRUCTURE response (Milan Crha)

Miscellaneous: Check for ICAL_STATUS_DELETED status enum value (Milan Crha) Correct prototypes of some virtual functions of EReminderWatcher (Milan Crha) Fix a memory leak (Milan Crha) Use Unicode in translatable strings (Milan Crha) Silently skip empty lines when reading autoconfig-variables (Milan Crha) Update bug URL and switch to https:// in the DOAP file (Milan Crha) Google's "Daily Limit Exceeded" error not always propagated into UI (Milan Crha) [IMAPx] Prefer existing allocate/deallocate structure functions (Milan Crha) [CalDAV] Race condition on connection object (Milan Crha) Correct false runtime warning from camel_folder_info_build() (Milan Crha)

Translations: Christian Kirbach (de) Daniel Mustieles (es) Jordi Mas (ca)

3.29.4

Evolution-Data-Server 3.29.4 2018-07-16 ------

Bug Fixes: Bug 702127 - Crash under cal_backend_store_save_cache_now() ][ (Milan Crha) Bug 704246 - Cannot send encrypted mail to contact with certificate (Milan Crha) I#9 - [IMAPx] Remove stale cache files in a dedicated thread (Milan Crha) I#10 - [CalDAV/CardDAV] Avoid GET after PUT when the server didn't modify the component (Milan Crha) I#11 - Better error message when WebDAV GET response has missing href or ETag (Дилян Палаузов) I#12 - vCard REV attribute should be a timestamp (Milan Crha) evo-I#37 - Color support for iCalendar entries (Milan Crha) I#13 - [IMAPx] Fails to append message to Yahoo! with no CRLF at the end (Milan Crha) I#3 - [GPG] Mails that are not encrypted look encrypted (Milan Crha) I#14 - [IMAPx] Use extended LIST with Cyrus IMAP >= 2.5.11 (Milan Crha) I#16 - [IMAPx] BODYSTRUCTURE extension fields not skipped properly (Milan Crha) I#17 - [EWebDAVDiscoverWidget] Do not require filled user name (Milan Crha)

Miscellaneous: Use Unicode in new translatable strings (Piotr DrÄ…g) [Camel] Bulk message copy/move during folder filtering (Milan Crha) Make sure errors reported from backends are valid UTF-8 strings (Milan Crha) [CamelSMIMEContext] Fix a memory leak (Milan Crha) [CalDAV/CardDAV] Consider collection writable also with DAV:write-content hint (Milan Crha) [IMAPx] Search for whole word "Cyrus" when parsing version from the server response (Milan Crha) [ECalCache] Alter timezones table only if the 'refs' column doesn't exist (Milan Crha)

Translations: Fabio Tomat (fu)

3.29.90 Evolution-Data-Server 3.29.90 2018-07-30

------

Bug Fixes: Bug 788370 - Rename address book WebDAV backend to CardDAV (Milan Crha) I#22 - [Camel] Store disconnect can abort just started downsync for offline (Milan Crha) I#19 - Check also /var/db/zoneinfo when looking for system timezone (Milan Crha)

Miscellaneous: ESourceRegistry's thread main_context can leak (Milan Crha) Correct format specifier arguments to work on both 32-bit and 64-bit arches (Milan Crha) [EClient] Really default readonly property to FALSE (Milan Crha) [CamelDebug] Change when backtraces are demangled in pointer tracker (Milan Crha) [CamelOfflineFolder] Fix a runtime warning on application exit (Milan Crha) Enhance attachment detection in a MIME message (Milan Crha)

Translations: Aurimas ÄŒernius (lt)

3.29.91

Evolution-Data-Server 3.29.91 2018-08-13 ------

Translations: Daniel Mustieles (es) Mario Blättermann (de) Fabio Tomat (fur)

3.29.92

Evolution-Data-Server 3.29.92 2018-08-27 ------

Bug Fixes: I#23 - [IMAPx] Fails to parse some BODYSTRUCTURE responses (Milan Crha) I#27 - [IMAPx] Ignore DavMail's CR/LF in BODYSTRUCTURE response (Igor Makarov) I#26 - test-book-client-write-write test is failing (Milan Crha) I#25 - [CamelVeeFolder] Implement CamelFolderClass::get_message_cached() (Milan Crha) evo-I#83 - Follow Up "is not Completed" search condition does not work (Milan Crha)

Miscellaneous: Correct build when nss/nspr do not provide pkg-config files (Milan Crha) Use 48 pixel icon in reminder notification (Milan Crha) [evolution-alarm-notify] Do not show a window with a list of pending reminders by default (Milan Crha) GNOME Shell doesn't show evolution-alarm-notification reminders (Milan Crha) Correct few annotations in developer comments (Milan Crha)

Translations: Claude Paroz (fr) Piotr Drąg (pl) Jiri Grönroos (fi) Bruce Cowan (en_GB) Efstathios Iosifidis (el) Cheng-Chia Tseng (zh_TW) Emin Tufan Çetin (tr) Baurzhan Muftakhidinov (kk) Kukuh Syafaat (id) Çağatay Yiğit Şahin (tr)

3.30.0

Evolution-Data-Server 3.30.0 2018-09-03 ------

Translations: Changwoo Ryu (ko) Fran Dieguez (gl) Rafael Fontenelle (pt_BR) Ask Hjorth Larsen (da) Anders Jonsson (sv)

3.30.1

Evolution-Data-Server 3.30.1 2018-09-24 ------Bug Fixes: I#3 - [GPG] Mails that are not encrypted look encrypted ][ (Milan Crha) I#24 - The 'contacts' calendar backend leaks BookRecord (Milan Crha) I#29 - Changed user name not propagated to collection child sources (Milan Crha) I#30 - Some of the tests fail to run with disabled RPATH (Milan Crha) I#32 - test-cal-meta-backend cannot run without installed Evolution (Milan Crha) evo-I#86 - Quoting of plain text mail into HTML mode mangles deeper levels (Milan Crha)

Miscellaneous: Add an optionally built evolution-dbus-session tool (Milan Crha)

Translations: Marek Cernocky (cs) Rūdolfs Mazurs (lv) Gábor Kelemen (hu)

3.30.2

Evolution-Data-Server 3.30.2 2018-10-22 ------

Bug Fixes: I#35 - [IMAPx] Ignore incomplete BODYSTRUCTURE responses (Milan Crha) I#36 - Asks for password after going online, even it's stored (Milan Crha) I#37 - [IMAPx] Disable request of BODYSTRUCTURE when its response is broken (Milan Crha) I#38 - Archive from search folder should use original folder for transfer (Milan Crha) I#40 - [IMAPx] Support RFC 6855 (IMAP Support for UTF-8) (Milan Crha) I#44 - [CalDAV/CardDAV] Ignore Not Found error on resource delete (Milan Crha) I#50 - [Reminders] Ignore all errors on a reminder dismiss (Milan Crha)

Miscellaneous: Fix a memory leak in ebmb_start_view_thread_func() (Milan Crha) [evolution-dbus-session] Proxy also -Bus subtrees (Milan Crha) [CamelProvider] Do not localize empty strings in provider configuration (Milan Crha) Make tests retry when factory doesn't know about added ESource yet (Milan Crha) [On The Web calendar] Log also response body when requested (Milan Crha)

Translations: Yi-Jyun Pan (zh_TW) Aurimas ÄŒernius (lt)

3.30.3

Evolution-Data-Server 3.30.3 2018-12-10 ------

Bug Fixes: Bug 719328 - [IMAPx] Fails to update folder content with QResync (Milan Crha) evo-I#196 - Build developer documentation in a fix order (Milan Crha) I#5 - Compare only date when searching with Sent/Received dates ][ (Milan Crha) I#49 - [CardDAV] Local cache made broken after update (Milan Crha) I#51 - [Gmail] Change from OAuth2 to other authentication doesn't stick (Milan Crha) I#55 - [IMAPx] Flags after certain BODYSTRUCTURE not recognized (Milan Crha) I#56 - [Camel] Can stop parsing mail address header too early (Milan Crha) I#62 - Make EVCardAttribute/EVCardAttributeParam structures ref-counted internally (Milan Crha) I#63 - [CalDAV/CardDAV] Incorrectly thinks an object is created in offline (Milan Crha) I#64 - S/MIME: Two signerInfos (one *invalid*, one valid) are merged into a single valid indicator (Milan Crha)

Miscellaneous: [IMAPx] Fix a concurrent message download issue (Milan Crha) Make sure intltool-merge cache is created only once (Milan Crha) test-cal-client-get-revision could fail due to delayed D-Bus property change notification (Milan Crha) [evolution-dbus-session] Handle method calls with GUnixFDList (Milan Crha) Deadlock when marking as read message in a search folder (Milan Crha) [CalDAV/CardDAV] Can add component to local cache with incomplete info (Milan Crha) Copy messages within mail filters immediately (Milan Crha) Correct use-after-free in e_vcard_attribute_remove_param_value() (Milan Crha) Replace evolution-dbus-session tool with DBUS_SERVICES_PREFIX option (Milan Crha) [Camel] Address compiler warning in header_address_list_encode_append() (Milan Crha) Relax runtime check in e_cal_util_get_system_timezone() (Milan Crha) [Flatpak] Save passwords in libsecret with the same prefix as used by D-Bus services (Milan Crha) [test-server-utils] Correct when open of deprecated book/calendar is retried (Milan Crha) [test-cal-client-get-free-busy] Enhance the test execution (Milan Crha) [Flatpak] Make alarm-notify use the D-Bus services prefix, if specified (Milan Crha)

Translations: Cédric Valmary (oc) Dušan Kazik (sk) Carmen Bianca BAKKER (eo) Iñaki Larrañaga Murgoitio (eu)

Tracker Current Book Version: 2.0.4 New Version: 2.1.6 2.1.0

NEW in 2.1.0 - 2018-07.22 ======* Brown paper bag release * All features from unreleased 2.0.5 apply * One feature was missed: TrackerResource is now able to output JSON-LD. This is a new API call, so a minor bump should happen as per Semantic Versioning.

From 2.0.5 NEWS: * build: Make tarballs able to build with meson. Future releases will eventually phase out Autotools * build: Various meson build fixes * tests: Many fixes to functional tests * libtracker-miner: Fixed race conditions that may result in spurious "parent not indexed yet" warnings. * libtracker-direct: Majorly rewritten * tracker-store: Streamlined to use a libtracker-direct connection instead of reimplementing most of it.

NEW in 2.0.5 - 2018-07.22 ======

* build: Make tarballs able to build with meson. Future releases will eventually phase out Autotools * build: Various meson build fixes * tests: Many fixes to functional tests * libtracker-miner: Fixed race conditions that may result in spurious "parent not indexed yet" warnings. * libtracker-direct: Majorly rewritten * tracker-store: Streamlined to use a libtracker-direct connection instead of reimplementing most of it.

2.1.1

NEW in 2.1.1 - 2018-08-01 ======

* libtracker-direct: Plug leaks * libtracker-sparql-backend: Fix fallback from direct to bus connection for queries.

Translations: es, lt, ro

2.1.2

NEW in 2.1.2 - 2018-08-15 ======

* libtracker-sparql: Delete TrackerResource elements one by one * libtracker-sparql: Fix compilation with C++ * build: Fixes for FreeBSD * build: Fixes on meson

Translations: cs, el, fr, fur, hu, sl, tr, zh_TW

2.1.3 NEW in 2.1.3 - 2018-08-30 ======

* Fix resource refcounting issues in database. Reset is advised. * Drop cardinality from nie:copyright, nie:license, nie:legal and dc:rights * Fix superfluous ontology checks on second tracker-store run * Use more SPARQL1.1 correct syntax. * Allow use of domain rules outside prefix * Compatibility fixes with C++

Translations: gl, id, ko

2.1.4

NEW in 2.1.4 - 2018-09-04 ======

* Fix build with format-security flag

Translations: da, hr, lv

2.1.5

NEW in 2.1.5 - 2018-09-26 ======

* Plug several leaks * Fix possible crashes on tracker-store exit * Several fixes to meson build

Translations: ru

2.1.6

NEW in 2.1.6 - 2018-10-05 ======

* Backported multiple meson build fixes. * Fixed meson build from released tarball

Translations: sk, sr

DConf Current Book Version: 0.28.0 New Version: 0.30.1 0.29.1

Changes in 0.29.1 ======- Engine: track in progress watch handles to avoid spurious changed signals for the root path. Subscription requests are no longer sent if the engine is already subscribed to the given path. In the case that some value changes while a subscription request is in progress, a changed signal is only sent for the path being subscribed to instead of the root path. (Daniel Playfair Cal; !1, !5, #790640)

- Engine: fix deadlock which occured when using the engine from libsoup within flatpak by extending the existing workaround for Glib !541, aka #674885. GSocket and various other GObject types are now also initialised in the main thread. (Owen Taylor; !15)

- Add transfer annotations to the GTK-Doc strings for functions in the dconf_changeset_* and dconf_client_* namespaces (Xavier Claessens, Philip Withnall; !9, #758903)

- Update GVDB subtree from GVDB master, containing mostly documentation improvements (Philip Withnall; !17)

- dconf-update.vala: correct error message grammar (Kenyon Ralph; !6)

- Various meson related improvements (Iñigo MartÃnez; !11)

- Add GitLab CI (Philip Withnall; !10)

- Service: Port from the deprecated g_type_class_add_private() to G_ADD_PRIVATE() (Philip Withnall; !7)

- Add Daniel Playfair Cal and Philip Withnall as maintainers (Philip Withnall)

0.29.2

Changes in dconf 0.29.2 ======

- Service: When corrupt GVDB files are found, they are now transparently backed up and replaced with an empty database. (Philip Withnall, !8) - Replace all hard-coded /etc path with sysconfdir. This is useful for JHBuild environments and systems that don't want to use /etc/dconf. (Ting-Wei Lan; !21, #739229) - Engine: Change overflow thresholds in subscription counts from GMAXUINT32 to GMAXUINT (Daniel Playfair Cal; !20) - Change meson flag used to build Gtk-Doc from enable--doc to gtk_doc (Daniel Playfair Cal; !19) - Declare libdconf_service as a dependency to fix the build in massively parallelised environments (Emmanuele Bassi; !22)

0.30.0

Changes in dconf 0.30.0 ======

None. 0.30.1

Changes in dconf 0.30.1 ======

- Engine: Fix memory leak when subscribing to a path (Guido Günther; !25)

DConf-Editor Current Book Version: 3.28.0 New Version: 3.30.2 3.29.90 dconf-editor 3.29.90 ======

This development cycle has been quite calm (until its end), and that’s why there wasn’t any previous “alpha” release. The only visible things for users should be some new demos. But internally, this module can now be splitted in two, one that handles the UI (“frontend”) and one that plays with the dconf service, gsettings API, and possibly other sources of configuration informations to be added in the future. The goal is to move this “backend” as a new module –a first, and then to transform it as a D-Bus service– in the next development cycle. There is probably at least one regression due to these big changes, but I will do my best to test all the things before 3.30 release. If you see a bug, please report. :·)

Translations updated: Catalan: Jordi Mas Croatian: Goran Vidović Czech: Marek Černocký Friulian: Fabio Tomat Slovenian: Matej Urbančič Spanish: Rodrigo Lledó Milanca and Daniel Mustieles

3.29.91 dconf-editor 3.29.91 ======

There have been many refactorings and fixes since the last beta release, notably regarding memory cleaning. All should be good now for a final release. Yeah! :·)

Translations updated: French: Claude Paroz Friulian: Fabio Tomat German: Tim Sabsch Lithuanian: Aurimas Černius Polish: Piotr Drąg Slovenian: Matej Urbančič

3.29.92 dconf-editor 3.29.92 ======

Two strings added (freeze break), a quite important rework of the CSS file (that notably makes icons less fuzzy when using small rows), that looks calm and good.

Translation updated: Chinese (Taiwan): Yi-Jyun Pan and Arnaud Bonatti Czech: Marek Cernocky French: Claude Paroz German: Mario Blättermann Greek: Efstathios Iosifidis Indonesian: Kukuh Syafaat Italian: Milo Casagrande Lithuanian: Aurimas Černius Polish: Piotr Drąg Brazilian Portuguese: Rafael Fontenelle Turkish: Emin Tufan Çetin

3.30.0 dconf-editor 3.30.0 ======

New stable release. No problem found since last beta, more translations updates; and an application mostly similar to the previous stable release, code excluded.

Translations updated: Croatian: Goran Vidović Danish: Ask Hjorth Larsen Galician: Fran Diéguez Greek: Efstathios Iosifidis Hungarian: Balázs Meskó Korean: Changwoo Ryu Latvian: Rūdolfs Mazurs Swedish: Anders Jonsson

3.30.1 dconf-editor 3.30.1 ======

New stable release update. Some bugs fixed, one small UI improvement when window is not on top, case ignored in search, and some new relocatable schemas handled.

Translations updated: Friulian: Fabio Tomat Greek: Efstathios Iosifidis Spanish: Daniel Mustieles 3.30.2 dconf-editor 3.30.2 ======

A rapid release fixing a bug in the handling of double values. gnome-backgrounds Current Book Version: 3.28.0 New Version: 3.30.0 3.29.90

======Version 3.27.90 ======

- new defaults

3.30.0

======Version 3.30.0 ======Version 3.29.90 ======

- new defaults Current Book Version: 1.36.2 New Version: 1.38.1 1.37.1

Major changes in 1.37.1 ======* udisks2: Remove optical disc volumes/mounts if drive disappears * daemon: Prevent deadlock and invalid read when closing channels * metadata: Prevent usage of NULL if GUdevDevice is not found * mtp: Implement support for move and copy operations

1.37.2

Major changes in 1.37.2 ======* smb: Fix removal of non-empty dir * programs: Remove deprecated gvfs utils * gdu: Remove libgdu support * gphoto2: Switch to a stable device uri * mtp: Switch to a stable device uri * Several smaller bugfixes * Translation updates 1.37.4

Major changes in 1.37.4 ======* udisks2: Support TCRYPT devices * google: Do not create .desktop files for native files * udisks2: Fix crashes caused by missing source tag * udisks2: Handle x-gvfs- options not only for fstab entries * Several smaller bugfixes * Translation updates 1.37.90

Major changes in 1.37.90 ======* ftp: Add implicit TLS mode * dav: Increase max number of connections to prevent lockups * smb: Do not claim that mountable can be unmounted * build: Add proper linker support check * Several smaller bugfixes * Translation updates

1.37.92

Major changes in 1.37.92 ======* udisks2: Use loop backing file as description for unlock * Remove workaround for directory / folder icons * Translation updates

Major changes in 1.37.91 ======* Translation updates

1.38.0

Major changes in 1.38.0 ======* Translation updates

1.38.1

Major changes in 1.38.1 ======* gphoto2: Fix mounting for devices with special chars in ID_SERIAL * mtp: Fix mounting for devices with special chars in ID_SERIAL * smbbrowse: Force NT1 protocol version for workgroup support * Several smaller bugfixes * Translation updates Nautilus Current Book Version: 3.28.1 New Version: 3.30.5 3.29.90.1

Major changes in 3.29.90.1: * Flatpak improvements. Improved user facing experience and developer experience (Ernestas Kulik, Carlos Soriano) * CI & CD set up. Increases stability, buildability and feedback cycle (Jordan Petridis, Ernestas Kulik, Carlos Soriano) * Distribute icons horizontally in the icon view (Nikita Churaev) * Implement new pathbar/search design (Allan Day, Antonio Ferndandes, Piotr Drag, Carlos Soriano) * Implement new toolbar menus design (Carlos Soriano) * Add background actions to the path bar (Carlos Soriano) * Get background work ready for gtk4 port (Ernestas Kulik) * Add recent search engine (Marco Trevisan) * Implement tests for Nautilus most critical operations (Alexandru Fazakas) * Show Recency column in recent view (Rahul Verma) * Avoid recursivity in symbolic links (Ernestas Kulik) * Add a button in properties dialog to open GNOME Disks (Rahul Verma) * Add touch support for menus in views (Jan-Michael Brummer) * Fix error when accesing a file with x-nautilus-search (Rahul Verma) * Allow right clickin expanders (Alexandru Fazakas) * Allow trashing/deleting Desktop dir (Antonion Fernandes) * Improve about dialog visuals (Juraj Fiala) * Fix path bar changing size when navigating (Nikita Churaev) * Fix MB/MiB confusion in preferences dialog (Christophe Fergeau) * Fix openning files failing from other applications in some cases due to DBus race (Ernestas Kulik) * Implement devel style to differentiate development builds (Carlos Soriano) * Improve handling for impaired (Joanmarie Diggs, Peter Vagner) * Fix wrong labels and file count in operations progress (Antonio Fernandes) * Remove special treatment for desktop files (Carlos Soriano) * Remove special treatment for computer:/// (Carlos Soriano) * Fix triggering maximum file name when renaming (Ernestas Kulik) * Open search filters with popover open when using f (Stratila Andrei) * Expose active windows for Ubuntu dash support (Philip Langdale) * Show "Open With" for files in trash (George Mocanu) * Provide more information in prperties dialog for files in trash (George Mocanu) * Implement showing properties of current view from path bar (Wong Heung Sang) * Avoid fuzzy icons in small sizes (Sam Hewitt) * Warn if the renamed file will be hidden once renamed (Yash Jain) * Improve and fix visuals in the new views (Carlos Soriano) * Add show sidebar setting to the preferences dialog (Carlos Soriano) * Remove experimental views UI setting in preferences dialog (Carlos Soriano)

3.29.92

Major changes in 3.29.92: * Revert showing search filter popover on ctrl-f (António Fernandes) * Add more tests (Alexandru Fazakas) (woo!) * Replace ambiguous slash with trash icon in path bar (Yi-Soo An) * Fix path bar buttons not working with keyboard (António Fernandes, Carlo Lobrano) * t (Carlos Soriano) * Fix crash when opening broken bookmarks from other locations (Ernestas Kulik) * Add warning about exceeded file name limit when renaming, etc. (António Fernandes) * Add plumbing for desktop extension (clipboard, undo/redo, etc.) (Carlos Soriano) * Tweak path bar styling (António Fernandes, Alexander Mikhaylenko, Jakub Steiner)

3.30.0

Major changes in 3.30.0: * Nothing new, enjoy 🍹

3.30.1

Major changes in 3.30.1: * Improve high contrast styling (Antonio Fernandes) * Fix folders not expanding with arrow keys in list view (Antonio Fernandes) * Fix keyboard navigability when searching (Carlos Soriano) * Fix crash on search (Ernestas Kulik) * Fix dark variant (Antonio Fernandes)

3.30.2

Major changes in 3.30.2: * Fix Google Drive files not opening (Carlos Soriano) * Fix crashes when searching (Marco Trevisan) * Fix triple click in pathbar to minimize the window (Ernestas Kulik) * Fix '/' and '~' not opening the location bar (Antonio Fernandes) * Fix header bar styling for 3rd party themes again (Antonio Fernandes) * Disable and warn about security risks when libseccomp and bwrap are disabled on unsupported cpus (Ernestas Kulik) * Fix various leaks (Ernestas Kulik) * Set up stable Flatpak (Carlos Soriano) * Provide CI coverage (Caros Soriano) * Fix CI tests (Ernestas Kulik, Jordan Petridis, Caros Soriano)

3.30.3

Major changes in 3.30.3: * Fix crashes in search (Ernestas Kulik, Antonio Fernandes) * Fix crash in path bar usage (Antonio Fernandes) * Fix error dialog not showing when renaming (George Mocanu) * Trigger location entry with the slash numpad key too (German Franco)

3.30.4

Major changes in 3.30.4: * Fix crash when opening windows quickly (Ernestas Kulik) * Show trash action bar when trash status changes (Ernestas Kulik) * Implement rename file support in dbus for integration with desktop icons extension (Carlos Soriano) 3.30.5

Minor changes in 3.30.5: * Fix a bunch of compiler warnings that could prevent building (Ernestas Kulik) * Fix location entry icon not reacting to clicks (Ernestas Kulik)

Zenity Current Book Version: 3.28.1 New Version: 3.30.0 3.30.0

Zenity 3.30.0 - Translation updates gnome-settings-daemon Current Book Version: 3.28.1 New Version: 3.30.2 3.29.90.1

======Version 3.29.90.1 ======Media-keys: - Allow volume above 100%

3.29.90

======Version 3.29.90 ======- Translation updates

Housekeeping: - Fix improper notify_notification_close() usage

Power: - Make power test more robust

General: - Update test suite to python3

3.29.92 ======Version 3.29.92 ======- Translation updates

Media-keys: - Escape custom command for execution

Rfkill: - Create nested cancellable for rfkill setting

Build: - Fix undeclared dependency on gio-unix-2.0

3.30.0

======Version 3.30.0 ======- Translation updates

3.30.1

======Version 3.30.1 ======- Translation updates

Power: - Guard against events from the wrong device type

Color: - Fix check for timerfd

General: - Use set10 consistently in build - Fix build with wayland disabled

3.30.1.1

======Version 3.30.1.1 ======

Color: - Do not leak GSource

3.30.1.2

======Version 3.30.1.2 ======

This release by default *removes* the new feature that was added in 3.29.0 to use SuspendAndHibernate when available. You can re-enable the feature using the "experimental_suspend_then_hibernate" meson option again.

There are two major issues with the new feature in the current form, and fixing it will require more changes that are not feasible in the stable release cycle.

The two main issues are: * Hibernation is often not properly supported. The reasons range from it being simply impossible (secure boot), to driver and firmware issues when resuming and also distribution issues where the system is not correctly set-up and we cannot detect the issue. * It was missed that the support added into g-s-d is incomplete and therefore creates an inconsistent user experience. In particular, we have four major methods to suspend the machine, but only two are affected: - hardware power button: will use suspend-then-hibernate if enabled and available - idle suspend: will use suspend-then-hibernate if enabled and available - suspend in gnome-shell: always suspends - lid closing: always suspends ()

Also relevant in this discussion is the proposed change in upstream systemd to allow disabling hibernation even if it is detected to work: https://github.com/systemd/systemd/pull/10262

3.30.2

======Version 3.30.2 ======- Translation updates - Fixes for build tests

Media-keys: - Default to interactive shutdown action for power button if the action is not supported. - Increase GSD_REENABLE_POWER_BUTTON_DELAY to 3 seconds - Add mapping for Ctrl + media-key for some media-keys

Rfkill: - Fix GIOChannel encoding

Color: - Correct temperature interpolation corner cases network-manager-applet Current Book Version: 1.8.16 New Version: 1.8.18 1.8.18

======network-manager-applet-1.8.18 Overview of changes since network-manager-applet-1.8.16 ======

* libnma: fix wrongly showing hidden GUI elements, which causes connection editing to behave wrong (issue#20). * libnma, c-e: fix translation issues in GUI due to missing gettext domain (bgo#792285). * Update Croatian, German, Indonesian, Italian, Kazakh, and Turkish translations. gnome-control-center Current Book Version: 3.28.2 New Version: 3.30.2 3.29.4

======Version 3.29.4 ======

- Introduce Dynamic Panel - Many code cleanups and modernizations

CI: - Support for multiarch builds (ARMv8 and PPC64) - Support generating Flatpaks on demand

Display: - Improve display arrangement widget

Network: - Add a testsuite

Sharing: - Expose Remote Desktop work on Wayland

User Accounts: - Use term "Confirm" instead of "Verify" - Use the same phrase when passwords do not match

Wacom: - Hide when no Wacom devices are connected - Remove deprecated APIs

Wi-Fi: - Hide when no Wi-Fi adapters are available

3.29.90

======Version 3.29.90 ======

- Use symbolic icons in Shell search Network: - Better device names

Power: - Improve wording of some strings

Region & Language: - Make Language Chooser dialog implement mockups

Wi-Fi: - Improve Airplane Mode

3.29.92

======Version 3.29.92 ======

- Fix a couple of memory leaks in the tests - Don't hardcode Python path in tests - Stop aggressively caching D-Bus objects not related to hardware

CI: - Improve Flatpak job

User Accounts: - Silence some compiler warnings - Remove stub string from translation

Wacom - Remove unused widgets from the .ui file

Wi-Fi: - Fix a potential crash

3.30.0

======Version 3.30.0 ======

- Translation updates

3.30.1

======Version 3.30.1 ======

- Translation updates - Fix crash in the object cache system

Color: - Fix fallout from GtkTemplate port Power: - Do not crash when canceling KDB brightness proxy creation

Region: - Do not release locale keys in IM hash table - Plug leaking GFile objects - Replace tab characters by whitespaces - Fix language section not marked as insensitive - Cancel async permission when panel is closed

Sharing: - Bind hostname entry from UI

3.30.2

======Version 3.30.2 ======

- Translation updates

Display: - Hide unsupported resolutions again - Improve snapping - Stop night light dialog being destroyed twice

Online Accounts: - Track the lifecycle of CcGoaPanel across async calls

Region: - Fix double-free when closing the input chooser dialog

Wi-Fi: - Disable periodic scan only when Wi-Fi is disabled

Mutter Current Book Version: 3.28.3 New Version: 3.30.2 3.29.1

3.29.1 ======* Fix various input-method regressions [Carlos, Olivier; #65, #74, #66, #112]

3.29.2

3.29.2 ======* Fix size change animations on wayland [Georges; #780292] * Handle touch events on server-side titlebars [Carlos; #770185] * Misc. bug fixes [Florian, Olivier, Jonas, Georges; #134, #124, !96, #138, !102, #781471, #150]

Contributors: Jonas Ådahl, Olivier Fourdan, Carlos Garnacho, Florian Müllner, Georges Basile Stavracas Neto, Marco Trevisan (Treviño), Daniel van Vugt

Translators: Daniel Șerbănescu [ro], Marcos Lans [gl], Dz Chen [zh_CN]

3.29.3

3.29.3 ======* Fix Korean Hangul support on wayland [Changwoo; #152] * Improve support for proprietary Nvidia driver [Jonas; #790316] * Only upload HW cursor sprite to the GPU that will display them [Jonas; #77] * nvidia [Miguel; #2] * nvidia [Miguel; #782575] * Remove MetaScreen to prepare for non-mandatary X11 dependency [Armin, Jonas; #759538] * Misc. bug fixes [Olivier, Jonas, Sam; #160, !130, #786929, #788834]

Contributors: Jonas Ådahl, Olivier Fourdan, Carlos Garnacho, Armin Krezović, Corentin Noël, Changwoo Ryu, Sam Spilsbury, Daniel Stone, Marco Trevisan (Treviño), Miguel A. Vico, Daniel van Vugt

Translators: Yi-Jyun Pan [zh_TW], Jordi Mas [ca], Daniel Șerbănescu [ro], Fabio Tomat [fur]

3.29.4

3.29.4 ======* Fix crash with parent-less modal dialogs [Olivier; #174] * Preserve paint volumes where possible to optimize CPU usage [Carlos; #782344]

Contributors: Jonas Ã…dahl, Olivier Fourdan, Carlos Garnacho, Iain Lane, Bastien Nocera

Translators: Daniel Șerbănescu [ro]

3.29.90

3.29.90 ======* Various crash fixes [Olivier, Jonas, Florian; #189, #70, #194, #15, #130] * Don't expose resolutions that are below the minimum [Andrea; #793223] * Remove support for preference overrides [Florian; #786496] * Misc. bug fixes and cleanups [Daniel, Jonas, Florian; #131, #245, !176]

Contributors: Jonas Ådahl, Andrea Azzarone, Olivier Fourdan, Florian Müllner, Kevin Tamool, Daniel van Vugt Translators: Daniel Mustieles [es], Claude Paroz [fr]

3.29.91

3.29.91 ======* Various crash fixes [Olivier, Iain; #255, #223] * Fix lock up with some DRI drivers [Alex; #127] * Send correct button codes from virtual evdev devices [Jonas; !190] * Improve grab-device clock updates on X11 [Jeff; !174] * Fix popups closing immediately on key down [Jonas; !180] * Prevent clients from modifying the shared keymap [Jonas; #784206]

Contributors: Jonas Ã…dahl, Andrea Azzarone, Piotr DrÄ…g, Olivier Fourdan, Carlos Garnacho, Jan Grulich, Iain Lane, Alex VillacÃs Lasso, Jeff Smith, Daniel van Vugt

Translators: Matej Urbančič [sl], Mario Blättermann [de], Piotr Drąg [pl], Aurimas Černius [lt], Yi-Jyun Pan [zh_TW], Emin Tufan Çetin [tr], Fabio Tomat [fur], Bruce Cowan [en_GB]

3.29.92

3.29.92 ======* Avoid crash when a cursor is not found [Sebastian; #254] * Fix screen rotation regression [Jonas; #216] * Handle requests to unmanaged windows gracefully [Jonas; #240] * Move popups together with their parent [Jonas; #274] * Fix non-lowercase letters on virtual key devices [Carlos; gnome-shell#135] * Misc. bug fixes [Iain, Jonas; #223, #192, #279]

Contributors: Jonas Ã…dahl, Carlos Garnacho, Sebastian Keller, Iain Lane, Robert Mader, Daniel van Vugt

Translators: Gwan-gyeong Mun [ko], Kukuh Syafaat [id], Milo Casagrande [it], Anders Jonsson [sv], Rafael Fontenelle [pt_BR], Marek Cernocky [cs]

3.30.0

3.30.0 ======

Translators: Fran Dieguez [gl], Balázs Meskó [hu], Rūdolfs Mazurs [lv], Trần Ngọc Quân [vi], Ask Hjorth Larsen [da], gogo [hr]

3.30.1 3.30.1 ======* Improve trackball detection [Tony; #258] * Fix clipping of scaled surfaces [Jonas; #300] * Improve tracking of monitor switch configuration [Daniel; !213] * Fix parent-relative positioning of constrained windows [Jonas; #332] * Add clutter_input_method_forward_key() method [Carlos; gnome-shell#531] * Various crash fixes [Olivier, Jonas; #194, #336] * Misc. bug fixes [Carlos, Florian, Olivier, Jonas; gnome-shell#540, #294, #221, !229, #30, #331]

Contributors: Jonas Ådahl, Daniel Drake, Olivier Fourdan, Carlos Garnacho, Peter Hutterer, Ting-Wei Lan, Florian Müllner, Tony Novak, Pekka Paalanen, Sam Spilsbury

Translators: Yuras Shumovich [be], Марко Костић [sr], Marek Cernocky [cs]

3.30.2

3.30.2 ======* Fix handling of non-UTF8 encodings [Florian; !227] * Fix memory leaks introduced in 3.30.1 [Jonas; #653] * Work around hangul text input bug [Carlos; gtk#1365] * Fix crash when restarting window manager [Andrea; gnome-shell#595] * Fix crash on monitor hotplug [Olivier; #189]

Contributors: Jonas Ådahl, Andrea Azzarone, Olivier Fourdan, Carlos Garnacho, Florian Müllner, Akira Nakajima

Translators: Dušan Kazik [sk] gnome-shell Current Book Version: 3.28.3 New Version: 3.30.2 3.29.1

3.29.1 ======* Support icons in app-menu [Florian; #760985] * Misc. bug fixes [Marco, Florian, Lubomir; #792687, #221, !63]

Contributors: Piotr Drąg, Takao Fujiwara, Christian Kellner, Florian Müllner, Mario Sanchez Prada, Lubomir Rintel, Didier Roche, Marco Trevisan (Treviño), verdre

Translators: gogo [hr], Stas Solovey [ru], Matej Urbančič [sl], Daniel Șerbănescu [ro], Fabio Tomat [fur], Marek Cernocky [cs], Daniel Mustieles [es]

3.29.2

3.29.2 ======* Guard against untimely keyboard map changes [Carlos; #240] * Fix icons in search provider results [Florian; #249] * Fix blurriness of OSD under some resolutions [Silvère; #782011] * Fix lagging pointer when zoomed [Daniel; #682013] * Misc. bug fixes [Milan, Xiaoguang, Florian, Mario, Ole; #244, #787871, #781471, #136, #214, #294]

Contributors: Ole Jørgen Brønner, Milan Crha, Carlos Garnacho, Yussuf Khalil, Silvère Latchurié, Florian Müllner, Mario Sanchez Prada, Ray Strode, Daniel van Vugt, Xiaoguang Wang

Translators: Rafael Fontenelle [pt_BR], Kukuh Syafaat [id], Marcos Lans [gl], Anders Jonsson [sv], Mingcong Bai [zh_CN]

3.29.3

3.29.3 ======* Save creation time in screenshot metadata [Florian; #790481] * Improve consistency between ctrl- and middle-click on app icons [Xavier; #316] * Add support for font-feature-settings CSS property [Ryan; #34] * Adjust to MetaScreen removal [Jonas; #759538] * Misc. bug fixes [Florian, Marco, Sam; #298, #788931, #26, #76, !54, #788882, #791233]

Contributors: Jonas Ådahl, Ryan Hendrickson, Xavier Johnson, Florian Müllner, Joe Rabinoff, Sam Spilsbury, Marco Trevisan (Treviño)

Translators: Gun Chleoc [gd], Yi-Jyun Pan [zh_TW], Cédric Valmary [oc], Jordi Mas [ca]

3.29.4

3.29.4 ======* Fix "Clear All" for calendar events [Florian; #325] * Allow cancelling direct switch operations [Xavier; #315] * Support being started by systemd --user [Iain; !137, !138] * Support key event forwarding required by some input methods [Carlos; #275] * Misc. bug fixes and cleanups [Jasper, Andrea, Florian; #663461, #372, !112, #414, !151]

Contributors: Andrea Azzarone, Carlos Garnacho, Xavier Johnson, Iain Lane, Florian Müllner, Jasper St. Pierre

Translators: Stas Solovey [ru]

3.29.90

3.29.90 ======* Add remote access indication on wayland [Jonas; !160] * Fix wrong window positions in overview on wayland [Marco; #776588] * Add gesture to unfullscreen a window [Jan-Michael; !123] * Add PickColor method to screenshot D-Bus interface [Florian; #286] * Consider "new-window" action when opening new windows [Florian; #756844] * Make workspace switching gestures follow motion [Carlos; #788994] * Support audio volumes above 100% [Didier; #790280] * Misc. bug fixes [Florian, Daniel; #424, !132, !182, #433, !179, #786496]

Contributors: Jonas Ådahl, Jan-Michael Brummer, Piotr Drąg, Daniel Drake, Carlos Garnacho, Florian Müllner, Georges Basile Stavracas Neto, Didier Roche, Jakub Steiner, Marco Trevisan (Treviño)

Translators: Charles Monzat [fr], Daniel Mustieles [es]

3.29.91

3.29.91 ======* Fix handling of 0/false options in ShowOSD D-Bus API [Florian; #791669] * overview: Fix handling of confirmation dialogs on wayland [verdre; !180] * Avoid some full relayout/redraws [Carlos; !197] * Keep workspace switcher slid out when workspaces are in use [Florian; !161] * Ignore auto-repeat for some keybindings [Andrea; #373] * Misc. bug fixes [Carlos, Florian, Pascal; #464, !189, !191, !192, !162]

Contributors: Andrea Azzarone, Olivier Blin, Carlos Garnacho, Florian Müllner, Pascal Nowack, verdre

Translators: Bruno Lopes da Silva [pt_BR], Matej Urbančič [sl], Piotr Drąg [pl], Aurimas Černius [lt], Emin Tufan Çetin [tr], Fabio Tomat [fur], Alexandre Franke [fr], Yi-Jyun Pan [zh_TW], Bernd Homuth [de], Andre Klapper [cs], Jordi Mas [ca], Daniel Șerbănescu [ro], Bruce Cowan [en_GB]

3.29.92

3.29.92 ======* Choose some actors to cache on the GPU [Daniel; #792633] * inputMethod: Hide preedit text if requested [Takao; #431] * Fix forced fallback app-menus on wayland [Jonas; #276]

Contributors: Jonas Ådahl, Takao Fujiwara, Mohammed Sadiq, Marco Trevisan (Treviño), Daniel van Vugt Translators: Baurzhan Muftakhidinov [kk], Kukuh Syafaat [id], Milo Casagrande [it], Changwoo Ryu [ko], Marek Cernocky [cs]

3.30.0

3.30.0 ======

Contributors: Harry Mallon, Marco Trevisan (Treviño)

Translators: Fran Dieguez [gl], Trần Ngọc Quân [vi], Balázs Meskó [hu], Rūdolfs Mazurs [lv], Jiri Grönroos [fi], Anders Jonsson [sv], gogo [hr], Ask Hjorth Larsen [da]

3.30.1

3.30.1 ======* Cancel search on overview hiding [Marco; !205] * Fix disappearing network icon [Iain; #140] * Improve switch-monitor shortcut handling [Daniel; !208] * Fix missing key information in keyring dialog [Florian; #574] * De-duplicate all entries in run command history [Pascal; #524] * Fix frozen disk unlock dialogs [Florian; #565] * Fix unresponsive-app dialog blocking input in other windows [Florian; #273] * Fix handling of forward-key-event input method signal [Carlos; #531] * Misc. bug fixes [Florian, Marco, Carlos, Pascal, Andrea; #520, #791233, !188, #539, !217, #536, #537, #578, !236, #579, !228, #618, #471, !255]

Contributors: Andrea Azzarone, Jürg Billeter, Daniel Drake, Carlos Garnacho, Andre Klapper, Iain Lane, Florian Müllner, Bastien Nocera, Pascal Nowack, Jakub Steiner, Ray Strode, Will Thompson, Marco Trevisan (Treviño), Adam Williamson, Andrew Zaborowski

Translators: Yuras Shumovich [be], Stas Solovey [ru], Justin van Steijn [nl], Dušan Kazik [sk], Khaled Hosny [ar], Madis O [et], Mart Raudsepp [et], Марко Костић [sr], Piotr Drąg [pl], Marek Černocký [cs], Fran Dieguez [gl], Ask Hjorth Larsen [da], Balázs Meskó [hu], Jiri Grönroos [fi], Cheng-Chia Tseng [zh_TW]

3.30.2

3.30.2 ======* popupMenu: Fix keyboard activation when numlock is active [Andrea; #550] * Do not block all shortcuts while app folders are expanded [Florian; #648] * Fix regression in handling new input sources [Carlos; #691] * Improve performance of app icon animations [Daniel; !253, !261] * Respect natural-scroll setting for workspace swipe gesture [Erik; #516] * notifications: Support icon theme names in 'image-path' hint [Marco; !285] * Confine window preview titles to workspace area [Florian; !214] * Misc. bug fixes [Florian, Cosimo; #602, #693, #768, #430, !286]

Contributors: Andrea Azzarone, Cosimo Cecchi, Erik Duxstad, Carlos Garnacho, Florian Müllner, Didier Roche, Marco Trevisan (Treviño), verdre, Daniel van Vugt

Translators: Rūdolfs Mazurs [lv], Kristjan SCHMIDT [eo], Milo Casagrande [it], Dušan Kazik [sk], gogo [hr], Anish Sheela [ml], Rafael Fontenelle [pt_BR], Daniel Mustieles [es] gnome-shell-extensions Current Book Version: 3.28.1 New Version: 3.30.1 3.29.2

3.29.2 ======* Misc. bug fixes [Florian; #69]

Contributors: Florian Müllner

3.29.3

3.29.3 ======* Adjust to global.screen removal [Jonas; #759538]

Contributors: Jonas Ådahl, Florian Müllner

3.29.90

3.29.90 ======* Misc. bug fixes [Florian; #786496]

Contributors: Florian Müllner

3.29.91

3.29.91 ======* Misc. bug fixes [Florian; #90] Contributors: Florian Müllner

3.30.0

3.30.0 ======* Bump version

3.30.1

3.30.1 ======* apps-menu: Fix height on HiDPI systems [Florian; #102] * window-list: Only switch between windows on active workspace when scrolling [Florian; #78]

Contributors: Florian Müllner gnome-session Current Book Version: 3.28.1 New Version: 3.30.1 3.29.90

Version 3.29.90 ======* Drop deprecated environment variable again * harden permissions on config dir

3.30.0

======Version 3.30.0 ======* Fix NEWS file * Translation updates

3.30.1

======Version 3.30.1 ======* fix region computation when debugging is enabled * Translation updates gdm Current Book Version: 3.28.3 New Version: 3.30.2 3.28.4

======Version 3.28.4 ======- Add missing gdm-disable-wayland binary (fixes VM boots) - Disable wayland for certain server cards that can't yet handle sufficiently

3.29.1

Version 3.29.1 ======- Reference counting fixes for GdmClient- ensure plymouth is quit properly even when local greeter is disabled - make sure GDM doesn't hang when called with unknown command line arguments

3.29.90

======Version 3.29.90 ======- display wayland on certain server machines - lifecycle fixes to libgdm/GdmClient - drop intltool - build goo clean ups - kill login screen when not in use - clean up stale utmp entries - misc fixes - Translation updates

3.29.91

======Version 3.29.91 ======- CVE-2018-14424 - double free fix - follow up fixes dealing with login screen reaping form last release - add more debug logging - Translation updates

3.29.92

======Version 3.29.92 ======- search for sessions in XDG_DATA_DIRS - blacklist some more wayland unfriendly hardware - initial setup fix - flicker fix - misc bug fixes

3.30.0

======Version 3.30.0 ======- build fixes

3.30.1

======Version 3.30.1 ======- make udev rule configurable - follow up fixes dealing with login screen reaping from two releases ago - disable wayland on proprietary nvidia machines for now - Translation updates

3.30.2

======Version 3.30.2 ======- Fix autologin crash - Unlock keyring again on autologin with newerish systemds - Fix initial-setup - Translation updates gnome-user-docs Current Book Version: 3.28.2 New Version: 3.30.2 3.30.0

3.30.0 ======* Updates to GNOME Help (Gunnar Hjalmarsson, Michael Hill, Andre Klapper) * Updated translations: ca (Jordi Mas) cs (Marek Cernocky) de (Christian Kirbach, Mario Blättermann) es (Oliver Gutiérrez, Daniel Mustieles) gl (Marcos Lans) pl (Piotr Drąg) pt_BR (Rafael Fontenelle) sv (Anders Jonsson) 3.30.1

3.30.1 ======* Updates to GNOME Help (Andre Klapper) * Updated translations: ca (Jordi Mas) cs (Marek Cernocky) de (Piotr Drąg) es (Oliver Gutiérrez, Piotr Drąg) pl (Piotr Drąg) pt_BR (Rafael Fontenelle, Isaac Ferreira Filho) sv (Anders Jonsson)

3.30.2

3.30.2 ======* Updates to GNOME Help (Michael Hill) * Updated translations: ca (Jordi Mas) cs (Marek Černocký) de (Christian Kirbach) es (Oliver Gutiérrez, Piotr Drąg) lv (Rūdolfs Mazurs) pl (Piotr Drąg) pt_BR (Rafael Fontenelle) sv (Anders Jonsson) yelp Current Book Version: 3.28.1 New Version: 3.30.0 3.30.0

3.30.0 ======* Fixed build with GCC 8 (Michael Catanzaro) * Updated translations: cs (Marek Cernocky) da (Ask Hjorth Larsen) el (Efstathios Iosifidis) fr (Guillaume Bernard) fur (Fabio Tomat) hu (Gábor Kelemen) is (Sveinn à Felli) ko (Seong-ho Cho) tr (Emin Tufan Çetin) zh_CN (Mingcong Bai) gnome-terminal Current Book Version: 3.28.2 New Version: 3.30.2 3.30.0 commit 4b2638a4c99b991ff8a07dfd52b4397d6636fdd9 Author: Christian Persch Date: Sun Sep 2 11:44:47 2018 +0200

Version 3.30.0

configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 3163e640d259445b1b7720b8a17bc20c496fa6a6 Author: Efstathios Iosifidis Date: Fri Aug 31 10:40:16 2018 +0000

Update Greek translation

po/el.po | 109 ++++++++++++++++++++++------1 file changed, 38 insertions(+), 71 deletions(-) commit 2633f949ceddcaa4eed5a6f84813449be242ff1f Author: Seong-ho Cho Date: Tue Aug 28 16:13:15 2018 +0000

Update Korean translation

help/ko/ko.po | 2224 +++++++++++++++++++++++++++++++++++------1 file changed, 1361 insertions(+), 863 deletions(-) commit 805352ce9142528893f38270e8a3256c2a3f2cf5 Author: Christian Persch Date: Sun Aug 26 21:19:37 2018 +0200

Post release version bump

configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)

3.30.1 commit e6aba82fb4e97fd6edfd2feb1057aeaae7c0ece5 Author: Christian Persch Date: Tue Sep 11 18:10:51 2018 +0200

accels: Use correct action name to set menubar visibility

https://gitlab.gnome.org/GNOME/gnome-terminal/issues/33 (cherry picked from commit 4b77237463e3cde75aed55fecacc0208e1f21dd9)

src/terminal-accels.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) commit b0457d4bdcb9e67718f2a5b6727778912ceb43f0 Author: Christian Persch Date: Fri Sep 7 21:10:37 2018 +0200

app: Make new-terminal menu a hidden pref

Some distributions ship a gnome-terminal that changes the new-terminal menu via conditionally compiled code. That makes it impossible for the user to change back to the upstream behaviour.

Instead, add a hidden pref that distributions can set via a gsettings override, and users can change back to the default.

https://gitlab.gnome.org/GNOME/gnome-terminal/issues/30 (cherry picked from commit 30efce621ad04276771aa311f52731b468c4adfd)

src/org.gnome.Terminal.gschema.xml | 4 ++++ src/terminal-app.c | 38 +++++++++++++++++++++++++++++------src/terminal-app.h | 2 ++ src/terminal-schemas.h | 1 + src/terminal-window.c | 30 +++++++++++++++------5 files changed, 51 insertions(+), 24 deletions(-) commit e8d85bc657be52b5443d99cadfcd30262a57b4ca Author: Efstathios Iosifidis Date: Wed Sep 5 22:17:59 2018 +0000

Update Greek translation

po/el.po | 124 +++++++++++++++++++++++++++++++------1 file changed, 62 insertions(+), 62 deletions(-) commit 436aad00fddd6c90f2d5f468ba2d66e3f46ce10a Author: Christian Persch Date: Sun Sep 2 11:52:24 2018 +0200

Post branch version bump

configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)

3.30.2 commit 27aac75535f4be1a8ec998d2f79bbc02caca317b Author: Piotr DrÄ…g Date: Fri Oct 19 22:37:37 2018 +0200

Update Polish translation

help/pl/pl.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 34cabf10a3337fe83bd23ecde451ac861dc88ffc Author: Kjartan Maraas Date: Tue Oct 9 10:34:12 2018 +0000

Update Norwegian Bokmål translation po/nb.po | 1392 +++++++++++++++++++++++++++++++++------1 file changed, 735 insertions(+), 657 deletions(-) commit 62becaedb7ad21bd9c4306ed57aca718650994bf Author: Christian Persch Date: Fri Oct 5 19:56:26 2018 +0200

prefs: Hide the new terminal mode setting when disunified

https://gitlab.gnome.org/GNOME/gnome-terminal/issues/37 (cherry picked from commit b41700af0ffcc99298bcf18d7ccba18623cac7b6)

src/terminal-prefs.c | 20 ++++++++++------1 file changed, 10 insertions(+), 10 deletions(-) commit 20f20a21534a5324baa91e3989ece1bde939b5c3 Author: Christian Persch Date: Mon Sep 24 21:02:09 2018 +0200

Post release version bump

configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) gnome-tweaks Current Book Version: 3.28.1 New Version: 3.30.2 3.29.2

3.29.2 ======Development release.

* Add Center New Windows and Edge Tiling tweaks * Split Window Titlebars section to separate panel * font: Rename Window Title to Legacy Window Title since it doesn't affect client-side decorations

Contributors: Jeremy Bicha

Translations: Yuras Shumovich [be], Marek Černocký [cs], Daniel Mustieles [es], Fabio Tomat [fur], Fran Dieguez [gl], Rafael Fontenelle [pt_BR], Matej Urbančič [sl]

3.29.90

3.29.90 ======Development release. * Move Animations, Power, and Sound to new General panel (Jeremy, Emmanuele) * Add Sound theme chooser to Appearance panel (Lukáš) * Extend font labels for clarify ("Interface text" instead of "Interface", etc.) (Jeremy) * Rename "Sloppy" window focus to "Focus on Hover" (Jeremy) * Drop custom handler and use new glib per-session overrides (Florian) NOTE: This feature requires glib >= 2.57.2 to work correctly.

Contributors: Emmanuele Bassi, Jeremy Bicha, Florian Müllner, Lukáš Tyrychtr

Yuras Shumovich [be], Marek Černocký [cs], Daniel Mustieles [es], Fabio Tomat [fur], Fran Dieguez [gl], Rafael Fontenelle [pt_BR], Matej Urbančič [sl]

Translations: Daniel Mustieles [es], Fabio Tomat [fur], Kukuh Syafaat [id], Daniel Șerbănescu [ro], Mingcong Bai [zh_CN], Yi-Jyun Pan [zh_TW],

3.29.90.1

3.29.90.1 ======Development release.

* Add Weekday on/off switch for the clock in the top bar NOTE: This feature requires gnome-desktop >= 3.29.90.1 to work correctly.

Contributors: Jeremy Bicha

3.29.91.1

3.29.91.1 ======Development release.

* Trivial URL updates (Jeremy)

Contributors: Jeremy Bicha

Translations: Mario Blättermann [de], Fabio Tomat [fur], Baurzhan Muftakhidinov [kk], Piotr Drąg [pl], Aurimas Černius [lt], Emin Tufan Çetin [tr], Yi-Jyun Pan [zh_TW]

3.29.92

3.29.92 ======Development release.

* Fix too small window when unmaxizing (Bharat) * Move General panel to the top of the sidebar (Danish) * Minor adjustments to order in top bar panel (Jeremy) * Don't show Over-Amplification when running the Ubuntu or Pop sessions (Jeremy)

Contributors: Jeremy Bicha, Bharat kalluri, Danish Prakash

Translations: Yuras Shumovich [be], Marek Cernocky [cs], Efstathios Iosifidis [el], Bruce Cowan [en_GB], Jiri Grönroos [fi], Claude Paroz [fr], Hannie Dumoleyn [nl], Kukuh Syafaat [id], Seong-ho Cho [ko], Rafael Fontenelle [pt_BR], Daniel Șerbănescu [ro], Cheng-Chia Tseng [zh_TW]

3.30.0

3.30.0 ======Stable release.

* Show Over-Amplification in the Pop session (Jeremy)

Contributors: Jeremy Bicha

Translations: Alan Mortensen [da], Fran Dieguez [gl], gogo [hr], Balázs Meskó [hu], Rūdolfs Mazurs [lv],

3.30.1

3.30.1 ======Stable release.

* Fix visual glitch by making rows non-activatable by default (Carlos) * Use dim-label for Shell extension descriptions instead of hardcoded color (Jeremy)

Contributors: Jeremy Bicha, Carlos Soriano

Translations: Khaled Hosny [ar], Tom Tryfonidis [el], Daniel Mustieles [es], Gianvito Cavasoli [it], Stas Solovey [ru], Matej Urbančič [sl], Sebastian Rasmussen [sv]

3.30.2

3.30.2 ======Stable release.

* Fix running Tweaks outside of GNOME Shell (Alberts) * Mention in README that sound-theme-freedesktop is required (Jeremy)

Contributors: Jeremy Bicha, Alberts Muktupāvels

Translations: Carmen Bianca BAKKER [eo], Anish Sheela [ml], Kjartan Maraas [nb], Dušan Kazik [sk], Марко Костић [sr], Cheng-Chia Tseng [zh_TW]

Seahorse Current Book Version: 3.20.0 New Version: 3.30.1.1 3.29.90 3.29.90 ------* pgp: don't use unsupported "stock_calendar" as icon name [bgo#757237] * pgp: add hint when 'Full name' is not long enough [bgo#395805] * Update README.md with GitLab links and more * Add previously implicit gio-unix dependency to meson.build [#8] * Several small documentation fixes [!1,!2] * Better decoupling of the sources in src and lib * Require GTK+ >= 3.22 * gkr: ask for confirmation when saving changes [bgo#712348] * Updated AboutDialog [bgo#609418] * ssh: modify the key length options based on the type of encryption * ssh: add basic support for ECDSA and ED25519 keys [bgo#754028] * GTK: remove most uses of Gtk.Stock, use more GtkTemplates * Migrated from autotools to Meson [bgo#788453] * SSH support is now mandatory * Continue the Vala migration, several Vala fixes [bgo#777546,#779948,#785849] * Migrated from intltool to gettext * Updated doap file * gpg: Ignore KEY_CONSIDERED line introduced in gpg 2.1.13 [bgo#778607] * gkr: Don't update key description if it doesn't change [bgo#777802] * Use Unicode in translations [bgo#772532] * Updated translations

3.29.91 seahorse 3.29.91 ------* pgp: remove non-working Help button [#164] * gkr: Fix lock/unlock button in keyring properties [!4] * ssh: upload button didn't work * Clean up deprecated GTK+ stuff * Use header bars more consistently * Implement more widgets using GtkTemplates * Updated translations

3.29.92 seahorse 3.29.92 ------* Add a Flatpak manifest and use it for CI purposes [#7] * gkr: fix segfault when trying to change default keyring password [#182] * Fix - Cannot delete multi-selected SSH keys [#105, !9] * pgp: Seahorse again correctly filters keys for signing [!11] * pgp: Search keys dialog now properly lists key servers again [!10] * Removed ChangeLog files in favor of NEWS file and git history * gkr: Fix lock/unlock button tooltip text in keyring properties [!5] * Get rid of SeahorseCollection in favor of Gcr.FilterCollection [#179] * More cleaning up of deprecated GTK+ stuff * Updated translations

3.30.0 seahorse 3.30.0 ------* Fix no window when launched from .desktop [#192,!16] * Show active window if available on launch [!18] * Add debug logging for filtering * Make yelp documentation optional [!17] * Drop Continuous' configure script [!12] * Fix build on debian [#190] * Updated translations

3.30.1 seahorse 3.30.1 ------* gkr: Passwords are filtered out when "personal" [#196] * ssh: Fix key creation with quotes in the name [#197] * pgp: A progress bar is again shown when creating a PGP key [#108] * Resolved a crash when pasting e.g. a file into the window [#206] * Updated translations

3.30.1.1 seahorse 3.30.1 ------* Fix Vala build issue due to GLib.List type mismatch

Baobab Current Book Version: 3.28.0 New Version: 3.30.0 3.29.1

3.29.1 ======

* Updated translations (af, eo, ro, ru, zh_CN, zh_TW) * Updated documentation translations (gl, it) * Localization fixes 3.30.0

3.30.0 ======

* Updated translations (zh_TW)

EOG Current Book Version: 3.28.3 New Version: 3.28.4 3.28.4

Version 3.28.4 ------

* Many documentation updates and fixes (Andre Klapper, Rafael Fontenelle)

Bug fixes:

!4, User docs: Be clear about plugin tab (Rafael Fontenelle) !5, User docs: Remove non-extra plugin from list (Rafael Fontenelle) !6, User docs: Fix shortcut for image gallery (Rafael Fontenelle) #6, Space bar keyboard shortcut doesn't work (Andre Klapper) #8, Crash when holding right or left arrow key when "Date in statusbar" plugin is enabled (Felix Riemann) #10, "Failed to open file" warning when browsing in a collection of file (Felix Riemann)

New and updated translations:

- Jordi Mas [ca] - Marek Černocký [cs] - Rudolfs Mazurs [lv] - Piotr Drąg [pl] - Cheng-Chia Tseng [zh_TW]

New and updated manual translations

- Marek Černocký [cs] - Mario Blättermann [de] - Daniel Mustieles [es] - Claude Paroz [fr] - Balázs Úr [hu] - Rudolfs Mazurs [lv] - Piotr Drąg [pl] - Rafael Fontenelle [pt_BR] - Anders Jonsson [sv] Current Book Version: 3.28.2 New Version: 3.30.2 3.28.3

======Evince 3.28.3 ======libview: * fix transformation functions to document coordinates. (#914, Juan Pablo Ugarte) * Reset `pressed_button` when starting Drag and Drop. (#754, Jason Crain) * Set minimum for Page Forward/Backward scrolling. (#692, Jason Crain) libmisc: * Emit "updated" signal at end of search. (#917, Jason Crain) * Let the buttons in search bar get focus. (#216, Germán Poo-Caamaño)

Backends: * Fix URL to report unimplemented features (Germán Poo-Caamaño) * Disable PostScript build by default (#967, Germán Poo-Caamaño)

Shell (UI) * Disconnect bookmarks signal on toolbar dispose. (#920, Jason Crain) * Fix crash in ev_media_player_keys_grab_keys (Marek Kasik) * Fix gresource location in recent view. (#670, Germán Poo-Caamaño) * Fix regression on Ctrl+PageUp/PageDown shortcuts. (#699, Germán Poo-Caamaño) * Fix regression on F3 shortcut. (#595, Germán Poo-Caamaño) * Only propagate key press with control on presentation. (#821, Jonas Hahnfeld) * sidebar-bookmarks: fix sensitiveness of remove bookmark button. (#892, Nelson BenÃtez León) * zoom-action: Store priv->popup as a GtkPopover* (#881, Daniel Boles) * zoom-action: Use Popover.popup() to get animation. (#881, Daniel Boles)

UI translations: * Update Afrikaans translation (af) (Pieter Schalk Schoeman) * Update Chinese (China) translation (zh_CN) (Mingcong Bai) * Update Icelandic translation (is) (Sveinn à Felli)

3.28.4

======Evince 3.28.4 ======

Printing: * Fix messages to show printed file name when it contains '&' in the name (#776, Nelson BenÃtez León) libdocument: * Fix handling of mime-type aiases (#972, Bastien Nocera)

Backends: * comics: Use official IANA type for .cbr (#972, Frank Dana) * djvu: Ignore text regions that are missing text (Jason Crain) UI: * Fix Dual odd-left state (#603, Nelson BenÃtez León) * Fix regression, set to odd-left in dual mode when document has only 2 pages (#669, Nelson BenÃtez León) * Fix cursor movement when logical and visual line differs (#889, Colomban Wendling) * Fix zoom-action to respond touch events (#976, Jason Crain)

3.28.5

======Evince 3.28.5 ======

* Handle unexpected page jump while dragging the scroll (Jason Crain)

3.29.90

======Evince 3.29.90 ======

Revamped the user interface. Bug fixes and improvements.

3.29.91

======Evince 3.29.91 ======

Bug fixes and improvements.

3.29.92

======Evince 3.29.92 ======

* Bug fixes and improvements * PostScript backend disabled by default

3.30.0

======Evince 3.30.0 ======

Highlights:

For this releases we focused on making the user experience simpler: we unified the menues, removed redundancies. made explicit actions, enabled shortcuts for most of the features available, and documented them to avoid easter eggs. In this release, we also include snap and flatpack packages, to make testing and contribute Evince simpler. There will be more user interface changes in the next release, but those should be minimal in comparison with this one.

Bugfixes:

* Disable PostScript backend by default (#967, Germán Poo-Caamaño) * Disable build of broswer-plugin by default (#968, Germán Poo-Caamaño) * Use synctex system library if available (#479, Germán Poo-Caamaño) * Correctly process rectangles whose points are not in the right order (#736688, José Aliste) * Expand sentence to facilitate localization (#295, Germán Poo-Caamaño) * Add support for PDF/X and additional xmp metadata (#93, Evangelos Rigas) * Add support for xmp metadata outside x:xmpmeta element (#771, Evangelos Rigas) * escape html entities in markup (#776, Nelson BenÃtez León) * Add instructions on how to update LZMA SDK (#794327, Bastien Nocera) * Update LZMA SDK (#794327, Bastien Nocera) * Make metadata dual licensed (#775, Germán Poo-Caamaño) * Do not add more license unconditionally (#780, Germán Poo-Caamaño) * Annotate functions that wrap vfprintf (#562, Germán Poo-Caamaño) * Update from version 1.18 to 1.21 (#878, Germán Poo-Caamaño) * Reword to not depend on a TeXlive package name (#461, Germán Poo-Caamaño) * document shortcuts to navigate the history (#858, Germán Poo-Caamaño) * libdocument: Add missing indices (Christian Persch) * libview: Add missing indices and functions (Christian Persch) * Add API to get the selected text (#794538, Will Hawkins) * Add inline spell check for annotations (#772622, Will Hawkins) * Document is-loading property (#693864, Germán Poo-Caamaño) * Make sync-source signal introspectable (#694687, Hannes Ovrén) * Reset `pressed_button` when starting Drag and Drop (#754, Jason Crain) * Set minimum for Page Forward/Backward scrolling (#692, Jason Crain) * fix transformation functions to document coordinates. (#914, Juan Pablo Ugarte) * avoid getting pointer position from vertical scroll callback (#793401, Cosimo Cecchi) * do scroll only on one axis at a time. (#866, Nelson BenÃtez León) * ignore unintended motion events while launching synctex (#951, Nelson BenÃtez León) * Emit "updated" signal at end of search (#917, Jason Crain) * Enable popover menu in EvPageActionWidget (#564, Germán Poo-Caamaño) * Let the buttons in search bar get focus (#216, Germán Poo-Caamaño) * Addshortcut to add text annotation (#635, #758329, Felipe Borges) * Add 'toggle continuous' shortcut to help overlay (#820, OisÃn) * Add shortcut to add highlight annotations (#635, #758329, Felipe Borges) * Add missed shortcut keys in help overlay (#786, #890, Yi-Soo An) * Add separator for annotation items in menu (#752, Camille Moulin) * Add shortcut for default zoom (1:1) (#19, Germán Poo-Caamaño) * Add shortcut to delete bookmarks (#478, Germán Poo-Caamaño) * Change icon for menus in buttons (#941, Germán Poo-Caamaño) * Change to a more representative icon for annotations (#928, Germán Poo- Caamaño) * Disconnect bookmarks signal on toolbar dispose (#920, Jason Crain) * Do not expose spellchecking option in the UI (#922, Germán Poo-Caamaño) * Fix DnD support for attachments (#683316, Germán Poo-Caamaño) * Fix crash in ev_media_player_keys_grab_keys (#1359507, #795978, Marek Kasik) * Fix gresource location in recent view (#670, Germán Poo-Caamaño) * Fix regression on Ctrl+PageUp/PageDown shortcuts (#699, Germán Poo-Caamaño) * Fix regression on F3 shortcut (#595, Germán Poo-Caamaño) * Make the space between buttons consistent (#929, Germán Poo-Caamaño) * Make the title RTL compliant (#486, Germán Poo-Caamaño) * Menu reorganization (#475, Germán Poo-Caamaño) * Move 'Open...' file from document to application (#514, #524, Germán Poo- Caamaño) * Only propagate key press with control on presentation (#821, Jonas Hahnfeld) * Remove duplicate and conflictive mnemonics (#770, #938, Germán Poo-Caamaño) * Set application-id (#646985, #918, Marek Kasik) * Set the path to filename as a tooltip in the headerbar (#214, Germán Poo- Caamaño) * Show description of attachments in sidebar (#166, Fernando Herrera) * Use "user-bookmarks" instead of "bookmark-new" (#947, Felipe Borges) * Use display and edit name for filename (#756354, Jason Crain) * Use ev_window_set_action_enabled more (#794749, José Aliste) * Use selection to populate find bar if available. (#794538, José Aliste) * Use text instead of icons in annotations toolbar (#928, Germán Poo-Caamaño) * Use textual Open button instead of icon (#518, Germán Poo-Caamaño) * Use unicode to specify rotation direction in menu (#605, Germán Poo-Caamaño) * there is no need for view_menu_text_selection_popup (#763943, José Aliste) * Fix width of dialog on long file names (#797, Germán Poo-Caamaño) * Remove zoom-in/out icons from menu (#947, Germán Poo-Caamaño) * Store priv->popup as a GtkPopover* (#881, Daniel Boles) * Use Popover.popup() to get animation (#881, Daniel Boles) * Add enumeration for zoom_in/out buttons (Germán Poo-Caamaño) * Set right alignment for zoom percentage (#947, Germán Poo-Caamaño) * Separate Open and Save actions in their own menu groups (#947, Germán Poo- Caamaño) * Use a new icon for the outline in the side bar (#947, Germán Poo-Caamaño) * Show toolbar on select page activation in fullscreen (#784, Germán Poo- Caamaño) * Use Recent View toolbar when cannot open a document (#936, Germán Poo- Caamaño) * Provide hint when find is unavailable (#105, Germán Poo-Caamaño) * update app icon (#2, Jakub Steiner) * install symbolics properly (#961, Jakub Steiner) * Rearrange tools and navigation/view controls (#947, Germán Poo-Caamaño) * Allow adding Highlight annotations from text selection (#763943, Nelson BenÃtez León) * add text markup annotation from selection (#663, Nelson BenÃtez León) * Fix add_annotation() to update area based on bounding box (#763943, Nelson BenÃtez León) * Make annotation title independent of theme (#664, Germán Poo-Caamaño) * Add shortcuts for fullscreen and presentation mode (#786431, Jonas Hahnfeld) * Switch the default sizing mode to automatic (#482, #733632, Juanjo Marin) * Use Unicode quotation marks in new translatable strings (#774005, Piotr DrÄ…g) * Use a custom icon in the toolbar to view the sidebar (#947, Germán Poo- Caamaño) * Save attachments in a temporary directory (#711, #772188, Felipe Borges) * Beautify the bookmarks buttons (#947, Germán Poo-Caamaño) * Expand the sidebar switcher to fill the space (#947, Germán Poo-Caamaño) * Port to GtkStack (#475, Germán Poo-Caamaño) * Put the sidebar switcher on the bottom (#947, Germán Poo-Caamaño) * Add context menu for sidebar annotations (#795631, #891, Nelson BenÃtez León) * fix sensitiveness of remove bookmark button (#892, Nelson BenÃtez León) * Update addons for renamed .desktop (#962, Jeremy Bicha) * Use dual license for addons too (#775, #962, Jeremy Bicha) * Use mailing list address as a contact (Germán Poo-Caamaño) * Use provides to link to previous ID (#962, Jeremy Bicha) * Add dependency on OpenJPEG (#939, Jason Crain) * Add snap packaging (#790393, #856, Ken VanDine)

Contributors:

Allan Day, Andre Klapper, Bastien Nocera, Camille Moulin, Christian Persch, Cosimo Cecchi, Daniel Boles, Evangelos Rigas, Felipe Borges, Fernando Herrera, Germán Poo-Caamaño, Hannes Ovrén, Hans Ulrich Niedermann, Jakub Steiner, Jason Crain, Jeremy Bicha, Jonas Hahnfeld, José Aliste, Juan Pablo Ugarte, Juanjo Marin, Ken VanDine, Marek Kasik, Mirek Kratochvil, Nelson BenÃtez León, Nick Richards, OisÃn, Piotr DrÄ…g, Will Hawkins, Yi-Soo An.

Translations:

* Rafael Fontenelle (Brazilian Portuguese) * Ricardo Silva Veloso (Brazilian Portuguese) * Bruce Cowan (British English) * Jordi Mas (Catalan) * Mingcong Bai (Chinese (China)) * Yi-Jyun Pan (Chinese (Taiwan)) * gogo (Croatian) * Marek Cernocky (Czech) * Marek Černocký (Czech) * Ask Hjorth Larsen (Danish) * Justin van Steijn (Dutch) * Jiri Grönroos (Finnish) * Charles Monzat (French) * Guillaume Bernard (French) * Fabio Tomat (Friulian) * Fran Dieguez (Galician) * Marcos Lans (Galician) * Christian Kirbach (German) * Mario Blättermann (German) * Tim Sabsch (German) * Efstathios Iosifidis (Greek) * Balázs Meskó (Hungarian) * Balázs Úr (Hungarian) * Sveinn à Felli (Icelandic) * Kukuh Syafaat (Indonesian) * Gianvito Cavasoli (Italian) * Baurzhan Muftakhidinov (Kazakh) * Seong-ho Cho (Korean) * Rūdolfs Mazurs (Latvian) * Aurimas Černius (Lithuanian) * Piotr Drąg (Polish) * Daniel Șerbănescu (Romanian) * Stas Solovey (Russian) * Милош Поповић (Serbian Latin) * Matej Urbančič (Slovenian) * Daniel Mustieles (Spanish) * Anders Jonsson (Swedish) * Emin Tufan Çetin (Turkish) * Trần Ngọc Quân (Vietnamese)

3.30.1

======Evince 3.30.1 ======

Printing: * Fix messages to show printed file name when it contains '&' in the name (#776, Nelson BenÃtez León) libdocument: * Fix handling of mime-type aiases (#972, Bastien Nocera) * Fix regression, open gzipped documents (#988, Christian Persch)

Backends: * comics: Use official IANA type for .cbr (#972, Frank Dana) * djvu: Ignore text regions that are missing text (Jason Crain)

UI: * Fix Dual odd-left state (#603, Nelson BenÃtez León) * Fix regression, set to odd-left in dual mode when document has only 2 pages (#669, Nelson BenÃtez León) * Fix cursor movement when logical and visual line differs (#889, Colomban Wendling) * Fix zoom-action to respond touch events (#976, Jason Crain)

UI translations: * Daniel Mustieles (es) * DuÅ¡an Kazik (sk) * Jordi Mas (ca) * Matej Urbančič (sl) * Piotr DrÄ…g (pl) * Stas Solovey (ru) * Tom Tryfonidis (el) * Yuras Shumovich (be) * خالد Øسني (ar)

Doc translations: * Marek Cernocky (cs)

3.30.2

======Evince 3.30.2 ======

UI: * Fix appearance of editable GtkComboBox in PDF form (#1002, Nelson BenÃtez León) * Handle unexpected page jump while dragging the scroll (Jason Crain)

Build: * Claim ownership of org.gnome.evince (#990, Bastien Nocera, Germán Poo-Caamaño)

UI translations: * Марко Костић (sr)

Evolution Current Book Version: 3.28.5 New Version: 3.30.4 3.29.2

Evolution 3.29.2 2018-05-21 ------

Bug Fixes: Bug 795289 - Proxy settings ignored when checking for auth types (Milan Crha) Bug 795331 - Use correct desktop-entry name in notifications (Mathieu Bridon) Bug 795447 - Enigmail GPG encrypted Subject not shown in message list (Milan Crha) Bug 795567 - Do not expand archive folder in Copy/Move message to folder dialog (Milan Crha) Bug 795977 - AutoArchive archives Junk and Deleted messages too (Milan Crha) Bug 796114 - [Collection Accounts] Preselect each unique collection kind, not only first (Milan Crha)

Miscellaneous: Move evolution-alarm-notify to evolution-data-server (Milan Crha) Address some of the clang warnings (Milan Crha) Address some of the compiler and static analyzers warnings (Milan Crha) Crash when making links clickable in composer (Milan Crha) Shift+Click on switcher button to open a new window (Milan Crha)

Translations: Fabio Tomat (fur) Yuras Shumovich (be) Marek Černocký (cs) Christian Kirbach (de)

3.29.3

Evolution 3.29.3 2018-06-18 ------

Bug Fixes: Bug 796155 - Allow changing per-folder archive settings when auto-archiving is disabled (Milan Crha) Bug 796294 - No LTR text direction style in composed HTML messages (Milan Crha) Bug 795870 - Add a way to initiate refresh of account sources (Milan Crha) Bug 795869 - Synchronize color of WebDAV resources (Milan Crha) Bug 776162 - "Ignore Thread" does not always ignore thread (Milan Crha) Bug 796174 - strcat() considered unsafe for buffer overflow (Milan Crha) I#9 - Mail notification tweaks (Ryan Hendrickson) I#14 - Add 'in Current Folder and Subfolders' search option (Milan Crha) I#20 - Hint authentication methods for LDAP address books (Milan Crha) I#19 - Show "message/feedback-report" attachments inline (Milan Crha)

Miscellaneous: [mail-send-recv] Remove unused struct _send_info::keep_on_server property (Milan Crha) Update bug URL and switch to https:// in the DOAP file (Milan Crha) Fix a possible memory leak in mail_display_uri_requested_cb() (Milan Crha) [composer-autosave] Use-after-free during snapshot save to file ][ (Milan Crha) Fix few memory leaks around camel_data_wrapper_get_mime_type() (Milan Crha) Try to preselect source type when creating new source (Milan Crha) Missing build dependency for gdbus-codegen on input .xml file (Milan Crha) Compare only date when searching with Sent/Received dates (Milan Crha) [ENameSelectorEntry] Plain text drag & drop between entries misbehaves (Milan Crha) Use 'User-Agent' instead of 'X-Mailer' header when sending message (Milan Crha) Mail Accounts in Preferences not always properly sorted (Milan Crha) Drop dependency on libcryptui (Milan Crha)

Translations: Daniel Mustieles (es) Marek Cernocky (cs) Cheng-Chia Tseng (zh_TW) Mario Blättermann (de)

3.29.4

Evolution 3.29.4 2018-07-16 ------

Bug Fixes: Bug 704246 - Cannot send encrypted mail to contact with certificate (Milan Crha) Bug 757504 - [Composer] Do not wrap URLs in Plain Text mode (Milan Crha) Bug 548681 - [MessageList] Restore of cursor mispositioned after delete (Milan Crha) Bug 750636 - [Composer] Wrapped line should not start with a space (Milan Crha) Bug 770141 - Help: Remove Quick Reference PDF (Andre Klapper) Bug 723590 - Help: Cover accounts configured in GOA (Andre Klapper) Bug 794085 - Help: Cover why 'Email reminder' option is greyed out (Andre Klapper) Bug 786747 - Help: Add calendar views to list of keyboard shortcut (Andre Klapper) I#25 - Show also URL in collection CalDAV Properties dialogs (Milan Crha) I#31 - Help: German translation: Fix typo in closing tag (Antoine Jacoutot) I#32 - Add column to sort at the end when Ctrl+Click its header (Milan Crha) I#37 - Color support for iCalendar entries (Milan Crha) I#43 - Tasks not shown when Side Panel is hidden (Milan Crha) I#44 - Use Thunderbird's autoconfig ISPDB directly, not its copy (Milan Crha) I#67 - Provide a hint how to show hidden Menu Bar again (Milan Crha) I#39 - Extend Mail autoconfig to check in server's autoconfiguration too (Milan Crha) I#55 - "Custom sort" dialog freezes Evolution and hogs the CPU under Wayland (Milan Crha) I#53 - Address Helgrind warning about lock acquire order (Milan Crha) I#69 - [MessageList] Regeneration loses selection start (Milan Crha) eds-I#13 - [IMAPx] Fails to append message to Yahoo! with no CRLF at the end (Milan Crha) eds-I#3 - [GPG] Mails that are not encrypted look encrypted (Milan Crha)

Miscellaneous: Show more options in CalDAV Properties for collection sources (Milan Crha) Make it possible to disable text-highlight module with a GSettings option (Milan Crha) Update links to GNOME git repositories in flatpak files (Milan Crha) [EContactEditor] Do not store empty values in vCard (Milan Crha) Correct memory leak of object returned by atk_object_ref_relation_set() (Milan Crha) Try also with the From address when looking up correct From account for composer (Milan Crha) Properly wrap text in 'Security Information' dialog (Milan Crha) Add 4px bottom margin to secure button table (Milan Crha) [autoconfig] Rename look up on GNOME server, because it's not true anymore (I#44) (Milan Crha) [Composer] Message generated twice when using 'Send through Outbox' (Milan Crha) Fix few memory leaks, mostly around gtk_..._new_with_model() (Milan Crha) Update couple HTML editor tests (Milan Crha) Help: Fix grammar in a sentence (Anders Jonsson) Help: Update meeting invitation process due to UI changes (Дилян Палаузов) Help: Fix a typo (Andre Klapper) Help: Cover email aliases from bug 605416 (Andre Klapper) Help: Better explain syncing remote accounts vs individual folders for offline usage (Andre Klapper) Help: Fix my markup in previous commit (Andre Klapper) Help: Add less complicated way to get menu bar displayed again (Andre Klapper) Help: Use same names for views as in the UI (Andre Klapper) Help: Remove shortcuts from calendar views, now in intro-keyboard-shortcuts (Andre Klapper) Help: Fix duplicate section IDs (Andre Klapper) Help: Option is now called Custom, not Customize (Andre Klapper) Help: Use stable if namespace instead of experimental (Andre Klapper) Help: Use https URL for CC license link (Andre Klapper) Help: Use https URL for w3.org links (Andre Klapper) Help: Update URL from library.gnome.org to help.gnome.org for older content (Andre Klapper)

Translations: Fabio Tomat (fur) Daniel Mustieles (es)

3.29.90

Evolution 3.29.90 2018-07-30 ------

Bug Fixes: Bug 787344 - Mail Notification account selection (Milan Crha) Bug 788370 - Rename address book WebDAV backend to CardDAV (Milan Crha) Bug 269852 - Label should be on "Message" menu when mail is selected (Milan Crha) Bug 241477 - Message color cannot be removed once applied to a message (Milan Crha) Bug 240905 - Can't edit Follow Up flag (Milan Crha) Bug 227703 - Add option to Hide cancelled tasks (Milan Crha) I#75 - "Empty Junk" does not work on a real Junk folder (Milan Crha) I#71 - Workaround cursor movement through unbreakable anchor bug (Milan Crha) I#78 - Search scope in Mail view not restored properly (Milan Crha) I#57 - Edited event time keeps the old instance in the UI (Milan Crha) I#46 - Old plain text signature not updated before editing (Milan Crha) I#80 - p7s attachements are not shown in mail preview (Milan Crha)

Miscellaneous: [mail-notification] Correct a recently added translatable string (Milan Crha) Highlight of the search bar entry doesn't work (Milan Crha) Fix two possible memory leaks related to message composer (Milan Crha) Update some of the editor unit tests to not fail (Milan Crha) Propagate trust prompt response within collection sources (Milan Crha) Unnecessary message parse when viewing message source (Milan Crha) Print of message source doesn't print message source (Milan Crha) Help: Remove comment about Buteo (those links are dead) (Andre Klapper) Help: Use https URL for syncevolution link (Andre Klapper) Help: Use https URL for IETF RFC links (Andre Klapper) Help: Replace GNOME Bugzilla by GNOME Gitlab link to report bugs (Andre Klapper) Help: Use https URL for GNOME FTP link (Andre Klapper) Help: Use https URL for freedesktop.org spec (Andre Klapper) Help: Cover mail label item added to main menu in bug 269852 (Andre Klapper) Help: add a TODO item (Andre Klapper)

Translations: Daniel Șerbănescu (ro) Fabio Tomat (fur) Wolfgang Stöggl (de) Jordi Mas i Hernandez (ca) Aurimas Černius (lt) Daniel Mustieles (es)

3.29.91

Evolution 3.29.91 2018-08-13 ------

Miscellaneous: docs: Use http for w3.org URLs so gettext parsing itstool tags doesn't choke (Andre Klapper) Add a translator comment to "Archive" (Andre Klapper) Replace Bugzilla by Gitlab in user-visible error messages (Andre Klapper) Use the fancy Unicode apostrophes in new strings (Piotr DrÄ…g)

Translations: Daniel Mustieles (es) Aurimas Černius (lt) Fabio Tomat (fur) Matej Urbančič (sl) Mario Blättermann (de) Alexandre Franke (fr) Yuras Shumovich (be) Piotr Drąg (pl) Chao-Hsiung Liao (zh_TW) Yi-Jyun Pan (zh_TW) 3.29.92

Evolution 3.29.92 2018-08-27 ------

Bug Fixes: I#83 - Follow Up "is not Completed" search condition does not work (Milan Crha) I#82 - Text selection with signature not used in Reply (Milan Crha) I#47 - Unset calendar filters which force the List View on view change (Milan Crha)

Miscellaneous: Correct build when nss/nspr do not provide pkg-config files (Milan Crha) Crash under config_lookup_thread() at e-config-lookup.c:179 (Milan Crha) [EMailRequest] mail:// URI can be without additional arguments (Milan Crha) Help: Link to Evolution project on GNOME Gitlab instead of frontpage (Andre Klapper)

Translations: Yi-Jyun Pan (zh_TW) Aurimas Černius (lt) Fabio Tomat (fur) Jiri Grönroos (fi) Efstathios Iosifidis (el) Bruce Cowan (en_GB) Daniel Șerbănescu (ro) Baurzhan Muftakhidinov (kk) Cheng-Chia Tseng (zh_TW) Claude Paroz (fr) Kukuh Syafaat (id) Emin Tufan Çetin (tr) Rafael Fontenelle (pt_BR) Tim Sabsch (de) Christian Kirbach (de)

3.30.0

Evolution 3.30.0 2018-09-03 ------

Miscellaneous: Help: Cover required 'Less secure apps' for Gmail POP (Andre Klapper) Help: Cover GOA and 'Less secure apps' for Gmail IMAP (Andre Klapper) Help: Add same info about GOA accounts as in 82692a82e5 (Andre Klapper) Spanish help translation: Fix broken markup (Andre Klapper)

Translations: Changwoo Ryu (ko) Fran Dieguez (gl) Mario Blättermann (de) Alan Mortensen (da) Jiri Grönroos (fi) Anders Jonsson (sv)

3.30.1 Evolution 3.30.1 2018-09-24 ------

Bug Fixes: Bug 750636 - Wrapped line should not start with a space ][ (Milan Crha) Bug 548656 - Emails using cancelled ical event not displayed correctly (Milan Crha) I#86 - Quoting of plain text mail into HTML mode mangles deeper levels (Milan Crha) I#103 - Extra new line added in front of long URLs (Milan Crha) I#107 - Reply with selection and URL can produce extra letters (Milan Crha) I#108 - Expunge in virtual Trash folder shows runtime warnings (Milan Crha) I#101 - Correct icon sizes for contact-editor.png (Milan Crha) I#104 - Replacing a string with nothing does not work in composer (Milan Crha) I#118 - Unsubscribing requires selecting the folder first (Milan Crha) I#119 - Default to TLS encryption for new Mail accounts (Milan Crha) I#122 - Avoid delayed message send when editing the Outbox message (Milan Crha) I#123 - Reply to part of encrypted mail is unencrypted by default (Milan Crha) I#110 - Attached meeting invitation can misbehave (Milan Crha) I#127 - Make Collection Account Wizard “Next” button default (Milan Crha) I#129 - Use unversioned URL to help.gnome.org (Milan Crha) I#66 - "Inherit theme colors in HTML format" is always visually enabled in composer (Milan Crha)

Miscellaneous: Update Flatpak build scripts to better integrate with the host desktop (Milan Crha) [mail-send-receive] Try harder when searching for mail shell view (Milan Crha) Improve Flatpak manifests (Milan Crha) Composer autosave can stop working (Milan Crha) [ECollectionAccountWizard] Preset user name to mail sources (Milan Crha) [EMVFolderEditor] Correct path used to e_restore_window() (Milan Crha) Updated Czech default mail translation (Marek Cernocky) Fixed links in default mail (Marek Cernocky)

Translations: Rūdolfs Mazurs (lv) Anders Jonsson (sv) Gábor Kelemen (hu) Marek Cernocky (cs) Daniel Mustieles (es) Christian Kirbach (de) Gianvito Cavasoli (it) Peter Vágner (sk) Rodrigo Lledó (es)

3.30.2

Evolution 3.30.2 2018-10-22 ------

Bug Fixes: I#135 - Cannot scroll up to previous date in Calendar's Week/Month View (Milan Crha) I#136 - Choose contrasting font color for the calendar data (Milan Crha) I#139 - Deselects task/memo list when started in Calendar view (Milan Crha) I#140 - Single key accelerator triggered in search box (Milan Crha) I#155 - Cannot expand list of recipients of an attached email (Milan Crha) I#159 - [gal-a11y-e-cell-tree] Call e_tree_model_node_is_expandable() with non-NULL 'node' (Milan Crha) I#162 - Replied to message marked as seen after message send (Milan Crha) I#163 - Open selected event/memo/task on “Enter” (Milan Crha) I#164 - Mute "Failed to handle source headers" runtime warning (Milan Crha) I#166 - Improve the appdata file (Milan Crha) I#176 - [Calendar] Incorrectly splits attendee name and email address (Milan Crha) I#183 - Set of DATE/DATE-TIME doesn't reset VALUE parameter (Milan Crha) M!4 - Add X-Flatpak-RenamedFrom to the desktop file (Bilal Elmoussaoui)

Miscellaneous: Print actions disabled in Calendar view (Milan Crha) Task Location shown as Summary in preview pane (Milan Crha) Make sure message_list_folder_changed() is called from the main/UI thread (Milan Crha) [Flatpak] Use host system DConf to store user settings (Milan Crha) Free/Busy lookup for authenticated URLs not re-tried (Milan Crha) [Calendar] Fix issues with attendees editing of an existing meeting (Milan Crha) A little code clean-up related to the previous commit (Milan Crha) [Event/Task editor] Force timezone part show only if really needed (Milan Crha)

Translations: Kjartan Maraas (nb) Piotr Drąg (pl) Rafael Fontenelle (pt_BR) Marek Cernocky (cs) Kukuh Syafaat (id) Christian Kirbach (de) Anders Jonsson (sv) Yi-Jyun Pan (zh_TW) Kristjan SCHMIDT (eo) Rūdolfs Mazurs (lv) Emin Tufan Çetin (tr) Balázs Meskó (hu)

3.30.3

Evolution 3.30.3 2018-12-10 ------

Bug Fixes: Bug 652821 - [MessageList] Sort thread children ascending (Milan Crha) eds-I#51 - [Gmail] Change from OAuth2 to other authentication doesn't stick (Milan Crha) I#154 - Mail signature is changed when reopening an email in the Drafts/Outbox (Milan Crha) I#169 - [Flatpak] Cannot open attachment directly from the attachments bar (Milan Crha) I#180 - [ECompEditor] Organizer changed when editing existing component (Milan Crha) I#182 - Calendar month/year forward/backward arrows overlap (Milan Crha) I#187 - [Composer] Disable useless spell check update (Milan Crha) I#196 - Build developer documentation in a fix order (Milan Crha) I#198 - Convert UTC date in Inline (Outlook style) reply when set to (Milan Crha) I#208 - Task Completed time should be in UTC (Milan Crha) I#214 - Bold meeting summary text cut in Calendar view (Milan Crha) I#238 - [ECollectionAccountWizard] Clear old results before starting any worker (Milan Crha) I#252 - Mail view's magic spacebar executed even when the view is inactive (Milan Crha) I#254 - Handle components with no Summary in the To Do bar and Week view (Milan Crha) Revert "I#162 - Replied to message marked as seen after message send" (Milan Crha)

Miscellaneous: Make sure intltool-merge cache is created only once (Milan Crha) Correct evolution-mail-formatter user documentation build warning (Milan Crha) [EWebView] Use case insensitive search when highlighting words in the body (Milan Crha) e_mail_formatter_format_address: Quote name part when it contains special letters (Milan Crha) [SRV config lookup] Preset authentication method for SMTP (Milan Crha) [Flatpak manifests] Build geocode-glib directly with meson (Milan Crha)

Translations: Matej Urbančič (sl) Fabio Tomat (fur) Charles Monzat (fr) Athul R T (ml) Dušan Kazik (sk) Aurimas Černius (lt) Carmen Bianca BAKKER (eo) Iñaki Larrañaga Murgoitio (eu) Jordi Mas (ca)

3.30.4

Evolution 3.30.4 2019-01-07 ------

Bug Fixes: I#273 - Set messages also seen in 'Empty Junk' (Milan Crha)

Miscellaneous: Clamp GSettings values before restoring window size (Milan Crha) "Save Image..." fails on shown attached image in message preview (Milan Crha)

File-Roller Current Book Version: 3.28.1 New Version: 3.30.1 3.29.1 version 3.29.1 ------

New features and user visible changes:

* Removed app menu.

Bugs fixed:

* Keep "create" button disabled until a file name is entered. (#789766)

New or updated application translations:

* Catalan (Gil Forcada) * Chinese (China) (Dingzhong Chen) * Chinese (traditional) (Cheng-Chia Tseng) * Polish (Piotr Drąg) * Afrikaans (Pieter Schalk Schoeman) * Русский (Stas Solovey)

New or updated manual translations:

* Galician (marcos)

3.29.90 version 3.29.90 ------

New features and user visible changes:

* Restored app menu.

New or updated application translations:

* français (Charles Monzat)

3.29.91 version 3.29.91 ------

Bugs fixed:

* Fixed loading of .epub and .crx files * Path traversal vulnerability. Do not extract files with relative paths. (#794337)

New or updated application translations:

* Arabic (Khalid Abu Shawarib) 3.30.0 version 3.30.0 ------

New or updated manual translations:

* Brazilian Portuguese (Rafael Fontenelle) * Deutsch (Mario Blättermann) * Polish (Piotr Drąg) * Swedish (Sebastian Rasmussen)

3.30.1 version 3.30.1 ------

New or updated application translations:

* Arabic (Khalid Abu Shawarib)

New or updated manual translations:

* Czech (Marek Černocký) * Hungarian (Balázs Úr) gnome-calculator Current Book Version: 3.28.2 New Version: 3.28.1 3.29.90

Overview of changes in gnome-calculator 3.29.90 * Fixed flatpak build issues (Robert Roth) * Fixed naming of Turkish lira currency (Çağatay Yiğit Şahin) * Added OARS metadata (Nick Richards) * CI configuration (Robert Ancell) * Updated Spanish translation (Daniel Musteles) * Updated Chinese (Taiwan) translation (Yi-Jyun Pan) * Updated Romanian translation (Daniel Șerbănescu) * Updated Catalan translation (Jordi Mas) * Updated Brazilian Portuguese translation (Bruno Lopes da Silva)

3.29.91

Overview of changes in gnome-calculator 3.29.91 * Updated Polish translation (Piotr Drąg) * Updated Brazilian Portuguese translation (Bruno Lopes da Silva) * Updated snap to build with meson (Ken VanDine) * Updated Slovenian translation (Matej Urbančič) * Updated German translation (Mario Blättermann) * Updated French tanslation (Alexandre Franke) * Updated Lithuanian translation (Aurimas Černius) * Updated Chinese (Taiwan) translation (Yi-Jyun Pan) * Updated Turkish translation (Emin Tufan Çetin) * Updated Italian translation (Fernando Governatore)

3.30.0

Overview of changes in gnome-calculator 3.30.0 * Updated Czech translation (Marek Cernocky) * Updated Swedish translation (Anders Jonsson) * Updated Friulian translation (Fabio Tomat) * Updated Finnish translation (Jiri Grönroos) * Updated Kazakh translation (Baurzhan Muftakhidinov) * Updated Indonesian translation (Kukuh Syafaat) * Updated Dutch translation (Hannie Dumoleyn) * Updated Korean translation (Changwoo Ryu, Seong-ho Cho) * Updated Galician translation (Fran Diéguez) * Updated Vietnamese translation (Trần Ngọc Quân) * Updated Hungarian translation (Balázs Meskó) * Updated Italian translation (Gianvito Cavasoli) * Updated Latvian translation (Rūdolfs Mazurs) * Updated Brazilian Portuguese translation (Rafael Fontenelle) * Updated Croatian translations (Goran Vidović) * Updated Danish translation (Ask Hjorth Larsen)

3.30.1

Overview of changes in gnome-calculator 3.30.1 * Fix opening multiple windows in GNOME Shell (Florian Müllner) * Updated Polish translation (Piotr Drąg) * Mark some strings translatable (Robert Roth) * Updated Swedish translation (Anders Jonsson) * Updated Indonesian translation (Kukuh Syafaat) * Updated Turkish translation (Emin Tufan Çetin) * Updated Czech translation (Marek Cernocky) * Updated Brazilian Portuguese translation (Rafael Fontenelle) * Updated Hungarian translation (Balázs Meskó) * Updated Friulian translation (Fabio Tomat) * Updated Romanian translation (Daniel Șerbănescu) * Updated Russian translation (Stas Solovey) * Updated Croatian translations (Goran Vidović) * Updated Italian translation (Janvitus) * Updated German translation (Mario Blättermann) * Updated Finnish translation (Jiri Grönroos) * Updated Latvian translation (Rūdolfs Mazurs) * Updated Slovenian translation (Matej Urbančič) * Updated Danish translation (Ask Hjorth Larsen) gnome-disk-utility Current Book Version: 3.28.3 New Version: 3.30.2 3.29.90

3.29.90 - July 30, 2018 ======mtvoid: * Fix swapped "Number of Samples" tooltips in benchmark dialog

Updated translations: * Balázs Meskó (hu), Daniel Mustieles (es), Daniel Șerbănescu (ro), Emin Tufan Çetin (tr), Fabio Tomat (fur), Gun Chleoc (gd), Jordi Mas (ca), Marek Cernocky (cs), Yi-Jyun Pan (zh_TW)

3.29.92

3.29.92 - August 27, 2018 ======

Piotr DrÄ…g: * Mark missing string for translation

Updated translations: * Aurimas Černius (lt), Baurzhan Muftakhidinov (kk), Bruno Lopes da Silva (pt_BR), Claude Paroz (fr), Jiri Grönroos (fi), Kukuh Syafaat (id), Milo Casagrande (it), Piotr Drąg (pl), Tim Sabsch (de)

3.30.0

3.30.0 - September 3, 2018 ======

Updated translations: * Anders Jonsson (sv), Ask Hjorth Larsen (da), Changwoo Ryu (ko), Fran Dieguez (gl), gogo (hr), Hannie Dumoleyn (nl), RÅ«dolfs Mazurs (lv)

3.30.1

3.30.1 - September 24, 2018 ======

Jeremy Bicha: * GduVolumeGrid: Use starred icon instead of user-bookmarks

Kai Lüke: * Remove redundant error showing

Updated translations: * Emin Tufan Çetin (tr), Jordi Mas (ca), Stas Solovey (ru)

3.30.2

3.30.2 - October 22, 2018 ======Updated translations: * Марко Костић (sr) gnome-logs Current Book Version: 3.28.5 New Version: 3.30.0 3.29.1

GNOME Logs 3.29.1 ======

* only show similar timestamps once from ankritisachan * various memory leak fixes * exporting blank journal crash fix from H00ly666 * updates to Russian and Polish translations

3.29.4

GNOME Logs 3.29.4 ======

* disable exporting logs when there are none from ankritisachan * update GTK+ requirement in README * various fixes in meson build system * fix typo in meson build system from Bjørn Lie * dropped dogtail test case * updates to Chinese (China), Greek and Romanian translations

3.30.0

GNOME Logs 3.30.0 ======

* install AppData XML to metainfo from Bjørn Lie * Update MSGID_BUGS_ADDRESS in po/Makevars from Piotr Drąg * updates to Belarusian and Korean translations gnome-maps Current Book Version: 3.28.2 New Version: 3.30.3 3.29.2

3.29.2 - May 21, 2018 ======Added/updated/fixed translations - Chinese (China) - Swedish - Romanian - Indonesian - Italian - Spanish - Slovenian - Greek - Friulian - Turkish

All contributors to this release: Anders Jonsson Daniel Mustieles Daniel Șerbănescu Efstathios Iosifidis Fabio Tomat Kukuh Syafaat Mandy Wang Marcus Lundblad Matej Urbančič Milo Casagrande Muhammet Kara

3.29.3

3.29.3 - Jun 19, 2018 ======

Changes since 3.29.1 - Stop using notifications on top of the map view as it doesn't work on Wayland - Add OARS tags

Added/updated/fixed translations - Chinese (Taiwan) - Occitan - Brazilian Portuguese - Chinese (China)

All contributors to this release: Cédric Valmary Enrico Nicoletto Marcus Lundblad Mingcong Bai nick richards Yi-Jyun Pan

3.29.4

3.29.4 - Jul 16, 2018 ======

Changes since 3.29.3 - Use g_application_mark_busy() instead of the home-brewed busy marker - Limit the number of via points in routing queries to 10 to avoid hitting a limit in GraphHopper and also to better fit the UI - Various Flatpak updates

Added/updated/fixed translations - Brazilian Portuguese - Catalan - Romanian - Friulian - Greek - Chinese (Taiwan) - Spanish

All contributors to this release Alberto Fanjul Bruno Lopes da Silva Daniel Mustieles Daniel Șerbănescu Efstathios Iosifidis Fabio Tomat Marcus Lundblad Pere Orga Vinayak Aggarwal Yi-Jyun Pan

3.29.90

3.29.90 - Jul 30, 2018 ======

Changes since 3.29.4 - Add a Flatpak CI build/test job

Added/updated/fixed translations - French

All contributors to this release Charles Monzat Jordan Petridis Marcus Lundblad

3.29.91

3.29.91 - Aug 13, 2018 ======

Changes since 3.29.90 - Don't spin up CI environments for master and tags

Added/updated/fixed translations - Turkish - Lithuanian - Swedish - French - German - Polish - Slovenian All contributors to this release Anders Jonsson Aurimas Černius Claude Paroz Emin Tufan Çetin Jordan Petridis Mario Blättermann Matej Urbančič Piotr Drąg

3.29.92

3.29.92 - Aug 27, 2018 ======

Changes since 3.29.91 - Updated POI definitions and translations for OSM editing

Added/updated/fixed translations - Indonesian - Finnish - Kazakh - Icelandic - Czech

All contributors to this release Baurzhan Muftakhidinov Jiri Grönroos Kukuh Syafaat Marcus Lundblad Marek Cernocky Sveinn à Felli

3.30.0

3.30.0 - Sep 3, 2018 ======

Added/updated/fixed translations - Danish - Croatian - Latvian - Hungarian - Vietnamese - Italian - Galician - Korean

All contributors to this release Ask Hjorth Larsen Balázs Meskó Fran Dieguez Gianvito Cavasoli gogo Rūdolfs Mazurs Seong-ho Cho Trần Ngọc Quân

3.30.1

3.30.1 - Sep 24, 2018 ======

Changes since 3.30.0 - Fix shape layer file chooser not showing up

Added/updated/fixed translations - Russian

All contributors to this release Marcus Lundblad Stas Solovey

3.30.2.1

3.30.2.1 - Nov 8, 2018 ======

Changes since 3.30.2 - Fix version number in release tarball (3.30.2 was missing update of meson.build)

Added/updated/fixed translations - French - Slovak

All contributors to this release Charles Monzat Dušan Kazik

3.30.2 - Oct 22, 2018 ======

Changes since 3.30.1 - Fix a crash that occured sometimes when activating "What's here?" from the context menu

Added/updated/fixed translations - Serbian

All contributors to this release Marcus Lundblad Марко Костић

3.30.3

3.30.3 - Dec 10, 2018 ======

Changes since 3.30.2.1 - Fix loading contact's adresses with newer GJS Added/updated/fixed translations - Esperanto

All contributors to this release Carmen Bianca BAKKER James Westman gnome-screenshot Current Book Version: 3.26.0 New Version: 3.30.0 3.30.0

GNOME Screenshot 3.30.0 - 3rd September 2018 ======

- Minor build system improvements [Emmanuele Bassi, Jasper Lievisse Adriaanse, Piotr DrÄ…g] - Fix grammar mistake in man page [Matthew Leeds] - Translation updates gnome-system-monitor Current Book Version: 3.28.2 New Version: 3.30.0 3.29.3

New in 3.29.3 - 18 June 2018

* added/updated translations Stas Solovey (ru) Yi-Jyun Pan (zh_tw) Marek Černocký (cz) Efstathios Iosifidis (he)

List of fixed bugs gitlab#80 ship app icon 796168 Fixed crash caused by regex error Migrate to meson Updated bugzilla references to gitlab Use short process name for process dialog title

3.29.90

New in 3.29.90 - 30 July 2018

* added/updated translations Daniel Musteles (es) Fabio Tomat (fur) Bruno Lopes da Silva (pt_BR) Daniel Șerbănescu (ro)

List of fixed bugs Coding style fixes Build fixes

3.29.91

New in 3.29.91 - 13 Augsut 2018

* added/updated translations Mario Blättermann (de) Matej Urbančič (sl) Piotr Drąg (pl) Charles Monzat (fr) Anders Jonsson (se) Aurimas Černius (lt) Emin Tufan Çetin (tr)

3.30.0

New in 3.30.0 - 3 September 2018

* added/updated translations Jiri Grönroos (fi) Sveinn à Felli (is) Safa Alfulaij (ar) Baurzhan Muftakhidinov (kk) Marcos Lans, Fran Diéguez (gl) Hwan Jo (ko) Kukuh Syafaat (id) Milo Casagrande (it) Rūdolfs Mazurs (lv) Balázs Meskó (hu) Goran Vidović (hr) Ask Hjorth Larsen (da) gucharmap Current Book Version: 10.0.4 New Version: 11.0.3 11.0.2

Post release version bump build: Explicitly link to libdl Update Dutch translation Update Icelandic translation Updated Lithuanian translation Update Swedish translation Update Polish translation unicode: Update to unicode 11.0.0 Post release version bump unicode: Update checksums Post release version bump Update Polish translation Update Brazilian Portuguese translation charmap: Enhance the font name combo box by an entry with completion

The font name entry combo box has been enhanced with an entry widget that does partial font name completion. This makes searching for a font much faster when a large number of fonts are installed.

build: respect localedir flag build: drop intltool

Modern gettext will do the same job:

build: Fix Makevars

gucharmap does use message contexts.

Revert "build: Fix Makevars" Revert "build: drop intltool" Update German translation Remove obsolete file charmap: Fix email address Update Indonesian translation Update Korean translation 11.0.3

Post release version bump Help: Replace ancient application window screenshot by recent one Update Polish translation Update Croatian translation Update Swedish translation Updated Czech translation Updated Danish translation Update Hungarian translation Updated Czech translation