summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-08-05pluma-file-browser-plugin: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-08-05pluma-file-browser-widget: avoid 'g_type_class_add_private'Pablo Barciela1-11/+7
2019-08-03pluma-smart-charset-converter: avoid 'g_type_class_add_private'Pablo Barciela1-5/+2
2019-08-01pluma-file-browser-view: avoid 'g_type_class_add_private'Pablo Barciela1-11/+7
2019-08-01pluma-file-bookmarks-store: avoid 'g_type_class_add_private'Pablo Barciela1-9/+7
2019-08-01pluma-docinfo-plugin: avoid 'g_type_class_add_private'Pablo Barciela1-14/+9
2019-08-01pluma-changecase-plugin: avoid 'g_type_class_add_private'Pablo Barciela1-14/+9
2019-08-01pluma-window: avoid 'g_type_class_add_private'Pablo Barciela1-8/+2
2019-07-30fix build with GtkSourceView 3.22monsta2-5/+5
2019-07-29pluma-view: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-07-29pluma-tab-label: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-07-28spell-checker plugin: add missing translation (i18n)rbuj1-1/+1
2019-07-27gla11y: use version 0.3 which already defaults to using python3Samuel Thibault2-4/+2
2019-07-26pluma-tab: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-07-26pluma-status-combo-box: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-07-26pluma-statusbar: avoid 'g_type_class_add_private'Pablo Barciela1-8/+2
2019-07-25pluma-progress-message-area: avoid 'g_type_class_add_private'Pablo Barciela1-7/+2
2019-07-25pluma-print-preview: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-07-25pluma-print-job: avoid 'g_type_class_add_private'Pablo Barciela1-8/+2
2019-07-25pluma-plugins-engine: avoid 'g_type_class_add_private'Pablo Barciela1-7/+3
2019-07-23pluma-notebook: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-07-23pluma-message-bus: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-07-23pluma-message: avoid 'g_type_class_add_private'Pablo Barciela1-5/+2
2019-07-23pluma-panel: avoid 'g_type_class_add_private'Pablo Barciela1-8/+3
2019-07-21pluma-file-chooser-dialog: avoid 'g_type_class_add_private'Pablo Barciela1-7/+2
2019-07-21pluma-documents-panel: avoid 'g_type_class_add_private'Pablo Barciela1-10/+4
2019-07-19pluma-history-entry: avoid 'g_type_class_add_private'Pablo Barciela1-8/+2
2019-07-19pluma-encodings-combo-box: avoid 'g_type_class_add_private'Pablo Barciela1-8/+2
2019-07-17release 1.23.1v1.23.1raveit652-1/+32
2019-07-17tx: sync with transifexraveit6519-240/+263
2019-07-17tx: update resource for transifexraveit652-429/+535
2019-07-17fix build error when gla11y is not installedraveit651-1/+3
2019-07-15pluma-gio-document-loader: avoid 'g_type_class_add_private'Pablo Barciela1-9/+2
2019-07-16pluma-document-output-stream: avoid 'g_type_class_add_private'Pablo Barciela1-8/+2
2019-07-16pluma-gio-document-saver: avoid 'g_type_class_add_private'Pablo Barciela1-8/+2
2019-07-16pluma-preferences-dialog: remove unused struct memberPablo Barciela1-3/+0
2019-07-16pluma-preferences-dialog: avoid 'g_type_class_add_private'Pablo Barciela1-9/+2
2019-07-14pluma-document-input-stream: avoid 'g_type_class_add_private'Pablo Barciela1-7/+3
2019-07-14pluma-document: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-07-13pluma-encodings-dialog: avoid 'g_type_class_add_private'Pablo Barciela1-8/+2
2019-07-13pluma-close-confirmation-dialog: avoid 'g_type_class_add_private'Pablo Barciela1-8/+2
2019-07-12pluma-search-dialog: avoid 'g_type_class_add_private'Pablo Barciela1-8/+2
2019-07-12pluma-app: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-07-08Add support for checking .ui accessibility with gla11ySamuel Thibault21-18/+169
2019-07-06Remove trailing whitespacesLaurent Napias139-3643/+3643
2019-06-28Use smart tabs to fix indentation and alignmentVictor Kareh6-267/+261
2019-06-28preferences: Fix inconsistent active state of trailing charactersVictor Kareh1-24/+38
When unchecking and then re-checking draw_spaces (or tabs) while draw_trailing_spaces is active, the trailing preference is no longer set, but the button shows up as set. This change makes it so that it unsets the option prior to disabling the checkbox.
2019-06-28Add draw spaces/tabs/newlines optionsGoffredo Baroncelli2-0/+415
Add - draw spaces - draw tabs - draw newlines options in preference dialog. If the GTK version is greather or equal to 3.24, it is possible to show only the trailing tabs/spaces symbols.
2019-06-28Draw spaces, tabs, newlines and nbsp.Goffredo Baroncelli6-0/+386
Via gsettings it is possible to enable the drawing of: - newline (enable-space-drawer-newline) - spaces (enable-space-drawer-space) - tab (enable-space-drawer-tab) - not blank space (enable-space-drawer-nbsp) The first setting is a boolean ones, so the only allowable values are true (show the symbol) or false (don't show the symbol). Instead for the last three settings, the allowed values are: 'draw-none' -> show nothing 'draw-all' -> show all spaces/tabs 'draw-trailing' -> show only the trailing spaces/tabs (only if GTK >= 3.24)
2019-06-27Fix use of deprecated glib-genmarshal typesColomban Wendling6-11/+11
This doesn't change any dependency as both non-deprecated replacements BOOLEAN and VOID were already used in some places.