Branch: refs/heads/master Author: tunyash tunyash@gmail.com Committer: tunyash tunyash@gmail.com Date: Mon, 11 Jul 2016 07:42:39 UTC Commit: 90bba925e1853a7887008d63ab3f591c79b8507c https://github.com/geany/geany-plugins/commit/90bba925e1853a7887008d63ab3f59...
Log Message: ----------- Added information about keyrecord everywhere.
Modified Paths: -------------- MAINTAINERS Makefile.am build/keyrecord.m4 configure.ac keyrecord/src/Makefile.am keyrecord/src/keyrecord.c po/POTFILES.in
Modified: MAINTAINERS 6 lines changed, 6 insertions(+), 0 deletions(-) =================================================================== @@ -167,6 +167,12 @@ M: Colomban Wendling ban@herbesfolles.org W: http://plugins.geany.org/git-changebar.html S: Maintained
+keyrecord +P: Artur Riazanov tunyash@gmail.com +M: Artur Ryazanov tunyash@gmail.com +W: +S: Maintained + lineoperations P: Sylvan Mostert smostert.dev@gmail.com M: Sylvan Mostert smostert.dev@gmail.com
Modified: Makefile.am 4 lines changed, 4 insertions(+), 0 deletions(-) =================================================================== @@ -104,6 +104,10 @@ if ENABLE_GITCHANGEBAR SUBDIRS += git-changebar endif
+if ENABLE_KEYRECORD +SUBDIRS += keyrecord +endif + if ENABLE_LINEOPERATIONS SUBDIRS += lineoperations endif
Modified: build/keyrecord.m4 9 lines changed, 9 insertions(+), 0 deletions(-) =================================================================== @@ -0,0 +1,9 @@ +AC_DEFUN([GP_CHECK_KEYRECORD], + [ + GP_ARG_DISABLE([keyrecord], [auto]) + GP_COMMIT_PLUGIN_STATUS([keyrecord]) + AC_CONFIG_FILES([ + keyrecord/Makefile + keyrecord/src/Makefile + ]) + ])
Modified: configure.ac 1 lines changed, 1 insertions(+), 0 deletions(-) =================================================================== @@ -54,6 +54,7 @@ GP_CHECK_GEANYVC GP_CHECK_GEANYPG GP_CHECK_GENIUSPASTE GP_CHECK_GITCHANGEBAR +GP_CHECK_KEYRECORD GP_CHECK_LINEOPERATIONS GP_CHECK_MARKDOWN GP_CHECK_MULTITERM
Modified: keyrecord/src/Makefile.am 10 lines changed, 5 insertions(+), 5 deletions(-) =================================================================== @@ -1,10 +1,10 @@ include $(top_srcdir)/build/vars.build.mk -plugin = autoclose +plugin = keyrecord
-geanyplugins_LTLIBRARIES = autoclose.la +geanyplugins_LTLIBRARIES = keyrecord.la
-autoclose_la_SOURCES = autoclose.c -autoclose_la_CPPFLAGS = $(AM_CPPFLAGS) -DG_LOG_DOMAIN="AutoClose" -autoclose_la_LIBADD = $(COMMONLIBS) +keyrecord_la_SOURCES = keyrecord.c +keyrecord_la_CPPFLAGS = $(AM_CPPFLAGS) +keyrecord_la_LIBADD = $(COMMONLIBS)
include $(top_srcdir)/build/cppcheck.mk
Modified: keyrecord/src/keyrecord.c 6 lines changed, 3 insertions(+), 3 deletions(-) =================================================================== @@ -69,7 +69,7 @@ static gboolean on_key_press(GtkWidget *widget, GdkEventKey *event, gpointer data) { cur_widget = widget; - GeanyDocument* doc = (GeanyDocument*)data; + //GeanyDocument* doc = (GeanyDocument*)data; guint i; GdkEventKey** tmp = NULL; @@ -188,7 +188,7 @@ static gboolean keyrecord_init(GeanyPlugin *plugin, gpointer data) /* Called by Geany before unloading the plugin. * Here any UI changes should be removed, memory freed and any other finalization done. * Be sure to leave Geany as it was before demo_init(). */ -static void keyrecord_cleanup(GeanyPlugin *plugin, gpointer data) +static void keyrecord_cleanup(GeanyPlugin *plugin, gpointer _data) { GeanyData* geany_data = plugin->geany_data; guint i; @@ -214,7 +214,7 @@ void geany_load_module(GeanyPlugin *plugin) main_locale_init(LOCALEDIR, GETTEXT_PACKAGE); plugin->info->name = _("Keystrokes recorder"); plugin->info->description = _("Allows to record some sequence of keystrokes and replay it"); - plugin->info->version = "0.1"; + plugin->info->version = "0.11"; plugin->info->author = _("tunyash");
plugin->funcs->init = keyrecord_init;
Modified: po/POTFILES.in 3 lines changed, 3 insertions(+), 0 deletions(-) =================================================================== @@ -218,6 +218,9 @@ geniuspaste/src/geniuspaste.c [type: gettext/glade]git-changebar/data/prefs.ui git-changebar/src/gcb-plugin.c
+# Keyrecord +keyrecord/src/keyrecord.c + # LineOperations lineoperations/src/lineoperations.c
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).