summaryrefslogtreecommitdiff
path: root/data
AgeCommit message (Collapse)AuthorFilesLines
2019-08-21Don't export translation for Icon keyword in desktop filesrbuj1-1/+3
Example for Catalan (ca): $ make clean $ tx pull -l=ca -f $ ./autogen.sh --prefix=/usr $ make -C data caja.desktop $ diff ../caja-master/data/caja.desktop data/caja.desktop ... < Icon[ca]=system-file-manager ...
2019-08-21desktop files: Add comments for translatorsrbuj8-0/+13
closes #1294
2019-08-19Remove comments that are not written to translators from pot filerbuj1-1/+1
2019-08-19Use absolute path of binary on desktop filesrbuj9-22/+41
./autogen.sh --prefix=/usr && make ... GEN caja.desktop.in GEN caja.desktop GEN caja-home.desktop.in GEN caja-home.desktop GEN caja-computer.desktop.in GEN caja-computer.desktop GEN caja-folder-handler.desktop.in GEN caja-folder-handler.desktop GEN caja-file-management-properties.desktop.in GEN caja-file-management-properties.desktop GEN caja-browser.desktop.in GEN caja-browser.desktop GEN caja-autorun-software.desktop.in GEN caja-autorun-software.desktop GEN mate-network-scheme.desktop.in GEN mate-network-scheme.desktop ... grep Exec= data/*.desktop data/caja-autorun-software.desktop:TryExec=/usr/bin/caja-autorun-software data/caja-autorun-software.desktop:Exec=/usr/bin/caja-autorun-software %u data/caja-browser.desktop:TryExec=/usr/bin/caja data/caja-browser.desktop:Exec=/usr/bin/caja --no-desktop --browser %U data/caja-computer.desktop:TryExec=/usr/bin/caja data/caja-computer.desktop:Exec=/usr/bin/caja --no-desktop computer: data/caja.desktop:Exec=/usr/bin/caja data/caja-file-management-properties.desktop:Exec=/usr/bin/caja-file-management-properties data/caja-folder-handler.desktop:TryExec=/usr/bin/caja data/caja-folder-handler.desktop:Exec=/usr/bin/caja --no-desktop %U data/caja-home.desktop:TryExec=/usr/bin/caja data/caja-home.desktop:Exec=/usr/bin/caja --no-desktop data/mate-network-scheme.desktop:TryExec=/usr/bin/caja data/mate-network-scheme.desktop:Exec=/usr/bin/caja --no-desktop network:
2019-07-24add git.mk to generate .gitignoreWu Xiaotian3-0/+6
2019-07-08desktop: Add specific CSS for ContrastHigh and ContrastHighInverseColomban Wendling3-0/+4
2019-07-08desktop: Add specific CSS for HighContrast and HighContrastInverseColomban Wendling4-0/+23
Those themes should provide highly contrasted display, so make sure to have a background on the desktop items labels and use the theme's colors.
2019-07-03Restore transparent background on icon view labelsColomban Wendling1-1/+4
18e4fbd005bd561e4a12ed388d4d9a8c93f0b15b started always drawing the frame on canvas items for the desktop's sake, but it also impacts other icon views. This is good in theory, but conflicts with some themes that used to work fine and now display an unwanted background because of generic rules matching these elements. Unfortunately there don't seem to be another solution than providing overrides for this yet, so do that, as anyway before recently the background wasn't drawn at all even if specified.
2019-07-01create msgstr for data/browser.xmlWu Xiaotian3-78/+80
2019-07-01migrate intltool to gettextWu Xiaotian10-20/+24
2019-06-30desktop: Force no borders on desktop items by defaultColomban Wendling1-0/+1
The previous commit started always drawing the frame, which also leads to drawing the border. As we didn't have defaults for the borders, a theme could unexpectedly add theme while they weren't drawn before.
2019-06-18Remove trailing whitespacesrbuj1-11/+11
find . -regextype posix-extended -regex '.*\.(c|h|ac|txt|xml)' -exec sed --in-place 's/[[:space:]]\+$//' {} \+
2019-06-10Change url projet's websiteLaurent Napias1-1/+1
2019-02-06fixed distcheck fail on debianWu Xiaotian7-27/+0
2018-12-27deleting unused nautilus iconpirate4867431869-1182/+0
2018-12-20move appdata to metainfo directorymonsta1-1/+1
fixes https://github.com/mate-desktop/caja/issues/921
2018-01-31drop CSS for GTK+ 3.14monsta2-30/+0
2017-05-02CSS: Load a different caja-desktop.css with GTK 3.14Clement Lefebvre2-0/+30
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-03-12Revert "css: honor new bg handling for all gtk+ versions"raveit651-9/+1
This reverts commit 2a3d4cbef005553cff444aad4caa11f73484e1ea. No need anymore after PRs are updated.
2017-03-12css: honor new bg handling for all gtk+ versionsraveit651-1/+9
2017-01-17Remove reference to White Ribs pattern, which was removed from Nautilus in 2001.Martin Wimpress1-1/+0
2016-12-04Rename labels: follow theme if available, sane defaultlukefromdc3-29/+37
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
2016-12-02caja.css: fix missing commalukefromdc1-1/+1
2016-10-15Gtk+-3 css: Consider GtkGrid changesraveit651-3/+4
2016-10-08GTK3: port libunique ->GtkApplication as build time optionlukefromdc3-3/+3
Add --disable-libunique configuration option for GTK3 builds. This builds a port from libunique to GtkApplication. keep GTK2 builds unchanged Caja can now be build with GTK2 and libunique, GTK3 and libunique, or GTK3 without libunique using GtkApplication instead GtkApplication port Based on cherrypicked nautilus commits from https://github.com/GNOME/nautilus/commit/a8481ee4bd8d34e792d63598fa5efb47736f9de4 main: adapt to GtkApplication changes through https://github.com/GNOME/nautilus/commit/c3382e0415d51082545f277c380d37be160e8d2d application: move nautilus_application_new() to its own function GTK3/GtkApplication builds: add --force-desktop option This is useful for other DE's All: StartupNotify=false in .desktop files, as caja never connects to notification daemons and in GtkApplication builds this causes busy spinning curors
2016-08-31GTK3: stop warning spew from sidebar, pathbarlukefromdc1-0/+5
The button underallocation warnings came from pathbar sliders picking up padding from themes, then being forced to render to a smaller size in the code. The GTK_ICON_LOOKUP_GENERIC_FALLBACK warnings came from the sidebar icons, this flag is now a source of errors. Unfortunately NULL does not work, so set GTK_ICON_LOOKUP_FORCE_SIZE, which does not create errors and ensures the icon size we actually want in the sidebar is used anyway. Stops all but two of the warnings listed in https://github.com/mate-desktop/caja/issues/561
2016-08-09Bring back part of caja.css needed for compositinglukefromdc1-1/+5
Composited case still requires desktop, desktop window to be set transparent. Changes in last commit only affected noncomposited case
2016-08-09Revert "caja.css: include GTK 3.21 desktop selectors"raveit651-9/+0
This reverts commit 8d658fa4f3790972c38e04df23eaa7b88b5066d8. No need of this after latest commit.
2016-08-04caja.css: include GTK 3.21 desktop selectorslukefromdc1-0/+9
The selectors to hold the desktop transparent in GTK 3.21 or later builds seem to be ignored in GTK 3.20 or older builds where Caja draws the desktop. Ideally some makefile work and two raw files would apply this only in GTK 3.21 and later builds
2016-05-03GTK+3 css: improve border settings for desktop windowraveit651-2/+3
2016-04-28css: don't allow borders on scrolledwindowraveit651-1/+7
2016-04-22GTK3 css: set a fg color for EelEditableLabel and allow box-shadowraveit651-13/+13
2016-04-20GTK+3: improve EelEditableLabel settings css fileraveit651-1/+31
2016-04-20GTK+-3 theming: add a CSS file for caja, and initialize it at startupraveit652-0/+25
inspired by: https://git.gnome.org/browse/nautilus/commit/?id=dad5d12
2014-11-10appdata: Add necessary markers for translationinfirit1-3/+3
2014-11-09appdata: Add autotool bits for appdatainfirit2-0/+7
2014-11-09Create caja.appdata.xmlalxpl1-0/+41
An appdata file for inclusion in the upcoming software centers as per the new freedesktop.org specs. It should be placed in /usr/share/appdata/ similar to the way .desktop files are placed in /usr/share/applications/, e.g. if you have a "$(datadir)/applications" definition in your makefiles, you need to add a "$(datadir)/appdata" as well. Please, skim through the file in case I made a mistake and please, include it in the 1.8 branch as well. Thanks!
2014-02-20Add Main category to desktop files (close #252)infirit2-2/+4
Also add NoDisplay=true to make sure they do not show up in the menu.
2014-02-10Add Keyword to desktop files, patch by Mike Gabriel (sunweaver)infirit4-0/+4
2013-12-17Revert "Fix for x-caja-desktop windows at login"infirit1-1/+1
This reverts commit d116bf8ba8be698869fef81b30d576bcacf3234c. Revert because it does not solve the problem and it causes problems for users with other docks like plank. See issue #211.
2013-10-20Add update-icon-cache config option for makedistcheckinfirit1-2/+2
Otherwise the cache file is left behind and make distcheck fails.
2013-07-18fix_privat-icons-dirWolfgang Ulbrich1-3/+3
to avoid this direction. %{_datadir}/mate-file-manager/icons/hicolor/*/emblems/emblem-note.png
2013-06-29Fixes for make distStefano Karapetsas1-0/+2
2013-04-29Fix for x-caja-desktop windows at loginStefano Karapetsas1-1/+1
Use --no-default-window in Exec field
2013-03-31Use 'Caja' as name in caja-folder-handler.desktopStefano Karapetsas1-1/+2
2013-03-19add GenericName to caja desktop fileWolfgang Ulbrich1-1/+2
2013-03-19add GenericName to caja-browser desktop fileWolfgang Ulbrich1-1/+2
2013-02-23Add support for freedesktop.org File Manager DBus InterfaceStefano Karapetsas3-0/+48
http://www.freedesktop.org/wiki/Specifications/file-manager-interface Most of code is adapted from Nautilus: http://git.gnome.org/browse/nautilus/tree/src/nautilus-freedesktop-dbus.c Closes https://github.com/mate-desktop/mate-file-manager/issues/3
2012-10-18remove MATE from Categories in .desktop filesNelson Marques4-4/+4
2012-05-02fix obsoletes mime data in caja-folder-handler.desktop.in.in[email protected]1-1/+1