Branch: refs/heads/master
Author: Enrico Tröger <enrico.troeger(a)uvena.de>
Committer: Enrico Tröger <enrico.troeger(a)uvena.de>
Date: Sun, 07 Feb 2016 14:27:03 UTC
Commit: 1ca2554b3a4fc556eefc9dc97a6870fd2831f624
https://github.com/geany/geany/commit/1ca2554b3a4fc556eefc9dc97a6870fd2831f…
Log Message:
-----------
Merge pull request #878 from eht16/drop_obsolete_plugin_test_script
Remove obsolete scripts/plugin_test.c
Modified Paths:
--------------
scripts/plugin_test.c
Modified: scripts/plugin_test.c
123 lines changed, 0 insertions(+), 123 deletions(-)
===================================================================
@@ -1,123 +0,0 @@
-/*
- * plugin_test.c
- *
- * Copyright 2010-2011 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
- * Copyright 2010-2011 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
- * MA 02110-1301, USA.
- */
-
-
-/* This code tries to load the passed Geany plugin
- * (passed as path, e.g. pluginname.so) and looks up some symbols.
- * Example use case for this tool is to test whether a plugin is
- * loadable and defines all required symbols.
- *
- * This file is not built during the normal build process, instead
- * compile it on your with the following command in the root of the Geany source tree:
- *
- * cc -o plugin_test scripts/plugin_test.c `pkg-config --cflags --libs glib-2.0 gmodule-2.0`
- */
-
-#include <stdio.h>
-#include <glib.h>
-#include <gmodule.h>
-
-
-static gboolean tp_check_version(GModule *module)
-{
- /* TODO implement me */
- return TRUE;
-}
-
-
-static void tp_close_module(GModule *module)
-{
- if (! g_module_close(module))
- g_warning("%s: %s", g_module_name(module), g_module_error());
-}
-
-
-/* Emulate loading a plugin and looking up some symbols,
- * similar to what Geany would do on loading the plugin.
- */
-static gboolean test_plugin(const gchar *filename)
-{
- GModule *module;
- void (*plugin_set_info)(void*);
- void (*init) (void *data);
- void (*cleanup) (void);
-
- g_return_val_if_fail(filename, FALSE);
- g_return_val_if_fail(g_module_supported(), FALSE);
-
- module = g_module_open(filename, G_MODULE_BIND_LOCAL);
- if (! module)
- {
- g_warning("Can't load plugin: \"%s\": %s", filename, g_module_error());
- return FALSE;
- }
-
- if (! tp_check_version(module))
- {
- tp_close_module(module);
- return FALSE;
- }
-
- g_module_symbol(module, "plugin_set_info", (void *) &plugin_set_info);
- if (plugin_set_info == NULL)
- {
- g_warning("No plugin_set_info() defined for \"%s\" - consider fixing the plugin!", filename);
- tp_close_module(module);
- return FALSE;
- }
-
- g_module_symbol(module, "plugin_init", (void *) &init);
- if (init == NULL)
- {
- g_warning("Plugin '%s' has no plugin_init() function - consider fixing the plugin!", filename);
- tp_close_module(module);
- return FALSE;
- }
-
- g_module_symbol(module, "plugin_cleanup", (void *) &cleanup);
- if (cleanup == NULL)
- {
- g_warning("Plugin '%s' has no plugin_cleanup() function - there may be memory leaks!", filename);
- }
-
- tp_close_module(module);
-
- return TRUE;
-}
-
-
-gint main(gint argc, gchar **argv)
-{
- gint i;
- gint result = 0;
-
- g_set_prgname("plugin_test");
- /* we could perform better argument processing here as well as more error checking but
- * it's probably not worth at all */
- for (i = 1; i < argc; i++)
- {
- if (! test_plugin(argv[i]))
- result = 1;
- }
-
- return result;
-}
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Dominic Hopf <dmaphy(a)googlemail.com>
Committer: Dominic Hopf <dmaphy(a)googlemail.com>
Date: Sat, 06 Feb 2016 16:21:08 UTC
Commit: 8bf4236a2cc7ee5e3cf41d4ad676bc6f976ed0fe
https://github.com/geany/geany-themes/commit/8bf4236a2cc7ee5e3cf41d4ad676bc…
Log Message:
-----------
Merge pull request #5 from jcd000/dark-colors
Submitting a new dark theme
Modified Paths:
--------------
AUTHORS
colorschemes/dark-colors.conf
screenshots/dark-colors.png
Modified: AUTHORS
5 lines changed, 5 insertions(+), 0 deletions(-)
===================================================================
@@ -35,6 +35,11 @@ dark-fruit-salad.conf
John Gabriele <jmg3000(at)gmail(dot)com>
*Matthew Brush <matt(at)geany(dot)org> (port to newer Geany)
+dark-colors.conf
+---------------------
+ Yannis Kontochristopoulos <ikontochris(at)gmail(dot)com>
+ *Matthew Brush <matt(at)geany(dot)org> (port to Geany)
+
fluffy.conf
-----------
Osmo Salomaa <unknown email address>
Modified: colorschemes/dark-colors.conf
136 lines changed, 136 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,136 @@
+#
+# Copyright (C) 2016 - Yannis Kontochristopoulos <ikontochris(at)gmail(dot)com>
+#
+# Dark Colors is a theme inspired by Tinge:
+# Copyright (C) 2008 - Harsh J <harshj(at)gmail(dot)com>
+# See: http://www.harshj.com/2008/01/27/tinge-theme-for-gedit/
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+# MA 02110-1301, USA.
+#
+
+[theme_info]
+name=Dark Colors
+description=A dark theme utilising warm colors
+# incremented automatically, do not change manually
+version=1225
+
+[named_colors]
+text=#E6E6E6
+soft_text=#A69996
+softer_text=#4C4645
+background=#0C0807
+selection_brown=#422E21
+marker_search_turquoise=#286659
+current_line_red=#281816
+black=#000
+white=#fff
+light_blue=#5191CC
+soft_blue=#596F80
+red=#B31111
+yellow=#B3A123
+orange=#E66917
+orange2=#FF9400
+green=#00DF13
+purple=#b6f
+
+[named_styles]
+default=text;background;false;false
+error=green;background;false;false
+
+# Editor styles
+#-------------------------------------------------------------------------------
+
+selection=background;selection_brown;false;true
+current_line=background;current_line_red;true;false
+brace_good=light_blue;background;true;false
+brace_bad=white;background;true;false
+margin_line_number=soft_text;#2B2826;false;false
+margin_folding=#574A22;#141312;false;false
+fold_symbol_highlight=soft_text
+indent_guide=softer_text
+caret=white;white;false
+marker_line=soft_text;yellow
+marker_search=marker_search_turquoise;marker_search_turquoise;false;false
+marker_mark=red;background;false;false
+call_tips=#c0c0c0;white;false;false
+white_space=softer_text;;true
+
+# Programming languages
+#-------------------------------------------------------------------------------
+
+comment=soft_blue
+comment_doc=soft_blue;background;false;false
+comment_line=comment
+comment_line_doc=comment_doc
+comment_doc_keyword=comment_doc,bold
+comment_doc_keyword_error=comment_doc,italic
+
+number=green
+number_1=number
+number_2=number_1
+
+type=purple;;true;false
+class=type
+function=type
+parameter=function
+
+keyword=orange;;true;false
+keyword_1=keyword
+keyword_2=yellow;;true;false
+keyword_3=keyword_1
+keyword_4=keyword_1
+
+identifier=default
+identifier_1=identifier
+identifier_2=identifier_1
+identifier_3=identifier_1
+identifier_4=identifier_1
+
+string=red
+string_1=string
+string_2=string_1
+string_3=string_1
+string_4=string_1
+string_eol=text;background;false;false
+character=string_1
+backticks=string_2
+here_doc=string_2
+
+scalar=string_2
+label=default,bold
+preprocessor=text
+regex=number_1
+operator=orange2
+decorator=string_1,bold
+other=default
+
+# Markup-type languages
+#-------------------------------------------------------------------------------
+
+tag=yellow;background;false;false
+tag_unknown=green;background;false;false
+tag_end=text;background;false;false
+attribute=orange;background;false;false
+attribute_unknown=green;background;false;false
+value=text;background;false;false
+entity=text;background;false;false
+
+# Diff
+#-------------------------------------------------------------------------------
+
+line_added=green;background;false;false
+line_removed=red;background;false;false
+line_changed=light_blue;background;false;false
Modified: screenshots/dark-colors.png
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: jcd000 <ikontochris(a)gmail.com>
Committer: jcd000 <ikontochris(a)gmail.com>
Date: Tue, 02 Feb 2016 22:22:13 UTC
Commit: 1fca541fafb5c0f1f824d0e941177db60334b091
https://github.com/geany/geany-themes/commit/1fca541fafb5c0f1f824d0e941177d…
Log Message:
-----------
Submitting a new dark theme for geany
make index seem to not have worked as it should.
Modified Paths:
--------------
AUTHORS
colorschemes/dark-colors.conf
screenshots/dark-colors.png
Modified: AUTHORS
5 lines changed, 5 insertions(+), 0 deletions(-)
===================================================================
@@ -35,6 +35,11 @@ dark-fruit-salad.conf
John Gabriele <jmg3000(at)gmail(dot)com>
*Matthew Brush <matt(at)geany(dot)org> (port to newer Geany)
+dark-colors.conf
+---------------------
+ Yannis Kontochristopoulos <ikontochris(at)gmail(dot)com>
+ *Matthew Brush <matt(at)geany(dot)org> (port to Geany)
+
fluffy.conf
-----------
Osmo Salomaa <unknown email address>
Modified: colorschemes/dark-colors.conf
131 lines changed, 131 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,131 @@
+#
+# Copyright (C) 2016 - Yannis Kontochristopoulos <stall13(at)hotmail(dot)com>
+#
+# Dark Colors is a theme inspired by Tinge:
+# Copyright (C) 2008 - Harsh J <harshj(at)gmail(dot)com>
+# See: http://www.harshj.com/2008/01/27/tinge-theme-for-gedit/
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+# MA 02110-1301, USA.
+#
+
+[theme_info]
+name=Dark Colors
+description=A dark theme utilising warm colors
+# incremented automatically, do not change manually
+version=1225
+
+[named_colors]
+text=#EFEFEF
+background=#140F0E
+black=#000
+white=#fff
+light_blue=#5D95CC
+red=#f00
+yellow=#CCB300
+orange=#E66917
+orange2=#FF9400
+green=#00DF13
+purple=#b6f
+grey=#bbb
+
+[named_styles]
+default=text;background;false;false
+error=green;background;false;false
+
+# Editor styles
+#-------------------------------------------------------------------------------
+
+selection=background;#4C2F25;false;true
+current_line=background;#281610;true;false
+brace_good=light_blue;background;true;false
+brace_bad=white;background;true;false
+margin_line_number=#CCB8B8;#2B2826;false;false
+margin_folding=#574A22;#141312;false;false
+fold_symbol_highlight=text
+indent_guide=grey
+caret=white
+marker_line=grey;yellow
+marker_search=background;#FFF4E6;false;false
+marker_mark=red;background;false;false
+call_tips=#c0c0c0;white;false;false
+white_space=#424242;;true
+
+# Programming languages
+#-------------------------------------------------------------------------------
+
+comment=light_blue
+comment_doc=light_blue;background;false;false
+comment_line=comment
+comment_line_doc=comment_doc
+comment_doc_keyword=comment_doc,bold
+comment_doc_keyword_error=comment_doc,italic
+
+number=green
+number_1=number
+number_2=number_1
+
+type=purple;;true;false
+class=type
+function=type
+parameter=function
+
+keyword=orange;;true;false
+keyword_1=keyword
+keyword_2=yellow;;true;false
+keyword_3=keyword_1
+keyword_4=keyword_1
+
+identifier=default
+identifier_1=identifier
+identifier_2=identifier_1
+identifier_3=identifier_1
+identifier_4=identifier_1
+
+string=red
+string_1=string
+string_2=string_1
+string_3=string_1
+string_4=string_1
+string_eol=text;background;false;false
+character=string_1
+backticks=string_2
+here_doc=string_2
+
+scalar=string_2
+label=default,bold
+preprocessor=text
+regex=number_1
+operator=orange2
+decorator=string_1,bold
+other=default
+
+# Markup-type languages
+#-------------------------------------------------------------------------------
+
+tag=yellow;background;false;false
+tag_unknown=green;background;false;false
+tag_end=text;background;false;false
+attribute=orange;background;false;false
+attribute_unknown=green;background;false;false
+value=text;background;false;false
+entity=text;background;false;false
+
+# Diff
+#-------------------------------------------------------------------------------
+
+line_added=green;background;false;false
+line_removed=red;background;false;false
+line_changed=light_blue;background;false;false
Modified: screenshots/dark-colors.png
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).