summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2020-04-28support an explicit --select command line optionplonibarploni1-5/+70
ported from nautilus: https://github.com/GNOME/nautilus/commit/dc7e851ae4a223522c3158dd4134a3b313283596
2020-04-25tx: pull slowak translation from serverraveit651-74/+75
2020-04-18ci: don't run configure with autogen.shraveit651-1/+1
2020-04-18build: silent build warnings for distcheckraveit651-0/+1
2020-04-18Travis CI: debian build: add "make check"Pablo Barciela1-1/+7
2020-04-18Travis CI: enable irc notifications with broken buildsPablo Barciela1-0/+12
2020-04-13Fix -Wmissing-prototypes build warningsPablo Barciela4-5/+7
2020-04-12Remove warnings about function declaration isn’t a prototyperbuj3-8/+9
2020-04-12Travis CI: debian build: add clang compilerPablo Barciela1-0/+8
2020-04-12Travis CI: debian build: add -Wsign-compare -Wunused-parameter to CFLAGSPablo Barciela1-8/+5
2020-04-12Travis CI: build with --enable-compile-warnings=maximumPablo Barciela1-1/+1
2020-04-07ci: variables, drop CFLAGSraveit651-1/+0
2020-04-05[ci] avoid deprecated skip_cleanupWu Xiaotian1-2/+2
2020-04-04caja-window-menus: website-label, consistency with other about-dialogrbuj1-1/+1
2020-04-04Travis CI: build with mate-common-1.24.1 tarballraveit651-0/+12
add missing requires autoconf-archive (fedora)
2020-04-04use MATE_COMPILE_WARNINGS from mate-commonraveit658-55/+10
2020-04-04[ci] fix build environment issueWu Xiaotian2-6/+8
2020-04-03Travis CI: update travis.ymlraveit651-7/+9
- fix build error with archlinux on Travis CI - Avoid warning for build config validation - change archlinux docker image name
2020-03-10Travis CI: use Ubuntu devel instead 19.10Pablo Barciela1-2/+1
2020-03-06fix runtime warning from newly unused codelukefromdc1-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-03Confirm before deleting during an undo operationlukefromdc1-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-29Updating the link of cajaLoïc1-1/+1
Updating the link of caja. The old link generated a 404 error.
2020-02-26Update authorsrbuj2-1/+6
2020-02-25Look for caja extensions at $CAJA_EXTENSION_DIRSJosé Romildo Malaquias1-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-18travis: update config for new travis validationraveit652-172/+172
2020-02-09release 1.24.0v1.24.0raveit652-1/+9
2020-02-09tx: sync with transifexraveit656-42/+50
2020-02-09Set a real title on the desktop window (as provided to ATK)Jonathan Michalon2-7/+6
Even if we think that the desktop window title is never seen, it is used by the window selector in "all windows" mode and speech synthesis.
2020-02-08Drop GLIB version checkWu Xiaotian1-3/+0
2020-02-05build: show compiler flags on configuration summaryrbuj1-0/+2
2020-02-01Fix build using gcc 10 -fno-common flagrbuj3-14/+29
2020-01-21release 1.23.4v1.23.4raveit652-1/+5
2020-01-21build: fix wrong executing dir in caja.desktopraveit651-2/+0
make distcheck use /usr/local/bin and tarball include caja.desktop with that wrong dir after https://github.com/mate-desktop/caja/commit/abc7f2a
2020-01-19release 1.23.3v1.23.3raveit652-1/+30
2020-01-19tx: sync with transifexraveit65118-16431/+17472
2020-01-12fm-properties: Remove use of mate-desktop-thumbnail helperraveit652-5/+6
don't use mate_desktop_thumbnail_scale_down_pixbuf(). gdk-pixbuf doesn't have the same bugs when shrinking images by large factors.
2020-01-10tx: update resource fileraveit651-136/+145
2020-01-10Update copyright to 2020raveit651-1/+1
2020-01-10Make device ejection notifications translatableJonathan Michalon2-5/+5
2019-12-29Keep path same when opening new window from an existing oneYetoo13-6/+40
solved https://github.com/mate-desktop/caja/issues/1335
2019-12-23travis: add build requires xorgproto for ArchLinuxraveit651-0/+1
2019-12-23editable-label: Don't hyphenate filenamesraveit651-0/+11
more fixes for 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-12-19sync with transifexraveit65118-457750/+425577
2019-12-15libcaja-private/caja-file: redundant conditionrbuj1-4/+3
'!A || (A && B)' is equivalent to '!A || B'
2019-11-30Travis CI: add '-Wredundant-decls' to 'CFLAGS' variablePablo Barciela1-1/+1
2019-11-30avoid redundant redeclarationsPablo Barciela23-77/+26
2019-11-24travis ci: use fedora:latestraveit651-1/+1
2019-11-22canvas-item: Don't hyphenate filenamesraveit651-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-11-20tx: update resource for transifexraveit651-2549/+2202
2019-11-06makepot: remove fuzzy linePablo Barciela1-0/+1