Skip to content

Commit

Permalink
chore: replace "cp-editor2" with "cp-editor" (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
ouuan authored and coder3101 committed Jan 9, 2020
1 parent 4e22169 commit c7f938d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
@@ -1,6 +1,6 @@
# CP Editor

[![Build Status](https://travis-ci.org/coder3101/cp-editor2.svg?branch=master)](https://travis-ci.org/coder3101/cp-editor2)
[![Build Status](https://travis-ci.org/coder3101/cp-editor.svg?branch=master)](https://travis-ci.org/coder3101/cp-editor)

<img src=https://i.imgur.com/31n9t8i.png height="80" width="80">

Expand All @@ -10,7 +10,7 @@ CP Editor is a Native Qt based code editor writter in C++. It make you only focu

### Installation

Head over to the [release page](https://github.com/coder3101/cp-editor2/releases) and download the binary/installer depending upon your OS.
Head over to the [release page](https://github.com/coder3101/cp-editor/releases) and download the binary/installer depending upon your OS.
- Windows users can find an `Installer` install it and start to code.
- Linux users can find an `AppImage` install or directly run it.

Expand Down Expand Up @@ -74,4 +74,4 @@ Contributors and contributions are welcomed! However to maintain the quality of
License
----

[GNU General Public License Version 3.0](https://github.com/coder3101/cp-editor2/blob/master/LICENSE)
[GNU General Public License Version 3.0](https://github.com/coder3101/cp-editor/blob/master/LICENSE)
2 changes: 1 addition & 1 deletion src/UpdateNotifier.cpp
Expand Up @@ -40,7 +40,7 @@ void UpdateNotifier::setBeta(bool value)
void UpdateNotifier::checkUpdate(bool force)
{
this->force = force;
request.setUrl(QUrl("https://api.github.com/repos/coder3101/cp-editor2/releases"));
request.setUrl(QUrl("https://api.github.com/repos/coder3101/cp-editor/releases"));
manager->get(request);
}

Expand Down
4 changes: 2 additions & 2 deletions src/appwindow.cpp
Expand Up @@ -253,8 +253,8 @@ void AppWindow::on_actionAbout_triggered()
"so that you (a great programmer) can focus fully on your algorithm "
"designs. </p>"
"<p>The code repository: <a "
"href=\"https://github.com/coder3101/cp-editor2\">"
"https://github.com/coder3101/cp-editor2</a></p>");
"href=\"https://github.com/coder3101/cp-editor\">"
"https://github.com/coder3101/cp-editor</a></p>");
}

/******************* FILES SECTION *************************/
Expand Down
2 changes: 1 addition & 1 deletion win-setup.iss
Expand Up @@ -4,7 +4,7 @@
#define MyAppName "CP Editor"
#define MyAppVersion "4.1.0"
#define MyAppPublisher "Ashar Khan <coder3101>"
#define MyAppURL "https://github.com/coder3101/cp-editor2"
#define MyAppURL "https://github.com/coder3101/cp-editor"
#define MyAppExeName "CPEditor.exe"

[Setup]
Expand Down

0 comments on commit c7f938d

Please sign in to comment.