Skip to content

Commit

Permalink
Add note to plugins which are currently not activly maintained as mar…
Browse files Browse the repository at this point in the history
…ked inside MAINTAINERS
  • Loading branch information
frlan committed Apr 8, 2017
1 parent 4f1352f commit d0a2326
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion geanydoc/src/geanydoc.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ static GtkWidget *keyb2;
PLUGIN_VERSION_CHECK(224)
/* All plugins must set name, description, version and author. */
PLUGIN_SET_TRANSLATABLE_INFO(LOCALEDIR, GETTEXT_PACKAGE,
_("Doc"), _("Call documentation viewer on current symbol."), VERSION,
_("Doc"), _("Call documentation viewer on current symbol. \n This plugin currently has no maintainer. Would you like to help by contributing to this plugin?"), VERSION,
"Yura Siamshka <[email protected]>")

/* Keybinding(s) */
Expand Down
2 changes: 1 addition & 1 deletion geanyextrasel/src/extrasel.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ GeanyData *geany_data;
PLUGIN_VERSION_CHECK(224)

PLUGIN_SET_TRANSLATABLE_INFO(LOCALEDIR, GETTEXT_PACKAGE,
_("Extra Selection"), _("Column mode, select to line / brace / anchor."),
_("Extra Selection"), _("Column mode, select to line / brace / anchor. \n This plugin currently has no maintainer. Would you like to help by contributing to this plugin?"),
"0.52", "Dimitar Toshkov Zhekov <[email protected]>")

/* Keybinding(s) */
Expand Down
2 changes: 1 addition & 1 deletion geanyinsertnum/src/insertnum.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ GeanyData *geany_data;
PLUGIN_VERSION_CHECK(224)

PLUGIN_SET_TRANSLATABLE_INFO(LOCALEDIR, GETTEXT_PACKAGE,
_("Insert Numbers"), _("Insert/Fill columns with numbers."),
_("Insert Numbers"), _("Insert/Fill columns with numbers.\n This plugin currently has no maintainer. Would you like to help by contributing to this plugin?"),
"0.2.2", "Dimitar Toshkov Zhekov <[email protected]>")

/* Keybinding(s) */
Expand Down
2 changes: 1 addition & 1 deletion geanylua/glspi_ver.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#define PLUGIN_NAME _("Lua Script")

#define PLUGIN_DESC _("Write and run Lua scripts for custom commands.")
#define PLUGIN_DESC _("Write and run Lua scripts for custom commands.\n This plugin currently has no maintainer. Would you like to help by contributing to this plugin?")

#define PLUGIN_VER VERSION

Expand Down
2 changes: 1 addition & 1 deletion geanypg/src/geanypg.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ PLUGIN_SET_TRANSLATABLE_INFO(
LOCALEDIR,
GETTEXT_PACKAGE,
"GeanyPG",
_("gpg encryption plugin for geany"),
_("GPG encryption plugin for geany. \n This plugin currently has no maintainer. Would you like to help by contributing to this plugin?"),
"0.1",
_("Hans Alves <[email protected]>"))

Expand Down
5 changes: 3 additions & 2 deletions geanyprj/src/geanyprj.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@

PLUGIN_VERSION_CHECK(224)
PLUGIN_SET_TRANSLATABLE_INFO(LOCALEDIR, GETTEXT_PACKAGE,
"GeanyPrj", _("Alternative project support."), VERSION,
"Yura Siamashka <[email protected]>")
"GeanyPrj", _("Alternative project support. \n This plugin currently has no maintainer. Would you like to help by contributing to this plugin?"),
VERSION,
"Yura Siamashka <[email protected]>")

GeanyPlugin *geany_plugin;
GeanyData *geany_data;
Expand Down
2 changes: 1 addition & 1 deletion geanyvc/src/geanyvc.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ PLUGIN_SET_TRANSLATABLE_INFO(
LOCALEDIR,
GETTEXT_PACKAGE,
_("GeanyVC"),
_("Interface to different Version Control systems."),
_("Interface to different Version Control systems. \n This plugins is currently not developed actively. Would you like to help by contributing to this plugin?"),
VERSION,
"Yura Siamashka <[email protected]>,\nFrank Lanitz <[email protected]>")

Expand Down
4 changes: 2 additions & 2 deletions pretty-printer/src/PluginEntry.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ PLUGIN_SET_TRANSLATABLE_INFO(
LOCALEDIR,
GETTEXT_PACKAGE,
_("XML PrettyPrinter"),
_("Formats an XML and makes it human-readable."),
_("Formats an XML and makes it human-readable. \n This plugin currently has no maintainer. Would you like to help by contributing to this plugin?"),
PRETTY_PRINTER_VERSION, "Cédric Tabin - http://www.astorm.ch")

/*========================================== DECLARATIONS ================================================================*/
Expand Down Expand Up @@ -117,7 +117,7 @@ void xml_format(GtkMenuItem* menuitem, gpointer gdata)
int result;
int xOffset;
GeanyFiletype* fileType;

g_return_if_fail(doc != NULL);

editor = doc->editor;
Expand Down
2 changes: 1 addition & 1 deletion scope/src/scope.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ GeanyData *geany_data;
PLUGIN_VERSION_CHECK(224)

PLUGIN_SET_TRANSLATABLE_INFO(LOCALEDIR, GETTEXT_PACKAGE, _("Scope Debugger"),
_("Relatively simple GDB front-end."), "0.94",
_("Relatively simple GDB front-end. This plugin currently has no maintainer. Would you like to help by contributing to this plugin?"), "0.94",
"Dimitar Toshkov Zhekov <[email protected]>")

/* Keybinding(s) */
Expand Down
6 changes: 3 additions & 3 deletions shiftcolumn/src/shiftcolumn.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ GeanyData *geany_data;

PLUGIN_VERSION_CHECK(224)
PLUGIN_SET_TRANSLATABLE_INFO(LOCALEDIR, GETTEXT_PACKAGE,
_("Shift Column"),
_("Shift a selection left and right"),
VERSION, "Andrew L Janke <[email protected]>")
_("Shift Column"),
_("Shift a selection left and right. This plugin currently has no maintainer. Would you like to help by contributing to this plugin?"),
VERSION, "Andrew L Janke <[email protected]>")


static GtkWidget *menu_item_shift_left = NULL;
Expand Down
2 changes: 1 addition & 1 deletion treebrowser/src/treebrowser.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ PLUGIN_SET_TRANSLATABLE_INFO(
LOCALEDIR,
GETTEXT_PACKAGE,
_("TreeBrowser"),
_("This plugin adds a tree browser to Geany, allowing the user to browse files using a tree view of the directory being browsed."),
_("This plugin adds a tree browser to Geany, allowing the user to browse files using a tree view of the directory being browsed.\n This plugin currently has no maintainer. Would you like to help by contributing to this plugin?"),
"0.20" ,
"Adrian Dimitrov ([email protected])")

Expand Down

0 comments on commit d0a2326

Please sign in to comment.