Skip to content

Commit

Permalink
Update included plugin versions to match the GUI version
Browse files Browse the repository at this point in the history
  • Loading branch information
anjaldoshi committed Mar 1, 2024
1 parent 4c18297 commit 8c64539
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Plugins/ArduinoOutput/OpenEphysLib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ extern "C" EXPORT void getLibInfo(Plugin::LibraryInfo* info)
{
info->apiVersion = PLUGIN_API_VER;
info->name = "Arduino Output";
info->libVersion = "0.1.0";
info->libVersion = ProjectInfo::versionString;
info->numPlugins = NUM_PLUGINS;
}

Expand Down
2 changes: 1 addition & 1 deletion Plugins/BasicSpikeDisplay/OpenEphysLib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ extern "C" EXPORT void getLibInfo(Plugin::LibraryInfo* info)
{
info->apiVersion = PLUGIN_API_VER;
info->name = "Basic Spike Display";
info->libVersion = "0.1.0";
info->libVersion = ProjectInfo::versionString;
info->numPlugins = NUM_PLUGINS;
}

Expand Down
2 changes: 1 addition & 1 deletion Plugins/ChannelMappingNode/OpenEphysLib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ extern "C" EXPORT void getLibInfo(Plugin::LibraryInfo* info)
{
info->apiVersion = PLUGIN_API_VER;
info->name = "Channel Mapper";
info->libVersion = "0.1.0";
info->libVersion = ProjectInfo::versionString;
info->numPlugins = NUM_PLUGINS;
}

Expand Down
2 changes: 1 addition & 1 deletion Plugins/CommonAverageRef/OpenEphysLib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ extern "C" EXPORT void getLibInfo(Plugin::LibraryInfo* info)
{
info->apiVersion = PLUGIN_API_VER;
info->name = "Common Average Reference";
info->libVersion = "0.1.0";
info->libVersion = ProjectInfo::versionString;
info->numPlugins = NUM_PLUGINS;
}

Expand Down
2 changes: 1 addition & 1 deletion Plugins/FilterNode/OpenEphysLib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ extern "C" EXPORT void getLibInfo(Plugin::LibraryInfo* info)
{
info->apiVersion = PLUGIN_API_VER;
info->name = "Bandpass Filter";
info->libVersion = "0.1.0";
info->libVersion = ProjectInfo::versionString;
info->numPlugins = NUM_PLUGINS;
}

Expand Down
2 changes: 1 addition & 1 deletion Plugins/LfpDisplayNode/OpenEphysLib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ extern "C" EXPORT void getLibInfo(Plugin::LibraryInfo* info)
{
info->apiVersion = PLUGIN_API_VER;
info->name = "LFP viewer";
info->libVersion = "0.1.0";
info->libVersion = ProjectInfo::versionString;
info->numPlugins = NUM_PLUGINS;
}

Expand Down
2 changes: 1 addition & 1 deletion Plugins/PhaseDetector/OpenEphysLib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ extern "C" EXPORT void getLibInfo(Plugin::LibraryInfo* info)
{
info->apiVersion = PLUGIN_API_VER;
info->name = "Phase Detector";
info->libVersion = "0.1.0";
info->libVersion = ProjectInfo::versionString;
info->numPlugins = NUM_PLUGINS;
}

Expand Down
2 changes: 1 addition & 1 deletion Plugins/RecordControl/OpenEphysLib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ extern "C" EXPORT void getLibInfo(Plugin::LibraryInfo* info)
{
info->apiVersion = PLUGIN_API_VER;
info->name = "Record Control";
info->libVersion = "0.1.0";
info->libVersion = ProjectInfo::versionString;
info->numPlugins = NUM_PLUGINS;
}

Expand Down

0 comments on commit 8c64539

Please sign in to comment.