In lipsum/src/lipsum.c:

>  	config_file = g_strconcat(geany->app->configdir,
>  		G_DIR_SEPARATOR_S, "plugins", G_DIR_SEPARATOR_S,
>  		"geanylipsum", G_DIR_SEPARATOR_S, "lipsum.conf", NULL);
>  
> +	#ifndef G_OS_WIN32
> +	/* We try only to move if we are on not Windows platform */
> +	config_dir_old = g_build_filename(geany->app->configdir,
> +		"plugins", "geanylipsum", NULL);
> +	config_file_old = g_build_filename(config_dir_old,
> +		"lipsum.conf", NULL);
> +	config_dir = g_build_filename(geany->app->configdir,
> +		"plugins", "lipsum", NULL);
> +	if (g_file_test(config_file_old, G_FILE_TEST_EXISTS))
> +	{
> +		if (dialogs_show_question(
> +			_("Renamed plugin detected!\n"
> +			  "\n"
> +			  "GeanyLipsum has been renamed to Lipsum -- as you will "
> +			  "already recognised it. \n"

"As you may have already noticed, GeanyLipsum has been renamed to just Lipsum."


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.