Skip to content

Commit

Permalink
pre-release for dev branch and about changes
Browse files Browse the repository at this point in the history
  • Loading branch information
coder3101 committed Jan 28, 2020
1 parent 4c7e61f commit 176ae38
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ jobs:
tag: $(VERSION_TAG)
target: '$(Build.SourceVersion)'
title: 'CP Editor'
isPreRelease: endsWith(variables['Build.SourceBranch'], 'dev')
assets: $(Build.SourcesDirectory)/build/CP_*
assetUploadMode: 'replace' # Optional. Options: delete, replace
changeLogCompareToRelease: 'lastFullRelease'
Expand Down Expand Up @@ -123,6 +124,7 @@ jobs:
target: '$(Build.SourceVersion)'
title: 'CP Editor'
tag: $(CI_BUILD_TAG)
isPreRelease: endsWith(variables['Build.SourceBranch'], 'dev')
assetUploadMode: 'replace' # Optional. Options: delete, replace
assets: $(Build.SourcesDirectory)/*.exe
changeLogCompareToRelease: 'lastFullRelease'
Expand Down
2 changes: 1 addition & 1 deletion src/appwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ void AppWindow::on_actionAbout_triggered()
QMessageBox::about(this,
QString::fromStdString(std::string("About CP Editor ") + APP_VERSION_MAJOR + "." +
APP_VERSION_MINOR + "." + APP_VERSION_PATCH),
"<p><b>CP Editor</b> is a native Qt-based code editor written in C++. It's specially designed "
"<p><b>CP Editor</b> is a native Qt-based Code Editor. It's specially designed "
"for competitive programming, unlike other editors/IDEs which are mainly for developers. It "
"helps you focus on your coding and automates the compilation, executing and testing. It even "
"fetches test cases for you from webpages and submits codes on Codeforces!</p>"
Expand Down

0 comments on commit 176ae38

Please sign in to comment.