Skip to content

Commit a7f8906

Browse files
committed
Bump preview release to alpha.2
1 parent eae230b commit a7f8906

File tree

6 files changed

+10
-16
lines changed

6 files changed

+10
-16
lines changed

.github/workflows/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
cd Build
5555
cp -r Release open-ephys
5656
cp ../LICENSE open-ephys
57-
zipfile=open-ephys-v1.0.0-alpha.1-linux.zip
57+
zipfile=open-ephys-v1.0.0-alpha.2-linux.zip
5858
zip -r $zipfile open-ephys
5959
user_info="X-JFrog-Art-Api:$ARTIFACTORY_ACCESS_TOKEN"
6060
curl -H $user_info -T $zipfile "https://openephys.jfrog.io/artifactory/GUI-binaries/1.0.0-alpha/linux/$zipfile"
@@ -65,7 +65,7 @@ jobs:
6565
cp ../../../Scripts/40-open-ephys.rules usr/local/bin/open-ephys-gui
6666
cd ..
6767
dpkg-deb --build Open-Ephys_Installer
68-
installer=open-ephys-gui-v1.0.0-alpha.1.deb
68+
installer=open-ephys-gui-v1.0.0-alpha.2.deb
6969
mv -v Open-Ephys_Installer.deb $installer
7070
curl -H $user_info -T $installer "https://openephys.jfrog.io/artifactory/GUI-binaries/1.0.0-alpha/linux/$installer"
7171
shell: bash

.github/workflows/osx.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ jobs:
155155
/usr/bin/ditto -x -k open-ephys.zip open-ephys
156156
xcrun stapler staple open-ephys/Open\ Ephys\ GUI.app
157157
158-
zipfile=open-ephys-v1.0.0-alpha.1-mac.zip
158+
zipfile=open-ephys-v1.0.0-alpha.2-mac.zip
159159
/usr/bin/ditto -c -k --sequesterRsrc --keepParent open-ephys $zipfile
160160
user_info="X-JFrog-Art-Api:$ARTIFACTORY_ACCESS_TOKEN"
161161
curl -H $user_info -T $zipfile "https://openephys.jfrog.io/artifactory/GUI-binaries/1.0.0-alpha/mac/$zipfile"
@@ -174,7 +174,7 @@ jobs:
174174
"Open-Ephys-Installer.dmg" \
175175
"open-ephys/"
176176
177-
installer=Open_Ephys_GUI_v1.0.0-alpha.1.dmg
177+
installer=Open_Ephys_GUI_v1.0.0-alpha.2.dmg
178178
mv -v Open-Ephys-Installer.dmg $installer
179179
180180
echo "Notarize DMG"

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
cp C:/Windows/System32/vcruntime140.dll open-ephys
6767
cp C:/Windows/System32/vcruntime140_1.dll open-ephys
6868
gui_ver=$(git describe --tags $(git rev-list --tags --max-count=1))
69-
zipfile=open-ephys-v1.0.0-alpha.1-windows.zip
69+
zipfile=open-ephys-v1.0.0-alpha.2-windows.zip
7070
powershell Compress-Archive -Path "open-ephys" -DestinationPath ${zipfile}
7171
user_info="X-JFrog-Art-Api:$ARTIFACTORY_ACCESS_TOKEN"
7272
curl -H $user_info -T $zipfile "https://openephys.jfrog.io/artifactory/GUI-binaries/1.0.0-alpha/windows/$zipfile"
@@ -75,7 +75,7 @@ jobs:
7575
rm -f msvcp140.dll vcruntime140.dll vcruntime140_1.dll
7676
cd ../../Resources/Installers/Windows
7777
iscc "windows_installer_script.iss"
78-
installer=Install-Open-Ephys-GUI-v1.0.0-alpha.1.exe
78+
installer=Install-Open-Ephys-GUI-v1.0.0-alpha.2.exe
7979
mv Open-Ephys_Installer.exe $installer
8080
curl -H $user_info -T $installer "https://openephys.jfrog.io/artifactory/GUI-binaries/1.0.0-alpha/windows/$installer"
8181
shell: bash

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#Open Ephys GUI main build file
22
cmake_minimum_required(VERSION 3.15)
33

4-
set(GUI_VERSION 1.0.0-alpha.1)
4+
set(GUI_VERSION 1.0.0-alpha.2)
55

66
string(REGEX MATCHALL "[0-9]+" VERSION_LIST ${GUI_VERSION})
77
list(LENGTH VERSION_LIST num_version_components)

Resources/Installers/Linux/Open-Ephys_Installer/DEBIAN/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: open-ephys
2-
Version: 1.0.0-alpha.1
2+
Version: 1.0.0-alpha.2
33
Architecture: amd64
44
Installed-Size: 18644
55
Section: science

Resources/Installers/Windows/windows_installer_script.iss

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
11
[Setup]
2-
<<<<<<< HEAD
3-
AppName=Open Ephys
4-
AppVersion=1.0.0-alpha.1
5-
AppVerName=Open Ephys 1.0.0-alpha.1
6-
=======
72
AppId=Open Ephys
83
AppName=Open Ephys GUI
9-
AppVersion=1.0.0-alpha.1
10-
AppVerName=Open Ephys GUI 1.0.0-alpha.1
11-
>>>>>>> development-juce8
4+
AppVersion=1.0.0-alpha.2
5+
AppVerName=Open Ephys GUI 1.0.0-alpha.2
126
AppCopyright=Copyright (C) 2010-2024, Open Ephys & Contributors
137
AppPublisher=open-ephys.org
148
AppPublisherURL=https://open-ephys.org/gui

0 commit comments

Comments
 (0)