diff --git a/src/consts.hpp b/src/consts.hpp index 94f57f6..1f4377c 100644 --- a/src/consts.hpp +++ b/src/consts.hpp @@ -10,5 +10,5 @@ constexpr auto MaxCameraPresets = 9; constexpr auto MaxViews = 9; -constexpr auto Version = "1.0-beta6"; +constexpr auto Version = "1.0.0"; diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 5804007..632b891 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -121,18 +121,6 @@ void MainWindow::setupMenu() { }); menu->addAction(cameraPresetAct); } - menu->addSeparator(); - auto const rebootAct = new QAction(tr("&Reboot"), this); - connect(rebootAct, &QAction::triggered, &m_cameraClient, [this] { - QMessageBox confirm(this); - confirm.setText(tr("Are you sure you want to reboot the camera? This will take about 20 seconds.")); - confirm.addButton(tr("&No"), QMessageBox::ButtonRole::NoRole); - confirm.addButton(tr("&Yes"), QMessageBox::ButtonRole::YesRole); - if (confirm.exec()) { - m_cameraClient.reboot(); - } - }); - menu->addAction(rebootAct); } // help menu {