Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-01-28 | filebrowser plugin: Refactor pluma_image_menu_item_new_from_pixbuf | rbuj | 1 | -15/+33 | |
2020-12-10 | cppcheck warning: The if condition is the same as the previous one | rbuj | 1 | -7/+9 | |
2020-12-10 | spell: Remove BUILT_SOURCES variable from Makefile.am | rbuj | 1 | -6/+2 | |
2020-12-05 | Use g_clear_error | rbuj | 1 | -2/+1 | |
2020-10-19 | Remove pluma-marshal. | mbkma | 9 | -123/+58 | |
These days we can use the automatic ffi marshalling. See: - https://developer.gnome.org/gobject/stable/gobject-Signals.html#g-signal-new - http://sourceware.org/libffi/ - https://gitlab.gnome.org/GNOME/gedit/-/commit/373adb7d041b0559953d0ac8cf2213ecc44db956 | |||||
2020-09-01 | pluma-time-plugin: Use g_date_time_format | rbuj | 1 | -42/+10 | |
2020-08-05 | Remove -Wmissing-field-initializers warnings | rbuj | 1 | -1/+1 | |
2020-08-05 | Remove changecase plugin. Functionality is provided by GtkSourceView. (#565) | mbkma | 6 | -595/+0 | |
2020-07-29 | Port main program to GSettings | mbkma | 2 | -10/+13 | |
Remove pluma_prefs_manager. Plugins were already ported to GSettings. Based on: https://gitlab.gnome.org/GNOME/gedit/-/commit/4215be0e8924f45170683493beaa2695e8e2e483 | |||||
2020-05-16 | Require gtk+ 3.22 in glade files | tamplan | 3 | -6/+6 | |
2020-03-14 | Remove warnings: cast between incompatible function types | rbuj | 6 | -29/+16 | |
2020-02-10 | remove note for disabled Python 2 pluginsv1.24.0 | sakib | 1 | -3/+1 | |
2019-12-01 | Taglist: Load the local translation string from lang.mo file | Wu Xiaotian | 1 | -2/+2 | |
When using intltool, the taglist creates a big xml file containing the local translation string, so that it has to be compressed. It looks like this: ``` <TagGroup sort="true" name="XHTML 1.0 - Tags"> <Tag name="Abbreviated form"> ... </Tag> <Tag name="..."> ... </Tag> ... </TagGroup> <TagGroup xml:lang="af" sort="true" name="XHTML 1.0 - Tags"> <Tag name="Afgekorte vorm" xml:lang="af"> ... </Tag> <Tag name="..." xml:lang="af"> ... </Tag> ... </TagGroup> <TagGroup xml:lang="..." sort="true" name="XHTML 1.0 - Tags"> </TagGroup> ``` Obviously, it wastes space and download bandwidth. When switch from intltool to gettext, it does not generate a similar huge xml file. It only get the translate string into pot file from the xml file, and the original xml file has not changed. This patch let taglist-plugin read the local translation string directly from the mo file, so that it can work as before. TODO: we need to improve and optimize the taglist plugin code and drop some extra code. | |||||
2019-12-01 | ignore comment element in xml file | Wu Xiaotian | 1 | -0/+5 | |
When xml file is generated using intltool, the resulting xml file deletes the comment line, but when using gettext, it keeps the comment line. | |||||
2019-12-01 | add translator hints | Wu Xiaotian | 6 | -0/+6 | |
2019-12-01 | migrate from intltool to gettext | Wu Xiaotian | 37 | -652/+652 | |
2019-08-09 | pluma-taglist-plugin-panel: avoid 'g_type_class_add_private' | Pablo Barciela | 1 | -11/+9 | |
2019-08-09 | pluma-taglist-plugin: avoid 'g_type_class_add_private' | Pablo Barciela | 1 | -5/+2 | |
2019-08-09 | pluma-time-plugin: avoid 'g_type_class_add_private' | Pablo Barciela | 1 | -7/+2 | |
2019-08-09 | pluma-spell-plugin: avoid 'g_type_class_add_private' | Pablo Barciela | 1 | -16/+11 | |
2019-08-09 | pluma-trail-save-plugin: avoid 'g_type_class_add_private' | Pablo Barciela | 1 | -14/+9 | |
2019-08-09 | pluma-modeline-plugin: avoid 'g_type_class_add_private' | Pablo Barciela | 1 | -5/+2 | |
2019-08-07 | pluma-file-browser-store: avoid 'g_type_class_add_private' | Pablo Barciela | 1 | -14/+8 | |
2019-08-07 | pluma-sort-plugin: avoid 'g_type_class_add_private' | Pablo Barciela | 1 | -12/+9 | |
2019-08-05 | pluma-file-browser-plugin: avoid 'g_type_class_add_private' | Pablo Barciela | 1 | -6/+2 | |
2019-08-05 | pluma-file-browser-widget: avoid 'g_type_class_add_private' | Pablo Barciela | 1 | -11/+7 | |
2019-08-01 | pluma-file-browser-view: avoid 'g_type_class_add_private' | Pablo Barciela | 1 | -11/+7 | |
2019-08-01 | pluma-file-bookmarks-store: avoid 'g_type_class_add_private' | Pablo Barciela | 1 | -9/+7 | |
2019-08-01 | pluma-docinfo-plugin: avoid 'g_type_class_add_private' | Pablo Barciela | 1 | -14/+9 | |
2019-08-01 | pluma-changecase-plugin: avoid 'g_type_class_add_private' | Pablo Barciela | 1 | -14/+9 | |
2019-07-28 | spell-checker plugin: add missing translation (i18n) | rbuj | 1 | -1/+1 | |
2019-07-08 | Add support for checking .ui accessibility with gla11y | Samuel Thibault | 14 | -14/+96 | |
2019-07-06 | Remove trailing whitespaces | Laurent Napias | 40 | -1206/+1206 | |
2019-06-27 | Fix use of deprecated glib-genmarshal types | Colomban Wendling | 3 | -6/+6 | |
This doesn't change any dependency as both non-deprecated replacements BOOLEAN and VOID were already used in some places. | |||||
2019-06-26 | add snippet to toggle comment/uncomment | Andrew Fowlie | 4 | -1/+71 | |
2019-06-10 | Change url projet's website | Laurent Napias | 12 | -12/+12 | |
2019-06-06 | Switch to Python 3 | Patrick Monnerat | 4 | -4/+4 | |
2019-06-06 | snippets plugin: change code for Python 2 & 3 compatibility | Patrick Monnerat | 14 | -641/+528 | |
2019-06-06 | externaltools plugin: change code for Python 2 & 3 compatibility. | Patrick Monnerat | 8 | -595/+469 | |
2019-06-05 | pythonconsole plugin: change source code for Python 2 & 3 compatibility. | Patrick Monnerat | 6 | -233/+303 | |
Also drop mateconf and use gsettings for preferences. Preferences are now triggered as a PeasGtk.Configurable. | |||||
2019-06-05 | quickopen plugin: change code for Python 2 & 3 compatibility. | Patrick Monnerat | 4 | -68/+94 | |
2019-05-21 | Reindent all Python sources to ts=4. Strip trailing spaces. | Patrick Monnerat | 26 | -5839/+5854 | |
2019-05-16 | add quick open to readme | sakib | 1 | -1/+1 | |
2019-05-16 | add readmes and update plugins section of manual | sakib | 10 | -0/+30 | |
2019-02-17 | show enchant version when configure | Wu Xiaotian | 1 | -1/+1 | |
2019-02-17 | Replace the deprecated enchant_dict_add_to_pwl with enchant_dict_add. | Wu Xiaotian | 1 | -1/+2 | |
2019-01-21 | addresses #391 - gets snippet window size before destroying it | Andrew Fowlie | 1 | -4/+5 | |
2019-01-18 | simple bug fix of misplaced underscore | Andrew Fowlie | 1 | -1/+1 | |
2018-08-19 | pluma-sort-plugin: avoid extra empty line | Pablo Barciela | 1 | -4/+6 | |
Fixes https://github.com/mate-desktop/pluma/issues/153 | |||||
2018-08-06 | spell plugin: Autocheck spelling with [control + F7] | Pablo Barciela | 1 | -1/+1 | |
Closes https://github.com/mate-desktop/pluma/issues/335 |