Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-03-22 | tx: update resource file | rbuj | 1 | -45/+56 | |
2019-03-22 | Make translatable the program name in mate about dialog | rbuj | 2 | -2/+2 | |
2019-03-22 | Make translatable the copyright info in mate about dialog | rbuj | 2 | -5/+4 | |
2019-03-21 | GEN png icons from hicolor_apps_scalable_mate.svg | rbuj | 18 | -12/+49 | |
Update icon cache and avoid conflict with mate theme: PNG icons are created if they are not present in icon folder. To remove png icons: cd icons; make clean-png-icons $ cat test.py import gtk screen = gtk.gdk.screen_get_default() icon_theme = gtk.icon_theme_get_for_screen(screen) print icon_theme.lookup_icon("mate-desktop", 16, 0).get_filename() print icon_theme.lookup_icon("mate-desktop", 22, 0).get_filename() print icon_theme.lookup_icon("mate-desktop", 24, 0).get_filename() print icon_theme.lookup_icon("mate-desktop", 32, 0).get_filename() print icon_theme.lookup_icon("mate-desktop", 48, 0).get_filename() print icon_theme.lookup_icon("mate-desktop", 128, 0).get_filename() print icon_theme.lookup_icon("mate-desktop", 256, 0).get_filename() print icon_theme.lookup_icon("mate", 16, 0).get_filename() print icon_theme.lookup_icon("mate", 22, 0).get_filename() print icon_theme.lookup_icon("mate", 24, 0).get_filename() print icon_theme.lookup_icon("mate", 32, 0).get_filename() print icon_theme.lookup_icon("mate", 48, 0).get_filename() print icon_theme.lookup_icon("mate", 128, 0).get_filename() print icon_theme.lookup_icon("mate", 256, 0).get_filename() print icon_theme.lookup_icon("mate", 1000, 0).get_filename() $ python test.py /usr/share/icons/hicolor/16x16/apps/mate-desktop.png /usr/share/icons/hicolor/22x22/apps/mate-desktop.png /usr/share/icons/hicolor/24x24/apps/mate-desktop.png /usr/share/icons/hicolor/32x32/apps/mate-desktop.png /usr/share/icons/hicolor/48x48/apps/mate-desktop.png /usr/share/icons/hicolor/128x128/apps/mate-desktop.png /usr/share/icons/hicolor/scalable/apps/mate-desktop.svg /usr/share/icons/mate/16x16/apps/mate.png /usr/share/icons/mate/22x22/apps/mate.png /usr/share/icons/mate/24x24/apps/mate.png /usr/share/icons/mate/32x32/apps/mate.png /usr/share/icons/mate/48x48/apps/mate.png /usr/share/icons/mate/scalable/apps/mate.svg /usr/share/icons/mate/scalable/apps/mate.svg /usr/share/icons/mate/scalable/apps/mate.svgT | |||||
2019-03-17 | [Security] Use 'g_strlcpy' instead of 'strcpy' | Pablo Barciela | 2 | -2/+2 | |
Fixes Clang static analyzer warnings: mate-rr-config.c:549:3: warning: Call to function 'strcpy' is insecure as it does not provide bounding of the memory buffer. Replace unbounded copy functions with analogous functions that support length arguments such as 'strlcpy'. CWE-119 strcpy (output->priv->vendor, "???"); ^~~~~~ mate-desktop-item.c:2118:2: warning: Call to function 'strcpy' is insecure as it does not provide bounding of the memory buffer. Replace unbounded copy functions with analogous functions that support length arguments such as 'strlcpy'. CWE-119 strcpy (the_exec, exec); ^~~~~~ | |||||
2019-03-17 | [Security] test-ditem: Use 'g_strlcat' instead of 'strcat' | Pablo Barciela | 1 | -1/+1 | |
Fixes Clang static analyzer warning: test-ditem.c:94:2: warning: Call to function 'strcat' is insecure as it does not provide bounding of the memory buffer. Replace unbounded copy functions with analogous functions that support length arguments such as 'strlcat'. CWE-119 strcat (path, "/foo.desktop"); ^~~~~~ | |||||
2019-03-15 | mate-hsv: avoid duplicate initialization in variable | Pablo Barciela | 1 | -1/+0 | |
avoid Clang static analyzer warning: mate-hsv.c:913:19: warning: Value stored to 'priv' during its initialization is never read MateHSVPrivate *priv = hsv->priv; ^~~~ ~~~~~~~~~ | |||||
2019-03-13 | [ci] Enable Clang Static Analyzer | Wu Xiaotian | 1 | -7/+68 | |
2019-03-11 | mate-hsv: avoid deprecated 'gdk_device_grab/ungrab' | Pablo Barciela | 1 | -10/+9 | |
2019-03-11 | mate-colorsel: avoid deprecated 'GtkHSV', use 'MateHSV' instead | Pablo Barciela | 1 | -11/+12 | |
2019-03-11 | MateHSV implementation (GtkHSV fork) | Pablo Barciela | 5 | -0/+1565 | |
2019-02-23 | release 1.22.0v1.22.0 | raveit65 | 2 | -2/+17 | |
2019-02-23 | tx: sync with transifex | raveit65 | 2 | -3/+5 | |
2019-02-16 | Prepare for docker-build 0.1.1 merge into master | Wu Xiaotian | 1 | -1/+3 | |
Please see mate-desktop/mate-dev-scripts#13 | |||||
2019-02-09 | tx: sync with transifex | raveit65 | 116 | -7333/+8023 | |
2019-02-08 | use archlinux/base image | Wu Xiaotian | 1 | -10/+4 | |
2019-02-08 | tx: update resources for transifex | raveit65 | 1 | -61/+67 | |
2019-02-08 | Fixed make distcheck fail on debian. | Wu Xiaotian | 7 | -13/+8 | |
2019-02-07 | mate-colorsel: avoid deprecated 'gtk_widget_modify_bg' | Pablo Barciela | 1 | -5/+26 | |
2019-02-03 | Initialize travis support | Wu Xiaotian | 1 | -0/+111 | |
2019-01-29 | [mate-rr] Avoid deprecated g_type_class_add_private | Wu Xiaotian | 4 | -15/+9 | |
2019-01-29 | Improve indents | Wu Xiaotian | 1 | -2/+2 | |
2019-01-29 | Avoid deprecated g_type_class_add_private | Wu Xiaotian | 3 | -20/+6 | |
Changed MateBgCrossfade, MateColorbutton and MateDesktopThumbnail | |||||
2019-01-29 | [mate-colorsel] Avoid deprecated g_type_class_add_private | Wu Xiaotian | 2 | -51/+49 | |
2019-01-09 | mate-bg: avoid deprecated 'g_settings_list_keys' | Pablo Barciela | 1 | -3/+7 | |
2019-01-03 | update copyright to 2019 | Wu Xiaotian | 1 | -1/+1 | |
2018-12-19 | disable deprecation warnings for distcheck | raveit65 | 1 | -1/+2 | |
2018-12-12 | mate-bg: Corrected some comments | Zhang Xianwei | 1 | -3/+3 | |
There are some incorrect comments in mate_bg_create_surface_scale. Fix them. Signed-off-by: Zhang Xianwei <[email protected]> | |||||
2018-12-07 | schemas: Define schema for a default calculator | Zhang Xianwei | 2 | -0/+10 | |
Defines a schema that allows users to specify a default calculator application. Default initialized to 'mate-calc'. Signed-off-by: Zhang Xianwei <[email protected]> | |||||
2018-11-18 | release 1.21.2v1.21.2 | raveit65 | 1 | -10/+13 | |
2018-11-18 | sync with transifex | raveit65 | 116 | -3248/+5617 | |
2018-10-11 | pre-bump version | raveit65 | 2 | -1/+3 | |
2018-09-30 | Add new setting to control XKB modifier latching | Colomban Wendling | 1 | -0/+4 | |
Add new setting org.mate.accessibility-keyboard.stickykeys-latch-to-lock to control whether latching is enabled together with sticky keys. | |||||
2018-08-27 | release 1.21.1v1.21.1 | raveit65 | 1 | -0/+10 | |
2018-08-27 | sync with transifex | raveit65 | 116 | -686/+2121 | |
2018-08-27 | tx: update translation source | raveit65 | 1 | -26/+40 | |
2018-08-27 | pre-bump version | raveit65 | 2 | -7/+9 | |
2018-08-23 | interface: add key to enable/disable primary paste from middlemouse | lukefromdc | 1 | -0/+7 | |
2018-08-15 | mate-desktop-item: replace deprecated gdk_error_trap_push/pop | raveit65 | 1 | -2/+8 | |
2018-08-15 | mate-rr-config: replace deprecated gdk_flush | raveit65 | 1 | -1/+3 | |
2018-08-15 | mate-rr: replace deprecated Gdk functions | raveit65 | 1 | -13/+23 | |
2018-08-15 | mate-bg-crossfade: replace deprecated gdk_error_trap_push/pop | raveit65 | 1 | -4/+6 | |
2018-08-15 | mate-bg: replace deprecated gdk_error_trap_push/pop | raveit65 | 1 | -4/+8 | |
2018-08-04 | fix distcheck | monsta | 1 | -0/+1 | |
2018-07-03 | add mate-language apis | yetist | 6 | -1/+1374 | |
2018-06-02 | release 1.21.0v1.21.0 | raveit65 | 1 | -0/+9 | |
2018-06-02 | sync with transifex | raveit65 | 117 | -11746/+24376 | |
2018-06-02 | update mate-desktop.pot | raveit65 | 1 | -6/+18 | |
2018-05-31 | drop ancient and unused acinclude.m4 | monsta | 1 | -164/+0 | |
2018-05-31 | bump version | raveit65 | 1 | -1/+1 | |