diff options
author | raveit65 <[email protected]> | 2019-09-17 16:59:18 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-09-17 16:59:18 +0200 |
commit | 047a14c5de0d1195d4edfcb1d7e42188d48b6d58 (patch) | |
tree | 1a2a9c0e0e124c744ae2d1ebeba1c01cb95f7deb | |
parent | ceecf8fb6486f68008ac060ab0900a0af2ba0704 (diff) | |
download | caja-1.22.2.tar.bz2 caja-1.22.2.tar.xz |
release 1.22.2v1.22.2
-rw-r--r-- | NEWS | 59 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 46 insertions, 15 deletions
@@ -1,19 +1,50 @@ +### caja 1.22.2 + + * update translations + * caja-progress-info: use NotifyNotification instead of GNotification + * Update Korean translation which prevents a segfault on file move + * Use the same view settings for search results as the folder being searched + * fix build error about fm-empty-view + * preferences: Render extension icons as cairo_surfaces + * preferences: Render media icons as cairo_surface + * Replace gdkpixbuf with cairo_surfaces in a few more places + * sidebar: Render info icon as vector + * caja-location-dialog: Fix 'cppcheck' and 'clang' warnings + * eel-editable-label: Use 'memmove' instead of 'memcpy' + * caja-file: avoid shifting signed 32-bit value by 31 bits + * caja-icon-canvas-item: initialize variable 'scale' + * caja-application: avoid NULL inside 'g_object_unref' + * fm-desktop-icon-view: remove dead code + * caja-file-operations: make sure 'error' isn't NULL + * caja-open-with-dialog: make sure there is error before showing it + * caja-sidebar-title: avoid 'NULL' inside 'setup_gc_with_fg' + * caja-autorun: avoid NULL in 'memcpy' + * eel-editable-label: call argument with initialized value + * configure.ac: fix portability issue with test + * eel-canvas: Fix warning: Undefined or garbage value returned to caller + * caja-window: Fix garbage value + * Fix attempt to free released memory + * Render file-conflict icons as cairo_surface vectors + * file-conflict-dialog: don't scale icons twice on hidpi monitors + * desktop icon view: disconnect callback from correct GSettings instance + * hidpi: ensure all icons are properly scaled + ### caja 1.22.1 - tx: sync with transifex - caja-progress-info: make sure argument is initialized - Fix invocation with --geometry from the command line - Pass "NULL" for keyboard event - caja-file: Fix incomplete file replacement dialog - eel-gdk-pixbuf-extensions: Fix division by zero - caja-file: Fix use of memory after it is freed - caja-icon-container: Fix use of memory after it is freed - fm-tree-model: Fix use of memory after it is freed - caja-information-panel: Fix use of memory after it is freed - fm-directory-view: Fix use of memory after it is freed - caja-tree-view-drag-dest: Fix memory leak - [Security] eel-string: Use 'g_strlcat' instead of 'strcat' - [Security] Use 'g_strlcpy' instead of 'strcpy' + * update translations + * caja-progress-info: make sure argument is initialized + * Fix invocation with --geometry from the command line + * Pass "NULL" for keyboard event + * caja-file: Fix incomplete file replacement dialog + * eel-gdk-pixbuf-extensions: Fix division by zero + * caja-file: Fix use of memory after it is freed + * caja-icon-container: Fix use of memory after it is freed + * fm-tree-model: Fix use of memory after it is freed + * caja-information-panel: Fix use of memory after it is freed + * fm-directory-view: Fix use of memory after it is freed + * caja-tree-view-drag-dest: Fix memory leak + * [Security] eel-string: Use 'g_strlcat' instead of 'strcat' + * [Security] Use 'g_strlcpy' instead of 'strcpy' ### caja 1.22.0 diff --git a/configure.ac b/configure.ac index dd0d201b..f5f2f88c 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,7 @@ dnl Interface break is not allowed. m4_define(caja_extension_current, 5) m4_define(caja_extension_revision, 0) -AC_INIT([caja], [1.22.1], [http://www.mate-desktop.org]) +AC_INIT([caja], [1.22.2], [http://www.mate-desktop.org]) dnl --------------------------------------------------------------------------- |