Skip to content
This repository was archived by the owner on Oct 5, 2025. It is now read-only.

Commit ff5a0ef

Browse files
authored
Merge pull request #140 from Nighty3098/InDev
New version
2 parents 6edeb0a + 145bd4f commit ff5a0ef

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/CodeKeeper/keeperFunc/projectsFunc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ void MainWindow::openProject(QListWidget* listWidget, QListWidgetItem* item)
115115
{
116116
if (item) {
117117
QDialog dialog(this);
118-
dialog.setFixedWidth(570);
118+
dialog.setFixedWidth(600);
119119
dialog.setMinimumHeight(500);
120120
dialog.setWindowTitle(tr("Project"));
121121
dialog.setWindowFlags(windowFlags() | Qt::FramelessWindowHint);

src/CodeKeeper/settingsFunc/functional.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ void SettingsWindow::checkUpdates(bool isShow)
134134
connect(whatsNewButton, &QPushButton::clicked, [&]() {
135135
QDesktopServices::openUrl(QUrl("https://github.com/Nighty3098/CodeKeeper/compare/" + secondLastRelease + "..." + currentAppVersion + ""));
136136
});
137-
138-
if (!isShow && newAppVersion == currentAppVersion) { }
139-
else {
137+
138+
if (!isShow && newAppVersion == currentAppVersion) {
139+
} else {
140140
dialog.exec();
141141
}
142142
}

src/CodeKeeper/settingswindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ SettingsWindow::SettingsWindow(QWidget* parent) : QMainWindow { parent }
9292
urlToRepo->setAlignment(Qt::AlignHCenter | Qt::AlignTop);
9393

9494
versionInfo = new QLabel();
95-
versionInfo->setText("0.1.9");
95+
versionInfo->setText("0.2.0");
9696
versionInfo->setAlignment(Qt::AlignCenter);
9797

9898
checkUpdatesBtn = new QPushButton(

0 commit comments

Comments
 (0)