Skip to content

Commit ee42146

Browse files
committed
Bump plugin version to 0.2.0
1 parent 43e634c commit ee42146

File tree

5 files changed

+6
-13
lines changed

5 files changed

+6
-13
lines changed

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
run: |
1919
sudo apt update
2020
cd ../..
21-
git clone https://github.com/open-ephys/plugin-GUI.git --branch development-juce6
21+
git clone https://github.com/open-ephys/plugin-GUI.git --branch main
2222
sudo ./plugin-GUI/Resources/Scripts/install_linux_dependencies.sh
2323
cd plugin-GUI/Build && cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release ..
2424
- name: build

.github/workflows/mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: setup
1818
run: |
1919
cd ../..
20-
git clone https://github.com/open-ephys/plugin-GUI.git --branch development-juce6
20+
git clone https://github.com/open-ephys/plugin-GUI.git --branch main
2121
cd plugin-GUI/Build && cmake -G "Xcode" ..
2222
- name: build
2323
run: |

.github/workflows/windows.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
package: "open-ephys-lib"
2121
run: |
2222
cd ../..
23-
git clone https://github.com/open-ephys/plugin-GUI.git --branch development-juce6
23+
git clone https://github.com/open-ephys/plugin-GUI.git --branch main
2424
cd plugin-GUI/Build
2525
cmake -G "Visual Studio 16 2019" -A x64 ..
2626
mkdir Release && cd Release
@@ -54,16 +54,7 @@ jobs:
5454
new_plugin_ver=$tag-API$plugin_api
5555
mkdir plugins
5656
cp $build_dir/*.dll plugins
57-
if [ -d "Resources" ]
58-
then
59-
mkdir shared
60-
cp Resources/*.dll shared
61-
fi
6257
zipfile=${package}_${new_plugin_ver}.zip
6358
powershell Compress-Archive -Path "plugins" -DestinationPath ${zipfile}
64-
if [ -d "shared" ]
65-
then
66-
powershell Compress-Archive -U -Path "shared" -DestinationPath ${zipfile}
67-
fi
6859
curl -H "X-JFrog-Art-Api:$artifactoryApiKey" -T $zipfile "https://openephys.jfrog.io/artifactory/MatlabInterface-plugin/windows/$zipfile"
6960
shell: bash

CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ endif()
1010
get_filename_component(PROJECT_FOLDER ${CMAKE_CURRENT_SOURCE_DIR} ABSOLUTE)
1111
get_filename_component(PLUGIN_NAME ${PROJECT_FOLDER} NAME)
1212

13+
set(CMAKE_OSX_ARCHITECTURES "x86_64" CACHE STRING "Build architecture for Mac OS X" FORCE)
14+
1315
project(OE_PLUGIN_${PLUGIN_NAME})
1416
set(CMAKE_SHARED_LIBRARY_PREFIX "")
1517
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")

Source/OpenEphysLib.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ extern "C" EXPORT void getLibInfo(Plugin::LibraryInfo* info)
3838
{
3939
info->apiVersion = PLUGIN_API_VER;
4040
info->name = "Matlab Interface";
41-
info->libVersion = "0.1.0";
41+
info->libVersion = "0.2.0";
4242
info->numPlugins = NUM_PLUGINS;
4343
}
4444

0 commit comments

Comments
 (0)