summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-09-23release 1.22.2v1.22.2raveit652-9/+18
2019-09-23tx: sync with transifexraveit65209-13041/+19751
2019-09-23Add hicolor_apps_24x24_mate-system-log.pngrbuj2-0/+7
2019-09-23Install hicolor_apps_24x24_mate-disk-usage-analyzer.pngrbuj1-0/+1
Test: $ ./autogen.sh prefix=/usr && make && sudo make install $ ls /usr/share/icons/hicolor/24x24/apps/mate-disk-usage-analyzer.png
2019-07-24mate-disk-usage-analyzer: Remove blank space before right parenthesisrbuj1-1/+1
2019-05-29travis: use fedora-30 and ubuntu-19.04 for buildingraveit651-2/+2
2019-05-29gdict-applet: Variable 'detail' is allocated memory that is never usedrbuj1-1/+1
2019-05-06[ci] Remove inkscape, rsvg-convert from requiresrbuj1-8/+0
2019-05-06Make inkscape and rsvg-convert optionalrbuj3-15/+30
TEST on Fedora: inkscape, librsvg2-tools package are not installed on system: The user can build, install and distribute the package: $ sudo dnf remove inkscape librsvg2-tools -y $ ./configure --prefix=/usr $ make $ sudo make install $ make distcheck logview/data/icons: Can not run build-png-icons target if inkscape package is not installed on system: $ make -C logview/data/icons clean-png-icons make: Entering directory '/home/robert/devel/mate-utils/logview/data/icons' rm -f hicolor_apps_16x16_mate-system-log.png hicolor_apps_22x22_mate-system-log.png hicolor_apps_32x32_mate-system-log.png hicolor_apps_48x48_mate-system-log.png hicolor_apps_256x256_mate-system-log.png make: Leaving directory '/home/robert/devel/mate-utils/logview/data/icons' $ make -C logview/data/icons build-png-icons make: Entering directory '/home/robert/devel/mate-utils/logview/data/icons' make: *** No rule to make target 'hicolor_apps_16x16_mate-system-log.png', needed by 'build-png-icons'. Stop. make: Leaving directory '/home/robert/devel/mate-utils/logview/data/icons' Can run build-png-icons target if inkscape package is installed on system: $ sudo dnf install inkscape -y $ ./configure --prefix=/usr $ make -C logview/data/icons build-png-icons make: Entering directory '/home/robert/devel/mate-utils/logview/data/icons' Background RRGGBBAA: ffffff00 Area 303:65:319:81 exported to 16 x 16 pixels (96 dpi) Bitmap saved as: hicolor_apps_16x16_mate-system-log.png Background RRGGBBAA: ffffff00 Area 303:101:325:123 exported to 22 x 22 pixels (96 dpi) Bitmap saved as: hicolor_apps_22x22_mate-system-log.png Background RRGGBBAA: ffffff00 Area 304:142:336:174 exported to 32 x 32 pixels (96 dpi) Bitmap saved as: hicolor_apps_32x32_mate-system-log.png Background RRGGBBAA: ffffff00 Area 296:202:344:250 exported to 48 x 48 pixels (96 dpi) Bitmap saved as: hicolor_apps_48x48_mate-system-log.png Background RRGGBBAA: ffffff00 Area 33:11:289:267 exported to 256 x 256 pixels (96 dpi) Bitmap saved as: hicolor_apps_256x256_mate-system-log.png make: Nothing to be done for 'build-png-icons'. make: Leaving directory '/home/robert/devel/mate-utils/logview/data/icons' baobab/pixmaps: Can not run build-png-icons target if librsvg2-tools package is not installed on system: $ make -C baobab/pixmaps clean-png-icons make: Entering directory '/home/robert/devel/mate-utils/baobab/pixmaps' rm -f hicolor_apps_16x16_mate-disk-usage-analyzer.png hicolor_apps_22x22_mate-disk-usage-analyzer.png hicolor_apps_32x32_mate-disk-usage-analyzer.png hicolor_apps_48x48_mate-disk-usage-analyzer.png hicolor_apps_128x128_mate-disk-usage-analyzer.png make: Leaving directory '/home/robert/devel/mate-utils/baobab/pixmaps' $ make -C baobab/pixmaps build-png-icons make: Entering directory '/home/robert/devel/mate-utils/baobab/pixmaps' make: *** No rule to make target 'hicolor_apps_16x16_mate-disk-usage-analyzer.png', needed by 'build-png-icons'. Stop. make: Leaving directory '/home/robert/devel/mate-utils/baobab/pixmaps' Can run build-png-icons target if librsvg2-tools package is installed on system: $ sudo dnf install -y librsvg2-tools $ ./configure --prefix=/usr $ make -C baobab/pixmaps build-png-icons make: Entering directory '/home/robert/devel/mate-utils/baobab/pixmaps' /usr/bin/rsvg-convert -w 16 -h 16 hicolor_apps_scalable_mate-disk-usage-analyzer.svg -o hicolor_apps_16x16_mate-disk-usage-analyzer.png /usr/bin/rsvg-convert -w 22 -h 22 hicolor_apps_scalable_mate-disk-usage-analyzer.svg -o hicolor_apps_22x22_mate-disk-usage-analyzer.png /usr/bin/rsvg-convert -w 32 -h 32 hicolor_apps_scalable_mate-disk-usage-analyzer.svg -o hicolor_apps_32x32_mate-disk-usage-analyzer.png /usr/bin/rsvg-convert -w 48 -h 48 hicolor_apps_scalable_mate-disk-usage-analyzer.svg -o hicolor_apps_48x48_mate-disk-usage-analyzer.png /usr/bin/rsvg-convert -w 128 -h 128 hicolor_apps_scalable_mate-disk-usage-analyzer.svg -o hicolor_apps_128x128_mate-disk-usage-analyzer.png make: Leaving directory '/home/robert/devel/mate-utils/baobab/pixmaps' Closes #223
2019-04-23release 1.22.1v1.22.1raveit651-0/+9
2019-04-23tx: sync with transifexraveit65567-11363/+16017
2019-04-23tx: update resource fileraveit651-104/+104
2019-04-09Fix -Werror=cast-function-type with GCC 8rbuj15-98/+55
In addition, it removes unnecessary function type casts like: (GDestroyNotify) g_object_unref (GDestroyNotify) g_free
2019-04-09mate-disk-usage-analyzer: Memory leakrbuj1-0/+2
To detect the memory leak using valgrind: export CFLAGS="-Og -g -fno-omit-frame-pointer -fPIE -pie" export CXXFLAGS="-Og -g -fno-omit-frame-pointer -fPIE -pie" ./autogen.sh --prefix=/usr make clean make sudo make install valgrind --tool=memcheck --undef-value-errors=no --leak-check=full --log-file="report.txt" /usr/bin/mate-disk-usage-analyzer report.txt content: ==16061== 6 bytes in 1 blocks are definitely lost in loss record 174 of 14,390 ==16061== at 0x483880B: malloc (vg_replace_malloc.c:309) ==16061== by 0x56B10D7: g_malloc (gmem.c:99) ==16061== by 0x56CAAEE: g_strdup (gstrfuncs.c:363) ==16061== by 0x56E3743: g_variant_dup_string (gvariant.c:1533) ==16061== by 0x5509DE6: g_settings_get_string (gsettings.c:1795) ==16061== by 0x115664: initialize_charts (baobab.c:1185) ==16061== by 0x11640C: main (baobab.c:1307)
2019-04-05github release page for stable branchraveit651-0/+19
2019-03-25pre-bump versionraveit652-1/+3
2019-03-25travis: add new build dependenciesraveit654-8/+26
2019-03-25GEN png icons from svg filesrbuj20-88/+106
PNG icons are created if they are not present in icon folder. To remove png icons: make -C baobab/pixmaps clean-png-icons make -C logview/data/icons clean-png-icons To build png icons: make -C baobab/pixmaps build-png-icons make -C logview/data/icons build-png-icons This removes baobab/pixmaps/shot.png file, use applets-screenshooter named icon (used in mate-screenshot).
2019-03-24tx: update resource fileraveit654-63/+94
2019-03-24Update documenters in about dialogrbuj4-3/+30
2019-03-24mate-dictionary: Use g_strjoin to build license textrbuj3-21/+26
full stop at end of sentence in license paragraphs
2019-03-24Use program-name and title in gtk_show_about_dialog callrbuj3-3/+7
2019-03-23help: update copyrightraveit653-3/+3
2019-03-23travis: disable Portuguese language for help in search toolraveit651-0/+2
2019-03-16tx: update transifex configraveit651-5/+5
2019-02-25release 1.22.0v1.22.0raveit652-2/+12
2019-02-25tx: sync with transifexraveit65120-1903/+7168
2019-02-20Initialize Travis CI supportWu Xiaotian1-0/+119
2019-02-16tx: update mate-utils.potrbuj1-16/+34
2019-02-16tx: sync fixed translationsrbuj19-46/+70
2019-02-16Make translatable the copyright in about dialogrbuj3-9/+6
2019-02-15enable translations for ca@valencia againraveit651-1/+1
2019-02-15tx: sync with transifex"raveit65158-291/+689
2019-02-05help - bump docbook 4.5rbuj5-9/+9
fix validate errors: $ find . -name "index.docbook" -exec yelp-check validate {} \; validity error : Element othercredit content does not follow the DTD, expecting (honorific | firstname | surname | lineage | othername | affiliation | authorblurb | contrib)+, got (personname email )
2019-01-22eggsmclient: avoid deprecated 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-01-10move appdata to metainfo directorymonsta4-4/+4
fixes https://github.com/mate-desktop/mate-utils/issues/188
2018-12-25release 1.21.1v1.21.1raveit652-11/+35
2018-12-25search-tool: disable translations for ca@valenciaraveit651-1/+1
fixes build error with help files with fedora 29 probably an xml language error.
2018-12-25tx: sync with transifexraveit65586-33672/+351902
2018-12-25tx: fix Content-Type in resource fileraveit651-2/+2
2018-12-25disable deprecation warnings for distcheckraveit651-1/+3
2018-11-09tx: rename user-guide slugs in configraveit651-4/+4
2018-10-06Use make functions for HELP_LINGUASrbuj4-7/+23
2018-10-05Tx: simplify source generation and update themraveit6511-129/+119
2018-10-05Replace -Dokumentationsprojekt with Documentation Projectrbuj4-12/+12
2018-09-24mate-dictionary: Fix memory leakPablo Barciela1-6/+9
2018-09-23tx: update source file for disk-usage-analyzer and search-toolraveit652-8/+8
2018-09-23Fix spelling and grammar mistakesrbuj2-7/+7
2018-09-23search-tool: replace deprecated gtk_menu_popupraveit651-4/+4
2018-09-23screenshot: replace deprecated gdk_flushraveit652-4/+10