Skip to content

Commit 2d84e7b

Browse files
committed
Update installer names for all 3 platforms
Change docs URL resource for plugins
1 parent 5804ec3 commit 2d84e7b

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
cp ../../../Scripts/40-open-ephys.rules usr/local/bin/open-ephys-gui
4545
cd ..
4646
dpkg-deb --build Open-Ephys_Installer
47-
installer=Open-Ephys_Installer_${gui_ver}-beta.deb
47+
installer=open-ephys-gui-${gui_ver}-beta.deb
4848
mv -v Open-Ephys_Installer.deb $installer
4949
curl -T $installer --user $user_info https://api.bintray.com/content/open-ephys-gui/Test-Installer/Test-Installer-linux/$gui_ver/$installer
5050
curl -X POST --user $user_info https://api.bintray.com/content/open-ephys-gui/Test-Installer/Test-Installer-linux/$gui_ver/publish
@@ -71,7 +71,7 @@ jobs:
7171
cp ../../../Scripts/40-open-ephys.rules usr/local/bin/open-ephys-gui
7272
cd ..
7373
dpkg-deb --build Open-Ephys_Installer
74-
installer=Open-Ephys_Installer_${gui_ver}.deb
74+
installer=open-ephys-gui-${gui_ver}.deb
7575
mv Open-Ephys_Installer.deb $installer
7676
curl -T $installer --user $user_info https://api.bintray.com/content/open-ephys-gui/Release-Installer/Release-Installer-linux/$gui_ver/$installer
7777
curl -X POST --user $user_info https://api.bintray.com/content/open-ephys-gui/Release-Installer/Release-Installer-linux/$gui_ver/publish

.github/workflows/osx.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
--app-drop-link 500 188 \
5353
"Open-Ephys-Installer.dmg" \
5454
"open-ephys/"
55-
installer=Open-Ephys_Installer_${gui_ver}-beta.dmg
55+
installer=Open_Ephys_GUI_${gui_ver}-beta.dmg
5656
mv -v Open-Ephys-Installer.dmg $installer
5757
user_info="$bintrayUser:$bintrayApiKey"
5858
curl -T $installer --user $user_info https://api.bintray.com/content/open-ephys-gui/Test-Installer/Test-Installer-mac/$gui_ver/$installer
@@ -86,7 +86,7 @@ jobs:
8686
--app-drop-link 500 188 \
8787
"Open-Ephys-Installer.dmg" \
8888
"open-ephys/"
89-
installer=Open-Ephys_Installer_${gui_ver}.dmg
89+
installer=Open_Ephys_GUI_${gui_ver}.dmg
9090
mv -v Open-Ephys-Installer.dmg $installer
9191
user_info="$bintrayUser:$bintrayApiKey"
9292
curl -T $installer --user $user_info https://api.bintray.com/content/open-ephys-gui/Release-Installer/Release-Installer-mac/$gui_ver/$installer

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
curl -X POST --user $user_info https://api.bintray.com/content/open-ephys-gui/Test/Test-windows/$gui_ver/publish
4545
cd ../Resources/Installers/Windows
4646
iscc "windows_installer_script.iss"
47-
installer=Open-Ephys_Installer_${gui_ver}-beta.exe
47+
installer=Install-Open-Ephys-GUI-${gui_ver}-beta.exe
4848
mv Open-Ephys_Installer.exe $installer
4949
curl -T $installer --user $user_info https://api.bintray.com/content/open-ephys-gui/Test-Installer/Test-Installer-windows/$gui_ver/$installer
5050
curl -X POST --user $user_info https://api.bintray.com/content/open-ephys-gui/Test-Installer/Test-Installer-windows/$gui_ver/publish
@@ -68,7 +68,7 @@ jobs:
6868
curl -X POST --user $user_info https://api.bintray.com/content/open-ephys-gui/Release/Release-windows/$gui_ver/publish
6969
cd ../Resources/Installers/Windows
7070
iscc "windows_installer_script.iss"
71-
installer=Open-Ephys_Installer_${gui_ver}.exe
71+
installer=Install-Open-Ephys-GUI-${gui_ver}.exe
7272
mv Open-Ephys_Installer.exe $installer
7373
curl -T $installer --user $user_info https://api.bintray.com/content/open-ephys-gui/Release-Installer/Release-Installer-windows/$gui_ver/$installer
7474
curl -X POST --user $user_info https://api.bintray.com/content/open-ephys-gui/Release-Installer/Release-Installer-windows/$gui_ver/publish

Source/UI/PluginInstaller.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ bool PluginListBoxComponent::loadPluginInfo(const String& pluginName)
652652
for (String dependency : *dependencies)
653653
selectedPluginInfo.dependencies.add(dependency);
654654

655-
selectedPluginInfo.docURL = version_reply.getProperty("vcs_url", "NULL").toString();
655+
selectedPluginInfo.docURL = version_reply.getProperty("website_url", "NULL").toString();
656656
selectedPluginInfo.selectedVersion = String();
657657

658658
selectedPluginInfo.pluginName = pluginName;

0 commit comments

Comments
 (0)