Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-12-23 | Remove unused member | Colomban Wendling | 1 | -1/+0 | |
`name_row` is not needed since GTK2 support was dropped with commit 276eb145ce96d5f75f8d3901daf6310f60ddbb81. Found by cppcheck: https://caja.mate-desktop.dev/2022-11-23-174623-5790-cppcheck@ae663c369cf2_desktop-no-overflow/73.html#line-101 | |||||
2022-07-22 | Fix build warning -Wbad-function-cast | rbuj | 1 | -3/+6 | |
2022-06-08 | Document and fix default-sort-order preference | Gordon Norman Squash | 1 | -1/+3 | |
This patch resolves three related issues: The first issue was that the GSettings schema for Caja did not include an entry to sort by the "btime", or creation date, of files. If the user chose such an option in the Caja Preferences, GSettings would produce a warning (often out-of-sight, as it was usually redirected into the user's .xsession-errors file), and Caja would not actually change the default sort-order of files. This patch adds the btime as a valid setting in the schema. The second issue was that. because of the above (an entry in the settings schema was missing), some of the alternative sort orders listed in the schema (everything after and including "atime") were not assigned the same numbers as the sort orders listed elsewhere in the Caja source code. Specifically, in icon- and compact-views, if the default sort-order was "emblems", the observed / actual sort-order would be the entry before "emblems", namely "atime" -- so instead of sorting by the names of associated emblems, Caja would sort by each file's access time. An array in the code for the list-view also was missing many values and included some values out of order, so the default sort-order setting affected directories viewed in list-view mode seemingly randomly. The former is taken care of using the fix described in the above paragraph; the latter is fixed in this patch by adding / reorganizing the array for the list-view sort-orders appropriately. The third issue (admittedly, a lesser issue) was that the documentation for the default-sort-order setting was lacking -- it at least did not list all the possible values that the setting could accept. In this patch, I resolve this issue by listing all values in the setting's description, and also go into more detail about what each value does. (However, perhaps I included a little too much detail. It'll only benefit [supposed power users who may already know this stuff] who use GSettings or DConf directly, and it'll certainly be a headache for translators. I'll admit that.) | |||||
2022-02-09 | Fix implicit conversion changes signedness: 'gboolean' to 'guint' | rbuj | 2 | -3/+3 | |
2022-02-09 | Fix some -Wsign-compare warnings | rbuj | 2 | -3/+3 | |
2021-12-31 | fm-directory-view: fix memory leak | rbuj | 1 | -1/+5 | |
2021-11-20 | Use a blank line at most | rbuj | 14 | -116/+0 | |
2021-06-18 | Update copyright to 2021 | raveit65 | 2 | -0/+2 | |
2021-04-20 | Add creation time support | rbuj | 2 | -0/+17 | |
2021-04-13 | icon view: Add a directory setting to block moving icons | Colomban Wendling | 3 | -0/+78 | |
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-01 | warning: missing initializer for a field of ‘GtkActionEntry’ | rbuj | 2 | -26/+27 | |
2021-02-07 | build: allow users to disable gettext support (--disable-nls) | rbuj | 4 | -0/+8 | |
2021-01-15 | Remove warning -Wtype-limits | rbuj | 1 | -1/+1 | |
2020-11-15 | fm-properties-window: make the location of system folders portable | rbuj | 2 | -2/+4 | |
2020-11-11 | Remove unused macros | Pablo Barciela | 3 | -13/+0 | |
2020-09-05 | fm-directory-view: Error message when a link could not be created | rbuj | 1 | -8/+23 | |
2020-08-04 | Remove trailing spaces/tabs | rbuj | 1 | -2/+2 | |
find . \( -name '*.h' -o -name '*.c' \) -exec sed -i 's/\t*$//' {} \; find . \( -name '*.h' -o -name '*.c' \) -exec sed -i 's/[[:space:]]*$//' {} \; | |||||
2020-07-21 | Guard block is missing | rbuj | 1 | -0/+6 | |
2020-07-13 | fm-icon-view: totem-audio-preview was removed in totem 2.25.90 | rbuj | 2 | -16/+3 | |
2020-07-10 | Remove unused variable from eel_notebook_scroll_event_cb | rbuj | 1 | -2/+2 | |
2020-07-10 | fm-properties-window: Do not display Modified field for mounted points | rbuj | 1 | -1/+10 | |
2020-06-30 | caja properties-window: display dir last modified | Ԝеѕ | 1 | -3/+20 | |
closes #1406 based on https://gitlab.gnome.org/GNOME/nautilus/-/merge_requests/409/diffs | |||||
2020-06-15 | fm-properties: Don't show notebook arrows | raveit65 | 1 | -1/+0 | |
fixes https://github.com/mate-desktop/caja/issues/1412 | |||||
2020-05-15 | mate-submodules: use git submodule for libegg | Wu Xiaotian | 1 | -0/+1 | |
2020-04-04 | use MATE_COMPILE_WARNINGS from mate-common | raveit65 | 1 | -1/+1 | |
2020-02-08 | Drop GLIB version check | Wu Xiaotian | 1 | -3/+0 | |
2020-01-12 | fm-properties: Remove use of mate-desktop-thumbnail helper | raveit65 | 1 | -5/+3 | |
don't use mate_desktop_thumbnail_scale_down_pixbuf(). gdk-pixbuf doesn't have the same bugs when shrinking images by large factors. | |||||
2019-08-26 | Let some strings be translatable | Wu Xiaotian | 2 | -8/+9 | |
2019-08-26 | add new interface | Wu Xiaotian | 2 | -65/+44 | |
2019-08-26 | add CajaWidgetViewProvider docs | Wu Xiaotian | 1 | -12/+78 | |
2019-08-26 | add new extension for widget view | Wu Xiaotian | 1 | -4/+19 | |
2019-08-26 | Set FmWidgetView is single view. | Wu Xiaotian | 6 | -49/+50 | |
2019-08-26 | add new FmWidgetView object | Wu Xiaotian | 3 | -0/+441 | |
2019-08-26 | fix build error about autoptr clean | Wu Xiaotian | 1 | -0/+5 | |
2019-08-19 | Remove comments that are not written to translators from pot file | rbuj | 4 | -13/+13 | |
2019-07-27 | use show icons option in views tab | Wu Xiaotian | 1 | -1/+1 | |
2019-07-27 | Add preference option to hide icons in list view. | Wu Xiaotian | 1 | -0/+14 | |
2019-07-26 | fm-directory-view: add icon to "empty trash" into "File" menu | Pablo Barciela | 1 | -1/+1 | |
2019-07-24 | add git.mk to generate .gitignore | Wu Xiaotian | 1 | -0/+2 | |
2019-07-23 | fm-list-view: replace deprecated gtk_drag_begin | raveit65 | 1 | -6/+7 | |
use gtk_drag_begin_with_coordinates instead | |||||
2019-07-23 | Show thumbnails in list view | Wu Xiaotian | 1 | -1/+8 | |
2019-07-21 | fix build error about fm-empty-view | Wu Xiaotian | 1 | -1/+2 | |
2019-07-17 | src / file-manager: reduce the scope of some variables | Pablo Barciela | 10 | -229/+408 | |
2019-07-10 | Replace gdkpixbuf with cairo_surfaces in a few more places | Victor Kareh | 1 | -3/+3 | |
2019-07-02 | desktop icon view: disconnect callback from correct GSettings instance | monsta | 1 | -1/+1 | |
taken from: https://github.com/linuxmint/nemo/commit/89090ac192638d75359876d917b6d3ce106196af | |||||
2019-07-02 | Add scroll tabs with mouse wheel | Laurent Napias | 1 | -0/+8 | |
File's properties and caja's preferences windows | |||||
2019-06-29 | fm-list-view: suppress GtkAction warnings | raveit65 | 1 | -0/+2 | |
2019-06-29 | fm-icon-view: suppress GtkAction warnings | raveit65 | 1 | -0/+16 | |
2019-06-29 | fm-directory-view: change G_GNUC_END_IGNORE_DEPRECATIONS place | Pablo Barciela | 1 | -2/+2 | |
Fixes cppcheck warnings: [src/file-manager/fm-directory-view.c:1007]: (style) Statements following return, break, continue, goto or throw will never be executed. [src/file-manager/fm-directory-view.c:1080]: (style) Statements following return, break, continue, goto or throw will never be executed. | |||||
2019-06-28 | Fix cppcheck warnings | Pablo Barciela | 2 | -110/+110 | |
appeared since the silence of deprecated gtkaction warnings |