Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Mon, 16 Feb 2015 15:04:27 UTC Commit: 01911c3efec2d7411cdf946d2191919f66b04359 https://github.com/geany/geany-plugins/commit/01911c3efec2d7411cdf946d219191...
Log Message: ----------- git-ui: Rename plugin to Git Change Bar
While the initial goal of this plugin was bigger, only the changebar feature is currently ready, and useful enough to be released on its own.
Modified Paths: -------------- Makefile.am build/git-changebar.m4 build/git-ui.m4 configure.ac git-changebar/AUTHORS git-changebar/COPYING git-changebar/ChangeLog git-changebar/Makefile.am git-changebar/NEWS git-changebar/README git-changebar/data/Makefile.am git-changebar/data/prefs.ui git-changebar/src/Makefile.am git-changebar/src/gcb-plugin.c git-ui/src/Makefile.am po/POTFILES.in
Modified: Makefile.am 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -103,8 +103,8 @@ if ENABLE_GENIUSPASTE SUBDIRS += geniuspaste endif
-if ENABLE_GITUI -SUBDIRS += git-ui +if ENABLE_GITCHANGEBAR +SUBDIRS += git-changebar endif
if ENABLE_MARKDOWN
Modified: build/git-changebar.m4 17 lines changed, 17 insertions(+), 0 deletions(-) =================================================================== @@ -0,0 +1,17 @@ +AC_DEFUN([GP_CHECK_GITCHANGEBAR], +[ + GP_ARG_DISABLE([GitChangeBar], [auto]) + + GP_CHECK_PLUGIN_DEPS([GitChangeBar], [GITCHANGEBAR], + [$GP_GTK_PACKAGE >= 2.18 + glib-2.0 + libgit2]) + + GP_COMMIT_PLUGIN_STATUS([GitChangeBar]) + + AC_CONFIG_FILES([ + git-changebar/Makefile + git-changebar/data/Makefile + git-changebar/src/Makefile + ]) +])
Modified: build/git-ui.m4 17 lines changed, 0 insertions(+), 17 deletions(-) =================================================================== @@ -1,17 +0,0 @@ -AC_DEFUN([GP_CHECK_GITUI], -[ - GP_ARG_DISABLE([GitUI], [auto]) - - GP_CHECK_PLUGIN_DEPS([GitUI], [GITUI], - [$GP_GTK_PACKAGE >= 2.18 - glib-2.0 - libgit2]) - - GP_COMMIT_PLUGIN_STATUS([GitUI]) - - AC_CONFIG_FILES([ - git-ui/Makefile - git-ui/data/Makefile - git-ui/src/Makefile - ]) -])
Modified: configure.ac 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -51,7 +51,7 @@ GP_CHECK_GEANYSENDMAIL GP_CHECK_GEANYVC GP_CHECK_GEANYPG GP_CHECK_GENIUSPASTE -GP_CHECK_GITUI +GP_CHECK_GITCHANGEBAR GP_CHECK_MARKDOWN GP_CHECK_MULTITERM GP_CHECK_PAIRTAGHIGHLIGHTER
Modified: git-changebar/AUTHORS 0 lines changed, 0 insertions(+), 0 deletions(-) =================================================================== No diff available, check online
Modified: git-changebar/COPYING 0 lines changed, 0 insertions(+), 0 deletions(-) =================================================================== No diff available, check online
Modified: git-changebar/ChangeLog 0 lines changed, 0 insertions(+), 0 deletions(-) =================================================================== No diff available, check online
Modified: git-changebar/Makefile.am 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,4 +1,4 @@ include $(top_srcdir)/build/vars.auxfiles.mk -plugin = git-ui +plugin = git-changebar
SUBDIRS = data src
Modified: git-changebar/NEWS 0 lines changed, 0 insertions(+), 0 deletions(-) =================================================================== No diff available, check online
Modified: git-changebar/README 6 lines changed, 3 insertions(+), 3 deletions(-) =================================================================== @@ -1,6 +1,6 @@ -=============== -Git Integration -=============== +============== +Git Change Bar +==============
.. contents::
Modified: git-changebar/data/Makefile.am 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,4 +1,4 @@ include $(top_srcdir)/build/vars.docs.mk -plugin = git-ui +plugin = git-changebar
dist_plugindata_DATA = prefs.ui
Modified: git-changebar/data/prefs.ui 0 lines changed, 0 insertions(+), 0 deletions(-) =================================================================== No diff available, check online
Modified: git-changebar/src/Makefile.am 13 lines changed, 13 insertions(+), 0 deletions(-) =================================================================== @@ -0,0 +1,13 @@ +include $(top_srcdir)/build/vars.build.mk +plugin = git-changebar + +geanyplugins_LTLIBRARIES = git-changebar.la + +git_changebar_la_SOURCES = gcb-plugin.c +git_changebar_la_CPPFLAGS = $(AM_CPPFLAGS) -DG_LOG_DOMAIN="GitChangeBar" \ + -DPLUGIN=""$(plugin)"" +git_changebar_la_CFLAGS = $(AM_CFLAGS) $(GITCHANGEBAR_CFLAGS) +git_changebar_la_LIBADD = $(COMMONLIBS) \ + $(GITCHANGEBAR_LIBS) + +include $(top_srcdir)/build/cppcheck.mk
Modified: git-changebar/src/gcb-plugin.c 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -42,8 +42,8 @@ PLUGIN_VERSION_CHECK(219) /* for document IDs */
PLUGIN_SET_TRANSLATABLE_INFO ( LOCALEDIR, GETTEXT_PACKAGE, - _("Git Integration"), - _("Integration of the Git version control system"), + _("Git Change Bar"), + _("Highlights uncommitted changes in files tracked with Git"), "0.1", "Colomban Wendling ban@herbesfolles.org" )
Modified: git-ui/src/Makefile.am 13 lines changed, 0 insertions(+), 13 deletions(-) =================================================================== @@ -1,13 +0,0 @@ -include $(top_srcdir)/build/vars.build.mk -plugin = git-ui - -geanyplugins_LTLIBRARIES = git-ui.la - -git_ui_la_SOURCES = ggu-plugin.c -git_ui_la_CPPFLAGS = $(AM_CPPFLAGS) -DG_LOG_DOMAIN="GitUI" \ - -DPLUGIN=""$(plugin)"" -git_ui_la_CFLAGS = $(AM_CFLAGS) $(GITUI_CFLAGS) -git_ui_la_LIBADD = $(COMMONLIBS) \ - $(GITUI_LIBS) - -include $(top_srcdir)/build/cppcheck.mk
Modified: po/POTFILES.in 6 lines changed, 3 insertions(+), 3 deletions(-) =================================================================== @@ -216,9 +216,9 @@ geanyvc/src/utils.c # GeniusPaste geniuspaste/src/geniuspaste.c
-# GitUI -[type: gettext/glade]git-ui/data/prefs.ui -git-ui/src/ggu-plugin.c +# GitChangeBar +[type: gettext/glade]git-changebar/data/prefs.ui +git-changebar/src/gcb-plugin.c
# Markdown markdown/src/conf.c
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
plugins-commits@lists.geany.org