Skip to content

Commit

Permalink
Bump plugin to version 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
anjaldoshi committed Jan 11, 2023
1 parent 3bc0c99 commit 85f5657
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Source/OpenEphysLib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ extern "C" EXPORT void getLibInfo(Plugin::LibraryInfo* info)
info->apiVersion = PLUGIN_API_VER; /*API version, defined by the GUI source.
Should not be changed to ensure it is always equal to the one used in the latest codebase. The GUI refueses to load plugins with mismatched API versions */
info->name = "ZMQ Interface"; //Name of the Library, used only for information
info->libVersion = "0.3.0"; //Version of the library, used only for information
info->libVersion = "0.3.1"; //Version of the library, used only for information
info->numPlugins = NUM_PLUGINS;
}

Expand Down
4 changes: 1 addition & 3 deletions Source/ZmqInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -752,9 +752,7 @@ void ZmqInterface::updateSettings()


void ZmqInterface::parameterValueChanged(Parameter* param)
{
std::cout << "Parameter changed: " << param->getName() << std::endl;

{
if (param->getName().equalsIgnoreCase("Channels"))
{
if(param->getStreamId() == selectedStream)
Expand Down

0 comments on commit 85f5657

Please sign in to comment.