summaryrefslogtreecommitdiff
path: root/src/file-manager
AgeCommit message (Collapse)AuthorFilesLines
2022-07-21Add creation time supportrbuj2-0/+17
2022-07-21icon view: Add a directory setting to block moving iconsColomban Wendling3-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.
2022-07-21warning: missing initializer for a field of ‘GtkActionEntry’rbuj2-26/+27
2022-07-21build: allow users to disable gettext support (--disable-nls)rbuj4-0/+8
2022-07-21Remove warning -Wtype-limitsrbuj1-1/+1
2022-07-21fm-properties-window: make the location of system folders portablerbuj2-2/+4
2022-07-21Remove unused macrosPablo Barciela3-13/+0
2022-07-21fm-directory-view: Error message when a link could not be createdrbuj1-8/+23
2022-07-21Remove trailing spaces/tabsrbuj1-2/+2
find . \( -name '*.h' -o -name '*.c' \) -exec sed -i 's/\t*$//' {} \; find . \( -name '*.h' -o -name '*.c' \) -exec sed -i 's/[[:space:]]*$//' {} \;
2022-07-21Guard block is missingrbuj1-0/+6
2022-07-21fm-icon-view: totem-audio-preview was removed in totem 2.25.90rbuj2-16/+3
2022-07-21Remove unused variable from eel_notebook_scroll_event_cbrbuj1-2/+2
2022-07-21fm-properties-window: Do not display Modified field for mounted pointsrbuj1-1/+10
2022-07-21caja properties-window: display dir last modifiedԜеѕ1-3/+20
closes #1406 based on https://gitlab.gnome.org/GNOME/nautilus/-/merge_requests/409/diffs
2022-07-21fm-properties: Don't show notebook arrowsraveit651-1/+0
fixes https://github.com/mate-desktop/caja/issues/1412
2022-07-20use MATE_COMPILE_WARNINGS from mate-commonraveit651-1/+1
2022-07-20Drop GLIB version checkWu Xiaotian1-3/+0
2022-07-20fm-properties: Remove use of mate-desktop-thumbnail helperraveit651-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.
2022-07-20Let some strings be translatableWu Xiaotian2-8/+9
2022-07-20add new interfaceWu Xiaotian2-65/+44
2022-07-20add CajaWidgetViewProvider docsWu Xiaotian1-12/+78
2022-07-20add new extension for widget viewWu Xiaotian1-4/+19
2022-07-20Set FmWidgetView is single view.Wu Xiaotian6-49/+50
2022-07-20add new FmWidgetView objectWu Xiaotian3-0/+441
2022-07-20fix build error about autoptr cleanWu Xiaotian1-0/+5
2022-07-20Remove comments that are not written to translators from pot filerbuj4-13/+13
2022-07-20use show icons option in views tabWu Xiaotian1-1/+1
2022-07-20Add preference option to hide icons in list view.Wu Xiaotian1-0/+14
2022-07-20fm-directory-view: add icon to "empty trash" into "File" menuPablo Barciela1-1/+1
2022-07-20add git.mk to generate .gitignoreWu Xiaotian1-0/+2
2022-07-20fm-list-view: replace deprecated gtk_drag_beginraveit651-6/+7
use gtk_drag_begin_with_coordinates instead
2022-07-20Show thumbnails in list viewWu Xiaotian1-1/+8
2022-07-20fix build error about fm-empty-viewWu Xiaotian1-1/+2
2022-07-20src / file-manager: reduce the scope of some variablesPablo Barciela10-229/+408
2022-07-20Replace gdkpixbuf with cairo_surfaces in a few more placesVictor Kareh1-3/+3
2022-07-20desktop icon view: disconnect callback from correct GSettings instancemonsta1-1/+1
taken from: https://github.com/linuxmint/nemo/commit/89090ac192638d75359876d917b6d3ce106196af
2022-07-20Add scroll tabs with mouse wheelLaurent Napias1-0/+8
- File's properties and caja's preferences windows
2022-07-20fm-list-view: suppress GtkAction warningsraveit651-0/+2
2022-07-20fm-icon-view: suppress GtkAction warningsraveit651-0/+16
2022-07-20fm-directory-view: change G_GNUC_END_IGNORE_DEPRECATIONS placePablo Barciela1-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.
2022-07-20Fix cppcheck warningsPablo Barciela2-110/+110
appeared since the silence of deprecated gtkaction warnings
2022-07-20Revert "fm-directory-view: free var action_name"raveit651-2/+0
This reverts commit f13416d256ede64396c3c6bb26fadb9b5e527bd3. This was wrong.
2022-07-20fm-directory-view: free var action_nameraveit651-0/+2
2022-07-20fm-directory-view: fix previous GtkAction commitraveit651-9/+12
2022-07-20fm-directory-view: suppress GtkAction warningsraveit651-3/+107
2022-07-20fm-desktop-icon-view: suppress GtkAction warningsraveit651-0/+9
2022-07-20Remove trailing whitespacesrbuj2-2/+2
find . -regextype posix-extended -regex '.*\.(c|h|ac|txt|xml)' -exec sed --in-place 's/[[:space:]]\+$//' {} \+
2022-07-20Change URL prefixes from http to httpsrbuj1-1/+1
2022-07-19eel: remove date & time functionsrbuj2-3/+3
Do not need to extend glib library, since it now incorporates these functions. Extended date format modifiers are available on glib v2.56. eel-glib-extensions.h/c: GDate * eel_g_date_new_tm (struct tm *time_pieces); char * eel_strdup_strftime (const char *format, struct tm *time_pieces); gint64 eel_get_system_time (void); Do not need to test the extensions in eel_self_check_glib_extensions (void). eel-glib-extensions.c: static void check_tm_to_g_date (time_t time) static char * test_strftime (...) Do not need to check if strftime implements extended date format modifiers on the system (available on glibc v2.27). configure.ac
2022-07-19local #include files inside "" instead <>Pablo Barciela18-245/+287