Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-07-02 | eel: make code better readable | raveit65 | 2 | -33/+61 | |
2016-07-02 | GTK+-3 eel-labeled-image: port to GtkStyleContext | raveit65 | 1 | -21/+38 | |
2016-07-02 | GTK+-3 eel: rename GdkRGBA functions | raveit65 | 3 | -27/+81 | |
2016-07-02 | GTK+-3 eel-backgrounds: port to GtkStyleContext and GdkRGBA | raveit65 | 1 | -3/+58 | |
with help from Alexei Sorokin | |||||
2016-07-02 | GTK+-3 eel-gdk-extensions: port GtkColor to GdkRGBA | raveit65 | 2 | -0/+86 | |
with help from Alexei Sorokin | |||||
2016-07-02 | GTK+-3 eel-background: prepare code for GtkStyleContext port | raveit65 | 1 | -13/+28 | |
2016-07-02 | GTK+3 eel-labeled-image: simplify code for port to GtkStyleContext | raveit65 | 1 | -23/+59 | |
2016-07-01 | po: drop languages not present on Transifex (or present but empty) | monsta | 9 | -56702/+0 | |
also en_US isn't a translation at all | |||||
2016-06-30 | navigation-bar: fix typo in previous commit | raveit65 | 1 | -1/+1 | |
2016-06-26 | navigation-bar: fix deprecated GTK_TYPE_HBOX usage | raveit65 | 1 | -1/+2 | |
2016-06-26 | GTK+-3 eel-editable-label: do not use deprecated gtk_misc_get_padding | raveit65 | 1 | -2/+23 | |
2016-06-21 | po: actually add new languages from Transifex | monsta | 1 | -0/+2 | |
2016-06-21 | drop gnome leftover | monsta | 2 | -2/+0 | |
2016-06-19 | GTK3: Fix caja information panel | lukefromdc | 1 | -0/+6 | |
The Caja information panel (information option in sidebar) was never fully ported to GTK3, probably still isn't. Set the .view style class on it, and exclude the rest of caja_information_panel_update_appearance as that code segfaults (at least with GTK 3.21) on dragging a background to the info panel. We now have a demo for background dragging in GTK3: A background can be dragged to the information sidebar and will be displayed. Won't be saved and won't appear in other Cajs navigation windows, something in the code that segfaulted no doubt needs to be fixed for that but that's for later. At least this widget finally works. It will follow any theme I have and no longer fails to update to BlackMATE or my own theme. | |||||
2016-06-15 | GTK+3: do not use deprecated gtk_widget_modify_font | raveit65 | 1 | -0/+4 | |
2016-06-15 | GTK+-3.20: do not use deprecated gtk_button_set_focus_on_click | raveit65 | 3 | -0/+24 | |
2016-06-15 | GTK+3 pathbar: Do not use deprecate composite-child API | raveit65 | 1 | -0/+8 | |
2016-06-08 | release 1.15.0v1.15.0 | raveit65 | 2 | -1/+14 | |
2016-06-08 | sync with Transiflex | raveit65 | 7 | -33/+7535 | |
2016-06-03 | remove old gnome files | monsta | 5 | -733/+0 | |
2016-05-31 | GTK+-3 fm-icon-view: fix a Wincompatible-pointer-types build warning | raveit65 | 1 | -2/+2 | |
2016-05-31 | GTK+2: fix build errors after last commits | monsta | 2 | -1/+5 | |
2016-05-30 | GTK+3 sidebars and caja-places: port style_set to style_updated | raveit65 | 5 | -26/+45 | |
2016-05-28 | GTK3:caja-zoom-control.c GtkStyle>GtkStyleContext | lukefromdc | 1 | -0/+4 | |
caja-zoom-control.c: label_style_set_callback to GtkStyleContext in GTK3 builds | |||||
2016-05-28 | GTK3: caja-places-sidebar.c use GtkStyleContext | lukefromdc | 1 | -0/+10 | |
caja-places-sidebar.c: Port caja_places_sidebar_style_set to GtkStyleContext from GtkStyle in GTK3 builds | |||||
2016-05-28 | GTK3:caja-pathbar remove GtkStyle vars | lukefromdc | 1 | -2/+10 | |
caja-pathbar.c: GtkStyleContext is already used to style the pathbar, so removed GtkStyle variables and unneeded caja_path_bar_style_set function | |||||
2016-05-28 | GTK3: caja-location-bar.c use GtkStyleContext | lukefromdc | 1 | -0/+4 | |
Port one variable in style_set_handler to GtkStyleContext in GTK3 builds | |||||
2016-05-28 | GTK3:caja-information-panel.c use GtkStyleContext | lukefromdc | 1 | -0/+9 | |
caja-information-panel.c: Port caja_information_panel_style_set to GtkStyleContext in GTK3 builds | |||||
2016-05-28 | GTK3: port history sidebar to GtkStyleContext | lukefromdc | 1 | -0/+9 | |
caja-history-sidebar.c: port caja_history_sidebar_style_set GtkStyleContext in GTK3 builds | |||||
2016-05-27 | GTK3: Fix two deprecations, stop 3.21 segfault | lukefromdc | 1 | -4/+26 | |
In GTK 3.21, the use of GtkStyle in function style_set in caja-sidebar-title.c results in a segfault if the sidebar is showing, even though it is used only when the "information" sidebar is selected. GtkStyle also appears in update_title_font in the same file. The second function resizes the bold headline label font in the information sidebar when either the length of the text or the width of the sidebar changes. Port it to GtkStyleContext and keep it. The first function (style_set) does two things: It invokes the second function when the style is set up, so port its second input variable (which seems to receive only NULL anyway) to GtkStyleContext. The rest of the function is supposed to set the font for the "more information" label, but mostly seems to block updating that font with the system font and cause the size of the font to be different between GTK 3.20 or earlier and GTK 3.21. Disable that portion entirely in GTK3 builds, as that way the font is consistant across GTK3 versions(an appropriate size in all cases tested), updates with changes in the system font, and cannot segfault in GTK 3.21. Porting it to GtkStyleContext has been tested and stops the segfaults but leaves the other two problems mentioned. Disable that portion of style_set in GTK3 and be done with it. | |||||
2016-05-21 | add fogotten language file | raveit65 | 1 | -0/+7499 | |
2016-05-21 | update to 1.14.1 release | raveit65 | 2 | -1/+7 | |
2016-05-21 | sync with transiflex | raveit65 | 12 | -191/+193 | |
2016-05-03 | GTK+3 css: improve border settings for desktop window | raveit65 | 1 | -2/+3 | |
2016-04-28 | css: don't allow borders on scrolledwindow | raveit65 | 1 | -1/+7 | |
2016-04-22 | GTK3 css: set a fg color for EelEditableLabel and allow box-shadow | raveit65 | 1 | -13/+13 | |
2016-04-21 | prefs dialog: don't crash on toggling "Show hidden and backup files" | monsta | 3 | -13/+16 | |
adapted from: https://git.gnome.org/browse/nautilus/commit/?id=7428762ea6601abba086fcc5e57f443b2e2b40b5 fixes https://github.com/mate-desktop/caja/issues/326 | |||||
2016-04-20 | GTK+3: improve EelEditableLabel settings css file | raveit65 | 1 | -1/+31 | |
2016-04-20 | GTK+-3 theming: add a CSS file for caja, and initialize it at startup | raveit65 | 3 | -0/+54 | |
inspired by: https://git.gnome.org/browse/nautilus/commit/?id=dad5d12 | |||||
2016-04-19 | GTK+3: add style class caja-desktop-window at top level | raveit65 | 1 | -2/+9 | |
The existing style class .caja-desktop does not match every widget which you see at the screen. Ie. the widget scrolledwindow, which is above the existing class in hierarchy. | |||||
2016-04-07 | po: add missing languages to LINGUAS + fix sorting a bitv1.14.0 | monsta | 1 | -1/+3 | |
2016-04-06 | release 1.14.0 | raveit65 | 2 | -1/+2 | |
2016-04-06 | Add Changelog generation | raveit65 | 1 | -3/+6 | |
2016-04-06 | add new languages and sync with transiflex | raveit65 | 107 | -58707/+76414 | |
2016-04-06 | NEWS: add 1.12.x entries, pack 1.13.x entries into single 1.14.0 one | monsta | 1 | -20/+31 | |
2016-03-29 | add default name/description for python extensions | Alexander van der Meij | 1 | -7/+18 | |
2016-03-29 | use exposed python filenames to list python extensions separately | Alexander van der Meij | 2 | -0/+19 | |
2016-03-17 | icon container: don't set label colors right after widget realize | monsta | 1 | -4/+0 | |
the background might be not yet set at this point, and when it will be set, the label colors will be properly set on a signal anyway. so let's not do the same work twice. | |||||
2016-03-17 | eel: never try to block background change signal | monsta | 1 | -8/+0 | |
that's what was causing random font color changes. the code in eel-background.c is a complete asynchronous mess, with queued callbacks sometimes being called in such order that it caused blocking the background change signal in the situations where it should never be blocked. | |||||
2016-03-17 | icon container: restore original font color select logic | monsta | 1 | -1/+1 | |
that is, before 057df2dc1d8ea67b477d696ac6feea8aaf392763 the logic itself is valid, but it was somewhat broken later in a few attempts to fix the annoying font color bugs. so let's restore it. |