fix issue #177, improved VIMS Bundles in reloaded UI, improved performance of finding VIMS events, fixed attaching/detaching VIMS events to keybindings, remove dot at the end of a console log message, removed a commented out function

This commit is contained in:
c0ntrol
2018-12-29 23:03:07 +01:00
parent c88c703c84
commit 816cd362f5
27 changed files with 304 additions and 361 deletions

View File

@@ -701,7 +701,7 @@ void* deal_with_fr( void *handle, char *name)
}
if( is_bad_frei0r_plugin( &finfo ) ) {
veejay_msg(VEEJAY_MSG_ERROR, "Frei0r %s-%d.%d is blacklisted. Please upgrade this plug-in to a newer version.",
veejay_msg(VEEJAY_MSG_ERROR, "Frei0r %s-%d.%d is blacklisted. Please upgrade this plug-in to a newer version",
finfo.name, finfo.major_version, finfo.minor_version);
(*f0r_deinit_func)();
vpf(port);
@@ -830,7 +830,7 @@ void frei0r_plug_deinit( void *plugin )
void *parent = NULL;
int err = vevo_property_get( plugin, "parent",0, &parent );
if( err != VEVO_NO_ERROR ) {
veejay_msg(0,"Unable to free plugin.");
veejay_msg(0,"Unable to free plugin");
return;
}
@@ -966,7 +966,7 @@ int frei0r_process_frame_f( void *plugin )
void *parent = NULL;
int err = vevo_property_get( plugin, "parent",0,&parent );
if( err != VEVO_NO_ERROR ) {
veejay_msg(0, "unable to process frei0r plugin.");
veejay_msg(0, "unable to process frei0r plugin");
return 0;
}