Skip to content

Commit

Permalink
Improve fimrware update required message
Browse files Browse the repository at this point in the history
  • Loading branch information
ffont committed Dec 4, 2020
1 parent 5089e02 commit 7330b27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/PluginEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,8 @@ void UIWrapperComponent::actionListenerCallback (const String &message)

resized();
} else if (message.startsWith(String(ACTION_FIRMWARE_UPDATE_REQUIRED))){
AlertWindow w ("Your KIJIMI firmware is out of date", "", AlertWindow::NoIcon);
w.addTextBlock ("Your KIJIMI has firmware version " + processor->currentFirmwareLabel + " but Babu Frik requires firmware " + processor->requiredFirmwareLabel + ". You can still use Babu Frik but some things might not work as expected. Please, update your KIJIMI :)");
AlertWindow w ("Firmware out of date", "", AlertWindow::NoIcon);
w.addTextBlock ("Your KIJIMI has firmware version " + processor->currentFirmwareLabel + ", but Babu Frik requires firmware " + processor->requiredFirmwareLabel + ". You can still use Babu Frik but some things might not work as expected. You can download the new firmware from the Babu Frik download page :)");
w.addButton ("Ok", 0, KeyPress (KeyPress::returnKey, 0, 0));
w.runModalLoop();
} else if (message.startsWith(String(ACTION_CC_REVEICE_IS_TURNED_OFF))){
Expand Down

0 comments on commit 7330b27

Please sign in to comment.