@@ -56,7 +56,7 @@ void LatestVersionCheckerAndUpdater::checkForNewVersion (bool background, MainWi
5656// ==============================================================================
5757void LatestVersionCheckerAndUpdater::run ()
5858{
59- LOGC (" Checking for a new version. ..." );
59+ LOGC (" Checking for a newer version of the GUI ..." );
6060 URL latestVersionURL (" https://api.github.com/repos/open-ephys/plugin-GUI/releases/latest" );
6161
6262 std::unique_ptr<InputStream> inStream (latestVersionURL.createInputStream (URL::InputStreamOptions (URL::ParameterHandling::inAddress)
@@ -129,8 +129,8 @@ void LatestVersionCheckerAndUpdater::run()
129129 {
130130 if (! backgroundCheck)
131131 AlertWindow::showMessageBoxAsync (AlertWindow::InfoIcon,
132- " No New Version Available" ,
133- " Your GUI version is up to date ." );
132+ " No Newer Version Available" ,
133+ " You are running the latest available version of the Open Ephys GUI ." );
134134 return ;
135135 }
136136
@@ -202,7 +202,7 @@ class UpdateDialog : public Component
202202 titleLabel.setJustificationType (Justification::centred);
203203 addAndMakeVisible (titleLabel);
204204
205- contentLabel.setText (" A new version of Open Ephys GUI is available - would you like to download it?" , dontSendNotification);
205+ contentLabel.setText (" A newer version of Open Ephys GUI is available - would you like to download it?" , dontSendNotification);
206206 contentLabel.setFont (Font (" Fira Sans" , " Regular" , 16 .0f ));
207207 contentLabel.setJustificationType (Justification::topLeft);
208208 contentLabel.setMinimumHorizontalScale (1.0 );
0 commit comments