[Xfce4-commits] [apps/mousepad] branch master updated (5e95b16 -> 3b084a5)

noreply at xfce.org noreply at xfce.org
Fri Jul 11 13:03:05 CEST 2014


This is an automated email from the git hooks/post-receive script.

mbrush pushed a change to branch master
in repository apps/mousepad.

      from  5e95b16   I18n: Update translation nb (100%).
       new  203536a   Build system support for GSettings
       new  78da59c   Add GSettings subclass singleton and related hooks
       new  0393b73   Replace MousepadPreferences with GSettings
       new  97c0b8b   Use DConf (or whatever the default) when DBus support is enabled
       new  1130299   Bind GSettings for view-line-numbers and window-statusbar-visible
       new  3606ff7   Use GSettings for the search bar search-match-case setting
       new  19182c7   Use GSettings for MousepadReplaceDialog search settings
       new  f8a4bed   Add GSettings wrapper functions to mousepad-settings.h
       new  011a2e8   Use existing config directory for GSettings keyfile backend
       new  ad1c439   Make GSettings keyfile backend a separate compile-time option
       new  d6ac79f   Remove uneeded code for view-line-numbers setting
       new  aa8a283   Remove uneeded code for view-auto-indent
       new  8b224a3   Refactor for view-font-name GSetting
       new  172ddea   Make font-name a real property on MousepadView
       new  f0391f0   Add view-show-whitespace and view-show-line-endings
       new  fd87858   Use the rest of the GtkSourceView properties with GSettings
       new  81a430c   Add color-scheme property to MousepadView
       new  b48d3d7   Move word-wrap from MousepadDocument to MousepadView
       new  f8d2d51   Make the misc- settings window- instead
       new  70761ea   Always create a statusbar and just hide/show it
       new  4424326   Update the window title when path-in-title setting changes
       new  cbc5fbe   Keep the UI in sync with the always-show-tabs setting
       new  e0ff5aa   Keep the UI in sync with the recent-menu-items setting
       new  8df405f   Move window-height and window-width in schema
       new  d80b40b   Re-write MousepadSettings to use multiple child schemas
       new  c9b5563   Add helper function mousepad_settings_connect_changed()
       new  5ee27d2   Fix color-scheme property so setting saves correctly
       new  83d0ced   Re-write the settings to make easier to use from code
       new  43e9873   Add preferences dialog
       new  f95cb2f   Fix one-time leak with keyfile settings backend
       new  a334211   Change path parsing code to give caller 0-terminated string
       new  431baa2   Refactor GSettings path/schema code into separate class
       new  349b847   Re-organize the main menu a bit
       new  2b51559   Add a basic toolbar
       new  1c4dcd9   Remove mutex locking around global settings object
       new  4b7ffa3   Add use-default-monospace-font setting
       new  a3a9517   Add fullscreen support
       new  68eaea8   Rename org.xfce.Mousepad.gschema.xml to use lower-case
       new  473af3d   Change default of a couple settings
       new  f94cf63   Disconnect font-name setting callback
       new  87f2d06   Implement match-braces setting
       new  3321a67   Improve toolbar preferences
       new  b32b1b1   Bump GLib and GTK+ dependency versions
       new  d23ccc4   Copy the main menu edit menu to the text view context menu
       new  3b084a5   Merge branch 'preferences-menu-toolbar'

The 45 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                             |    3 +
 Makefile.am                            |    2 +
 README                                 |    3 +-
 autogen.sh                             |    2 +
 configure.ac.in                        |   22 +-
 mousepad/Makefile.am                   |   33 +-
 mousepad/mousepad-application.c        |   63 +-
 mousepad/mousepad-application.h        |    3 +
 mousepad/mousepad-document.c           |   91 +--
 mousepad/mousepad-document.h           |    6 -
 mousepad/mousepad-encoding-dialog.c    |    5 +-
 mousepad/mousepad-preferences.c        |  652 --------------------
 mousepad/mousepad-preferences.h        |   38 --
 mousepad/mousepad-prefs-dialog.c       |  569 +++++++++++++++++
 mousepad/mousepad-prefs-dialog.glade   |  946 ++++++++++++++++++++++++++++
 mousepad/mousepad-prefs-dialog.h       |   24 +
 mousepad/mousepad-print.c              |    1 -
 mousepad/mousepad-private.h            |    1 +
 mousepad/mousepad-replace-dialog.c     |  229 +++----
 mousepad/mousepad-search-bar.c         |   47 +-
 mousepad/mousepad-settings-store.c     |  279 +++++++++
 mousepad/mousepad-settings-store.h     |   38 ++
 mousepad/mousepad-settings.c           |  288 +++++++++
 mousepad/mousepad-settings.h           |  122 ++++
 mousepad/mousepad-view.c               |  526 ++++++++++++++--
 mousepad/mousepad-view.h               |   37 +-
 mousepad/mousepad-window-ui.xml        |  104 +++-
 mousepad/mousepad-window.c             | 1055 ++++++++++++++++++--------------
 mousepad/mousepad-window.h             |    2 +
 mousepad/org.xfce.mousepad.gschema.xml |  335 ++++++++++
 30 files changed, 3948 insertions(+), 1578 deletions(-)
 delete mode 100644 mousepad/mousepad-preferences.c
 delete mode 100644 mousepad/mousepad-preferences.h
 create mode 100644 mousepad/mousepad-prefs-dialog.c
 create mode 100644 mousepad/mousepad-prefs-dialog.glade
 create mode 100644 mousepad/mousepad-prefs-dialog.h
 create mode 100644 mousepad/mousepad-settings-store.c
 create mode 100644 mousepad/mousepad-settings-store.h
 create mode 100644 mousepad/mousepad-settings.c
 create mode 100644 mousepad/mousepad-settings.h
 create mode 100644 mousepad/org.xfce.mousepad.gschema.xml

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list