Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-05-19 | caja-directory.c: Fix memory leak. | Michael Webster | 1 | -1/+1 | |
When creating a new file (using a template, for instance), file-> details->is_added could potentially be FALSE, and cause this file to not be finalized along with other files if the view directory is destroyed. This can cause issues when re-entering that directory, with the file being in an undefined state, and could prevent the view from fully loading the location (this is identical behavior to that described in https://github.com/mate-desktop/python-caja/pull/64. To reproduce: - Create an svg file and save in ~/Templates. - Right-click, Create document-> svg file, name it whatever. - Navigate out of the folder. - Modify the file in a visible manner. - Re-enter the folder, note that it never finishes loading. Ref: https://github.com/linuxmint/nemo/issues/2736 | |||||
2021-04-20 | Add creation time support | rbuj | 6 | -3/+54 | |
2021-04-13 | icon view: Add a directory setting to block moving icons | Colomban Wendling | 5 | -1/+24 | |
This is mostly useful on the desktop (which is the main user of the free-placement icon view) to be able to lock the layout and avoid unintentionally moving icons around. Especially useful for less computer-literate users. | |||||
2021-04-02 | Improved filesystem check on dnd | robertxgray | 3 | -14/+66 | |
2021-03-11 | keep one .desktop suffix on desktop file renaming | Konstantin Unruh | 1 | -1/+4 | |
2021-02-25 | Fix warnings about xmlChar cast | rbuj | 1 | -5/+10 | |
2021-02-24 | caja-customization-data: keep the key of the hash table if exists | rbuj | 1 | -1/+1 | |
2021-02-24 | caja-customization-data: Do not build the path to the browser.xml file | rbuj | 1 | -27/+18 | |
2021-02-21 | caja-directory-async: drop istr_set_insert, use g_hash_table_add instead | rbuj | 1 | -19/+7 | |
2021-02-07 | build: allow users to disable gettext support (--disable-nls) | rbuj | 2 | -0/+4 | |
2021-01-15 | Remove warning -Wtype-limits | rbuj | 1 | -1/+1 | |
2020-12-11 | caja-file-operations: Let user mark trusted launcher | rbuj | 1 | -0/+7 | |
2020-12-11 | caja-directory-async: trust marked launchers | rbuj | 3 | -0/+11 | |
gio set PATH "metadata::caja-trusted-launcher" true | |||||
2020-12-11 | caja-directory-async: trust also launchers from user desktop | rbuj | 3 | -8/+31 | |
2020-12-11 | caja-directory-async: trust only system launchers | rbuj | 1 | -6/+1 | |
2020-11-29 | caja-icon-container: warning -Wold-style-declaration | rbuj | 1 | -1/+1 | |
2020-11-28 | file-operations: don't attempt to move into the source dir | ericek111 | 1 | -8/+8 | |
2020-11-24 | Remove the use of the gettimeofday function | rbuj | 1 | -4/+23 | |
2020-11-11 | Remove unused macros | Pablo Barciela | 7 | -33/+0 | |
2020-11-11 | Fix i18n in backgrounds and emblems dialog | rbuj | 1 | -2/+2 | |
2020-09-05 | fm-directory-view: Error message when a link could not be created | rbuj | 2 | -3/+5 | |
2020-08-28 | eel-editable-label: Consecutive break/return statements are unnecessary | rbuj | 1 | -2/+2 | |
2020-08-04 | Remove trailing spaces/tabs | rbuj | 1 | -1/+1 | |
find . \( -name '*.h' -o -name '*.c' \) -exec sed -i 's/\t*$//' {} \; find . \( -name '*.h' -o -name '*.c' \) -exec sed -i 's/[[:space:]]*$//' {} \; | |||||
2020-07-27 | caja-dnd: Create links by default on dnd from Web Browsers | rbuj | 1 | -7/+15 | |
2020-07-25 | Add a "Bookmarks" sidebar to Caja | Gordon N. Squash | 1 | -0/+2 | |
Added a "Bookmarks" sidebar to Caja which displays a list of the user's own bookmarks. Single-clicking any bookmark in the list directs Caja to that bookmark; middle-clicking on the bookmark directs Caja to open the bookmark in a new tab. | |||||
2020-07-21 | Guard block is missing | rbuj | 5 | -0/+30 | |
2020-05-24 | caja-file: remove warning GTimeVal is deprecated | rbuj | 1 | -1/+13 | |
2020-05-15 | mate-submodules: use git submodule for libegg | Wu Xiaotian | 1 | -1/+1 | |
2020-04-13 | Fix -Wmissing-prototypes build warnings | Pablo Barciela | 1 | -1/+1 | |
2020-04-12 | Remove warnings about function declaration isn’t a prototype | rbuj | 2 | -7/+7 | |
2020-04-04 | use MATE_COMPILE_WARNINGS from mate-common | raveit65 | 1 | -1/+1 | |
2020-03-06 | fix runtime warning from newly unused code | lukefromdc | 1 | -10/+1 | |
Remove now unused confirm_delete property Fix warning "caja-undostack-manager.c:323: invalid property id 2 for "confirm-delete" of type 'GParamBoolean' in 'CajaUndoStackManager' " caused by newly unused property | |||||
2020-03-03 | Confirm before deleting during an undo operation | lukefromdc | 1 | -24/+6 | |
Unless user turns 'Ask before emptying trash or deleting files" off. Remove special case direct delete code that broke this behavior Also remove now unused priv->confirm_delete As we no longer use unique code directly deleting files that used it | |||||
2020-02-25 | Look for caja extensions at $CAJA_EXTENSION_DIRS | José Romildo Malaquias | 1 | -0/+12 | |
CAJA_EXTENSION_DIRS is a list of directories where caja extensions are looked for. It is needed for distributions like NixOS that do not install all extensions in the same directory. In NixOS each package is installed in a self contained directory. | |||||
2020-02-01 | Fix build using gcc 10 -fno-common flag | rbuj | 2 | -12/+25 | |
2020-01-10 | Make device ejection notifications translatable | Jonathan Michalon | 1 | -2/+2 | |
2019-12-15 | libcaja-private/caja-file: redundant condition | rbuj | 1 | -4/+3 | |
'!A || (A && B)' is equivalent to '!A || B' | |||||
2019-11-30 | avoid redundant redeclarations | Pablo Barciela | 10 | -34/+9 | |
2019-11-22 | canvas-item: Don't hyphenate filenames | raveit65 | 1 | -0/+22 | |
fixes https://github.com/mate-desktop/caja/issues/1284 Pango 1.44 got the ability to automatically hyphenate on line breaks, which is on by default, but can be set off by a new attribute. As a result, we now hyphenate filenames, which is confusing, because a filename may already include hyphens. To restore the previous behavior, let's not insert hyphens when breaking filenames in multiple lines. Inspired by https://gitlab.gnome.org/GNOME/nautilus/commit/9738d85 | |||||
2019-09-28 | caja-extensions: allows the translation of copyright | rbuj | 1 | -3/+10 | |
2019-08-26 | Set FmWidgetView is single view. | Wu Xiaotian | 2 | -2/+10 | |
2019-08-19 | Remove comments that are not written to translators from pot file | rbuj | 3 | -34/+34 | |
2019-08-18 | caja-progress-info: use NotifyNotification instead of GNotification | Pablo Barciela | 1 | -14/+12 | |
Fixes https://github.com/mate-desktop/caja/issues/1285 | |||||
2019-08-15 | Copy file and keep timestamps of original file including remotes | rbuj | 1 | -1/+8 | |
The timestamps are reset to the current time, even if the source & target folders support these GFileInfo attributes. Closes #1226 | |||||
2019-08-02 | Support querying files by contained text | Slava Aseev | 3 | -1/+142 | |
ODF files also supported via odt2txt | |||||
2019-07-27 | use show icons option in views tab | Wu Xiaotian | 2 | -5/+5 | |
2019-07-27 | Add preference option to hide icons in list view. | Wu Xiaotian | 2 | -0/+6 | |
2019-07-24 | add git.mk to generate .gitignore | Wu Xiaotian | 1 | -0/+2 | |
2019-07-10 | Replace gdkpixbuf with cairo_surfaces in a few more places | Victor Kareh | 2 | -26/+0 | |
2019-07-05 | Render file-conflict icons as cairo_surface vectors | Victor Kareh | 3 | -42/+68 | |