Skip to content

Commit

Permalink
Merge pull request #140 from Nighty3098/InDev
Browse files Browse the repository at this point in the history
New version
  • Loading branch information
Nighty3098 authored Jul 23, 2024
2 parents 6edeb0a + 145bd4f commit ff5a0ef
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/CodeKeeper/keeperFunc/projectsFunc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ void MainWindow::openProject(QListWidget* listWidget, QListWidgetItem* item)
{
if (item) {
QDialog dialog(this);
dialog.setFixedWidth(570);
dialog.setFixedWidth(600);
dialog.setMinimumHeight(500);
dialog.setWindowTitle(tr("Project"));
dialog.setWindowFlags(windowFlags() | Qt::FramelessWindowHint);
Expand Down
6 changes: 3 additions & 3 deletions src/CodeKeeper/settingsFunc/functional.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ void SettingsWindow::checkUpdates(bool isShow)
connect(whatsNewButton, &QPushButton::clicked, [&]() {
QDesktopServices::openUrl(QUrl("https://github.com/Nighty3098/CodeKeeper/compare/" + secondLastRelease + "..." + currentAppVersion + ""));
});
if (!isShow && newAppVersion == currentAppVersion) { }
else {

if (!isShow && newAppVersion == currentAppVersion) {
} else {
dialog.exec();
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/CodeKeeper/settingswindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ SettingsWindow::SettingsWindow(QWidget* parent) : QMainWindow { parent }
urlToRepo->setAlignment(Qt::AlignHCenter | Qt::AlignTop);

versionInfo = new QLabel();
versionInfo->setText("0.1.9");
versionInfo->setText("0.2.0");
versionInfo->setAlignment(Qt::AlignCenter);

checkUpdatesBtn = new QPushButton(
Expand Down

0 comments on commit ff5a0ef

Please sign in to comment.