summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-08-29terminal-screen-container: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-08-29terminal-screen: avoid 'g_type_class_add_private'Pablo Barciela1-4/+2
2019-08-29terminal-info-bar: avoid 'g_type_class_add_private'Pablo Barciela1-7/+2
2019-08-29terminal-tab-label: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-08-27terminal-window: "utilities-terminal" icon with "Open Terminal"Pablo Barciela1-4/+3
2019-07-06release 1.23.0v1.23.0raveit652-1/+20
2019-07-06tx: sync with transifexraveit6545-626/+5124
2019-07-06tx: update resource for transifexraveit652-673/+689
2019-07-06Remove trailing whitespacesLaurent Napias3-6/+6
2019-06-10Change url project's websiteLaurent Napias3-3/+3
2019-06-03make "highlighting things under mouse pointer" configurableosch6-20/+113
2019-05-31Create FUNDING.ymlMartin Wimpress1-0/+9
2019-05-29travis: use fedora-30 and ubuntu-19.10 for buildingraveit651-2/+2
2019-05-18[ci] Add cppcheck html reportPablo Barciela1-1/+4
2019-05-16travis: enable 'cppcheck' in debianPablo Barciela1-0/+4
2019-04-28[ci] Enable Clang Static AnalyzerWu Xiaotian1-2/+63
2019-04-11Ensure proper translation of the about dialog titlerbuj1-1/+2
Note that GTK+ sets a default title of _("About %s") on the dialog window (where %s is replaced by the name of the application, but in order to ensure proper translation of the title, applications should set the title property explicitly when constructing a GtkAboutDialog https://developer.gnome.org/gtk3/stable/GtkAboutDialog.html
2019-04-11Make translatable the copyright info in about dialogrbuj1-8/+6
2019-04-11Show confirmation dialog if there are multiple open tabs on closingStefan Tauner2-15/+20
As a followup #149 this fixes the behavior of the code to match the description of the respective gsettings entry "confirm-window-close". Said entry is also updated to reflect the change added in #149. No changes to the gsettings handling were made thus only users who have "confirm-window-close" turned on already will see the new behavior.
2019-04-11Upgrade the manual to docbook 5.0rbuj2-224/+175
To upgrade the manual: wget https://docbook.org/xml/5.0.1/tools/db4-upgrade.xsl xsltproc --output index-new.docbook db4-upgrade.xsl index.docbook xsltproc --output legal-new.xml db4-upgrade.xsl legal.xml To validate the manual: wget https://docbook.org/xml/5.0.1/rng/docbookxi.rng jing docbookxi.rng index.docbook To view the manual: yelp file:///full_path/index.docbook
2019-04-11about: update copyrightrbuj1-1/+1
2019-04-04github release pageraveit651-0/+19
2019-03-26Explicitly enable bright bold to match new VTE versionsmicheal655361-0/+3
Fixes #278
2019-03-23help: update copyrightraveit651-1/+1
2019-03-15warning: Value stored to 'screen_number' is never readrbuj3-20/+2
$ scan-build --keep-cc make terminal-app.c:249:5: warning: Value stored to 'screen_number' is never read screen_number = n; ^ ~
2019-03-15Use gresources for about_DATA, uimanager_DATA & builder_DATArbuj12-66/+92
2019-03-12Retain copied selection when changing tabsVictor Kareh1-3/+2
2019-02-24release 1.22.0v1.22.0raveit652-10/+27
2019-02-24tx: sync with transifexraveit65123-21158/+19322
2019-02-22Enable Travis CI for all branchesraveit651-6/+0
2019-02-22Initialize Travis CI supportraveit651-0/+103
2019-02-20Remove unused files in help dirrbuj8-163/+0
$ find ./help -name "*.omf" -exec rm {} \; $ find ./help -name Makefile.am -not -path "./help/Makefile.am" -exec rm {} \;
2019-02-20Remove generated filesrbuj8-5126/+0
$ find . -type f -name *.xml -not -path "./help/C/*" -not -path "./src/*" -exec rm {} \;
2019-02-19Add update-authors.pl which helps to update terminal.aboutrbuj1-0/+63
2019-02-17Update authorsrbuj1-1/+1
2019-02-13Update Documentersrbuj1-1/+1
Update "Documented by" in About MATE Terminal dialog
2019-02-10tx: sync with transifexraveit65218-22057/+21251
2019-02-10tx: update resource for transifexraveit651-179/+165
2019-02-04drop umtp suportraveit656-42/+3
Fixes https://github.com/mate-desktop/mate-terminal/issues/104 This doesn't work with with gtk+-3 and newer vte versions. With gnome-pty-helper gone, it's a no-op. based on origin commit at https://git.gnome.org/browse/gnome-terminal/commit/?id=d3aa520 https://bugzilla.gnome.org/show_bug.cgi?id=747046
2019-02-04tx: update resource file for transifexraveit652-221/+211
2019-02-01Help - Window title when MATE Terminal is started for first timerbuj1-1/+1
Window title is defined by Initial title setting
2019-02-01Help - alternative text for tabbed window picturerbuj1-1/+1
2019-02-01Help - TERM=xterm-256colorrbuj1-10/+1
terminal-screen.c: g_hash_table_replace (env_table, g_strdup ("TERM"), g_strdup ("xterm-256color")); /* FIXME configurable later? */
2019-01-22eggsmclient: avoid deprecated 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-01-12src/terminal-screen.c: Set TERM to 'xterm-256color' (instead of just ↵Mike Gabriel1-1/+1
'xterm'). This provides 256 colors terminal application support. Fixes #209.
2019-01-05move appdata to metainfo directorymonsta1-1/+1
fixes https://github.com/mate-desktop/mate-terminal/issues/229
2018-12-24release 1.21.1v1.21.1raveit652-1/+13
2018-12-24tx: sync with transifexraveit65228-27300/+193263
2018-12-24disable deprecation warnings for distcheckraveit651-1/+1
2018-12-01terminal-profile: Fix memory leaksPablo Barciela1-9/+20
'g_strconcat' needs to be freed