summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-09-20release 1.22.2v1.22.2raveit652-1/+6
2019-09-20tx: sync with transifexraveit6523-232/+1729
2019-07-24make 'rsvg-convert' optionalPablo Barciela3-7/+3
2019-05-27travis: use fedora-30 and ubuntu-19.04 for buildingraveit651-2/+2
2019-04-21release 1.22.1v1.22.1raveit652-1/+14
2019-04-21sync with transifexraveit65116-1554/+2897
2019-04-21Use mate-desktop icon instead of mate for mate-aboutrbuj1-1/+1
2019-04-21Simplify icons/Makefile.amrbuj9-53/+22
2019-04-21Use radial gradient (Blur 13.9%, Opacity 73.4%) for MATE logo shadowrbuj7-22/+57
2019-03-31github release for stable branchraveit651-0/+19
2019-03-25mate-thumbnail-pixbuf-utils: Fix division by zeroPablo Barciela1-3/+9
Fixes Clang static analyzer warning: mate-thumbnail-pixbuf-utils.c:160:17: warning: Division by zero *dest++ = r / n_pixels; ~~^~~~~~~~~~
2019-03-25mate-bg: Fix memory leakPablo Barciela1-0/+2
Fixes Clang static analyzer warning: mate-bg.c:2764:2: warning: Potential leak of memory pointed to by 'size' g_queue_push_tail (parser->stack, g_strdup (name)); ^~~~~~~~~~~~~~~~~
2019-03-23GEN png icons from hicolor_apps_scalable_mate.svgrbuj18-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-22tx: update resource fileraveit651-7/+18
2019-03-22Make translatable the program name in mate about dialogrbuj2-2/+2
2019-03-22Make translatable the copyright info in mate about dialogrbuj2-5/+4
2019-03-17[Security] Use 'g_strlcpy' instead of 'strcpy'Pablo Barciela2-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 Barciela1-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-13tx: update transifex configraveit651-1/+1
2019-02-23release 1.22.0v1.22.0raveit652-2/+17
2019-02-23tx: sync with transifexraveit652-3/+5
2019-02-16Prepare for docker-build 0.1.1 merge into masterWu Xiaotian1-1/+3
Please see mate-desktop/mate-dev-scripts#13
2019-02-09tx: sync with transifexraveit65116-7333/+8023
2019-02-08use archlinux/base imageWu Xiaotian1-10/+4
2019-02-08tx: update resources for transifexraveit651-61/+67
2019-02-08Fixed make distcheck fail on debian.Wu Xiaotian7-13/+8
2019-02-07mate-colorsel: avoid deprecated 'gtk_widget_modify_bg'Pablo Barciela1-5/+26
2019-02-03Initialize travis supportWu Xiaotian1-0/+111
2019-01-29[mate-rr] Avoid deprecated g_type_class_add_privateWu Xiaotian4-15/+9
2019-01-29Improve indentsWu Xiaotian1-2/+2
2019-01-29Avoid deprecated g_type_class_add_privateWu Xiaotian3-20/+6
Changed MateBgCrossfade, MateColorbutton and MateDesktopThumbnail
2019-01-29[mate-colorsel] Avoid deprecated g_type_class_add_privateWu Xiaotian2-51/+49
2019-01-09mate-bg: avoid deprecated 'g_settings_list_keys'Pablo Barciela1-3/+7
2019-01-03update copyright to 2019Wu Xiaotian1-1/+1
2018-12-19disable deprecation warnings for distcheckraveit651-1/+2
2018-12-12mate-bg: Corrected some commentsZhang Xianwei1-3/+3
There are some incorrect comments in mate_bg_create_surface_scale. Fix them. Signed-off-by: Zhang Xianwei <[email protected]>
2018-12-07schemas: Define schema for a default calculatorZhang Xianwei2-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-18release 1.21.2v1.21.2raveit651-10/+13
2018-11-18sync with transifexraveit65116-3248/+5617
2018-10-11pre-bump versionraveit652-1/+3
2018-09-30Add new setting to control XKB modifier latchingColomban Wendling1-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-27release 1.21.1v1.21.1raveit651-0/+10
2018-08-27sync with transifexraveit65116-686/+2121
2018-08-27tx: update translation sourceraveit651-26/+40
2018-08-27pre-bump versionraveit652-7/+9
2018-08-23interface: add key to enable/disable primary paste from middlemouselukefromdc1-0/+7
2018-08-15mate-desktop-item: replace deprecated gdk_error_trap_push/popraveit651-2/+8
2018-08-15mate-rr-config: replace deprecated gdk_flushraveit651-1/+3
2018-08-15mate-rr: replace deprecated Gdk functionsraveit651-13/+23
2018-08-15mate-bg-crossfade: replace deprecated gdk_error_trap_push/popraveit651-4/+6