Revision: 118 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=118&view=rev Author: eht16 Date: 2008-07-12 04:54:09 -0700 (Sat, 12 Jul 2008)
Log Message: ----------- Update to Geany API 75.
Modified Paths: -------------- trunk/instantsave/ChangeLog trunk/instantsave/src/instantsave.c
Modified: trunk/instantsave/ChangeLog =================================================================== --- trunk/instantsave/ChangeLog 2008-07-12 11:53:46 UTC (rev 117) +++ trunk/instantsave/ChangeLog 2008-07-12 11:54:09 UTC (rev 118) @@ -1,3 +1,9 @@ +2008-07-12 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de> + + * src/instantsave.c: + Update to Geany API 75. + + 2008-06-19 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* src/instantsave.c:
Modified: trunk/instantsave/src/instantsave.c =================================================================== --- trunk/instantsave/src/instantsave.c 2008-07-12 11:53:46 UTC (rev 117) +++ trunk/instantsave/src/instantsave.c 2008-07-12 11:54:09 UTC (rev 118) @@ -44,7 +44,7 @@ GeanyFunctions *geany_functions;
-PLUGIN_VERSION_CHECK(71) +PLUGIN_VERSION_CHECK(75)
PLUGIN_SET_INFO(_("Instant Save"), _("Save instantly new files without an explicit Save As dialog."), "0.2", "Enrico Tröger") @@ -151,7 +151,7 @@ void plugin_init(GeanyData *data) { GKeyFile *config = g_key_file_new(); - config_file = g_strconcat(app->configdir, G_DIR_SEPARATOR_S, "plugins", G_DIR_SEPARATOR_S, + config_file = g_strconcat(geany->app->configdir, G_DIR_SEPARATOR_S, "plugins", G_DIR_SEPARATOR_S, "instantsave", G_DIR_SEPARATOR_S, "instantsave.conf", NULL);
g_key_file_load_from_file(config, config_file, G_KEY_FILE_NONE, NULL);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.