Skip to content

Commit

Permalink
Merge pull request #101 from DXS-GROUP/InDev
Browse files Browse the repository at this point in the history
Fixed issuesLabel
  • Loading branch information
Nighty3098 authored Jun 12, 2024
2 parents dbb2fcb + adbdbdd commit f9f4faf
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<img src="https://img.shields.io/badge/markdown-%231c1c29.svg?style=for-the-badge&logo=markdown&logoColor=white" style="border-radius: 5px;"/>
<img src="https://img.shields.io/badge/github-%231c1c29.svg?style=for-the-badge&logo=github&logoColor=white" style="border-radius: 5px;"/>
<br><br><br>
<img src="https://invidget.switchblade.xyz/r8jWX8ugDd" style="border-radius: 15px;"/>
<a href="https://discord.gg/tnHSEc2cZv"><img src="https://invidget.switchblade.xyz/r8jWX8ugDd" style="border-radius: 15px;"/></a><br>
<br><br><br>
<img src="https://repobeats.axiom.co/api/embed/84bb3c292d2256a4d52ec4cdfca3da36b9e981cb.svg" />
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/CodeKeeper/keeperFunc/getProjectInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ QString MainWindow::getRepositoryData(QString git_url, QTableWidget *table)

QString MainWindow::getProjectIssues(QString git_url)
{
int maxLength = 120;
int maxLength = 150;
QString prefix = "https://github.com/";
QString repo = git_url.replace(prefix, "");
QString issuesData;
Expand Down
3 changes: 0 additions & 3 deletions src/CodeKeeper/keeperFunc/notesFunc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -514,9 +514,6 @@ void MainWindow::updateMDPreview()
" margin-bottom: 10px;"
" color: #c3ceec;"
"}"
"img {"
" height: 20px "
"}"
"hr {"
" font-family: "
+ selectedFont.toString()
Expand Down
6 changes: 3 additions & 3 deletions src/CodeKeeper/keeperFunc/projectsFunc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,9 +235,9 @@ void MainWindow::openProject(QListWidget *listWidget, QListWidgetItem *item)
QWidget *issuesTab = new QWidget();
QVBoxLayout issuesLayout(issuesTab);

QLabel *issuesLabel = new QLabel();
issuesLabel->setWordWrap(true);
issuesLabel->setTextFormat(Qt::RichText);
QTextBrowser *issuesLabel = new QTextBrowser();
// issuesLabel->setWordWrap(true);
// issuesLabel->setTextFormat(Qt::RichText);
issuesLabel->setTextInteractionFlags(Qt::TextBrowserInteraction);
issuesLabel->setText("Issues");
issuesLabel->setOpenExternalLinks(true);
Expand Down
2 changes: 1 addition & 1 deletion src/CodeKeeper/settingswindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ SettingsWindow::SettingsWindow(QWidget *parent) : QMainWindow{ parent }
urlToRepo->setAlignment(Qt::AlignHCenter | Qt::AlignTop);

versionInfo = new QLabel();
versionInfo->setText("0.1.7");
versionInfo->setText("0.1.7.1");
versionInfo->setAlignment(Qt::AlignCenter);

checkUpdatesBtn =
Expand Down

0 comments on commit f9f4faf

Please sign in to comment.