We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad6bf2b commit fc38814Copy full SHA for fc38814
2 files changed
.github/workflows/windows.yml
@@ -50,7 +50,7 @@ jobs:
50
package: NIDAQ-windows
51
run: |
52
plugin_api=$(grep -rnw ../../plugin-GUI/Source -e '#define PLUGIN_API_VER' | grep -Eo "[0-9]*" | tail -1)
53
- tag=$(git describe --tags $(git rev-list --tags --max-count=1))
+ tag=$(grep -w Source/OpenEphysLib.cpp -e 'info->libVersion' | grep -Eo "[0-9]+.[0-9]+.[0-9]+")
54
new_plugin_ver=$tag-API$plugin_api
55
mkdir plugins
56
cp $build_dir/*.dll plugins
Source/OpenEphysLib.cpp
@@ -38,7 +38,7 @@ extern "C" EXPORT void getLibInfo(Plugin::LibraryInfo* info)
38
{
39
info->apiVersion = PLUGIN_API_VER;
40
info->name = "NI-DAQmx";
41
- info->libVersion = "0.3.1";
+ info->libVersion = "0.3.2";
42
info->numPlugins = NUM_PLUGINS;
43
}
44
0 commit comments