summaryrefslogtreecommitdiff
path: root/mate-about/mate-about.c
AgeCommit message (Collapse)AuthorFilesLines
2021-05-13MATE About: Fix off-by-one error, display yerba mate commentGordon N. Squash1-1/+1
The MATE About program is designed to display one of six messages at random each time you launch the application, showcasing the fundamental values of the MATE Project. Unfortunately, due to an off-by-one programming error introduced many years ago, only the first five messages ever get displayed; the sixth message, referring to where MATE got its name from, is never chosen. This was due to a misunderstanding of the GLib function `g_random_int_range`: The function is and always was designed to be passed an inclusive lower and an exclusive upper value for the random integer, generating a random integer that is greater than or equal to the lower value and less than the upper value specified. The MATE About application errantly subtracted 1 from the upper value itself, and thus only messages 1 through 5 were ever picked. This commit removes the unnecessary subtraction.
2021-02-27mate-about: Use the macro _(String) instead of the macro gettext(Msgid)rbuj1-2/+3
2021-02-27Drop local macro mate_gettext(package, locale, codeset)rbuj1-10/+3
2020-02-18mate-about: remove unused variable ‘window’rbuj1-1/+0
2019-03-22Make translatable the program name in mate about dialogrbuj1-1/+1
2019-03-22Make translatable the copyright info in mate about dialogrbuj1-1/+1
2017-08-26mate-about: switch to GtkAboutDialogmonsta1-11/+11
2016-11-20move to GTK+3 (>= 3.14), drop GTK+2 code and --with-gtk build optionmonsta1-34/+0
2016-11-20fix indent a bitmonsta1-18/+14
2015-09-14Fix missing icons on GTK3 with custom icon themeBalló György1-12/+2
2014-12-16Revert "Revert "Drop support for Glib < 2.36""infirit1-4/+0
This reverts commit a0a0a16fb72bb7b592d23ce29ca52c7d63c2e40b.
2014-12-16Revert "Drop support for Glib < 2.36"infirit1-0/+4
This reverts commit 6a0c8a93e30243232d63487c09ccb15a93755265.
2014-10-08Change mate-about's program icon to official MATE desktop iconNachanon Vetjasit1-2/+2
Closes https://github.com/mate-desktop/mate-desktop/issues/132
2014-06-05Drop support for Glib < 2.36infirit1-4/+0
2014-05-03mate-about: Use spaces, not tabsStefano Karapetsas1-114/+114
2014-05-03Remove libunique usageStefano Karapetsas1-38/+5
2014-04-23mate-about: Use MateAboutDialogStefano Karapetsas1-21/+12
2013-07-30mate-about: Try to use 'mate' as icon, if available in icon themeStefano Karapetsas1-15/+9
Deleted old code because now we require GTK 2.24
2013-05-13mate-about: Fix g_type_init deprecation in glib 2.36Stefano Karapetsas1-0/+2
2013-05-08Fix previous hackering commitStefano Karapetsas1-131/+32
2013-05-08fixed g_type_init() deprecationPerberos1-32/+131
added Not without my gnu
2013-04-01Remove gnucatmate-desktop-1.6.0Stefano Karapetsas1-81/+1
2012-11-18fixed incorrect fsf addresses.Steve Zesch1-2/+2
2012-10-18mate-aboud: code improvementsStefano Karapetsas1-54/+26
disable gnucat by default install gnucat pixmaps only if enabled translate some spanish comments dropped support for old glib version (now minimun version is increased) add "translator-credits" msgid to show translators
2012-07-31Added copyleft compatible gnucatSpaghetti1-2/+83
2012-07-19removing nyancat due copyleft incompatiblePerberos1-83/+1
2012-02-22GOptionEntry was added on glib 2.6Perberos1-9/+32
2011-12-07adding translator string (empty)Perberos1-0/+1
2011-12-07cleaning codePerberos1-191/+205
2011-12-02adding version tagPerberos1-13/+22
2011-12-01moving from https://github.com/perberos/mate-desktop-environmentPerberos1-0/+275