Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-10-10 | View -> Visible Columns: fix vertical expand of dialog content | monsta | 1 | -1/+1 | |
this menu item is only visible when list view is selected, so I'm not surprised we missed it | |||||
2017-09-23 | Fix: wrong <Shift+Del> behavior while renaming files | Pablo Barciela | 1 | -2/+4 | |
Fixes https://github.com/mate-desktop/caja/issues/509 | |||||
2017-08-29 | list view: fix large icon margins on zooming out | monsta | 1 | -0/+3 | |
ported from: https://git.gnome.org/browse/nautilus/commit/?id=4f17fb7db7b8736ebb4fe82ddb1c279777847730 https://git.gnome.org/browse/nautilus/commit/?id=41de4e52b43c8ed5c9118860dac7caa303ebbc5b | |||||
2017-08-29 | Revert "Adds columns autosizing" | monsta | 1 | -2/+0 | |
This reverts commit 2a424fca8bd928223e92570fa692266c471a52b3. | |||||
2017-08-28 | remove weird +x attribute from a source file | monsta | 1 | -0/+0 | |
2017-08-25 | gtk 3.22: avoid deprecated gdk_screen_get_monitor... functions: | ZenWalker | 1 | -0/+13 | |
avoid deprecated: gdk_screen_get_monitor_geometry gdk_screen_get_monitor_at_window | |||||
2017-08-25 | Adds columns autosizing | Jury Verrigni | 1 | -0/+2 | |
2017-08-25 | Refresh all rows on zoom change | Jury Verrigni | 1 | -1/+1 | |
2017-08-25 | Forces widget redraw on zoom | Jury Verrigni | 1 | -0/+2 | |
2017-08-25 | pathbar: enable mousewheel scrolling like it was with GTK+2 | monsta | 1 | -0/+5 | |
fixes https://github.com/mate-desktop/caja/issues/779 ported from: https://git.gnome.org/browse/nautilus/commit/?id=04116ab2876412445c788091be07d7f7321a4a94 | |||||
2017-08-12 | avoid deprecated gdk_screen_get_width/height | ZenWalker | 3 | -10/+22 | |
2017-07-22 | don't use deprecated gtk_show_uri | raveit65 | 8 | -0/+51 | |
2017-07-16 | avoid deprecated gdk_screen_get_number | ZenWalker | 1 | -5/+6 | |
2017-07-12 | application: remove unneeded forward declarations | monsta | 1 | -22/+2 | |
2017-07-08 | Fix browsing/autorun media on insertion | lukefromdc | 1 | -0/+1 | |
Fix https://github.com/mate-desktop/caja/issues/807 | |||||
2017-07-03 | fix vertical Compact View scrolling in fm_icon_view_scroll_event() | Galik | 1 | -34/+15 | |
Was always scrolling to right when using sideways scrolling devices. Now scrolls left or right with sideways scrolling devices and adjusts vertical scrolling devices to scroll sideways. | |||||
2017-06-29 | "property-browser: add style class frame to scrolledwindows" | raveit65 | 1 | -0/+2 | |
Do it in a better way! | |||||
2017-06-29 | Revert "property-browser: add style class frame to scrolledwindows" | raveit65 | 1 | -3/+0 | |
This reverts commit 52a3d30957889eb37e65e9c4416dbe0ea79a109c. Do it in a better way! | |||||
2017-06-29 | Revert "property-browser: don't recast GtkWidget as GtkWidget" | raveit65 | 1 | -1/+1 | |
This reverts commit 45f862c6178358e73470296e5793b10c486926c1. We revert prevoius commit too. | |||||
2017-06-21 | Fix off-by-one error in caja-pathbar.c | nokangaroo | 1 | -1/+3 | |
2017-05-25 | added feature: present the size on disk of files as we present the size of ↵ | Felipe Barriga Richards | 4 | -6/+31 | |
the file. | |||||
2017-05-07 | pass CajaApplication instead of GApplication to DBus init | monsta | 1 | -1/+1 | |
fixes a build warning | |||||
2017-05-03 | restore DBus interface initialization | monsta | 1 | -0/+3 | |
fixes https://github.com/mate-desktop/caja/issues/771 | |||||
2017-05-02 | CSS: Load a different caja-desktop.css with GTK 3.14 | Clement Lefebvre | 1 | -2/+6 | |
In caja-desktop.css this line isn't compatible with GTK 3.14: ".caja-desktop:not(:selected):not(:active):not(.rubberband){" It is needed for GTK 3.20/3.22 tough. This PR checks the GTK version and loads the appropriate CSS. This fixes desktop icons showing black text. That issue was reproduced with Adwaita under LMDE with GTK 3.14. | |||||
2017-04-20 | Use gtk+-3 bookmarks location | raveit65 | 1 | -1/+30 | |
If it doesn't exist fallback to reading from the old location but always write to the new location. https://bugzilla.gnome.org/show_bug.cgi?id=674986 taken from: https://git.gnome.org/browse/nautilus/commit/?id=ed90577 | |||||
2017-04-18 | update copyright year to 2017 | monsta | 1 | -1/+1 | |
2017-04-18 | don't check nonexistent MATE22_USER_DIR env var | monsta | 1 | -10/+1 | |
another case of excessive gnome -> mate renaming back in 2011 | |||||
2017-03-28 | fix build warning (no const needed there) | monsta | 1 | -1/+1 | |
2017-03-28 | fix build with gcc 4.9.2 (looks like it's in c89 mode by default) | monsta | 1 | -1/+3 | |
2017-03-23 | search: added tag support (xattr::xdg.tags). | Felipe Barriga Richards | 1 | -0/+123 | |
2017-03-23 | Fix broken rename in list view by selectin file name cell. | Martin Pieuchot | 1 | -1/+2 | |
This is a backport from nautilus 5b09cedf434b53a975074b346d511335fc735cba list-view: explicitly set cursor on file name cell renderer on rename The file name column has two cell renderers, one for the icon and another for the name string. Thus, gtk_tree_view_set_cursor() isn't enough to reliably start editing the file name cell since it will try to edit whatever is the currently focused cell in the column. https://bugzilla.gnome.org/show_bug.cgi?id=656128 Fixes https://github.com/mate-desktop/caja/issues/741 | |||||
2017-03-23 | property-browser: don't recast GtkWidget as GtkWidget | raveit65 | 1 | -1/+1 | |
2017-03-23 | property-browser: add style class frame to scrolledwindows | raveit65 | 1 | -0/+3 | |
2017-03-17 | caja-application.c: Fix uninitialized variable | lukefromdc | 1 | -1/+1 | |
Fixes https://github.com/mate-desktop/caja/issues/747 | |||||
2017-03-13 | eel: Avoid deprecated gdk_window_set_background functions | Alexei Sorokin | 1 | -0/+15 | |
Fixes partially #506, fixes compiz-reloaded/compiz#40. | |||||
2017-03-13 | Revert "GTK3.21:fix desktop redraw" | Alexei Sorokin | 5 | -171/+0 | |
2017-02-07 | Remove unused code | lukefromdc | 1 | -7/+0 | |
2017-02-07 | Add an option for asking confirmation before moving files to the trash | Colomban Wendling | 2 | -1/+20 | |
Add an option to show a confirmation dialog when moving files to the trash, like there is for deleting files directly or emptying the trash. Closes #632. | |||||
2017-02-07 | Fix for https://github.com/mate-desktop/caja/issues/734 | lukefromdc | 1 | -1/+1 | |
restore "open with other application" menu entry for directories | |||||
2017-01-07 | force X11 | leigh123linux | 1 | -0/+2 | |
2017-01-06 | show/hide columns instead of appending/removing them | monsta | 1 | -13/+7 | |
fixes https://github.com/mate-desktop/caja/issues/649 adapted from: https://git.gnome.org/browse/nautilus/commit/?id=e19f7cb3fec1e6c884d1741c3c00916c65ab035f | |||||
2017-01-06 | revert part of previous commit - it broke Back/Forward buttons | monsta | 1 | -0/+32 | |
2017-01-06 | remove some unused code that's also gone upstream | monsta | 3 | -150/+1 | |
2016-12-29 | Show "open with" tab in properties window when "open with" menu available | lukefromdc | 1 | -2/+1 | |
2016-12-29 | Show "open with" menu for desktop and theme files | lukefromdc | 1 | -3/+1 | |
Apply https://git.gnome.org/browse/nautilus/commit/?h=gnome-3-4&id=b9c51fd4eb84a9f52ee4be1bf183fc516984130b via https://gist.github.com/raveit65/19cfc5fe706ac6a2ea5d663a94fb02af | |||||
2016-12-29 | fix build warning about wrong variable type | monsta | 1 | -1/+1 | |
2016-12-29 | fix indent and spacing a bit | monsta | 5 | -12/+13 | |
2016-12-29 | check for stable version of GTK+3, not for development one | monsta | 6 | -30/+30 | |
2016-12-06 | prefs dialog: fix vertical expand of content with window resize | monsta | 1 | -1/+1 | |
2016-12-04 | Rename labels: follow theme if available, sane default | lukefromdc | 1 | -0/+15 | |
Fixes https://github.com/mate-desktop/caja/issues/688 *Split caja.css. Much of it can load with GTK_STYLE_PROVIDER_PRIORITY_THEME to allow themes that support Caja to set their own style. CSS required for the desktop background to show and to keep the white text suitable for most backgrounds needs GTK_STYLE_PROVIDER_PRIORITY_APPLICATION so it is loaded separately from new file caja-desktop.css *Move all css items that must not be overridden by themes (most of them are for the desktop) to caja-desktop.css and keep those that are only needed when themes do not set them at all in caja.css |